cancel
Showing results for 
Search instead for 
Did you mean: 

Function module Documentation

Former Member
0 Kudos

Hi All,

Can anyone tell me where can i find the documentation for all standard FMs.

In my SE37 screen all the FM documents are diabled.

I need the documentation for a specific FM "DD_SHLP_GET_HELPVALUES"

and "F4IF_GET_SHLP_DESCR".

I shall reward points if helpfull.

Regards,

Simin.R

Message was edited by:

Simin Raveendran

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

hi simin,

Goto -> SE37 -> give ur functional module name

goto -> documentation -> Functional module Documentation....

Regards...

Balaji (Assign points if this helps u )

uwe_schieferstein
Active Contributor
0 Kudos

Hello Simin

If the button "documentation" is inactive there is no documentation available (at least in the logon language).

You should always have a look using logon languages DE (=German) and EN (=English).

Following is the German documentation for the second function module:

 FU F4IF_GET_SHLP_DESCR
 ____________________________________________________
 Kurztext
     Vollständige Beschreibung einer Suchhilfe lesen
 Funktionalität
     Die Funktion liest die Beschreibung zu der Suchhilfe, die in SHLPNAME
     übergeben wird. Die so gelesene Suchhilfe kann z.B. an den Baustein
     F4IF_START_VALUE_REQUEST übergeben werden.
     Da in diesem Fall keine Zuordnung der Suchhilfe zu Dynpro-Feldern
     bekannt ist, muß dem Baustein F4IF_START_VALUE_REQUEST noch bekannt
     gemacht werden, welche Felder als Rückgabefelder erwartet werden.
     Das erreichen Sie durch Eintrag eines beliebigen Wertes in
     SHLP-INTERFACE-VALTABNAME und SHLP-INTERFACE-VALFIELD für das
     entsprechende Feld. (Innerhalb von F4IF_START_VALUE_REQUEST wird nur auf
     '<> SPACE' abgefragt)
 Beispiel
     * Aufruf der Suchhilfe für den Mandanten
     TYPE-POOLS SHLP.
     DATA INTERFACE_WA TYPE LINE OF SHLP_DESCR_T-INTERFACE.
     DATA RETURN_VALUES LIKE DDSHRETVAL OCCURS 0.
     DATA SHLP TYPE SHLP_DESCR_T.
     * Die Beschreibung der Suchhilfe H_T000 besorgen
     CALL FUNCTION 'F4IF_GET_SHLP_DESCR'
          EXPORTING
               SHLPNAME = 'H_T000'
          IMPORTING
               SHLP     = SHLP.
     * Das Mandantenfeld als Rückgabefeld markieren.
       INTERFACE_WA-VALTABNAME = INTERFACE_WA-VALFIELD = 'X'.
       MODIFY SHLP-INTERFACE FROM INTERFACE_WA
              TRANSPORTING VALTABNAME VALFIELD
              WHERE SHLPFIELD = 'MANDT'.
     * Den F4-Ablauf starten
       CALL FUNCTION 'F4IF_START_VALUE_REQUEST'
            EXPORTING
                 SHLP          = SHLP
            TABLES
                 RETURN_VALUES = RETURN_VALUES.
     * RETURN_VALUES enthält jetzt den ausgewählten Mandanten
 Parameter
     SHLPNAME
     SHLPTYPE
     SHLP
 Exceptions
 Funktionsgruppe
     SDHI

Regards

Uwe

Former Member
0 Kudos

hi

good

follow this

go to se37

give any function module name

click F7

you ll get the detail about that function module

on the tool bar(right hand side top cornor)there would be a button called function module documentation

click on that ,it ll give the detail about that particular function module

i think this is best place to get the detail about a function module.

or else you can browse help.sap.com

thanks

mrutyun^