Problem in Updating LIPS from USEREXIT_SAVE_DOCUMENT

Hi,
I am working with VL01N,VL02N.
I have created a custom field in table lips and am supposed to update that based on certain logic.
I have written my logic in include MV50AFZ1, USEREXIT_SAVE_DOCUMENT.
Here, I have updated XLIPS-custom field with my desired value but table LIPS is not getting updated.
Please suggest how to update the table LIPS from this exit....

Hi,
Write the code in the form-routine "USEREXIT_SAVE_DOCUMENT_PREPARE".  Ensure that XLIPS-UPDKZ is having the value 'U' or 'I'.
Regards
Vinod

Similar Messages

  • During today (Nov-16) I'm experiencing problems to update apps from appstore in my Ipad2 IOS 6.01. Some problems?

    during today (Nov-16) I'm experiencing problems to update apps from appstore in my Ipad2 IOS 6.01. Some problems?
    I don't know what happen, but this is not nice....
    Please, let me know what is the problem. I know that similar things are happening outside my enterprise
    Regards

    What is the exact problem or error message?
    If you're having issues connecting to the app store, is this the only connection issue? Can you connect to itunes store?
    Cannot connect to iTunes Store
    http://support.apple.com/kb/TS1368
    Try rebooting your ipad by pressing and holding both the home and sleep/wake buttons at the same time until the apple logo appears on the screen, then let go.
    Go to settings/itunes and app stores, tap on apple id and sign out. Reboot the ipad and the sign back in the same way.

  • Problems with updating iPad2 from 4.3.1 to 5.1

    trying to update ipad2 from 4.3.1 to 5.1, which is offered on itunes when I connect to my desktop computer.  I keep getting message to check my network settings or try again later.  My settings on ipad2 are wifi off (since I am now hard wire connected to the internet), and I checked to see if safari works, and it does, so I have internet connection.  Also tried with wifi setting on ipad2 as on, with same problem.  I've now tried repeatedly for over an hour, so I have a hard time believing that the server is never available.   Do I have a problem with some setting?   This is my husband's ipad I am trying to update --- I never had this problem when I updated my own ipad.

    I'm wondering if your iTunes software is up-to-date have you checked for updates to iTunes?
    Also, as iOS 7 is the latest update I'd have presumed it should be wanting to install that rather than an earlier version?
    Regards,
    Steve

  • Problem in updating LIPS table in outbound delivery user exit

    Hi,
    I wrote a code in outbound delivery user exit (save document userexit) to update LIPS table.
    for example
    XLIPS-LGORT = '0657'.
    XLIPS-PIMNG = I_LIPS-LFMING
    (PICKing QUANTITY =  DELIVERY QUANTITY)
    MODIFY XLIPS TRANSPORTING LGORT PIMNG.
    After outbound delivery created i couldn't found my entries in lips table. it shows me as blank.
    Can anybody tell me what went wrong?
    Thanks and Regards,
    Suresh.

    Hi Suresh,
    If you want to change any delivery data, like LIKP or LIPS you should use the USEREXIT_SAVE_DOCUMENT_PREPARE exit. The exit you are using is called after all delivery data is passed to the update task.
    Regards,
    John.

  • Problem in updating delta from cube to cube

    Dear experts,
    I created an delta upload from CUBE A to Cube B. I initialised it yesterday and did my first update. Today I did the second update from Cube A to B.
    But then i found there were some problem in my CUBE A. After I reload data into Cube a. I would like to redo the delta.
    I deleted the request of update load of today in CUBE B. And relauch the infopackage. But there was error message. System said the data is not coherent between datasource and target.
    What could be the problem?
    Thanks in advance!!

    So u want to reload delta from Cube A to Cube B right?
    The load is successful in Cube A?
    Then u need to reset the delta mart and force the request to red in cube B and delete the delta request from cube B and then retrigger the delta load

  • Problem getting updated values from DCIteratorBinding

    Hello,
    I have one af:table which is binded using DataControl based on ViewObject.
    I typed some values in each column and now I want to access those values from the iterator but its giving me initial value at the time page loaded.
    //getting the iterator
    DCIteratorBinding itr = ADFUtils.findIterator("ViewObject1Iterator");
    Row row[] = itr.getAllRowsInRange();
    String deptName = (String) row[1].getAttribute("deptName");
    The strange thing is, I have another ViewObject binded to af:table and it works fine I do not know whats wrong here
    any ideas?
    many thanks

    Hi,
    the code seems okay and if it works with another VO but not this particular, then the issue obviously is not in teh Java code but the page code. Since you have a working and a not working solution, i don't think its an issue with the product.
    Frank

  • Problems when updating WLC from Version 4.1 to 4.2

    Hi,
    we have a Problem when upgrading a WLC 4400.
    When booting the device with the 4.2 Software, there are errors in some lines like "Starting Virtual AP Services: Parse error at line 244:
    not well-formed (invalid token)"
    and the config gets deleted.
    What could be the problem? Is there a possibility to save the config and view it in clear text?
    Thanks a lot and regards.

    I see a similar message while booting a WLC-4402-25 running 5.0.148.0:
    Starting Management Services:
    Parse error at line 3
    not well-formed (invalid token)
    Web Server: ok
    Looking at line 3 of the XML config file reveals:
    Unless line 3 refers to a line 3 of a subset of the XML config file, I'm guessing the WLC code generating the XML config file is out of sync with the WLC code interpreting the XML config file during boot, or vice versa.
    In my case the config is retained on the WLC.
    Trond.

  • Problem using UPDATE command from Java

    I am getting an error when I use the following code in my java file and use it in JSP through beans:
         sql = " UPDATE SHOPPINGCART SET QUANTITY='"+quant+"' WHERE USERNAME ='"+username"' AND TOYID='"+toyid+"' ";
         CM.executeUpdate(sql); //CM is the connection object and I have a method which inturn calls executeUpdate
    This is the error
    C:\Program Files\Apache Software Foundation\Tomcat 4.1\webapps\DBTest\WEB-INF\cl
    asses\user>javac *.java
    ToyDBAO.java:124: ';' expected
    +"WHERE USERNAME ='"+username"' AND TOYID='"+toyid+"' ";
    ^
    ToyDBAO.java:124: not a statement
    +"WHERE USERNAME ='"+username"' AND TOYID='"+toyid+"' ";
    ^
    2 errors
    Please reply
    Message was edited by:
    aniketh_parmar

    Now the prob is that its compiling the java file. But when I run the program, an error is caught
    sql = " UPDATE SHOPPINGCART SET QUANTITY='"+quant+"' (WHERE USERNAME ='"+username+"' AND TOYID='"+toyid+"')";
    This is the error in tomcat window
    Message Error:You have an error in your SQL syntax; check the manual that corres
    ponds to your MySQL server version for the right syntax to use near '(WHERE USER
    NAME ='aniketh_parmar' AND TOYID='3')' at line 1

  • Insert and update tables from SQL server to oracle database tables

    Hi,
    I am having problem while update data from sql server to oracle database tables.
    I am doing one way insert +updates that is from SQL Server tables ==> Oracle database tables
    I am using tools Sql server Integration service. I can insert data from sql server to oracle but update can't. Please help me how can I update + insert from sql server to oracle database tables easily.
    Thanks in advance.

    Hi,
    What about using Oracle SQL Developer for migration
    http://www.oracle.com/technetwork/database/migration/sqlserver-095136.html
    HTH

  • Hlep.. Problem when updating aspx templates

    Hi there, I-m having a huge problem when updating pages from
    a .asp template, it replaces my 1 line of code
    with <%@ Page Language="VB" ContentType="text/html"
    ResponseEncoding="iso-8859-1" %> and errases the resto of the
    attributes i have on each page, making it unfunctionable.
    Does anyne know why the template when updating does that?
    thanks for your help

    Hi Suman,
    The changes are getting lost when i logout and login back to SAP.
    In Current session i am able to see the changes. But changes are lost as soon as i end up my session,
    but this is happening only in case of template box width. All other changes are retained between my various SAP sessions.
    So wanted to know if any other value is over-writing the template box width values.
    Regards
    Manpreet Singh

  • In updating iPhoto 7.1.5 to 9.4.3. I have four different Libraries.  Is there a problem in updating all four Libraries from 7.1.5?

    In updating iPhoto 7.1.5 to 9.4.3 I have four different Libraries.  Is there a problem in updating all four Libraries from 7.1.5?

    No.  Once you have upgraded iPhoto to 9.4.3 launch it with the Option key held down and select each library in order.  iPhoto will convert the  library to the new version.
    As always, be sure you have a backup copy of each library before proceeding.
    OT

  • I updated my iPad 2 OS to iOS 6.0..after that I am unable to download or update anything from the App Store. The MSG I get is "id not valid for US store. Go to Indian store for purchase"..never faced this problem earlier before the update to OS 6..help!!

    I updated my iPad 2 OS to iOS 6.0..after that I am unable to download or update anything from the App Store. The MSG I get is "id not valid for US store. Go to Indian store for purchase"..never faced this problem earlier before the update to OS 6..help!!

    Apple's response to my email:
    "I understand that you can't update your apps using your iPad.
    Apple is currently working toward a resolution for the issue you have reported. You will receive an email after the matter has been investigated and further information is available.
    Thank you for your patience. Apple wants your iTunes experience to be as enjoyable as possible. Have a great day!"

  • HT201210 nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and somet

    nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and sometime just hear from other user that it 's difficult to use then force they change phone that use to handle to another.

    It is a feature to discourage the theft of iPhones by making them useless if resold. It's not going anywhere. It's simple: just don't buy a phone until you make sure that the activation lock has been disabled.

  • What cause searching network problem after updating iphone 6 from iOS 8.1.2 TO iOS 8.1.3?

    what cause searching network problem after updating iphone 6 from iOS 8.1.2 TO iOS 8.1.3?

    SSince Apple does not support downgrading the iOS I suggest you start a new question that gives a good title to a specific problem. Then in the body of the thread describe the problem in detail, tell us what steps you have tried so far to correct the problem, what happened, and what error messages you received.

  • I have problem when updating the latest version of Pro-X, I tried for several times, so I uninstall and re-install it. It is unsuccessful to re-install the Pro-X and it direct me to ask help from CS,also showing this message: Exit Code: 6  Please see spec

    I have problem when updating the latest version of Pro-X, I tried for several times, so I uninstall and re-install it. It is unsuccessful to re-install the Pro-X and it direct me to ask help from CS,also showing this message: Exit Code: 6  Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW025, DW050 ... WARNING: DW024, DW025 ..., please advice me the step to re-install the Pro-X. Thanks

    Please follow Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    Do let us know if it worked.
    Regards
    Rajshree

Maybe you are looking for

  • Disable duplicate check for address in customer creation

    we use OE_HEADERS_IFACE_ALL, OE_LINES_IFACE_ALL, and OE_CUSTOMER_INFO_IFACE_ALL to upload sales order from third party system into OFS. For every sales order, we would like the system to create 1 new ship-to address and 1 new bill-to address. However

  • Project Server 2010 - Issue with correct recording of timesheet actual hours with decimals

    We have Project Server 2010 and are using the timesheet functionality for recording resource times/costs in the schedules. It has come to light only recently, that for one user, suddenly the times she is entering are not being summed up correctly. An

  • Restricting authobject I_QMEL for Quality notifications and HR PCRs

    Hello, We have encountered an role conflict when the authorization object I_QMEL is used both for Quality notification and HR PCR access on the portal.  Here is the scenario. Quality Administrator has I_QMEL for: - notification type X - transaction I

  • Regd Back ground settlment of PP orders

    Hi, We normally run the batch job on fridays to calculate the variance, settlment and then closure of PP orders. It was observed that some orders were missed in this job run and while exploring further it was observed that variance of the orders was

  • Nvidia gt630 is too slow

    Hi! I have problems with this video card: in games it is really slow with max qulity of textures. textures are downloaded step-by-step and takes a lot of time ( 10sec). and after download FPS is too small. In Windows game with all max graphic setting