Line item number change

i am creating delivery w/r to order, where once of my line item (line item-100 in order) is missing in delivery. and the item (line item-110 in order has taken the place of line item 100). i want to copy the same line item number from order to delivery, so if some item is missing then i can find it out line,, in this case line item 100 is missing in delivery but due to the fact that line item 110 as taken the place as 100 in delivery i am not able to find.
plz guide as how to maintain, the same line item number from order to delivery to billing

Hi,
You can maintain these settings in Copy Controls from Delivery to Order (VTLA), IN header Details, you have a Tab Control Data, in which you can check "Copy Item Number", this will copy the item number from the preceding document to the next document.
Try to replicate the same in your QAS and do update the same if it is helpful
Regards
Vamsi Javaji.

Similar Messages

  • CDPOS - Line Item Number

    Hi
    Table CDPOS gives the changes made onto a SO Line Item. But it has no infomormation on which Line Item Number.
    Still, the program RVSCD100 gives the Line Item Number for that change.
    I could not find out from where it picks the Line Item number!
    Could anybody help me how to find the Line Item Number for the records in CDPOS?
    Please help..
    Richard

    the field table key in CDPOS has  the concatenated key field value.
    If you are refering for vbap table:
    for example
    MANDANT    100
    OBJECTCLAS VERKBELEG
    OBJECTID   0000000001
    CHANGENR   0000028225
    TABNAME    VBAP
    TABKEY     1000000000001000010
    FNAME      NETPR
    Here table key
    client + sales order no + item no
    derive the item no from there

  • User Exit for ME52N with Purchase Requisition number & line item number

    Does anyone know which user exit I could use to get at the purchase requisition number and line item number when I am trying to change a PR.  I see various exits with im_req_item but when I code a popup in the include it is not appearing.  I am just not finding the right exit.

    You can use enhancement MEREQ001, function exit EXIT_SAPLMEREQ_005. This enhancement description gives impression that it can only be used if you have custom fields but it can be used even when you don't have custom fields.

  • Line Item Value change in MIRO Transaction

    I have one  requirement i.e as follows.
    <b>Line Item Value change in MIRO Transaction</b>
    After getting the items in table control of  the miro screen of a particular order.
    I have to clicked on edit own condition of selected item.
    then it will show another screen ( create invoice document item - conditions)which have the all condtions details like
    Fra1 , frb1 , sd%  ,  Penalty % , gross price , frieght charges etc.
    In this screen first time it is showing line item as
    in the miro intial screen i.e. if u click po item
    10 it will show 10 only.
    after  updating fra1  value , i came back to the main screen at that time it is asking that select the any one of three.
    after selecting manual selection its fra1 was changed.
    once again if i go to the same line item by clicking
    the edit own condition(13 column if u select all information in textbox whixh is above tablecontrol right corner) it is showing line item as 1 in screen ( create invoice document item - conditions) which  should be line item as 10. ( here i took line item as 10)
    Please clarify this, why it is showing
    first time as  a original line item and
    after updating it is showing like
    for line item 10 -
    1
                   20 -
    2
                  100 -
    10
                  110 -
    11.

    "...it does not work..." is probably the worst description of a problem you can imagine. As an application developer you should know that. Do you use firebug to see what happens once it "does not work"? Any better hints?
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    https://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Last line item gets changed to first line item for cs01

    HI experts,
               I have writen a BDC for Tcode cs01.
    I am facing a problem in that.If sucppose there are 4 line items,
    the first three line itmes are getting uploaded correctly but the kast line item gets changed to first line item.
    below is part of my code.
    DELETE ADJACENT DUPLICATES FROM T_MAT COMPARING MATNR.
    SORT T_MAT BY MATNR. "HEADER DATA
    SORT T_BOM BY MATNR1. "ITEM DATA
    *CLEAR : COUNTER, ITEM_NO.
    LOOP AT T_MAT INTO W_MAT.
      REFRESH GT_BDCDATA.
      CLEAR   GW_BDCDATA.
    perform bdc_dynpro      using 'SAPLCSDI' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29N-STLAN'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RC29N-MATNR' W_MAT-MATNR.
                                 'lejn44001'.
    perform bdc_field       using 'RC29N-WERKS' W_MAT-PLANT.
                                 '4600'.
    perform bdc_field       using 'RC29N-STLAN' W_MAT-BOM_USAGE.
                                 '1'.
    *perform bdc_field       using 'RC29N-DATUV'
                                 '22.06.2010'.
    perform bdc_dynpro      using 'SAPLCSDI' '0110'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RC29K-BMENG'
                                  '1'.
    perform bdc_field       using 'RC29K-STLST'
                                  '1'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29K-EXSTL'.
    perform bdc_dynpro      using 'SAPLCSDI' '0111'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29K-LABOR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    LOOP AT T_BOM INTO W_BOM WHERE MATNR1 = W_MAT-MATNR.
      cnt = cnt + 1.
      CONCATENATE  '0' CNT INTO VAR.
       ADD 1 TO COUNTER.
       ITEM_NO = 10 * COUNTER.
       OVERLAY ITEM_NO WITH '0000'.
       W_BOM-ITM_NO = ITEM_NO.
    perform bdc_dynpro      using 'SAPLCSDI' '0140'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POSTP(03)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    CONCATENATE 'RC29P-IDNRK(' var ')' INTO new_mark.
    PERFORM bdc_field USING new_mark W_BOM-BOM_COMP.
    clear new_mark.
    CONCATENATE 'RC29P-MENGE(' var ')' INTO new_mark.
    PERFORM bdc_field USING new_mark W_BOM-QTY.
    clear new_mark.
    CONCATENATE 'RC29P-POSTP(' VAR ')' INTO NEW_MARK.
    perform bdc_field USING new_mark W_BOM-ITM_CAT.
    clear new_mark.
    clear VAR.
      ENDLOOP.
    loop at T_BOM INTO W_BOM WHERE MATNR1 = W_MAT-MATNR.
    perform bdc_dynpro      using 'SAPLCSDI' '0130'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POSNR'.
    perform bdc_field       using 'RC29P-POSNR' V_CNT.
                                 '0010'.
    perform bdc_field       using 'RC29P-IDNRK' W_BOM-BOM_COMP.
                                 'PURCHASECOST'.
    perform bdc_field       using 'RC29P-MENGE' W_BOM-QTY.
                                 '20'.
    perform bdc_field       using 'RC29P-MEINS'
                                  'M'.
    perform bdc_dynpro      using 'SAPLCSDI' '0131'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RC29P-POTX1'.
    perform bdc_field       using 'RC29P-SANKA'
                                  'X'.
    V_CNT = V_CNT + 10.
    ENDLOOP.
    CLEAR V_CNT.
      perform screen_data. " IS ALL ABOUT CALLING TRANSACTION......
      ENDLOOP.
    following is The input file format m providing.
    Material     Plant     BOM usage     Item No     Item Cat     BOM component     QUANTITY
    WRJN46106     4600     1     10     z     PURCHASECOST     10
    WRJN46106     4600     1     20     z     SOURCINGCOST     15
    WRJN46106     4600     1     30     z     INVRESERVE     12
    WRJN46106     4600     1     40     Z     INVRESERVE1     20
    in this the first 3 line items are coming correctly but the 4th one gets changed to
    first line item.
    e.g INVRESERVE1 changes to purchasecost.
    plz help.
    Thanks n regards,
    Ashmita singh.

    Hi Suneel,
    I hardly can't believe that. There must be an mistake by your own in the smartform itself. Would you please share some screens or better, the smartform-XML itself. You can pass out everything else and just share the table and a dataset to try this.
    I'm pretty sure that there is something wrong with the settings or even the loop itself. I never faced a problem like that or even heared about such things.
    I would love to have a look inside.
    Before you share it, create a new one with just the table inside and try it with the same data. Perhaps it is just of to much folders or something like that, so the generating comes in trouble.
    Regards
    Florian

  • Line item number per invoice

    Hi Gurus,
    i need to display the line item number in the report as per the FB03 tcode per a document
    i have a query on a multi provider which includes 0FI_AP_4(FIAP) and 0FI_TX_4(FI TAX) cubes
    iam not getting the correct lineitem value as per FB03 tcode
    how to get this value in the report
    Please provide inputs
    Thank you

    Hi,
    0FI_GL_4 extractor pulls data from BSEG table as well as FB03 does.
    Check if the data from this extractor suits your requirement.
    Regards,
    Tiago.

  • BAPI_SALESORDER_CREATEFROMDAT2 Purchase order line item number

    Hi Freinds,
    I have small issue using the function module "BAPI_SALESORDER_CREATEFROMDAT2" , it is creating incomplete sales orders when the Saleorder line item number and POline item number are different.
    Example:
    If i assign the same value like "000010" for ptb_items-itm_number,ptb_items-po_itm_no it works fine and sales order doesn't have any incomplete log.
    but when i have different values like "000010" for   ptb_items-itm_number and "000123" for ptb_items-po_itm_no. both the cases all other information is same.
    Could anybody helps me to fix this problem so that i can avoid creating incomplete sales orders.
    Thanks for the quick reply and help.
    Regards,
    Praveen

    Hello Praveen
    The items structure BAPISDITM has a field <b>PO_ITM_NO</b> (Item Number of the Underlying Purchase Order) which most likely links the two numbers together.
    Regards
       Uwe

  • Purchase requistion number and line item number linkage with work order opr

    Hello,
    I want to know what is the link between Purchase requisition number along with its line item number with work order operation number.
    For the non stock component assign to Work order operation ( say operation 10) the PR get generated for that component which assign to that operation .
    in which table we can find that PR as input and output as Work order number along with its operation .
    In AFVC table if we put PR as input then it does not show any entry for that PR number?
    Regards
    Vaibhav

    HI Vaibhav,
    If you have the Work Order Number AUFNR, then you can get AUFPL from AFKO.
    Then Pass AUFPL to AFVC table to get BANFN(Purchase requisition number) and BNFPO(Item number of the purchase requisition in the order).
    Regards,
    Ravi

  • Line item number and ledger item number posted differently

    Hi Friends ,
      I have a BAPI for posting the documents in SAP from another system.This BAPI is using the standard BAPI -  'BAPI_ACC_DOCUMENT_POST' to post the documents.But when I post the document using this BAPI the line item number and ledger item number in the document are posted differently. ie . for line item no 1 ledger item is 24 .But when I am posting it directly it is same ie for line item no 1 ledger item no is also 1.Lot of other programs in our R/3 system is dependent in this logic.What could be the parameters in BAPI that could affect line item and ledager item ? Can anybody help me in finding out the reason for this ?
    Thanks in advance ,
    Joby

    Hi ,
    Anybody can help me on this issue ?
    Thanks in advance ,
    Joby

  • GR Doc# and GR Line Item Number

    Hi All,
    We have custom defined infocube actually WM-stocks.Now our requirement is to add GR Number and GR line Item Number. can be these be added to Infocube or should we go for ODS? any help from experts?
    Data has been loaded from generic datasource which is based on LQUA table.
    regards

    Hi,
    We implemented just the opposite:
    A cube for line items, an ODS for header data which didn't went to the cube (I mean those data that cannot be calculated by summing up item data).
    If we need summary data from ODS, we use RRI.
    Everything depends on a level of details you need. In our case we needed analysis on item data.
    Best regards,
    Eugene
    Message was edited by: Eugene Khusainov

  • Hi,How to trace  line item number in SHC

    Hi friends,
    I would like to know from where this line item number in SHC comes?
    Wether we need to do any settings or it is system generated?
    In my case this is jumping like if one item in SHC is having line item number 1 then next one is coming like 20 ?....so its a strange......
    Regards,
    Navneet

    Hi
    <u>SPRO Path</u>
    Supplier Relationship Management -> SRM Server -> Cross-Application Basic Settings -> Number ranges -> Define number ranges for shopping cart and follow-on documents
    <u>In SPRO Setting, you define number range settings for shopping cart, etc.. using SNUM / BBNU transactions.</u>
    Technically speaking, there is a field NUMBER_INT inside the BADI Standard SRM Structure, which is called at run-time to create a number (Satrting with 10, then 20, then 30, and similarly onwards... ). [Similar to the line item numbers, what are created in R/3 system Purchase order number, Sales order number transactions]. Incase you implement BBP_DOC_CHANGE_BADI, you can find the detailed numbers in every line item..
    Hope this will help.
    Do let me know.
    Regards
    - Atul

  • UDF for Line item number

    Hi All,
    Currently i'm working on a EDI2JDBC scenario. we have a field called LINE_ITEM_NUMBER at the target side. The incoming EDI signal doesn't contain the line item number and at the target side for every line item we need a create line item number. Lets suppose the incoming signals contains 3 line item number then at target side the value for LINE_ITEM_NUMBER should be 1,2 and 3. Can i achieve this functionality with any standard function or do i need to write an UDF? Can anyone provide the code for UDF?
    Your hekp is highly appreciated.
    Regards
    Faisal.

    Hi Faisal,
    The Below mapping will work for your requirement..
    Source(LineItemNumber)--->Index(Initial Value = 1, Increment = 1 )------\
                                                                             then
    Source(LineItemNumber)  ---->  Exisists      ----->  If                     ------>Target(LineItemNumber)
                                                                             else
                                                      Constant[0] ------------/
    If Input is
    <Source>
       <Line>aaaa</Line>
       <Line>bbbb</Line>
       <Line>cccc</Line>
    </Source>
    Your Target will be Like This
    <Target>
       <Line>1</Line>
       <Line>2</Line>
       <Line>3</Line>
    </Target>
    I have Tested That Mapping.. Working as shown below.
    Let me know For any clarifications..
    Regards
    Jyothi A.

  • Include line item number in printout of PO

    Hello all,
    I would like to verify as to how I can include the line item number of the specified materials on printout of a PO?
    What needs to be done?
    Thanks.

    Patvin,
    To include line item number in PO printout, you can take the daata from this:
    table: EKPO
    field: EBELP
    Discuss this requirement to your ABAPer.
    reward if useful

  • Clear line item number

    hi experts,
    My requirement is to clear line item number(zeili) so that it can't be seen in the form output.
    but after clearing zeili in print program , it is showing '000' in print o/p.
    I don't want to show anything in print o/p of the form.
    Plz tell me how to remove this '000' from the output.
    Replies will be rewarded.
    Thanks in advance.
    SM

    Hi,
    Use &itab-fld(I)& which suppresses the initial value of the field. Chk out, it may work.
    Regards,
    Narendra.
    Reward points if helpful!!

  • Sales Order-Line Item Number Field not Appearing

    Dear All
    I have an issue in which, in sales order, the field where I enter material, I am not able to see the line item number.
    For example; if the Material X is entered, I cannot see the item number as 10.
    Can I know what might be the problem.
    Thanks and Regards
    Adithya

    Hi,
    Check item category determination (VOV4) whether the item category is determine with the combination of  material item
    category group,untill the material being read by the system it will not give the line item no,and also check at VOV8 for your doc
    type Item no.increment Ex: 10, is maintained or not ,if not maintain and try.
    Regards
    Ram

Maybe you are looking for

  • Using a second router with airport extreme

    I have hooked up a second router to my airport extreme for the purpose of providing more ethernet ports. When I do this I disable the wifi on the second router and place it in a bridge mode to let the airport do DHCP. However none of the PC's in the

  • B2B adapter is not polling any data from EDI X12 810 ECS file

    Hi All, I am new to Oracle B2B. I am using Jdev 11.1.1.6 Oracle Editor :  7.0.5.4016 Document Protocol : EDI_X12 Document type : 810 (Invoice ) Version: 4010 Weblogic server :11.1.1.6.0 Requirement is : i had an EDI file and i need to translate the E

  • SSL error happened while calling a web service on a managed oc4j instance

    While calling a webservice, I got SSL Error: Unrecognized SSL message, plaintext connection? The webservice is deployed on a managed oc4j which is created on a 10.1.3.4 oracle application server. We have SSL certificate installed for http server. Any

  • Can my Mackbook play Blu-ray discs?

    Recently I bought a LG Blu-ray drive, but all my blu-ray discs did not seem to work even with Blu-ray drive. I tried Powerdvd,and it can not be compatible on my Mac OS. Is there any good Mac Blu-ray Player?

  • Wifi store help

    I purchased the Police remastered album and it said it would download a digtial booklet when I synced my Iphone. Problem is it never did. Am I missing something?