Delivery document not getting updated

Dear Experts,
Till date our client was using VL04 for creating DA for only domestic sales, now they
are asking to provide facility to created DA for export shipment in VL04 and we have done customization for the same.
Now there are two separate (delivery document number)  number ranges generated for
domestic and export sales.
Now my problem is :  delivery document number generated for export sales is not getting
updated in database table VTRDI 
Have any idea ??
Please advice
R.Karthik
Edited by: Karthik R on Sep 30, 2009 5:31 PM
Edited by: Karthik R on Sep 30, 2009 6:39 PM

Hi Lakshmipathi  ,
Thank you so much.....for ur valuable advice !!
I have checked the table LIKP and LIPS ...and the export delivery number is getting saved
in these two tables...
But my problem is with creating shipment in VT01...as delivery number generated for export is not
getting picked in VT01 but for normal domestic orders it is getting picked.
I could not figure out where I went wrong??
could you please guide me on this issue.
R.Karthik
Edited by: Karthik R on Oct 5, 2009 8:46 AM

Similar Messages

  • Letter of Credit Financial Document not getting updated

    Hi,
    I have create a Letter of Credit Financial Doc thur TCode Vx11n. I create a sales order & assigned the financial document to sales order. In log there is no error.
    When I create a Billing Doc & Excise Invoice. The Financial Document values remain same & does not get updated. Please guide.
    Thanks in advance.
    Regards
    Mahi

    Hi Gopala,
    The accounting document has already been released &accounting doc has been created. But the value of Financial Doc i.e Letter of Credit remains same.
    Regards,
    Mahendra

  • Field FKSTA- Billing status of delivery-related billing documents not getting updated

    Hi Experts,
    I have a requirement wherein I need to fetch the FKSTA - Billing status of delivery-related billing documents into the datasource 2lis_11_VASTI. I have checked a lot of threads on this topic but have not found a concrete solution yet.
    I have checked the settings in vov7 and vov8 and everything seems to be in place. I have also checked in table VBUP, when I filter based on field FKSTA = 'C', it shows me the outbound delivery document nos. But when I use the related sales document, it shows me blank values. VBUK as well doesn't show any values for field FKSTK.
    I would like to know how and where I can identify the 'billing status of delivery- related' document.
    I can see in VBUP table that if I enter the sales document no. related to the delivery document, it does not show the correct status.  I believe that the statuses should ideally get updated to the underlying VBUK and VBUP tables. Is there any way to update and align them?
    Is there a workaround, a similar field that i can use for datasource enhancement that will give me the correct values?
    Appreciate any help I can get on this as it is urgent.
    Thanks,
    AM

    Hi,
    You are correct that stauts is updated in table VBUK and VBUP.
    However, a sales order does not determine a billing status for delivery related billing, field
    VBUP-FKSTA is only determined for delivey.
    So, it is correct behavior that VBUP-FKSTA = BLANK when searching VBUP with
    VBUP-VBELN = sales order number.
    Just because of above reason, you will not find billing status field in VA03 -> goto header/item;
    you could only find billing status field for delivery in VL03N -> status overview.
    It seems that you are trying to find out sales orders that have been fully deliveried and fully billed, am I right? As far as I know, there is no directly table/field/tcode that could meet your requirement.
    You could consider following workaround:
    firstly, get a list of deliveries that have been fully billied(search VBUP with VBUP-FKSTA = C or search VBUK with VBUK-FKSTK = C);
    Secondly, using these deliveries to search table VBFA to find out related sales orders.
    Hope this helps.
    Best regards,
    Crystal

  • Status/Delivery Documents not being updated in C4C from ECC on PGI

    Hi,
    We are integrating SAP C4C with ERP via HCI. We have created a followup ‘Sales Order’ from an opportunity in C4C.
    On creating the followup sales order this gets created in SAP ERP & we get back the sales order/inquiry number in C4C,but we do not get any status.
    Also for the sales order when we try to deliver or do a ‘Post Goods Issue’ in ERP and we deliver goods the document flow in ERP shows’ ‘delivery number’ etc but these statuses are not being updated in C4C.
    We have already configured the 'Communication Arrangements ' in C4C, with this scenario as below,
    Opportunity with followup business Transaction in ERP ------ > Update opportunity from followup business transaction document.
    In HCI we have configured the following template in eclipse :
    ERP to Cod Opportunity Replicate
    So,C4C still has just two entries one for inquiry & one for sales order with just the number and no other followup documents details/status ,say PGI --delivery document number etc.Can you kindly help.
    Thanks
    Indrasish

    Hello Indrasish,
    If I am not wrong you might be using the URL for Outbound Channel that is mentioned in Catalog (standard scenarios for HCI on HCI tenant). Mind that the Outbound URL for Pricing, Query Sales Quote and Query Sales Order Scenario should be picked up from Services for same which we can get from SICF on ECC. These URL structures are also maintained in 1402 standard document for ERP integration using HCI. Yet mentioning them below:
    u
    These URL paths are to be maintained in the Outbound Channel on artifacts related to Request Pricing, Query Sales Quote and Query Sales Order.
    Let me know if this is what you were expecting and if this solves your issue.
    Regards,
    Chandan

  • Delivery Document not getting closed

    Hi Experts,
    I am using 2007 B PL 08. I want to close the delivery document through SDK against which no Invoice or return is booked. it gives me error 'Internal error -5002 occured' when I try to close this document with following code.
    Dim fd As SAPbobsCOM.Documents
      fd = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDeliveryNotes)
             If fd.GetByKey(93) = True Then
                    DelClose = fd.Close
                    If DelClose <> 0 Then
                        oCompany.GetLastError(FErrCode, FErrMsg)
                        MsgBox(FErrMsg)
                    End If
              End If
    i even try following code to loop through the lines collection and close lines instead of closing header.
    it gives me "you can not close rows in this type of document" error:
    Dim fd As SAPbobsCOM.Documents
                fd = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDeliveryNotes)
                If fd.GetByKey(93) = True Then
                    For i = 0 To fd.Lines.Count - 1
                        fd.Lines.SetCurrentLine(i)
                        If fd.Lines.LineStatus <> SAPbobsCOM.BoStatus.bost_Close Then
                            fd.Lines.LineStatus = SAPbobsCOM.BoStatus.bost_Close
                        End If
                    Next
                    DelClose = fd.Update
                    If DelClose <> 0 Then
                        oCompany.GetLastError(FErrCode, FErrMsg)
                        MsgBox(FErrMsg)
                    End If
                End If
    this used to work with 2005 B. Am I doing anything wrong?
    Thanks in advance,
    Binita

    Hi Binita,
    Closing the delivery at the header level works in the DI API in SBO 2007A (though it's not good practice as the correct method, as you know, would be to add a return linked to the delivery to return the goods to stock and update the GL). I can also do this via the SBO client (it warns me that there is no target document but I can choose to continue).
    If you can close the delivery via the SBO client in 2007B then it sounds like a bug in the DI API.
    Kind Regards,
    Owen

  • Financial document not getting updated

    Hi,
    In export sale, I am using a financial document in the order. I have done invoices for the order. But when I see the financial document open value in VX12N, it is showing as 100% open value.
    the invoice value is 10,000 USD. the financial document value is 50,000 USD (before invoice). But after the invoice, it is still showing as 50,000 USD instead of 40,000 USD!
    Can any one guide me as to why the financial document value is not getting reduced?
    Regards

    Hi Gopala,
    The accounting document has already been released &accounting doc has been created. But the value of Financial Doc i.e Letter of Credit remains same.
    Regards,
    Mahendra

  • Picked quantity not getting updated in ERP outbound delivery

    Hi All,
    I have an outbound delivery which is replicated from ERP to EWM. I have confirmed the Warehouse task for picking & completed PGI in EWM system. The status update has taken place in ERP delivery (i.e ERP delivery status shows that goods movement is complete and the distribution status shows processing of the delivery in the decentralized system is complete). However the picked quantity (LIPS-PIKMG) is not getting updated in the ERP delivery. How do i make this happen?
    Regards,
    Smitha Pai

    Hi Smitha
    Picked Qty in ECC will never get updated when do the PGI in EWM. I think, this field is not designed when delivery is distributed as system assume picking will be done in other system in this case it is EWM.
    But You can always refer VBFA (Document flow table) to identify the picked quantity if you are working z report or interface to send this information.
    Thanks,
    Jagdeep

  • Item text (BSEG-SGTXT) is not getting updated in Payment document generated

    Hi All,
    Item text (BSEG-SGTXT) is not getting updated in Payment document generated through F110.
    After generating the payment document via Transaction Code u2013 F110, system is not updating the
    Text field (BSEG-SGTXT) in the payment document with the text that we have entered in the Invoice (MIRO or FI Invoice).
    In case of manual payment (F-53) we can input the text manually hence that will get updated in
    payment document but this thing is not possible with F110.
    How can I update it?
    Is there any configuration for that?
    Thanks
    Daniel Dorta

    Hi All,
    I've applied the two notes as recommended. However, when I run FBL3N for payment run items, the Text field is update with wrong data, i.e. not from the Text field in FB60
    Thus, I'll like someone to help me with what should exactly be done on the 'Step', 'Pre-requisite' and 'Substitution' side of the Substitution rule (TCode GGB1), I did not fill anything in the Pre-requisite box - is this right?
    Thanx in advance.

  • Item text is not getting updated in Payment document generated through F110

    Hi all,
    After generating the payment document via Transaction Code u2013 F110, system is not updating the Text field in the payment document with the text that we have entered in the Invoice (MIRO or FI Invoice).
    While processing the document via transaction code u2013 F110, in the layout shown for the Invoices to be considered for payment (screen of u201CEdit Proposalu201D), text is not getting updated. When we pressed F1 at the Text field (Which is blank) we came to know that it is a u201CItem Textu201D with u201CTable u2013 REGUEu201D /  u201CField u2013 SGTXTu201D.
    In BSEG (SGTXT field) as well as BSIK (SGTXT field) we are getting the Invoice document with the text maintained in it via MIRO or FI invoice.
    But while processing the invoices through Tcode - F110, in the layout of Edit Proposal (Table - REGUE / Field - SGTXT) we are not getting the u201CText fieldu201D but getting the other data such as Doc. No.( Table - REGUE / Field - BELNR), Fiscal Year (Table - REGUE / Field - GJAHR) etc for processing the proposal which is getting shown in BSEG as well as BSIK.
    In case of manual payment (F-53) we can input the text manually hence that will get updated in payment document but this thing is not possible with F110.
    Can anybody guide me on getting the ItemText (Not Doc. Header text) in FI payment document after F110 execution?
    Regards,
    Shridhar

    Hi Suresh,
    Thanks for the prompt reply. We will be obliged if you guide us in that respect since F110 is a Std. SAP code.
    Have you refer OSS before arriving at the conclusion of developing ABAP program since the Item Text is a std. field of Std. Tcode - F110. Same should had been get updated while making the payment in reference to the Invoice which haves item text in it ?
    Regards
    Shridhar
    FICO

  • Backened documents are not getting updated in Classic Scenario

    Hi,
    We are using SRM 7.0 version and we are working on classic scenario where the shopping cart - RFX - Contract are created in SRM and the PO - GR - IR are created in ECC. The blackened documents which are created in ECC PO - GR and IR these documents are not getting updated in SRM system.
    Is there any business functions to be activated.

    Hi Sunil,
    You manually run report ""BBP_GET_STATUS_2" after PO is created in MM. Then check if the follow-on-docs are updated in SC.
    If it is working fine after you manully run report, you will have to properly set time to run this report automatically.
    Best Regards,
    Anu
    Edited by: Anuradha UG on May 18, 2010 8:09 PM

  • Delivery Header Text not getting updated using Inbound DELVRY03 IDOC

    Hello,
    I am using inbound iDOC delivery DELVRY03. I am attempting to populate a text field with segment E1TXTH8, but I can not get it to work properly. The iDOC gets posted successfully in status 53, but text does not get updated.
    Does anyone know what the values for field FUNCTION are supposed to be?
    Any other suggestions?

    Following are the values
    E1TXTH8
    Function             001
    Text Object          VBBK
    Text Name            0080000210
    Text ID              Z112
    Language             EN
    Text format
    LANGUA_ISO           EN
    Item
    E1TXTP8                     * 12343468912334445424
    E1TXTP8                     * 12343468912334445423
    E1TXTP8                     * 12343468912334445422

  • Quantity field not getting update in PCA document for Goods Receipt

    We have the Purchase Account activated for our company code.
    For movement type 101 (Goods Receipt), I am getting the quantity field updated for GR/IR account and Stock Account (B/S item).
    But the quantity field is not getting updated for the "Purchase Account" and the "other offsetting PL A/C).
    Please advice whether I am missing something.
    Regards
    B.Mohanty

    Hi Aravind,
    Check SAP notes  1063198 and 1117587.
    FAGLL03 display quantity which is updated in FAGLFLEXA, BSEG is not
    relevant in this case. This is clearly explained in the note 1063198.
    The quantity posts through to FI on the 'goods receipt' items, but not on the
    'invoice receipt' items.
    In the FI normally the Quantity is not a 'real' important field, as it
    is more related to the MM area.
    But in the old 'Profit Center Accounting' and the old' Special Ledger'
    the field has been important.
    As the same logic of these areas to 'store' the Quantity is also used
    in the NewG/L the field get only filled in the line, where it make
    'sense' from our point of view, because only in the 'goods receipt'
    lines a 'real' Quantity is posted to the system.
    So as before in the PCA and SL, now also in the NewG/L the Quantity is
    filled in the correct and important lines and postings.
    In the BSEG ('old document segment table') the field is filled 'just'
    as it is send to the FI, but this is not completely correct from the
    business point of view.
    This can also lead to issues with the reporting and summation to this
    field. So with creating the new logic in the NewG/L the 'correct'
    standard of the 'writing' for the Quantity has also been taken over.
    So in the end, the update and display is correct according  SAP standard behavior.
    Actually,Quantities within G/L are never reliable,
    because the purpose of FI is a view on the data according to amount
    but not according to quantity.
    In the FI normally the Quantity is not a 'real' important field, as it
    is more related to the MM area.
    I hope I could be of assistance.
    Regards,
    Fernando

  • XABLN not getting updated in delivery during PGI by IDoc

    Hi Experts,
    Please help with scenario below
    I am posting an IDoc with XABLN (GR/GI Slip number) in the EDL20 segment
    The IDoc posts successfully and performs GI too (the delivery is an utbound delivery and am doing a PGI using this inbound IDOc from customer)
    But the GR/GI field is not getting updated in the Outbound delivery (this is for Italy, so GR/GI is required by business)
    any inputs will be greatly appreciated,
    Thanks very much
    Usman
    Edited by: Usman Basha on Jul 30, 2009 11:16 PM

    Found this by my ABAPer (myself ).
    I thought there must be a functinal solution for this one
    but got to change some code to make it happen.
    if anyone else is looking for the same:
    go to user exit  ZXTRKU03 and export the XABLN number to a memory id, will need this in the "USER exit save"
    then go to SD user exit MV50AFZ1 and retreive it and update XLIKP-XABLN and read the XABLN number from memory and modify this internal table.
    Thanks
    Usman

  • Backend document number not getting updated

    Hi ,
    Shopping cart is not getting updated with backend document number in follow on document section
    I am getting graphic display but no backned doc number
    I am on EBP 5.0
    Has anybody come acroos such issue any solution?
    Thanks in advance
    Diwakar

    HI Diwakar,
    Check in table BBP_DOCUMENT_TAB if any follown on document available wrt to SC...
    also you can do one thing...open SC in BBP_PD transaction...select line item & check for  Follow-On Document Object ID in Backend in table BBP_PDBEI...
    also meka esute that this document is created  in R/3..if follow on document is available in R/3 then it's a problem with BBP_GET_STATUS_2..
    Let me know ur findings..
    BR
    Bharat M

  • File does not get updated in document library

    I'm encountering weird behavior which I hope you can suggest on how to further troubleshoot. There are some document libraries that whenever I upload a new version of a file, the file's contents do not get updated (when I open the file after check-in,
    it still shows the old content) but the Modified By and Modified fields get updated.
    Remote Blob Storage is turned on for our site; could it be RBS-related? However, only a few document libraries exhibit this kind of behavior.

    Hi Kev,
    There's no particular pattern in the differences between libraries exhibiting the behavior and those that do not. If it matters, the Style Library is experiencing this kind of behavior. We also have a document library renamed to "Images" (its URL
    is /Images) that also exhibits this behavior. I also tried disabling and enabling versioning, still the same behavior. I even tried deleting the file and reuploading with the same file name, still the same behavior!

Maybe you are looking for

  • Problem to execute a Callable Object (SAP R/3 transaction)  in UWL

    Hi, I have developed a callable object which calls a SAP R/3 transaction. It runs perfectly in design time , when I run it in UWL I am getting the Error “"An error occurred while displaying the callable object, which uses the page builder. Check that

  • Product problem in CRM after system copy

    Hi, W made CRM system copy - created test system from production system. after this we have problems with replication of sales orders from test R/3 to test CRM. Product IDs were not replicated, but the rest of order yes. I think this is problem with

  • Fetch from cursor variable

    Hello, I have a procedure, which specification is something like that: procedure proc1 (pcursor OUT SYS_REFCURSOR, parg1 IN NUMBER, parg2 IN NUMBER, ...);Inside the body of proc1 I have OPEN pcursor FOR   SELECT column1,               column2,       

  • .mkv file does not have sound in Quicktime

    I downloaded Perian and a Flac decoder component and I can't get any sound from an HD video I downloaded. Quicktime says I need additional software to play this file. DivX says i need a direct show decoder to play the file. I cannot seem to find anyt

  • Printer loses wireless connection when it goes to sleep?

    My printer loses wireless connection to my router when it goes to sleep and I have to input the WEP key again.  As long as the printer is awake it works fine.  The wireless light remains on. Printer is HP Officejet Pro 8500A Plus and the router is a