Function module description

Is there any website link where I can get information about all the functions used in ABAP...
EX: I want to know the export,import,...parametes of the function "ALSM_EXCEL_TO_INTERNAL_TABLE"....?

hi
link for list of FMs
its very helpful check this out
http://www.sapbrainsonline.com/REFERENCES/FunctionModules/SAP_function_modules_list.html
check this prog donot forget to prepare a flat file
TYPES: BEGIN OF ty_mara,
         matnr LIKE mara-matnr,
         mbrsh LIKE mara-mbrsh,
         mtart LIKE mara-mtart,
         maktx LIKE makt-maktx,
         meins LIKE mara-meins,
      END OF ty_mara.
DATA: it_mara TYPE table of ty_mara WITH HEADER LINE.
parameters : p_file like RLGRAP-FILENAME.
data : itab type table of ALSMEX_TABLINE WITH HEADER LINE.
start-of-selection.
CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
  EXPORTING
    filename                      = p_file
    i_begin_col                   = 1
    i_begin_row                   = 1
    i_end_col                     = 5
    i_end_row                     = 4
  tables
    intern                        = itab.
loop at itab.
  CASE ITAB-COL.
    WHEN '1'.
      it_mara-matnr = ITAB-VALUE.
    WHEN '2'.
     it_mara-mbrsh = ITAB-VALUE.
    WHEN '3'.
      it_mara-mbrsh = ITAB-VALUE.
    WHEN '4'.
     it_mara-maktx  = ITAB-VALUE.
    WHEN '5'.
      it_mara-meins = ITAB-VALUE.
  ENDCASE.
AT END OF ROW.
  APPEND it_mara.
  CLEAR it_mara.
ENDAT.
  endloop.
Edited by: prasanth kasturi on Jun 12, 2008 3:01 PM

Similar Messages

  • APO-DP Function Modules Description.

    Hi,
    Can I get the description of all Function Modules used in APO-DP.
    i.e. just a one liner of what each Function Module does in APO.
    Regards,
    Vikas

    Hi
    Check the Table
    <b>TFTIT</b>
    for all descriptions of the fun modules in SAP
    Regards
    Anji

  • Know the all function modules & descriptions

    Is there any transaction or table or program to know the all the function modules and its descriptions

    Okay, here is an easier way.  On the main screen of SE37, click on the binoculars (the "Find" button on the top menu).  Now on the next screen just enter the maximum number of hits that you want and click on the execute button. 
    Note: if you want to use table TFDIR to see all entries, use transaction SE16 and on the selection screen for that table you will need to change the maximum number of hits (last field on the screen).
    - April
    Message was edited by:
            April King

  • SAVE_TEXT function module ?

    What is the use of SAVE_TEXT function module ?
    What are the parameters to be passed in import & export.
    please explain in details?

    Hi,
    Please search in SCN to get the information.
    Please have a look at the function module description and also where used list to see how it is used.
    Regards,
    Nagaraj

  • Fuction Module Description

    Hi Gurus
    I need to know the one function module description named as "RSPC_VARIANT_DELATE"
    and another doubt is where i can found any function module decryption.
    Thanks for reply...

    Hi,
    In BW goto SE37 Tcode and give Function Module  = RSPC_VARIANT_DELETE and click on Display Button. It will disply the details of FM.
    Click on Attribute Tab and see the description =  Delete variant and in the same way click on each tab and see the details of teh FM.
    Thanks
    Reddy

  • Table for Function Exit Description

    Hi,
    Would appreciate if someone could give me the table where the function exit description is stored.
    To make things clear, Lets say we have a functon Exit named EXIT_...........
    In which table is the description of this function exit maintained.
    Thanks in advance.
    Mick

    Hi Mick,
    The function module descriptions are stored in the table TFDIRT.
    So try to check in this table.
    Sruthi

  • How to check for a function module with its description and functionality

    Hi all,
    How to check for a function module,with its description and its functionality,in detail how can I know the purpose of a particular function module,how to search for a function module which suits my requirement .

    Hi,
    You can search a FM of your requirement by putting in the Key words and searching for a FM. Like * KEYWORD * and then pressing F4.
    Say for example you need to search something regarding converstion.
    Search for * CONVERT * and press F4.
    If there is something specfic like converting date to something you can give
    DATE * CONVERT *
    OR
    CONVERT * DATE *  and press F4.
    Once you narrow down your search you will have a Function module documentation inside the Function module. Please note that all the FMs willl not have documentation.
    Regards,
    Pramod

  • Function module to get table description

    Is there any function module to get table description on passing table name

    Hi,
    We need to use : 'G_RW_TABLE_DESCRIPTION_GET' function module.
    we pass the table name and the language.
    call function 'G_RW_TABLE_DESCRIPTION_GET'
        exporting
          rw_table = p_table
          langu    = sy-langu
        importing
          tab_text = l_tabtext
        exceptions
          others   = 1.
    thanx.

  • DDIF Function Module for getting the description of a BAPI structure

    Hi,
    I need to find a function module that returns the description of a structure...well a BAPI structure, not that that makes any difference.
    The DDIF_ function modules I've tried will all return the descriptions of data elements in tables, but not structures.
    Thanks,
    Tristan

    Check FM : CACS_DBNAME2TABNAME

  • Function modules for material and description

    Hi,
    Pls let me know the function module for material and description.
    Regards,
    Bala

    Hi,
    Please use FM: MD_MATERIAL_GET_TEXT
    Reagrds
    Raju

  • Need a function module for fetching description of fields in a table

    Hi experts,
    I have a requirement where i need to fetch the descriptions of all the fields of a given database table.
    I am looking for a function module that gives the descriptions of a field. Please suggest a way.
    Points will be rewarded.
    Thanks in advance.

    Use FM DDIF_FIELDINFO_GET to get information about a field. Pass table name and Fieldname.
    Use FM DDIF_FIELDLABEL_GET if you need only the field label.
    Use FM DDIF_TABL_GET for getting information of all fields of a particular table.
    Regards,
    Lakshmi.
    Edited by: Santhanalakshmi V on Jun 11, 2008 5:26 PM

  • Table/Function module to find description of SD document currency

    Hi,
    I have a specific requirement from my client. In the invoice output, we are presently displaying the invoice total value in words and the respective SD document currency against it (For ex: USD if sd document currency is USD, or GBP, EUR etc.). The client wants the full expansion (description) of the document currency to be displayed in the invoice output. (For eg: USD - United States Dollar).
    Could anybody tell me the name of any table/function module by which we can obtain the description of the SD document currency.
    Thanks in advance,
    Regards,
    Zahid

    Hi
    You can get the Description of currency from table TCURC field name LTEXT
    Regards,
    Nimit
    Edited by: Nimit Raiya on Jan 24, 2009 11:15 AM

  • Any Function module to find the vendor description

    Any Function module to find the vendor description.
    Regards
    Paul

    Hi,
    Do you mean that you need the name and address details of the Vendor. you can get it in table LFA1.
    regards,
    Mahesh

  • Description about a function module O2_LANGUAGE_EXIT_FUNCTION

    Hi All,
    i want to know the description about the function module 'O2_LANGUAGE_EXIT_FUNCTION'. Please explain what is the functionality of this function module clearly.
    Thanks & Regards,
    Nagarjuna.

    hi,
    send me ur mail id ,
    i will send the pay roll related function moduls.
    and document relataed to pay roll.
    ramesh

  • Function module's description

    hi all,
    i need your help. im having a problem with my program, is there a table which can display the the function module's description?
    pls this is urgent..i hope you can help me with this...
    thanks,
    mau

    Hi Maurene,
        Do one thing.
    1. Goto SE37.
    2. Enter upload.
    3. Open another session by typing /ost05.
    4. Activate the trace
    5. Go to the SE37 screen and press F4
    6. After the value help is displayed goto the ST05 screen and deactivate the trace
    7. Display trace.
    The above method would list out all the Tables that were acessed to display help values. A bit of analysis would reveal where SAP is getting Descriptions from. After this repeat the above process while displaying the FM (say UPLOAD_FILES). This will give you all the required tables from where SAP is reading the FM definition. You may do a bit of analysis and find the FM's used by SAP to get that information and make use of them.
      For any assistance I am here ... just drop a message.
    best regards,
    Kazmi

Maybe you are looking for

  • Custom report row template

    Few questions when using a custom report row template. Followup to the discussion Report Row Template: Column condition 1. The row template allows full control how the entire row is rendered. I can see this being used when the report query returns a

  • Values not populated in AET STATE RECORD

         Hi all, I have a state record with the fields PROCESS_INSTANCE RUN_CNTL_ID OPRID COUNTER ACCOUNTING_DT FZAM_COUNTER FROM_DT1 TO_DT1 SOURCE I am fetching values into the above state record from z tables  in my app engine. Step :step 02  Action :S

  • Organizing photos on iPod

    I notice that when youare viewing your thumbnails on the iPod there is the month and year at the top of the screen. Is there a way to put them in the right place? ie. Jan 2004, feb 2004, mar 2004 and so on. Right now the month and years are all over

  • Get sorted distinct element from XML message in BPEL

    Hi, I have a database adapter which picks all the records with status 'N', it has different batch IDs. My requirement is to get all the distinct batch ID from the message collection, is it possible I can get the distinct batchID in ascending order in

  • Problem with Email Template

    Hi ........ am using IDM7.1, am unable to send mails.... can anybody help me to build email template... i done this using IDM6.0 it worked but i need in IDM7.1.... thank you,