Update Zfield information on Devlivery header

Hi,
Does anyone please suggest  how to use BAPI_OUTB_DELIVERY_CHANGE with the extension fields populated. I used below code but no updates happening on custom field  in Delivery header table (LIKP).
data : ls_ext1 type BAPIEXTC,
        lt_ext1 type table of BAPIEXTC,
        ls_ext2 type BAPIEXT,
        lt_ext2 type table of BAPIEXT,
        header type BAPIOBDLVHDRCHG,
        HEADER_CONTROL type BAPIOBDLVHDRCTRLCHG,
        return type table of BAPIRET2.
  refresh : lt_ext1,lt_ext2.
        header-DELIV_NUMB = likp-vbeln.
        HEADER_CONTROL-DELIV_NUMB = likp-vbeln.
        ls_ext1-FIELD1 = 'ZZCARRIER'.
        append ls_ext1 to lt_ext1.
        ls_ext2-param     = 'LIKP'.
*       ls_ext2-row       = wa_lips-posnr.
        ls_ext2-field     = 'ZZCARRIER'.           "Z FIELD 2
        ls_ext2-value     = carriertype.
        ls_ext2-type = 'CHAR'.
        ls_ext2-length = '30'.
        append ls_ext2 to lt_ext2.
call function 'BAPI_OUTB_DELIVERY_CHANGE'
   exporting
     HEADER_DATA                   =  header
     HEADER_CONTROL                = HEADER_CONTROL
     DELIVERY                      = likp-vbeln
   tables
    EXTENSION1                    = lt_ext1
    EXTENSION2                    = lt_ext2
     RETURN                        = return
call function 'BAPI_TRANSACTION_COMMIT'
Thanks,
Ashok.

Hey Ashok,
  why can't you try this one, this could resolve your problem as i hope:
Export your custom field value to a memory id
export ZFIELD to memory id 'ZLIKP'.
ls_bapiobdlvhdrchg-DELIV_NUMB = PASS  (DELIVERY DOC NUMBER ).
ls_bapiobdlvhdrctrlchg-DELIV_NUMB = PASS (DELIVERY DOC NUMBER ).
CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
EXPORTING
header_data                   = ls_bapiobdlvhdrchg
header_control                = ls_bapiobdlvhdrctrlchg
delivery                      = DELIVERY DOC NUMBER
tables
return                        = lt_bapireturn .   
Go to Include MV50AFZ1 under  FORM “USEREXIT_SAVE_DOCUMENT_PREPARE” which call before updating Delivery document either from BAPI or from Screen.
Write code here either directly in form or with implicit Enhancement in the form.
Import Memroy ID and then just update internal Table XLIKP with corresponding field value which will used to update DB Table LIKP.
Once let me know after your attempt
Thanks,
Vamsi

Similar Messages

  • Update of information in SO header - but affecting the item

    Hi all,
    I am updating some information in the SO header (in the tab of Additional data)
    When I'm just about to save, it actually prompted me the reason code for changing the items. Since I'm only changing in the area of header so I'm guessing this thing shouldnt be happening.
    Does anyone have any idea on this? Points will be rewarded for your great opinions

    Hi,
    I assume you changed Condition Group 1 till 5 fields. It's standard function. It will happen if you changed the customer condition group field for pricing, system will be populate to the items automatically.
    Regards,
    Gumanti

  • HT201303 I have been asked to update payment information, when that information was updated it says the card has been denied? i entered the information twice and it still says denied?

    I have been asked to update my billing information on my account, when I update the account the info that comes back is that the card is denied? i have enterd it three times, and I know that the card is good and not expired. can anyone give me any advice? 

    How were you asked to update this information? Was it in an email? - if so you need to check whether it's genuine by looking at the sending address and the long header, and the URL of any link in it. If you are not absolutely sure it's from Apple you need to stop the card.
    If you were actually on the iTunes Store having gone there directly then the request would be genuine, so no worries there, but you will need to contact Support. Go to https://getsupport.apple.com ; click 'See all products and services', then ' 'iTunes', and then 'iTunes Store', then 'Purchases, Billing & Redemption'.

  • Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wr

    Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wrong?

    Are you 100% sure that every detail of your information is the same in each place?
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html

  • Geting this errror, eventhough information is ok: We're sorry, the billing information on file could not be used for this payment. Please update your information.

    Geting this errror, eventhough information is ok: We're sorry, the billing information on file could not be used for this payment. Please update your information.
    And please remove one of my unassigned user.

    Are you 100% sure that every detail of your information is the same in each place?
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html

  • Adding custom information in HTTP Header in an outgoing request from GWWS

    Is there a way to send custom header information with the a webservice request (HTTP post) that happens via GWWS server?
    All the methods I read about deal with managing the soap envelop that gets sent.
    We are looking for ways which will allow us to put custom information in the headers.
    I am aware there is something we can do using the Salt Plugins.
    For example, we can write a Out bound plugin which has a capability of putting the "Authentication:Basic..." in the header.
    Then there is message conversion plugin which deals with transformation of message, which gives us control over the soap body.
    Is it possible to put information in the header for outgoing request (from GWWS) to a specific web service?
    Thanks and Sincere Regards,
    Mrugendra

    Maurice,
    Thanks for confirming this.
    It clarifies the doubts that I was having while reading through the documentation Xu pointed to.
    Yes, we need to add HTTP Headers (not SOAP header).
    For now we just need to add Basic Authentication HTTP Header for outbound service calls.
    We have developed a plugin to do that for now.
    And even if the salt plugin takes care of adding the Basic Authentication in the HTTP Header for outgoing calls, I guess we do not have any option to include some custom information in the HTTP Header which might be required in the future.
    At-least, not unless we request that enhancement.
    Bringing the plugin into our mix requires a lot of changes to our architecture including inclusion of AUTHSVR in the UBB,
    Which, in turn, makes it imperative to change the endpoint clients of our application.
    In addition to that, the incoming web service calls also need to include TUXEDO authentication information, which would again require either communicating the authentication information to the consumers of our service or device some kind of a proxy which would add the authentication information for all the incoming requests!
    With these facts in mind, we were wondering if we have an easier way to include the HTTP header information.
    As you say, Maurice, it seems it is not possible yet.
    Thank you again for your replies.
    Sincere Regards,
    Mrugendra

  • Custom information in HTTP Header in an outgoing GWWS Request

    Hello Xu,
    Hello Everyone,
    With reference to the recent post activity in the post:
    [Adding custom information in HTTP Header in an outgoing request from GWWS|https://forums.oracle.com/forums/thread.jspa?threadID=2366358&tstart=0]
    We are looking for an option to send custom header information with the a webservice request (HTTP post) that happens via GWWS server.
    I prematurely marked that post as answered since we got a link to documentation in one of the answers, which suggests that problem has been taken care in TUXEDO11gR1.
    However, it would be difficult (almost impossible) for us to move to 11gR1 immediately.
    Since I marked that post as "answered" and I did not know if replies in that post will get any attention, I opened up this post.
    Xu (He) suggested (in reply to my previous post) that there might be a patch for our problem.
    It would be wonderful/perfect if we can get a patch for 10gR3!
    We are using the following:
    TUXEDO10gR3 PATCH LEV=44
    SALT Patch Lev = 15
    Please do let us know.
    Thank you again
    Sincere Regards,
    Mrugendra

    Maurice,
    Thanks for confirming this. (in the post: [Adding custom information in HTTP Header in an outgoing request from GWWS|https://forums.oracle.com/forums/thread.jspa?threadID=2366358&tstart=0] )
    It clarifies the doubts that I was having while reading through the documentation Xu pointed to.
    Yes, we need to add HTTP Headers (not SOAP header).
    For now we just need to add Basic Authentication HTTP Header for outbound service calls.
    We have developed a plugin to do that for now.
    And even if the salt plugin takes care of adding the Basic Authentication in the HTTP Header for outgoing calls, I guess we do not have any option to include some custom information in the HTTP Header which might be required in the future.
    At-least, not unless we request that enhancement.
    Bringing the plugin into our mix requires a lot of changes to our architecture including inclusion of AUTHSVR in the UBB,
    Which, in turn, makes it imperative to change the endpoint clients of our application.
    In addition to that, the incoming web service calls also need to include TUXEDO authentication information, which would again require either communicating the authentication information to the consumers of our service or device some kind of a proxy which would add the authentication information for all the incoming requests!
    With these facts in mind, we were wondering if we have an easier way to include the HTTP header information.
    As you say, Maurice, it seems it is not possible yet.
    Thank you again for your replies.
    Sincere Regards,
    Mrugendra

  • Unable to update payment information

    Due to the recent Adobe security breach, I like many other people have been forced to replace our credit cards. I received my new card and am completely unable to update my payment information. All attempts to update the information using Firefox, Chrome, Safari and Android and iPhone browsers is unsuccessful. Considering that the recent security problems of compromised customer payment information, I would have expected more from Adobe. Why doesn't such an important function of the Creative Cloud website work at a time when many people are having to re-enter their payment information due to recent events?
    I have been waiting for the chat support to person for a while now and can't spend another hour waiting for assistance. This series of events is really beyond the pale in regards to Adobe's customer service and support. First we get our credit cards stolen, and then when we have to put in new payment information, the website doesn't even work properly. Adobe isn't some start up that's only been around for a few months, they're a multi-billion dollar company.
    Do I need to call someone instead? Is there any sort of notification or status as to whether or not the website is functioning as expected?

    I had the same issue, Sent Email offering £7.99 for 25 GB. Then sent me an Email at 2.52AM saying I needed to update my payment method although they had just refunded to it. Then 7 hours later, I had tried to before work at 7AM and thought, "as it won't let me do that on my iphone, I'll do it at lunch." Sadly at 9:56 am UK time, They reduced my storage.
    Having Wasted an hour on the phone tonight, they first tried to explain that £7.99 is More than £0.79 times 12. Doh!
    That was followed with lots of being on hold and then being told "We can't go back, We Can't make a refund. We agree it was short notice and that we didn't do it well, there are lots of issues about this and also that we never offered you that (till the saw the email)" So no better off and now having to pay more for same service. That's pretty poor service all around. I have to upgrade as All my files, Backups and Emails are inoperative Till I do so.
    That's pretty bad for a company of this size, Guess they need some more bad press at the moment.

  • HT201380 Yesterday this was automatically installed.  Today I can't access a document in Pages.  A prompt says I need a Pages update.  But the next screen tests for updates and informs me everything is up to date.  What's up?

    Yesterday this was automatically installed.  Today I can't access a document in Pages.  A prompt says I need a Pages update.  But the next screen tests for updates and informs me everything is up to date.  What's up?

    It's highly unlikely that the Pages update problem has anything to do with the ARD client update, since the client is not involved in any way with Software Update. I'd suggest asking for assistance with the update problem in the forum appropriate for your version of Mac OS X.
    Regards.

  • How to get information from SOAP header in weblogic without handlers

    I need to retrieve information from SOAP header without handlers.
    Any ideas how to do that?

    Just wondering if Filter can be used here, though I never tried that.

  • I want iTunes to STOP updating my information, is this possible?  how?

    I want iTunes to STOP updating my information.  Each time I open my 21,000 song library in which I have carefully customized 'genre' and 'album' and 'album sort' iTunes CHANGES MY SETTINGS.  I want to stop this unasked for and unwanted corruption of my entries, please.  (e.g. album sort undoes alphabetical song order for an artist, which is unwanted and irritating .. I have ALL of my 'album sort' set as * .. this provides perfect alphabetization .. please stop changing 'genre' and 'album' and 'album sort'.
    <Email Edited By Host>

    Without the previous user erasing, using their Apple ID/password, the iPad you have an "electronic brick". You may have purchased a stolen iPad.
     Cheers, Tom

  • Updation agent information in table

    Hi ,
    I have created one custom module pool program which is used for request for resource.
    Now in that i create new entries with request no , date (i.e sydatum) , person responsible (for creating request)
    all this values are stored in the custom table .
    when i hit the save the workflow should trigger.
    I have used table maintainence generator and created the event and used swe_create_event to trigger the workflow.
    now the workflow select the agent from the Ztable where the agant are maintained .
    i want to know how should i update the information as to which agent has approved the workitem in the custom and at which date.
    i believe i am correct in stating my query .
    Thanks in advance
    chitis

    The simple way is to make use of program exit tab of the step which is sent ot approver for approval.The progrma exit events react based on various eventytpes, like workitem before creation, after execution, completed, state chnaged etc...
    My suggesstion is to create a program exit class and include the class in the program exit tab of the step and update you z table in the one of the methods of the program exits tab.
    for more information, on how to create and use it please go through the [wiki|https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/programExitsIn+Workflow]

  • Hi My name ali from iran  IDi I opened my iPad in China because the Chinese did not notice but I update my information  Unfortunately, due to the country's name to Iran sanctions not Sbn I chose to make Iraq  Now I'm able to take my Mastercard and softwar

    Hi
    My name ali from iran
    IDi I opened my iPad in China because the Chinese did not notice but I update my information
    Unfortunately, due to the country's name to Iran sanctions not Sbn I chose to make Iraq
    Now I'm able to take my Mastercard and software applications I buy from iTunes
    But I do not know how?, Please help me to register your MasterCard

    Dear Hi
    I would also be in itunes and App Store Get into English
    I've opened all of IDI in China is Chinese and I do not understand Software
    Program
    Please advise me please
    Thank you
    Ali

  • Document info fields in Word won't update when placed in document header-section

    Dear all,
    I have a document library using 3 Content Types with metadata columns and a Word-template.
    The values of these metadata columns should be displayed within the Word-documents created from content type.
    So I've inserted document info fields into the Word-template to display them.
    But unfortunately the placeholders are not updated when opening the document again, after metadata values had been changed e.g. by using the edit-form within the list.
    From what I have seen so far, this only refers to document info fields resident in header or footer sections. 
    But this is where I need to place them.
    Does anybody know this issue and has an idea of how to fix it?
    Could VBA be of use here?
    Best regards,
    Ben

    Hi,
    Based on your description, document info fields in Word won't update when placed in document header-section.
    Per my test, document info fields in Word will update when placed in document header-section.
    Refer to the following article about Add SharePoint Metadata to Word Documents:
    http://whitepages.unlimitedviz.com/2011/02/using-document-templates-with-lists-and-content-types-in-sharepoint/
    https://www.premierpointsolutions.com/training/help-and-how-to-articles/add-sharepoint-metadata-to-word-documents/
    If I misunderstanding the issue, Please offer a screenshot about your issue.
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Help, cant update payment information..

    I cant update payment information on my account, wont let me purchase any apps.. Any help?

    Hello there, Nafters.
    The following Knowledge Base article offers up some great information for troubleshooting your issue:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

Maybe you are looking for