Data/field line item / PO item level

Hello,
I would like to know which field I could use at SC item level to store a reference number for each line item.
This reference number should also be transfered to the PO line item in the backend.
Regards,
Lina
Edited by: lina shaiek on Nov 7, 2011 10:50 AM

Hi  Sumith,
Good Day,
NetValue will be Dynamic Calculation. you will not get Old Netvalue directly from the table but you have workaround.
In table CDHDR and CDPOS those are change history tables.
in that you will have Changes history related to SalesOrder.
We have to pass
Objectclas = VERKBELEG
Objectid = Sales Order Number then
you can pass value into CDPOS
Objectclas = VERKBELEG
Objectid = Sales Order Number then
changenr = CDHDR-CHANGENR
then find changes relevent to Netvalue and obtain the Old Net value.
All the best.
Best Regards,
KSK

Similar Messages

  • Billing date at line item level in a sales order

    HI!
    Can anyone let me know the significance of billing date being present at the line item level in a sales order?
    And why does it get changed as per the Requested delivery date if the Prop. Pricing date in the maintanenece of sales doc type is set  as 'A'?
    Can it be different for different line items?

    Hello Asha,
    Can anyone let me know the significance of billing date being
    present at the line item level in a sales order ???
    The comprehensive information is available at SAP technical help(F1) for the "BILLING DATE" field at Sales Order line item level...Before raising these type of questions, i would urge to  conduct initiate analysis and then post at SDN forum if you are unable to find out answers...For your quick reference, i have extracted the same description for Billing date from SAP techincal help (F1) and pasted below.
    Billing date for billing index and printout
    +The date on which the billing is processed and booked for
    accounting purposes.+
    Use
    +You can use the billing date as one of the selection criteria
    when you process billing documents collectively.+
    Procedure
    +If invoice dates are defined for the customer, the system proposes
    the billing date from the invoice date calendar. If no invoice dates are
    agreed, then the actual goods issue date is formed on the basis of
    delivery related billing. In order related billing, the billing date of the
    order forms the basis of the billing date.+
    +If you are billing services, the system proposes the date of services
    rendered. You can change the date manually in the sales document.+
    +If you are using a billing plan to bill a project, the system can propose
    billing dates for the billing plan on the basis of planned or actual dates
    in the corresponding milestone.+
    +In a billing plan for a maintenance or rental contract, you can specify rules
    by which the system determines billing dates on the basis of other dates in the contract.+
    Regards,
    Sarthak

  • Data Extraction (Line Item Level) FI/CO

    Hi expert,
    Exp:the datasource 0FI_GL_4 is Data Extraction (Line Item Level) FI/CO.
    From sap help doc i kown that delta records are directly transferred to BW. No record is written to the BW delta queue.
    But i run rsa7 in ecc, the delta queue list had the 0FI_GL_4,moreover,it had many records in it,then i run delta in bw side the
    record is cleared
    I was confused about it,why the delta queue had many records in it?

    Hi James:
    Please refer to the presentation below:
    "Data Extraction (Line Item Level) FI/CO"
    https://websmp102.sap-ag.de/~sapidb/011000358700007881242002
    Regards,
    Francisco Milán.
    PS. Since the document is available on the SAP Marketplace you'll need an "S" account.

  • Same field on Header and Item level with same data

    Hi Experts,
    I want enter value in WEB UI Header level Screen filed and the same value I have to see in same filed which has added to item level WEB UI Screen. Is Same field on Header and Item with data copying functionality supports by the CRM WEB UI?
    Thanks in Advance
    Edited by: sakthidharan acc on Jan 31, 2012 10:25 AM

    Hi Leon,
    can you please explain me how can i read the value of parent entity and make it appear at the item level?
    Please help me in this regard
    Its urgent.
    Iam the beginner , so that is the reason iam asking many questions , please help me
    Thanks and Regards,
    Sak

  • Modify screen field layout in MIRO - Item level

    Dear All,
    I would like to know if I can change the field sequence in MIRO transaction at the item level. I want to move the Purchase Order number field next to the item field in MIRO and this needs to be premanent whenever I create a new invoice in MIRO.
    This sort of a change is possible in ME21N by creating a new variant through the configuration icon in ME21/22 or 23n at the line item level. I want to know if a similar setting is possible in MIRO, if so please guide me.
    Thanks and Best Regards
    Badrinath Murali

    Hi,
    Have you tried to carry out the following steps?                                                
    1- Transaction OLMRLIST                                                                         
    2- Screenvariant        7_6310                                                                  
       Programm             SAPLMR1M                                                                
       Dynpro               6310                                                                    
    3- Click button 'With Processing'You get transaction MIRO                                                                               
    4- Enter the invoice date and click Enter-Button.                                               
    5- In screen 'Confirm Screen Entries' check the 'Adopt column reference'                        
    and 'Adopt column width'. Click 'Exit and Save'                                                 
    6- Enter 'Save'.                                                                               
    7- Check and activate the screen variants: Click the button 'Check' on                          
    the main screen of Transaction 'OLMRLIST'. Select the screen variants                           
    on coming screen and click 'Adjust and Save'                                                                               
    If after reviewing the above steps you are still having problems                                
    viewing both display variants in MIRO, please take a look at note                               
    372776.
    Best regards
    Erika

  • User Exit to make Payment Term field non editable in item level .

    Hi all,
    User wants to make the Payment Term field in sales order as non editable and  Payment terms is copied from Customer Master to Sales order.
    I use user exit MV45AFZZ (USEREXIT_FIELD_MODIFICATION) to make Payment Term field non editable in header level.
    I am not able to do it in item level. Pl help to to make Payment Term field non editable in item level.
    Thanks,
    sunil

    Hi,
    You can try implicit enhancement in the include MV45AF0T_TCTRL_U_ERF_AUFTRAG_I
    use below code.
    DATA: WA_COLS LIKE LINE OF TCTRL_U_ERF_AUFTRAG-COLS.
       LOOP AT   TCTRL_U_ERF_AUFTRAG-COLS INTO WA_COLS.
       IF WA_COLS-SCREEN-NAME = 'VBAP-ZTERM'. " Check the field name
       WA_COLS-SCREEN-INPUT = 0.
       WA_COLS-SCREEN-OUTPUT = 1.
      MODIFY TCTRL_U_ERF_AUFTRAG-COLS FROM WA_COLS.
       ENDIF.
    ENDLOOP.
    It better to control it via a custom authorization object.
    put a authorization create a custom authorization object so that you can restrict it for a certain users.
    AUTHORITY-CHECK OBJECT 'ZTERM'
             ID 'ACTVT' FIELD '02'.
    IF SY-SUBRC NE 0.
       LOOP AT   TCTRL_U_ERF_AUFTRAG-COLS INTO WA_COLS.
    ENDLOOP.
    ENDIF.
    Regards
    Aromal

  • AR Transaction Data vs Line Item

    Hello,
    I have need to generate a report with some degree of detail and I am having an issue understanding the correlation between AR Transaction Data and Line Item.  In a report I would like to show sales for the period and AR balances and I need to be able to drill down on these (at Profit center level or Business Area Level both Characteristics have been added to the extractor and are being populated).
    How is Sales for Period derived in Transaction Data?  Can I create this same Key Figure at the Line Item Level?
    Any assistance is greatly appreciated.
    MK

    Sales are derived from the posting key used to post a AR document
    The posting key is either sales/turnover relevant or not
    As peopel use posting keys for all sorts of thingss- this is not the ideal solution to report Sales
    it also includes VAT
    ow ar eyou planning to add Profit Centre -?
    Conside the following document
    Dr Debtors £117.50
    Cr Reveneu Prfit centre 1  £50
    Cr reveneue Profit Centre 2  £50
    Cr VAT £17.50
    how are you going to get the profit centre onto the debtors postings?
    You can't... you can see the data in 0EC_PCA_4 or you can join Ar4 ODS to the GL ODS via an infoset

  • Fields in sales order item level for pricing

    01.02.2011
    Hi friends,
    I have a requirement wherein i need at least 3 additional fields at the item level in the Sales Order for pricing determination i.e i want this field to be used in the condition table. Since these fields should have list of values also, I find the fields Material group1, material group2 and material group3 ideal ones. I wont be using this field in the material master but inputting some data in these fields through development at the sales order level. How can i get these fields in the catalog?  Please suggest.
    Regards,
    Uday

    The following communication structures are relevant in pricing:
    KOMK (pricing communication header)
    KOMP (pricing communication item)
    KOMG (allowed fields for condition structures)
    For technical reasons, communication structure KOMG is used. It combines the fields from KOMK and KOMP that are relevant for pricing in the standard system and are offered in the field catalog of condition tables. If you want to use a new field in the field catalog, you must add the field to KOMP or KOMK in the following INCLUDES:
    header data in INCLUDE KOMKAZ in KOMK
    item data in INCLUDE KOMPAZ in KOMP
    When you use INCLUDES, the field is automatically added to KOMG and the field catalog.
    The routines for assigning values to the new fields in order processing are found in member MV45AFZZ. Use the following user exits:
    USEREXIT_PRICING_PREPARE_TKOMK (header fields)
    USEREXIT_PRICING_PREPARE_TKOMP (item fields)
    The routines for assigning values to the new fields in billing are found in member RV60AFZZ. Use the following user exits:
    USEREXIT_PRICING_PREPARE_TKOMK (header fields)
    USEREXIT_PRICING_PREPARE_TKOMP (item fields)
    Examples for using new fields in pricing
    Example 1
    In the first example, parts of a document field are to be used in pricing. You want to use the first three digits of the product hierarchy (PRODH) for pricing, for example. Proceed as follows:
    1. Check the data elements in the standard system.
    2. Since there is no such data element you have to create the new data element ZZPRODH1. Also create a domain with the length "3" and the data type "CHAR" for the new data element.
    Remember that new data fields must start with the letters "ZZ" or "YY", since SAP reserved these letters to protect them from being overwritten during a release upgrade.
    3. Check whether the product hierarchy (PRODH) is found at header or at item level.
    In table VBAP, document field PRODH is defined as an item field.
    4. Integrate the field name ZZPRODH in the communication structure KOMP using the INCLUDE KOMPAZ and allocate the data element PRODH to it.
    5. Activate the structure.
    6. Check in which table the field PRODH exists.
    The field is in table VBAP (sales document: item data).
    7. Assign a value to the new field in the FORM routines for sales order processing and billing using the appropriate user exits:
    In sales order processing the user exit is found in member MV45AFZZ. The complete statement is:
    FORM USEREXIT_PRICING_PREPARE_TKOMP.
    MOVE VBAP-PRODH(3) TO TKOMP-ZZPRODH.
    ENDFORM.
    The routines for assigning a value to the new fields in billing are found in member RV60AFZZ. The statement is as follows:
    FORM USEREXIT_PRICING_PREPARE_TKOMK
    MOVE XVBRP-PRODH(3) TO TKOMP-ZZPRODH.
    ENDFORM.

  • BAPI_SALESORDER_CHANGE Delivery Date at Line Item

    Hi Guys,
    We are trying to change the delivery date at the line item for a Sales Order using the date at the header.If we have a date change at the header,is there a way it can automatically change the date at the line item?can LOGIC_SWITCH field in the BAPI be used for this purpose.
    we dont want to populate any line items.can only by changing the date,the dates at line item be changed?
    thanks
    Raj

    Hi ,
    Please add Header date at scdedule lines Field "EDATU'.
    I think this will work.
    Header date will not copy to line items and this will effect the billing date only.
    Regards,
    Lanka

  • BTE 1650 LINE ITEM DISPLAY: Add to data per line - possible solution

    Hello,
    I would like to populate field payment order (Pymt.order) in custom transaction FBL5N
    I have read that it should be doable using BTE 1650 LINE ITEM DISPLAY: Add to data per line but I am not sure if 1650 is correct one and if its proper solution for this purpose.
    Could you please advice?
    Thank you in advance!
    Michal

    i have the same problem , i used BTE and the fields appear but without data . which table or code i will use to in FM to display data in transaction.
    thanks all for help

  • BAPI or FUNC, MOD. to Update Date Field in Item Detail Sub-Header In PO

    Hi All,
    I'm working with SAP IS-Retail. In a PO, at the Item Detail, Import Tab, there are 2 sub-tabs Verif.4 and Verif. 5. This fields which are EIPO-NACD4 and EIPO-NACD5. When a new X-factory is entered for PO, this dates are deleted. I'm required to write a program to feed these fields of the required dates.
    So basically, the user will run the program, input the PO no., the range of Line items they want to use the date for and lastly input the date he/she wants to use to populate the Verif. 4/5 date field.
    Is there any BAPI's or Function Modules I can use to export the values to the EIPO fields.
    Thanks.

    This issue is resolve.
    I foung a Function Module to use. The FM is
    "EXPIMP_POSTING"
    Thanks all.

  • KE33 report main data  and Line items in KE33 doesn't match

    < MODERATOR:  Message locked.  Please post this message in the [Controlling forum|SAP ERP Financials - Controlling;. >
    All,
    I have created COPA report (cost based COPA).  When I ran the report, I have 5 line items and a total row. 
    When selected one line's revenue column and hit goto - line item, it gives the line item details.  I see that the total in the line item details  is different from the report's line total. 
    Can some one help me please
    Also, I'm trying to reconcile the gl and copa blances.  When I ran the GL line item report it's based on company code currency and the KE24 report is in operating currency.  will it have any differences due to different currencies?
    thanks,
    Sri
    Edited by: Sri on Oct 9, 2008 2:33 AM

    Well, check if your COPA report is filtered by some characteristics. Ideally, both the balances should be the same... the COPA report always reads off the line items (or summarizaiton levels which inturn read line items), so I'll be surprised if its not the same.
    For the GL - COPA rec, is there a problem with running KE24 using Currency Type 10 (Company Code currency)?
    Cheers.

  • Batch quantity not deducting when FIRST date (for line item) is in future.

    Hi Folks,
                My requirement is when creating sales order for batch managed materials, if  i give any quantity with future date that is,
    if todays date is 02.07.2010 and if i create sales order..
    material    => mat1
    Quantity   => 20     
    Date   => 12.07.2010     (this is not required delivery date,this is first delivery date in schedule line for that item)
    Batch  => B1
    and initially if Batch B1 has quantity 100 ,after saving this sales order, the quantity must be 80.
    but its not deducting, for future dates ,thats why the same batch is showing quantity 100, next time
    when i m creating new sales order.where as it should show 80.
    where exactly the quantity deduction is carried out (include or PAI PBO modules).
    any hints.
    I appreciate your response.
    Thanks

    Hi Folks,
                My requirement is when creating sales order for batch managed materials, if  i give any quantity with future date that is,
    if todays date is 02.07.2010 and if i create sales order..
    material    => mat1
    Quantity   => 20     
    Date   => 12.07.2010     (this is not required delivery date,this is first delivery date in schedule line for that item)
    Batch  => B1
    and initially if Batch B1 has quantity 100 ,after saving this sales order, the quantity must be 80.
    but its not deducting, for future dates ,thats why the same batch is showing quantity 100, next time
    when i m creating new sales order.where as it should show 80.
    where exactly the quantity deduction is carried out (include or PAI PBO modules).
    any hints.
    I appreciate your response.
    Thanks

  • FM for Updating Installation date in Contracts + sales orders Item level

    Hi
    Plesae give any FM for Updating Installation date in Contracts + sales orders Item level for contracts tab.
    Thanks and Regards,
    Vishnuvardhan....

    Have used the billing transaction to set a Default Billing date at time of blling.

  • Due Date of Line Items

    Hello Experts,
    Is it necessary that the due date of line items in an invoice be the same as that of the invoice - In other words can the line items have different due dates ??
    All answers would be duly rewarded with points.
    Thanks,
    Nandita

    Dear,
    Yes, It's possible.
    In Brazil, for example, we have a lot of holiday.
    By a substitution rule we make sure that the accounting document has due date in an available banking day. We make the same in Saturday and Sunday.
    This substitution rule is created based on the factory calendar.
    I hope that helps.
    Thanks,
    Cássio Moreira
    Brazil.

Maybe you are looking for

  • Third Party Sales Order

    Dear Guru's In Third Party Business Process  the vendor deliver the goods directly to customer.How we came to know that Did  the customer received the stock from vendor to company ie system. could anybody explain me in this Regard. Thank you Acquire

  • Desktop Manager Hanging Up During Execution

    I installed Blackberry Desktop Manager version 6.034 on to a Dell Latitude E6520. The operating system is Windows 7 64-bit. The user has a Bold 9650. Several attempts to connect the phone to synchronize failed. Either with the phone connected or disc

  • Infor Records - Upload Tool

    Hello, I have successfully used the download tool for Info Records.  My question is once I have made the needed changes, what do I need to do to get the data to upload just as successfully? I made sure that the data was saved as a .csv file, and that

  • Expressions in XML

    Hello, Is it possible to put expressions in XML file between tags. For example, <name> Debilius + "878" <name/> or <name> Debilius + getting number from DB <name/> Thank you, Aleksej

  • Migrate function group from 4.6 to 6.0 ecc

    how can we migrate function group and modules from 4.6 to 6.0 ecc please reply