Incompletely Log

Hi,
I Maintain Copy Control
Goto VTAA - Copy control sales document to sales document
Copy RE - OR sales Order Document
Rename To ZOR6 - ZOR4
then...
I'm trying to create a sales order (Doc type - ZOR6) with reference to another sales document (Doc type -ZOR4)
that sales order's price is zero , because this sales order is one of  "swtich goods".  
the error log about that "net price" is incompletely.
how can i do??
PLZ let me know what you think in detail.
Thanks,
ML
Edited by: ML0324 on May 31, 2010 8:16 AM

>May i got the wrong copy document type ?
>Maybe i shouldn't to copy that document type RE(Returns) - OR(standard order) and rename to ZOR6 - ZOR4
There is no error in copying reference to create a Z sales doc type
The error is with reference to Incompletion log maintain with Item Category you are using for these doc.
Say, you are using I Cat TAN, which has a standard Incompletion procedure attached to it, 20 - Standard Item.
For this, you can maintain a Z I Cat with  incompletetion procedure 26-Free of Charge Serv.
or you can create a Z Incompletetion log based on your business process requirement by using tcode. OVA2.
And determine incompletetion procedure by using tcode. VUP2
For your information, you can find assigned Incompletion Proced. in Incompletion Proced. under Transaction flow section of Sales Doc Type and Item Category Type.
> why the exchange goods order need reference with price???
That is purely on your business process requirement.
In my opinion for reference purpose you should have price, but statistical.
Thanks & Regards
JP

Similar Messages

  • Incompletion log Field VBAP POSEX is not defind in incompltion procedure ZA

    Hi Friends,
    Need some help on this issue.
    We have some orders created in production, and when ever we go to VA02-> enter-> it pops up with the below error  message." Field VBAP POSEX is not defined in incompletion procedure ZA ".
    I already checked the incompletion procuredue and the field VBAP-POSEX (Purchase order item) was not at all defiend.
    It gives the incompletion log for only certain line items in the sales order and not for all. There are already few items delivered and we cannot reject the order to create a new one.
    I reveiwed this note "1497255 - Incompletion for PO item number (vbap-posex)" but it states it is for specifically for intercompnay orders.
    Our case is standard trade order. It woud be really great anyone has come across the same situation so that i can seek for help..
    Thank you so much!!
    Best Regards,
    Ram

    Hi Lakshmipathi,
    Firstly, thanks for the response.
    Yes.. I did checked... the field VBAP-POSEX was not maintained at item level though.
    The same item in other order does not have this problem and it is still open.
    This is specific to only very few orders, namely 4 or 5 orders but not with others.
    Moreover, these materils  are widely used among other company codes or sales org but no issues what so ever.
    This one appears to be a peculiar case. Thanks for your time and suggestions for looking it over.
    Thank you..
    Best Regards,
    Ram

  • Function module to add record into incompletion log of creating sale order

    Hi SD Experts,
    Do you know any function module / class  to add record a into incompletion log procedure of creating / changing sale order process? We can do it through configuration OVA2 but I need to add more condition before adding to this table.
    Thanks,
    Duy

    Hi,
    Refer to The SDN Post : [user exit to update the incompletion log in sales order for pricing error |Re: user exit to update the incompletion log in sales order for pricing error]. 
    Limitation : While creating Sales order, this works only for document type with external number range as the code required for updating XVBUV require Sales Order Number.
    Regards
    Vinod

  • Incompletion Log V50UC  EXCTR inconsistency at Delivery header and Item lev

    Hello Experts
    Incompletion Log V50UC  EXCTR inconsistency at Delivery header and Item lev
    This fields and structure is defined both at header and Item Incompletion procedure .
    But at Header level , the field is getting removed , but not at Item level
    V50UC- EXCTR.
    Can you let me know what to do about this inconsistency / any SAP Note etc .
    REgards
    Rohit

    Hello
    This Incompletion log is related to Foreign Trade.
    Check maintain required foreign trade data at Item
    or If foreign trade is not active for your this business process..Check your config for Incompletion procedure for foreign trade by use TCode VI29.
    I hope this suffice your requirment.
    Thanks & Regards
    JP

  • Foreign Trade Data Incompletion Log

    If a billing document is missing foreign trade data required for the incompletion procedure should this prevent the posting to accounting?
    Or is the incompleted data only required for intrastat reporting?
    Thanks
    Caroline Tubby

    Hi tubby
    Go to VF02->item data->foreign trade tab . there click on incompletion log icon whatever data comes fill those data  and next go to header data->foreign trade data tab ,there click on incompletion log icon whatever data comes fill those data and then save the billing document and then forward it to FI
    Regards
    Srinath

  • User exit to update the incompletion log in sales order for pricing error

    Hi experts,
    I have to check the some mandotory pricing conditions in sales order, if that conditions are not exist in sales order then i need to show the information message as well as i need to update it in incompletion log of sales order. (incopletion log we can see on menu bar 'EDIT' or ctrl+F8 on main screen of VA01). So that user can save the sales order but it will be in incomplete status.
    I have completed it upto showing the information message using user exit 'MV45AFZZ', but after this i don't know how to update it in incompletion log of sales order for pricing. I tried to update in tables VBUK-UVPRS, but i am not getting the desired result.
    Please anyone can tell me how to update it. In which user exit i can update the incompletion log.
    Thanks and Regards,
    Vicky.

    Hi Vinod,
    I am sending you my code please check it,
       if TKOMK-SPART = 10.
        if XKOMV is not INITIAL.
          clear v_JEXP.
        READ TABLE XKOMV with key kschl = 'JEXP'.
        if sy-subrc = 0.
          check XKOMV-kwert = 0.
          message i003(ZT) with 'Value should not be 0 for conditioin type JEXP'.
          v_JEXP = 'X'.
        else.
          message i003(ZT) with 'Maintain the mandatory Conditioin type JEXP'.
          v_JEXP = 'X'.
        endif.
        if v_JEXP = 'X'.
      XVBUV-MANDT = sy-mandt.
      XVBUV-POSNR = '000010'.
      XVBUV-TBNAM = 'VBAP'.
      XVBUV-FDNAM = 'PRSOK'.
      XVBUV-FEHGR = 20.
      XVBUV-STATG = '06'.
      XVBUV-FCODE = 'PKON'.
      XVBUV-SORTF = 9999.
      XVBUV-LFDNR = 0000.
      XVBUV-UPDKZ = 'I'.
      append XVBUV.
        endif.
    endif.
    endif.
    Please suggest something to solve this.
    Thanks and Regards,
    Vicky.

  • Sales BOM and Incompletion Log

    Hi SAP experts.
    We are on ECC 5.0. Wer are exploding sales BOM in sales orders. I have a requirement that if for certain reason a BOM fails to explode for a particular line item then that item should be go an incomletion log. I was able to select field VBAP-STKEY (BOM ORIGIN) in incompletion procedure at the item category level.
    However the problem i have with this is even if the BOM explodes the order is set to incomplete once I add VBAP-STKEY to the incompletion procedure. I find the VBAPSTKEY also gets a value of 5 in the table however the order is stil shown as incomplete. I am not sure if this is a bug.
    If it is not possible to control this via incompletion log is there a way to ensure that if a sales BOM does not explode in sales order the system should not create delivery for that line item.
    Any response will be highly appreciated.
    Thanks
    Praful

    Dear Praful
    You can try with this.
    Go to OVA2, block "Sales-Item" and double click on "Procedures".  Again block on "Standard Item" and double click on "Fields".  There maintain as follows:-
    Table::Fld name::::::::Description:::::::::Screen:::Status
    VBAP:::UEPOS:::::::Higher-level item:::POST::::::04
    thanks
    G. Lakshmipathi

  • Custom field in incompletion log

    Hi All,
    I have added a new custom field (custom field from VBAK) in VA31/VA32 Additional data A tab .
    My requirement is : This custom field should appear in the incompletion log ONLY based on some condition.
    So to add this custom field into incompletion log, configuration is done through
    SPRO->basic functions->Log of Incomplete items->Define incompleteness procedure .
    query:
    How to proceed further to handle the incompletion log conditionally .
    so that only for specific document type and only for specific sold-to-party this field should appear in incompletion log.
    Could you please help me if anyone have come across such scenario.
    Thank you.
    Regards,
    Sangita

    Sangita,
    You will not be able handle incompletion log conditionally ONLY just  by adding the required custom field in the Incompletion log procedure. Along with the right customization you also have to write the custom logic in the one of the MV45A* userexits populating a record with the sutom field in the runtime structure XVBUV.
    Hope this helps.
    Thanks
    Arjun

  • How to restrict inbound delivery creation by incomplete log

    Guru's
    I have a requirement of not to create an Inbound delivery if the filed in the "means of trans id " in the delivery header is 'BLANK".If i create an incomplete log for the field LIKP-TRAID (Warning message enabled) for Delivery header in transcation OVA2 .Now if i create an inbound delivery  with "means of trans id " BLANK .It is giving only warning message it is not stopping me from creating an Inbound delivery .
    Can you please let me know whether we can restrict creation of inbound delivery.
    Thanks

    Try through user exit,If system does not find the means of trans id then syem stops to crete inbound delivery.Chcek this user exit V50Q0001 with your ABAPer it may help you.

  • Incompletion log Profitability Segment at item level in the Sales Order

    Hello Sapians,
    We recently activated the "Sales Order value flow to COPA". When we create the Sales Orders the Profitability segment for the item is getting picked up automatically and have no issue in saving the Sales Order.
    But when we edit the Sales Order and then try to save it, Sales Order has incompletion log which is leading to Profitability segment in the item level.
    When I click the little box in Sales Order Item > Account Assignment tab> Profitability Segment forward arrow--> "continue" or "derivation" in the populated screen, then the Forward arrow in the profitability segment is deriving the characteristics, then system lets us to save the Sales order with out any incompletion log.
    I checked the OSS notes 114520, in this OSS note, my sitiuation is exactly first point but could not get any clue how to resolve automatically.
    Why it is happening only when we edit the Sales Order? How to update bulk of Sales Order automatically?
    Any inputs?
    Thank you.

    Hi
    Since you have activated the Sales order flow to COPA, any change in the sales order triggers a Prof Segment redetermination.... Thats why you are able to save it once you redetermine the Prof Segment....
    Ideally, if no Chars like Plant/Org Elements/etc are changed - It need not trigger the Prof Segment redetermination...
    Refer  Note 729381 - When is a profitability segment supposed to be determined?.... With ref to this note, raise an OSS msg to SAP and check if it is possible to avoid the redetermination of PSG as long as none of the relevant chars are changed in the sales order....
    There is a similar issue in MTO where by, even if you change the Header text of sales order, it triggers the Sales order cost estimate.... SAP provided a note to stop this... Note 1548608 & 1260868.... Your case is similar to this.... Raise an OSS to SAP and ask them if they can provide such a note for your case.... I feel, it should be possible for SAP to give this!
    br, Ajay M

  • Can text messages in the incompletion log be found in any table?

    We need to store and review the text messages found in the online incompletion log.  Does anyone know if these are stored in a table?  Or if they are always redetermined upon VA01 or VA02 transactions, does anyone know at what point in what program this happens if we need to build our own custom table to capture the messages?

    The incompletion log table is VBUV - Sales Document: Incompletion Log
    I think the table is filled in one of the following:
    > Function module - RV_CHECK_DOCUMENT_INPUT
    > Include - LV45FFUV: FORM FEHLER_BESTIMMEN
    I hope this helps.
    Gerard
    P.s. Also look for structure VBUV_TAB as I think XVBUV comes for here.
    Edited by: Gerard Magorrian on Oct 1, 2010 9:04 PM

  • Incompletion log in delivery for foreign trade data

    Hi all,
    I am doing export delivery and i want to put foreign trade date as in incompletion log.
    This log i want to do only for export document types (zex) which i have created separately.
    Delivery header > foreign trade / custom >geography >
    1. Export customs office
    2. Office of destination
    Delivery Item > Foreign trade/Custom > Origin / Destination >
    3. Country of origin
    4. Dispatch country
    I want to make those 4 field as mandatory while doing export order. But these fields are in the EIPO table which is not there in the delivery incompletion log.
    Can anyone please help me how to solve this issue.
    Thanks in advance,
    Babs

    Hi Babs,
    the foreign trade data can't be included into the incompletion log.
    You have to create both incompletion log in T.code VI29.
    Then you have to assign this logs to your country in VI49.
    In standart SAP it's not possible to make this only for one document typ, this checks will be done for all foreign trade data.
    Regards
    William

  • Function to return incompleteness log of Delivery

    Hello,
    We use the function BAPI_OUTB_DELIVERY_CREATE_SLS to automatically create deliveries for our mobile devices. On occasion, the log "Batches / valuation types not completely allocated" is reported for items with incomplete or no batch splits at posting. The problem isn't the materials because a new order with the same materials and customer can be created and posted without any errors. There are also no reports of this occurring when deliveries are created manually.
    Does anyone know why this (sometimes) happens when using function BAPI_OUTB_DELIVERY_CREATE_SLS? If no, is there a function which can return the incompleteness log of a given delivery, so we can refresh an item batch split if it fails?
    Nicholas
    Edited by: Nicholas Archer on Feb 6, 2012 4:06 PM

    Shiva,
    Thanks for your response. This note has already been implemented in out system (ECC 6.0, appl 600 level 018).
    Do you have any other suggestions?
    Nicholas

  • How do I add PO line item to incomplete log procedure

    Hi SD Experts,
    How do I add PO line item to incomplete log procedure for VA02? Is that possible through configuration and/or code? if it is done by code, what userexit or BAdI I need to implement?
    Thanks,
    Duy

    Hi Duy,
    You need to go to SD > Basic functions > log of incomplete items > define incomplete procedure > select group A (sales header) > procedures > select 11 (Sales order) > fields tab and add PO number incompletion fields as below:
    table---field namedescriptionscreen--status--warning
    VBKD---BSTKDPO number-KBES     -
    0----
    X
    Finally, you should assign your incompletion procedures to your sales doc. typ.
    I hope these will work.
    Regards,

  • Va42 item billing plan, incompletion log,T185-requested func FEBA not avail

    Va42 item billing plan, incompletion log,T185- error "requested func FEBA not available here"
    We have created new entries in the T185 table to enable the imcompletion log to go to the billing plan tab in the sales contract.  However, when I click on the green back arrow, I get  the above error.
    Can someone give me an idea of the cause of the error and if there is a how-to manual on creating new screens, new flow control, and debugging methods for the incompletion log?
    I am creating incompletion log entries for the billing plan in the sales contract at the item level. We have modified the special rules table RV45A_UV to add the additional check fields.
    Can I add additional  check tables to the TVUVF table?
    Here are the entries I created in T185:
    SAPMV45B,PFPL,FL,,,*,P0,PFPL,ENT1,T,0
    SAPMV45B,PFPL,K0,,,*,P0,PFPL,ENT1,T,0
    SAPMV45B,PFPL,P0,,,*,P0,PFPL,ENT1,T,0
    SAPMV45B,PFPL,PX,,,*,P0,PFPL,ENT1,T,0
    SAPMV45B,PFPL,U0,,,*,P0,PFPL,ENT1,T,1
    Thanks
    Paul

    sorry. tis may not be correct forum.

  • MV45AFZB - FORM USEREXIT_CHECK_VBAP USING US_DIALOG - incompletion log

    Hello,
    I'm struggling with a problem concerning the incompletion log after deleting a value in the named user exit.
    I check if the profit center has a certain value in the form  USEREXIT_CHECK_VBAP USING US_DIALOG. if this is the case, the system deletes the value. But my problem is that at this moment, the incompletion log is not updated. Do I have to update the table xvbuv manually with the new entry ? Or is there another way to update this ?
    Thanks in advance !

    That's not entirely true - it depends on the user, what changes on the line item, and what the criteria are for blanking out the value.  Removing the value would be the normal trigger if the field is in the item incompletion procedure but not necessarily if done via code.
    The incompletion check occurs in routine VBAP_PRUEFEN_ENDE and requires that something has changed in VBAP in order to be triggered.  If the routine has already been called and then you change a VBKD-based value on the item, such as the incoterms, then the incompletion check is skipped but the userexit_check_vbap call is still made afterwards.  In this scenario, if you click 'Save' after making the incoterms change, the profit center value gets wiped out and no incompletion is triggered unless you append the value back to the table (or make a subsequent check with RV_CHECK_DOCUMENT_INPUT).  I'm assuming this is why the poster asked the question.  Might be a bug, but SAP would probably tell you it's 'working as designed'...

Maybe you are looking for