SAP Function Modules

ISH_N2_PD_TRANSPORT SAP Function module







ISH_N2_PD_TRANSPORT is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name ISH_N2_PD_TRANSPORT into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: N2TRANSPORT
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM ISH_N2_PD_TRANSPORT - ISH N2 PD TRANSPORT





CALL FUNCTION 'ISH_N2_PD_TRANSPORT' "
* EXPORTING
*   s_mandt = SY-MANDT          " sy-mandt      SAP System, Client Number from Logon
*   s_langu = SY-LANGU          " sy-langu      SAP System, Current Language
*   s_param_n10 = 'GET'         " usparam-parva  Parameter Value
*   s_param_n11 = 'GET'         " usparam-parva
*   s_show_warning = 'X'        "               Display warning
*   s_show_questions = 'X'      "
*   s_get_data = SPACE          "
  IMPORTING
    s_result =                  "
  CHANGING
    s_header =                  " rn2dt_ext     IS-H*MED n2dt + addit. info for generating
  EXCEPTIONS
    DOCCAT_NOT_FOUND = 1        "               Document category not found
    .  "  ISH_N2_PD_TRANSPORT

ABAP code example for Function Module ISH_N2_PD_TRANSPORT





The ABAP code below is a full code listing to execute function module ISH_N2_PD_TRANSPORT including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

DATA:
ld_s_result  TYPE STRING .

DATA(ld_s_header) = 'Check type of data required'.
DATA(ld_s_mandt) = 'Check type of data required'.
DATA(ld_s_langu) = 'Check type of data required'.

DATA(ld_s_param_n10) = some text here

DATA(ld_s_param_n11) = some text here
DATA(ld_s_show_warning) = 'some text here'.
DATA(ld_s_show_questions) = 'some text here'.
DATA(ld_s_get_data) = 'some text here'. . CALL FUNCTION 'ISH_N2_PD_TRANSPORT' * EXPORTING * s_mandt = ld_s_mandt * s_langu = ld_s_langu * s_param_n10 = ld_s_param_n10 * s_param_n11 = ld_s_param_n11 * s_show_warning = ld_s_show_warning * s_show_questions = ld_s_show_questions * s_get_data = ld_s_get_data IMPORTING s_result = ld_s_result CHANGING s_header = ld_s_header EXCEPTIONS DOCCAT_NOT_FOUND = 1 . " ISH_N2_PD_TRANSPORT
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_s_header  TYPE RN2DT_EXT ,
ld_s_result  TYPE STRING ,
ld_s_mandt  TYPE SY-MANDT ,
ld_s_langu  TYPE SY-LANGU ,
ld_s_param_n10  TYPE USPARAM-PARVA ,
ld_s_param_n11  TYPE USPARAM-PARVA ,
ld_s_show_warning  TYPE STRING ,
ld_s_show_questions  TYPE STRING ,
ld_s_get_data  TYPE STRING .

ld_s_header = 'Check type of data required'.
ld_s_mandt = 'Check type of data required'.
ld_s_langu = 'Check type of data required'.

ld_s_param_n10 = some text here

ld_s_param_n11 = some text here
ld_s_show_warning = 'some text here'.
ld_s_show_questions = 'some text here'.
ld_s_get_data = 'some text here'.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISH_N2_PD_TRANSPORT or its description.