Very Important - PR00 Display at line item Level

Hii Guys,
             Iam working on a upgrade project & i am facing with the below problem.
In 4.5b when i create an order (va01), the condition type(PR00) displyed at line item level was in change mode. In case if i want to change it to PN00 i could change it manually. But after the upgrade in ECC 6.0 when i try to do that, iam unable to change as it is in display mode.
I understand that this field gets populated from pricing procedure determination. Ex: 100010011(sorgDCDVCPPDP)- RVAA01 + PR00 Now by default PR00 will appear in double line entry while creating the order.
In 4.5b system, I can manually change it to PN00 or any other condition which is maintained in pricing procedure & has valid condition condition records mainatied.
This iam unable to do it in ECC 6.0 system. As the condition type at line item level is in display mode(we can't change it)
Experts please throw some light...your help would be highly appreciated.
Thanks,
Venkat

Dear Venkat
In Standard SAP,  we cannot change PR00 manually in sale order.  However, if you want to change, go to <b>V/06</b>, select PR00.  Here under the tab "<b>Changes which can be made</b>", you can see a field "<b>Manual entries</b>", in which "<b>D</b>" would be there in normal course.  Change it to "<b>C</b>" and save.
Also go to <b>V/08</b> and untick the box "<b>Mdt</b>" against PR00.
Thanks
G. Lakshmipathi

Similar Messages

  • MIRO: Is displaying VAT amount at line item level possible?

    Hello,
    Total Tax Amount is available in the header of a MIRO document, but is it possible to show the VAT Amount at line item level? i.e. as another column in the grid?
    Thanks.

    Hi,
    You can not see VAT amount at Item level in MIRO.It will be allways at header level.
    Regards,
    Manish

  • Report at line item level but also for document total for once only

    Dear all,
    seek for your help for the following issue
    There is a A/R invoice with 3 items
    There is a report for retrieving the line item level data from inv1, user would also like to add a column to display the Document total , but the problem is, each line item will also display the Document total, any method to only display the corresponding Document total for once only?
    Example, for AR invoice number 1234567:
    Currently:
    No.                ItemCode        Price      Qty    LineItemTotal      DocumentTotal
    1234567       Item-A            10           1       10                       100
    1234567       Item-B             50          1       50                       100
    1234567       Item-B             20          2       40                       100
    Requested to be presented as:
    No.                ItemCode        Price      Qty    LineItemTotal      DocumentTotal
    1234567       Item-A            10           1       10                       100
    1234567       Item-B             50          1       50                      
    1234567       Item-B             20          2       40                      
    Thank you very much!!!

    Hi,
    Try This.....
    select T0.DocNum ,T1.ItemCode ,T1.Price ,T1.Quantity ,T1.LineNum ,case  when T1.LineNum ='0' then T0.DocTotal else 0 end    from oinv T0 inner join INV1 T1 on T0.DocEntry =T1.DocEntry where T0.DocNum=[%0]
    Thanks
    Shafi
    Edited by: shafi_sunshine on Oct 19, 2011 12:50 PM

  • FI Posting of Invoice at the Line Item Level.

    Hi All
    Client has requirement of posting at the invoice line item level.But standard FI-AR posts at the Invoice Header level.
    E.g If invoice has two line items of $20 and $30 respectively.
    On the standard FI-AR side,one accounting document of $50 will be generated.It will not be posted for each invoice line level.
    In order to post at the invoice line item level,i am looking for a posting user exit from SD side that will two individual account document each having invoice line item amount.Or we can have one FI accountng doc having two invoice line items in that.
    Is there any way we can do this unique type of enhancement in ABAP? and also what is the exact user exit we can use from SD invoice side.
    Regards
    Manjinder

    This is not entirely accurate - if the items are pointing to, say, different profit centers then there will be one posting per profit center. If this cannot be resolved by the standard SD/FI configuration, then the users might need to change their business process. I personally don't see any need to create postings on line item level. Just imagine what it will do to your database size.
    Anyways, you'll find all the user exits here:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/erplo/sdUserexits
    But, again, this sounds like a very bad idea.

  • Send CV03N attachments present in Purchase order at line item level

    I have a purchase order and want to send it via email. The purchase order has attachments at line item level (e.g. a specification in pdf format). Attachments were able to see through T-code CV03N,
    When transferring the PO to vendor ,smartform is attached to email and sended to vendor .now we need additioanl attachments also to be sended in same email which is present at line item level (CV03N),Whether it is possible to copy the attachments into the email, so they are sent out, too?
    Please explain the methods
    Print program used for smartform is custom Z name space.
    Thanks in advance
    Regards,
    arun

    part 3
    *& Cet GOS attachments
    IF pa_incl = 'X'.
      CALL FUNCTION 'BDS_GOS_CONNECTIONS_GET'
        EXPORTING
          classname          = 'BUS2010'
          objkey             = lv_ebeln
        TABLES
          gos_connections    = lt_gos_connections
        EXCEPTIONS
          no_objects_found   = 1
          internal_error     = 2
          internal_gos_error = 3
          OTHERS             = 4.
      IF sy-subrc <> 0.
        MESSAGE i001(zmm) WITH 'BDS_GOS_CONNECTIONS_GET' sy-subrc DISPLAY LIKE 'E'.
      ENDIF.
      LOOP AT lt_gos_connections INTO ls_gos_connections.
        CLEAR lv_docid.
        lv_docid = ls_gos_connections-loio_id.
        CALL FUNCTION 'SO_DOCUMENT_READ_API1'
          EXPORTING
            document_id                = lv_docid
          IMPORTING
            document_data              = ls_document_data
          TABLES
            object_content             = lt_object_content
            contents_hex               = lt_contents_hex
          EXCEPTIONS
            document_id_not_exist      = 1
            operation_no_authorization = 2
            x_error                    = 3
            OTHERS                     = 4.
        IF sy-subrc <> 0.
        MESSAGE i001(zmm) WITH 'SO_DOCUMENT_READ_API1' sy-subrc DISPLAY LIKE 'E'.
        ENDIF.
    * Create attachment name as file name
        CONCATENATE ls_document_data-obj_descr '.' ls_document_data-obj_type INTO at_subj.
    *add attachment
        IF ls_document_data-obj_type = 'TXT'. "If text document, attachment type should be 'RAW'
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = 'RAW'
              i_attachment_subject = at_subj
              i_att_content_text   = lt_object_content.
        ELSE.
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = 'BIN'
              i_attachment_subject = at_subj
              i_att_content_hex    = lt_contents_hex.
        ENDIF.
      ENDLOOP.
    ENDIF.

  • Asset field blank in FS10N (Drilldown to line item level) report layout

    Hi all,
    i ahve posted a Retirement transaction to an asset and when i went to see the line item on the GL using/executing report FS10N for asset transactions GL and drill down to the line item level by double clicking on the period balances and I choose field "Asset" to be displayed in the layout, it is blank. How can I get report FS10N to display the asset number from the transaction?
    the field is available in the layout but when i pull it into the report it is Blank in the report.
    Any help would be appreciated. Thanks
    Jay

    Hello,
    FS10N shows only balance, FBL3N shows the line details.
    Add the asset as a special field via OBVU  (Table:  BSEG, Field: ANLN1).
    Regards
    Waza

  • How can I add the expiration date at line item level

    My User is selling voucher. The voucher is sell at line item. eg GV$5, GV$10,etc
    Each voucher line item sold need to be entered with a EXPIRATION date of that voucher.
    Maybe 3 months from issue, maybe 6months/1 year from issue.
    How can I add this to the sales order line item level?
    Which field can I used and how to configure?

    Hi Colin ,
       The question is not very clear , but i assume that you are asking about the  self expiry date of the particular material ,
    1. The setting you can do by activating  shelf life data  in material master :Plant data/stor1
    2.  its better to have a batch managed material for that you can sort the material acording the self expiry date.
    3. Once you maintain self expiry date system by default pick  the material at the time of  delivery
    Note-Shelf life expiry it will give the life of the material from the day of manfacture,remaining shelf life also will  give .
    Hope it is helpful
    Best regards
    Venkat

  • Line item level incompletion

    HI,
    Can you please advice as to line item level incompletion can be maintained? Say for example line item 100 is complete, however line item 200 and 300 of same sales doc is incomplete. When you carry out delivery for only line item 100, it checks the whole document and says its incomplete so that the delivery cannot be processed.
    IS it possible fro it to check only the SO, LItem so that when deliverying line item 100 there is no incompletion displayed, because that line item is complete?
    Appreciate your feedback on this.
    Thanks
    keshi

    Item level incompletion is configured and then assigned to Item category level. Even in this case, the incompletion will be checked for <b></b> all line items belonging to the item category<b></b> . So I dont think there is a way to check only that line item which is due for delivery.

  • Asset number at the line item level

    Hello,
    to a recent client I have 2 depreciation areas - the first one is the statutory one and the second one is for the group. I have different accounts for each depreciation area and at the level of the first one the accounts are asset reconciliation accounts and for the second one the accounts are GL accounts.
    All the postings (depreciation, retirements) are made correctly in both depreciation areas except the fact that at the level of the second depreciation area (with GL accounts) the asset number is missing at the line item level.The field status group is the same for the accounts involved.
    Please, can somebody advice?
    Thank you very much,
    Claudiu

    Hi Mark,
    thanks for answering me and trying to help me. Regarding your questions - the posting on the second GL account are line by line, this landscape don't work with group of assets. This field ANLN1 is empty for this depreciation area, like I said the values are correct in asset explorer but in Fi for report reason the field is not available - that's my problem
    Hope that I was more clear this time.
    Thanks and hear you soon!
    Claudiu

  • Query : Custom field at line item level in SRM 7.0 .

    I was going through a document which instructs on how to add a custom field at line item level in SRM 7.0.
    I found this code :
    CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
    EXPORTING
    I_GUID = IV_DOC_GUID
    I_WITH_ITEMDATA = 'X'
    TABLES
    E_ITEM = LT_ITEM
    E_MESSAGES = LT_MESSAGES
    E_STATUS = LT_STATUS. . 
    LOOP AT LT_STATUS INTO WA_STATUS.
    IF WA_STATUS-STAT EQ 'I1015' AND WA_STATUS-INACT IS INITIAL.
    LV_STATUS_APPROVE = 'X'.
    ENDIF.
    ENDLOOP.
    I wanted to know what is 'I1015'  and what is its significance .
    please advise .
    Ambar

    HI
    This speaks about the status of the Cart. This means that the Status of the Cart is AWAITING APPROVAL...I dont know which document you have gone through but procedure for adding a Custom Field in SRM 7.0 is:
    1. Create a Custom field in the Database in SRM. Preferrably add the field in an include and extend thta include to the table in SE11.
    2. Go to Portal Login of SRM and right click the part of the screen where you want to add the custom field. Click on More Field Help. The popup will give you the name of WebDynpro Applicaiton which controls that area.
    3. Login to SRM via GUI and display the webdynpro application using SE80. Enhance the Webdynpro application.
    4. Add the custom field to the Context of the WebDynpro Application View. You will be selecting the field from the database table while adding the custom field to the context
    5. Add the field at the specified place in Layout Tab of the WebDynpro View,
    6. Create a binding between the Layout Field and the Context
    7. Activate the changes.... you will see the field in Portal login of SRM....
    For more details , refer to the Webdynpro help of the application...
    Regards
    Virender Singh

  • How to control Payment Block field at line item level

    Hi Experts,
    Could anyone please let me know how to control payment block and payment method fields at line item level.
    I have checked field status at posting key (OB41) and GL (OB14) level but didn’t get any parameter to control these fields.
    I need your expert guidance.
    Regards,
    Mohammed Kalim

    Hi Mohammed,
    Please go to OB24/
    Select * (for all co.codes) default field status.Or Create new entry and input your co.code, Save it. Come back to co.code.
    Go to payment transaction
    Payment block and payment method display can be controlled from here for vendor master data
    Thanks and good luck.
    Regards,
    Sam

  • Tax column at line item level in VA01/VA02

    Hello All,
    I had a requirement to add the tax column at line item level for va01/VA02 transaction.
    I modified the screen 4900 and added the VBAP-TAXM1 column to the item table control and made that column input enabled.
    Now I had to calculate the TAX conditions based on the input in that tax column. None of the user exit is triggering when I change the values in this field, do I need to make any changes in the PAI of the 4900 screen in order to make the userexits trigger or am I missing anything?
    Thanks & Regards,
    SasiKiran.

    Hi
    Please, see SAP Note 862228 - Order reason for returns on item level. It is related with field AUGRU. Remember that it is a modification. I suggest you to add in addition data (for instance, SAP Note 209278 - Display of customer-specific fields in sales doc, SAP Note 302497 - Additional cust. fields not displayed in 'Additional data B', SAP Note 420546 - Additional data B and transaction variants in sales order and related notes).
    I hope this helps you
    Regards
    Eduardo

  • In report painter report, line item level drilldown report requirment

    Dear All,
    I created one report in GRR1, when I execute the report i am not getting line item wise drilldown option. For example one cost center no of line itemwise posting ( g/ls wise)posting is there. By double clicking on that specific line item we will go that ledger and see the data available in that ledger.In standard reports that option available but my own reports I unable to go drilldown at ledger level cost reports.
    Please sugget anyone, where I am doing mistake in report creation level.
    Thanks
    M Srinivasa reddy
    Ph : 9637399076

    Thank you,
    I attached reports to Library based on that I am able to drilldown line item level of the report.Is it corret or any other way for line item level drilldown option for report painter reports
    Thanks
    M Srinivasa reddy

  • FBL5N - in Rule set - It is a Display customer line items

    Dear All,
    We observed that FBL5N - Display customer line items in Standard SoD rule set under function AR07  addressing a risk of S022.
    Unless there are t-codes of FD03 or FB02 this t-code does not allow to change the payment terms of the customer.
    We are having a challenge from the client that FBL5N is a display t-code and why it is there in rule set.
    Has anybody came across this scenario? If yes, what is the underlying risk for this FBL5N independently.
    Is there any SAP Note for this t-code like ME23N from SAP.
    Thanks and Best Regards,
    Srihari.K

    Hi Christian,
    We checked the authorization objects as well enabled in GRC rule set as below:
    F_BKPF_BUK - Docume t Authorization document for company codes - 01 or 02 - Enable.
    Inspite of this access, FBL5N cannot be used to change the document for payment terms and assignments without FB02 t-code
    assignment in the role.
    Independently FBL5N cannot be used for any change or create activity except Display customer line items.
    Please advise
    Thanks and Best Regards,
    Srihari.K

  • Shopping cart header status differs to status at line item level

    Hello
    I am using SRM 5.5 EC, got a situation where there is a single line shopping cart which has been approved. The status on the header is still showing "awaiting approval" but at line item level it shows as being "approved" and no follow on document has been created.
    Can anyone help and let me know why this has happened and how to change the header status now?
    Many Thanks in Advance
    Prakash

    OK found a solution

Maybe you are looking for

  • Error code 0xe0ef0003, No "BOOTMGR" after a system restore, no disc/self system.

    So ... my HP Pavilion dv7 NB, that I've owned just a mere two days shy of three years, decided to get extremely lazy late last night. I have malware programs in place, strong security, etc. but I suppose that something might have slipped in ... but u

  • KDE: Xorg 1.8 and synaptics [SOLVED]

    Hi, It appears that the synaptiks package from AUR works just fine with the default /etc/X11/xorg.conf.d/10-synaptics.conf. I just had to check System Settings->Keyboard & Mouse->Touchpad->Touchpad Configuration->Scrolling boxes in order to get my sc

  • Batch management and returns

    Hi we are a soft drink manufacturer, we have batch management for raw materials but also need it for finished goods.  OK so no problem works well so far.  However we do send out trucks with product on board, those truck may not sell all of the produc

  • Custom file logging

    Fellow Developers, I am new to ID CS3 plug-in development and am trying to log commands (implemented a document observer) to a custom log file. Whats the best way to log? - TRACEFLOW (found this macro in another posting)? - MessageLog (found this in

  • I can´t log in with my e-legitimation on websites after updating firefox

    Secure Connection Failed An error occurred during a connection to extranet.ore.vv.se. SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long) When I have used my e-legitimation to log in for an e