Display Item details in transaction VF05N

Hi,
Is anybody is having any idea how we can display item details in transaction VF05N.
Regards.
Kusum.

Hi,
If your requirement is to display the item details of the billing Docs displayed in VF05N.
Click on the billing document.
Then press the  'Display Document Button'(Shift+F12)
otherwise Please explain in detail.
Regards
Sandipan

Similar Messages

  • ALV report i want to display in each P.O , i want to display item details

    Hi all,
    in alv report i want to display in each P.O , i want to display item details. is it possible without hierarchical display.

    hi,
    once you retrive po number from ekko then retrive data from ekpo and loop at ekpo and append all the item details to your internal table.

  • Display Item Details in approval email

    Hi All,
    I would like to display 'Item Details' on the shopping cart approval email.
    Is there any standard program to achieve this. Please provide your inputs.
    System: SRM 5.0
    Regards,
    Piyush

    In SRM 5.0 there are 2 programs that deal with this information:
    1. RBBP_NOTIFICATION_OFFAPP
    This is the new method and when scheduling this report you can select that an attachment is sent with the email with the details. I didn't research the use of a BADI with this program, there might very well be one for this - look in SPRO, with this BADI you might be able to change the contents of the email body detailing the SC details using the function module Disha gave you.
    2. RSWUWFMLEC
    This program will give the details in the email body if I'm not mistaken - this program can still be used in SRM 5.0 However the above program is the more recent method to get emails to approvers.
    Regards,
    Robin

  • Analysis tab in item details of transaction WTY

    Hi All,
           We get pricing procedure details when we click on the analysis tab in the item details subscreen in WTY.We get the condition types and the associated movement of data.
    We have added a custom field to the communication strucuture KOMK,KONP,KOMG, and the same is present in the database table PVWTY. The same is present in the structure A997 also. If we see the technical details then the fields which are of concern to us are KOMK-(custom fieldname )  and A997-( custom fieldname ).But we are getting a warning symbol in the description part when we click on the condition type PRP4.
    I am not sure whether this is related to any missed out coding.I checked out that the routine 597 is assigned for the condition type PRP4.But the source code inside is the standard code and i am not sure how to include my custom field data here.Do i have to move this data through some exit or is this related to any configuration in SPRO...
    I am not able to figure out where and how i am supposed to move the data between the two structures as explained above. Hope that the above explanation gives an OK picture of what i need to achieve. Please help.
    thanks
    Nishanth

    Hi,
    You can try making the Date Field in Item Details  and Requisitioner as Mandatory if it serves your purpose for the situation - I .
    Please check the following :
    SPRO>IMG>MM>Purchasing>Purchase Requisition>
    Click on Define Screen Layout at Document Level
    Highlight the Document Type
    Go to Details and click on Deadline Monitoring
    Check the Date as Required Entry for Requisition, Delivery & Release Date.
    ( The user will need to Enter Release Date Manually)
    Similarly this can be maintained for RFQ and PO as well.
    This will give you the Tracking of the Processing Time with respective dates.
    Hope this helps,
    Best regards
    Amit Bakshi.

  • Line item details of transaction in SAP POSDM

    Hi ,
    Can any body please tell me how to get the line items value of a particular transaction in POSDM. I think there is a Function Module that should be used. Can anybody please tell me the Function Module name.
    I have to get the sales value of each line item in a particular transaction in POSDM.
    P.S. I am an Abapper.
    Thanks in Advance !!
    Mayank

    Can you please tel me how you solved this issue?
    Edited by: Saranyadevi on Oct 10, 2010 10:08 AM

  • ITEM detail for Transaction

    hellow gurus
    i'm workin on environment BW 3.5 and CRm 4.0
    now i have to create datasource for some Extra fields
    for that
    i have used followin tables
    CRMD_ORDERADM_H
    CRMD_INDEX
    but after using this in BW report i'm not able to get the item( Product )  level data
    and that's why it is comin with # , as Product level data cant find any link
    So
    kindly help me to get link between header and Item level data ..
    so dat i can create correct View
    Regards

    got the the table

  • Not getting output undr billing details and item details in printng invoice

    In form interface under import tab i have declared 1 value i.e. IM_FS_KNA1 type KNA1 I have not declared anything except this in form interface.
    In Global Definitions under Global Data tab:
    IM_T_KNA1     TYPE TABLE OF     KNA1
    IM_FS_VBRK     TYPE     VBRK
    IM_FS_VBRP     TYPE     VBRP
    W_TOTAL     TYPE     VBRP-NETWR
    IM_T_VBRK     TYPE TABLE OF     VBRK
    IM_T_VBRP     TYPE TABLE OF     VBRP
    under Currency/ Quant Fields
    IM_FS_VBRP-NETWR     IM_FS_VBRK-WAERK     C CURR
    In Billin Window, there is a loop from IM_T_VBRK INTO IM_FS_VBRK where KUNAG = IM_FS_KUNNR
    In main window, i've created a table for displaying item details
    I'm only getting data of Customer in Customer Details window after using driver program. I've checked the entries in the table but for those inputs i'm not getting the desired output..
    Following is the code that i'm using for driver program:
    *& Report  ZPRINTINVOICE2
    REPORT  ZPRINTINVOICE2.
    TABLES:
      kna1,
      vbrk,
      vbrp.
    PARAMETERS :
      p_kunnr LIKE vbrk-kunag,
      p_vbeln LIKE vbrk-vbeln.
    DATA :
      /1BCDWB/SF00000214 TYPE rs38l_fnam.             " Name of the Function Module
    DATA :  t_vbrk LIKE
    STANDARD TABLE
          OF vbrk.
    DATA:  t_vbrp LIKE
    STANDARD TABLE
          OF vbrp.
    DATA :
      fs_kna1 TYPE kna1,                           " Holds Customer Details
      fs_vbrk LIKE LINE OF t_vbrk,         " Holds BillingDoc Header Details
      fs_vbrp LIKE LINE OF t_vbrp.         " Holds BillingDoc Item Details
    START-OF-SELECTION.
      SELECT SINGLE *
               FROM kna1
               INTO fs_kna1
              WHERE kunnr EQ p_kunnr.
       SELECT *
        FROM vbrk
        INTO TABLE t_vbrk
       WHERE kunag EQ p_kunnr
         AND vbeln EQ p_vbeln.
       SELECT *
        FROM vbrp
        INTO TABLE t_vbrp
         FOR ALL ENTRIES IN t_vbrk
       WHERE vbeln = t_vbrk-vbeln.
       CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                   = 'ZTRYINVOICE2'
        IMPORTING
          fm_name                    = /1BCDWB/SF00000214
        EXCEPTIONS
          no_form                     = 1
          no_function_module = 2
          OTHERS                   = 3.
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
       CALL FUNCTION /1BCDWB/SF00000214
        EXPORTING
          im_fs_kna1       = fs_kna1
          im_t_vbrk        = t_vbrk
          im_t_vbrp        = t_vbrp
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    plz help......

    Hi Neha,
    Modify your CALL FUNCTION /1BCDWB/SF00000214 like below :
    CALL FUNCTION /1BCDWB/SF00000214
        EXPORTING
          im_fs_kna1       =  im_fs_kna1
        TABLES
          im_t_vbrk        = im_t_vbrk
          im_t_vbrp        = im_t_vbrp 
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc  0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    At Smarforms > Form Interface > Import :
    im_fs_kna1.
    At Smarforms > Form Interface > Tables :
    im_t_vbrk , im_t_vbrp
    BR
    Dep

  • In transactions ME21n, ME22n, ME23n I need to add new field to item detail

    Hello,
    In transactions ME21n, ME22n, ME23n I need to add a new field  to the table control TC_1211, in SAPLMEGUI screen 1211 for PO line items.  The new field is UNSPSC Code, a 30 char field, which will be enterable/changeable on the ME21n, ME22n screens and display only on ME23n. 
    BADI ME_PROCESS_PO_CUST enables you to extend the business logic of the Enjoy purchase order.  Is this the correct BADI to use for the purpose of adding a new input/output field to the PO detail SAPLMEGUI screen 1211?   
    Does anyone have any examples of adding a new field to PO Item Detail screen using BADI ME_PROCESS_PO_CUST?  I have had some experience creating Badi's, and would appreciate very much some sample code if possible. 
    We are on release SAP ERP Central Component 5.0
    SAPKB64018     SAP Basis Component
    SAPKA64018     Cross-Application Component
    SAPKH50013     Logistics and Accounting
    Thank you,
    Victoria

    Hi,
    Thank you for the response.  I tried this and found  Badi ME_PROCESS_PO_CUST.  Do you have any examples of adding a new cust field to PO Item overview screen using badi ME_PROCESS_PO_CUST? I have had little experience creating badi's, and would appreciate very much some sample code if possible.
    In transactions ME21n, ME22n, ME23n I need to add a new field in PO Item overview (screen 1211 of SAPLMEGUI). The new field ZZUNSPSC, has been appended to table EKPO as a 30 char field, which will be enterable/changeable on the ME21n, ME22n screens and display only on ME23n.
    Can you tell me if method FIELDSELECTION_ITEM of badi ME_PROCESS_PO_CUST the correct one to use for the purpose of adding a new input/output field to the PO item overview on SAPLMEGUI screen 1211?
    Thank you for help - much appreciated,
    Vicki

  • Issues in displaying the details in the transaction CS03

    Hi Group,
    I am facing an issue in the Transaction CS03 while displaying the EXTRAS->MORE->Parameter Eff Value Assignment as under:
    we have created a set of BOM items on the previous data(21.11.2011) with a different Changed documents for the two BOM items. when we checked the same in CS03 with the Effectivity 'Serial no' , Date (as today - 22.11.2011) and Material as Main material, the System is throwing a message 'No items are valid on 22.11.2011) and when I checked with the same using the Current date(22.11.2011), the BOM items are getting displayed correctly.
    Now the requirement is that, the User should be able to see the BOM item details(irrespective of the dates) using the Serial number created in the Change document number for the BOM items.
    Kindly provide inputs ASAP.
    Thanks in advance for your help.
    Regards,
    Vishnu

    hi Group,
    I resolved the Issue myself by managing to populate leading zeros for the Serial Number while creating the Change document number and it resolved the issue.
    thanks for your help.
    Regards,
    Vishnu

  • Display MDM key mapping information in EP Item Detail iViews

    Hi,
    in my repository I have the main table 'customer' including key mapping information for several client systems (master data consolidation scenario).
    The customer data is diplayerd in EP using the Item Details iView. I'd additionally like to display the key mapping information in Item Details iView, for example as a separate tabstrip. Is this feature already supported by the Item Details iView? How can I implement it?
    I'm using MDM 5.5 SP3 / EP6.0 SP14.
    Thanks in advance,
    Martin

    Hi Martin,
    Currently iView do not support the functionality to disply the key mapping information.
    Workaround I implemented is that, added a field "source system" to main table with type lookup. Added lookup table "source systems" with list of names of client systems. This helps user search data based on client system name.
    I hope this is helpful.
    Abhay

  • Second line item in Shoppin cart is not displaying the details

    Second line item's district  value is not displayed when the detailed button of second line item is clicked.
    In the shopping cart , there are two line items are added. ( before ordering )
    click on the detail button of first line item, then click on the Ship to address tab . it is displaying the details of the first line item ship to address.
    For getting the value in the district field, BBP_doc_change_badi is implemented .
    The problem is when i click on the detail button of second line itme , the value in the district field is cleard.
    When i click on refresh buttion after that, the value is there.
    I debugged BBP_DOC_CHANGE_Badi~bbp_SC_change method,
    When the second line item is clicked, it populates only the value of first line item . After that if i click on any other buttion, the it_item in the badi populates the second line item value.
    Is this a standard error in SRM or is there any way to display the value of second line item when it is clicked at the first time

    Hi,
    In item category details insure there is tickmark for Schedule line allowed,
    In sales order at item level under shipping tab see storage location ,plant is appearing or not,
    Kapil

  • Va01 upload using call transaction,item details r overwrite ,how to solve

    hi experts
       i here attached the coding what i did,while page down item details r over overwrite, how to sole ,give me the suggestions
    INCLUDE BDCRECX1.
    PARAMETERS: DATASET(132) LOWER CASE.
    DATA: BEGIN OF RECORD_HEAD,
            VBELN(10),
    data element: AUART
            AUART(004),
    data element: VKORG
            VKORG(004),
    data element: VTWEG
            VTWEG(002),
    data element: SPART
            SPART(002),
    DATA ELEMENT: KUNAG
            KUNNR(010),
    data element: KUNWE
            KUNNR_007(010),
    data element: BSTKD
            BSTKD(035),
        END OF RECORD_HEAD.
    DATA: BEGIN OF RECORD_ITEM,
    data element: VBELN
            VBELN(10),
    data element: MATNR
            MABNR(018),
    data element: KWMENG
            KWMENG(019),
          END OF RECORD_ITEM.
    End generated data section ***
    DATA: IT_SO_HEAD LIKE TABLE OF RECORD_HEAD,
          IT_SO_ITEM LIKE TABLE OF RECORD_ITEM,
          FLAG.
    data: counter type num value '1'.
    START-OF-SELECTION.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME            = 'C:\USERS\SANGEETHA\DESKTOP\SO_HEADER.TXT'
          FILETYPE            = 'ASC'
          HAS_FIELD_SEPARATOR = 'X'
        TABLES
          DATA_TAB            = IT_SO_HEAD.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME            = 'C:\USERS\SANGEETHA\DESKTOP\SO_ITEM.txt'
          FILETYPE            = 'ASC'
          HAS_FIELD_SEPARATOR = 'X'
        TABLES
          DATA_TAB            = IT_SO_ITEM.
    LOOP AT IT_SO_HEAD INTO RECORD_HEAD.
        AT NEW VBELN.
          FLAG = 'X'.
        ENDAT.
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '0101'.
        PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                      'VBAK-AUART'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM BDC_FIELD       USING 'VBAK-AUART'
                                      RECORD_HEAD-AUART.
        PERFORM BDC_FIELD       USING 'VBAK-VKORG'
                                      RECORD_HEAD-VKORG.
        PERFORM BDC_FIELD       USING 'VBAK-VTWEG'
                                      RECORD_HEAD-VTWEG.
        PERFORM BDC_FIELD       USING 'VBAK-SPART'
                                      RECORD_HEAD-SPART.
        PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '/00'.           " Enter
        PERFORM BDC_FIELD       USING 'KUAGV-KUNNR'
                                      RECORD_HEAD-KUNNR.
        PERFORM BDC_FIELD       USING 'KUWEV-KUNNR'
                                      RECORD_HEAD-KUNNR_007.
        PERFORM BDC_FIELD       USING 'VBKD-BSTKD'
                                      RECORD_HEAD-BSTKD.
        PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                          'RV45A-MABNR(01)'.
        LOOP AT IT_SO_ITEM INTO RECORD_ITEM WHERE VBELN = RECORD_HEAD-VBELN.
          IF FLAG = 'X'.
            PERFORM BDC_FIELD       USING 'RV45A-MABNR(01)'
                                          RECORD_ITEM-MABNR.
            PERFORM BDC_FIELD       USING 'RV45A-KWMENG(01)'
                                          RECORD_ITEM-KWMENG.
           PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
           PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                                 '=/00'.
            PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                         'RV45A-MABNR(02)'.
            CLEAR FLAG.
          ELSE.
            PERFORM BDC_FIELD       USING 'RV45A-MABNR(02)'
                                          RECORD_ITEM-MABNR.
            PERFORM BDC_FIELD       USING 'RV45A-KWMENG(02)'
                                          RECORD_ITEM-KWMENG.
            PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                          'RV45A-KWMENG(02)'.
            PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
            PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                                  '=p++'.
            PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                          'RV45A-MABNR(02)'.
               ENDIF.
        ENDLOOP.
          PERFORM BDC_DYNPRO      USING 'SAPMV45A' '4001'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=SICH'.
         data : l_option like ctu_params.
                 l_option-dismode = CTUMODE.
                 l_option-updmode = CUPDATE.
                 l_option-defsize = 'X'.
          CALL TRANSACTION 'VA01' USING BDCDATA
                                  options from l_option
                                  MESSAGES INTO MESSTAB.
          CLEAR: BDCDATA,BDCDATA[].
      ENDLOOP.

    John - Its best to use  BAPI_SALESDOCU_CREATEFROMDATA1.
    But if you are still going to do a BDC, Do not use the pagedown  for new line items. Use the "Create Item" icon in the bottom of the screen. This way you can add as many items as you want and the cursor will always be in the second row of the table control.
    Please check the code below: Always enter in the 2nd row even for the first item. It should work.
    LOOP AT IT_SO_ITEM INTO RECORD_ITEM WHERE VBELN = RECORD_HEAD-VBELN.
    PERFORM BDC_FIELD USING 'RV45A-MABNR(02)'
    RECORD_ITEM-MABNR.
    PERFORM BDC_FIELD USING 'RV45A-KWMENG(02)'
    RECORD_ITEM-KWMENG.
    PERFORM BDC_DYNPRO USING 'SAPMV45A' '4001'.
    PERFORM BDC_FIELD USING 'BDC_OKCODE'
    '=POAN'.
    ENDIF.
    ENDLOOP
    reward points if helpful

  • Displaying line item details in smartform

    Hi,
    I need to display tax details of each line item in a smartform in the given format. Tax details should get displayed only if it present. Please tell me how to do this.
    for ex:
    item     description     qty         price   
    10       ytfytfyf             20          30
    VAT:2%
    Service Tax: 3%
    20        rwedw             30         10
    VAT:3%
    service tax:4%
    Thanks.

    hi,
    Under the loop node after displaying
    item description qty price
    10 ytfytfyf 20 30
    create another loop node of table tax information under the main loop with condition that is having same field in common... then create text elements  to display the following data
    VAT:2%
    Service Tax: 3%
    regards
    padma

  • TDS Certificate item details not displayed in printpreview in qualitysystem

    Dear Experts,
                         I have been working on TDS certificate in SAP script and able to display the item details in the developement system. but while testing the same TDS certificate in Quality system the item details are not displayed in the preint preview.could any one tell me what exactly have happened and how to solve this issues.

    Cant help with this input. Just make sure that all settings are same in both the systems.
    Hope you find the resolution .

  • Display Vendor Name In PO Item Condition In Item Details

    Hi,
    Process is, if we have created to PO (ME21N) and given XX Vendor in Header and ZZ Vendor Code has maintained as per condition wise in line item wise in condition tab in item details but not shows ZZ Vendor Name.
    I want to display the Vendor Name in item details.
    Please tell me, How to display the vendor Name?
    If any User Exit or other option through.
    Devendra

    Thanks for Reply, as suggested by you, I have checked with ABAPer maybe this enhancement use for new tab in PO
    I need to display the vendor name at the space before the vendor and vendor code are shown.
    Me21n-->give item and its details>item conditions tab---->select particular condition type -
    >click on Conditional details icon. There at the end right hand side vendor field is present where we can give vendor code. Beside the vendor field i need to display that given vendor code related name. So that user won't make any mistakes in giving the vendor code
    Pl provides me the solution to do this. Which is the best way to bring vendor name in that screen?
    Devendra

Maybe you are looking for

  • Payment method(s) are not allowed for this program / Program RFFOAVIS_FPAYM

    Dear Friends, In Se38  abap editor, I entered the program RFFOM100, i entered the details program run date,identification future,paying company code,payment methods T, House bank, Account Id and executed the program. I am getting the error 'Payment m

  • Lenovo A 7000 : GPS is not working

    None of my navigation apps (e.g. Google maps) are working. When I tap the my location button, it shows a message 'Waiting for location'. I tried with 'Reset to Factory settings' and tried re-installing phone software as well. 

  • How to organise Mail contacts & preview all attachments as icon?

    Hi, 2 quick questions, 1) When i attach photos or pdfs or whatever to the mail, they show up as previews in the text body...I can right click and select view as icon, but this is a pain when many are attached together. Any shortcut or settings change

  • Print Quality Notification

    Hello Experts, My client needs to take 3 prints of quality notification everytime as 1 copy goes to Vendor, 1 copy to Accounts & 1 with IQC. But even if we select no. of copies more than 1, It prints only 1 copy & every time we need to create new spo

  • I want to add a user name to Yahoo.

    I want to a user name to come up when i sign in.