Monday, May 13, 2013

How To Know What TCODE Used In ABAP Program


Today I want to teach you how to find out what TCODE that is used by the ABAP Program, to do this we can see the package of the program it self, in order to do this, you can execute TCODE SE80.
Select Program in the “Test Repository” tab, and enter the ABAP Program name, press enter to continue.

Now you can see that this program package consists of several folders such as Dictionary Structures, Fields, Events, Subroutines, etc.

The folder you need to open is the “Transactions” folder, there you will find the TCODE for this ABAP program name.
11092010-onpn

2 comments:

  1. Dear Guru ,

    I want to know is there any sap standard Function Module to convert amount value to amount in words


    Thanks & Regards

    ReplyDelete
  2. try:
    CALL FUNCTION 'SPELL_AMOUNT'
    EXPORTING
    amount = zsum
    currency = is_bil_invoice-hd_komk-waerk
    language = 'E'
    IMPORTING
    in_words = gt_amtwords
    EXCEPTIONS
    not_found = 1
    too_large = 2
    OTHERS = 3.

    ReplyDelete