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

Similar Messages

  • 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!!

  • 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.

  • 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

  • Line item number in DMEE structure

    Hello Gurus!
    I'm configuring DMEE structure for payment medium file. One of the requirements for this payment medium is the field with line item number of the payment order. This should be the field with incremental value starting from 1 till n, where n equals the number of payment orders in the file.
    I've reviewed the data retrieved by the following structures FPAYH, FPAYP as well as FPAYHX using debugger but could not find anything useful for this purpose. Could you suggest, how to solve this issue? Is there any standard field that I've overllooked or should I create some function module?
    Thank you in advance!

    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

  • PO Number and Line Item Number for Invoice Plan Number

    Hi Experts,
    Can somebody please guide me how to fetch the PO Number and respective PO Line Item Number for an Invoice Plan (FPLNR).
    In FPLA Table, PO number is available but line item number is not available.  If a PO is having multiple line items, different line items will have different Invoice Plan numbers.
    Thanks in Advance.
    Radha Krishna Madineedi

    Hi Ramesh,
    I have got the answer after posting this thread.  We can get the PO Number and the Line Item from EKPO Table itself by passing the FPLNR.
    Anyway,  thanks for your reply.
    Regards
    Radha Krishna.

  • 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.

Maybe you are looking for

  • Time Capsule vs Lacie Wireless Space vs ?

    Hi folks, I'm a new proud owner of a 11.6" Macbook Air. I'd like to migrate to it fully from my 17" Macbook Pro, but to do so, I'd like to migrate my music to a NAS, ideally one that could also perform Time Machine backups. I have a wifi-only setup a

  • Where to find correct russian messages for 8.1.7?

    In 8.1.7.0.1 tarball, there are incorrect russian messages (*.msb) for ALL products - .msb file header tells that it is cl8mswin1251 charset, but actually file uses cl8iso8859p5 charset. As a result, ALL russian messages are unreadable. I tried to pa

  • Help a newbie embed a video

    Hey I'm doing a college project and we've not been taught all that much about using Flash yet and I won't be in college for another week. I want to embed some videos into a project I'm making using Flash 8 but it needs the videos hosted on a web serv

  • Reg Bulk Load of Data

    Hi all, In company visibility setting in company administration, there is an option of checking "Allow Bulk Load of Data by Customer care,.. in documents i learned that it its used to allow customer care to bulk load the data to siebel crm on demand,

  • Using external keyboard w 10 key buttons

    I've got an A1048 keyboard connected to my MacBook Pro (it's got all my Final Cut Pro stickers on it) and the 10 key pad doesn't work. It seems like it's acting as a function key or something. When I start typing on it (out of habit), I can't enter t