SAP Function Modules

IST_CA_UNBLOCK_WQTEL_PARA_T901 SAP Function module - IS-T-CA: MassT900 Enter Additional Parameter for Mass Activity T900







IST_CA_UNBLOCK_WQTEL_PARA_T901 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 IST_CA_UNBLOCK_WQTEL_PARA_T901 into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM IST_CA_UNBLOCK_WQTEL_PARA_T901 - IST CA UNBLOCK WQTEL PARA T901





CALL FUNCTION 'IST_CA_UNBLOCK_WQTEL_PARA_T901' "IS-T-CA: MassT900 Enter Additional Parameter for Mass Activity T900
  EXPORTING
    i_laufd =                   " fkkcocc-laufd  Run Date
    i_laufi =                   " fkkcocc-laufi  Run ID
    i_wmode =                   " fkkoogen-wmode  If set to 'X', only display mode
*   i_copyd =                   " fkkcocc-copyd  Copy Date (Source)
*   i_copyi =                   " fkkcocc-copyi  Copy ID (Source)
    .  "  IST_CA_UNBLOCK_WQTEL_PARA_T901

ABAP code example for Function Module IST_CA_UNBLOCK_WQTEL_PARA_T901





The ABAP code below is a full code listing to execute function module IST_CA_UNBLOCK_WQTEL_PARA_T901 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_i_laufd) = 20210129

DATA(ld_i_laufi) = some text here

DATA(ld_i_wmode) = some text here

DATA(ld_i_copyd) = 20210129

DATA(ld_i_copyi) = some text here . CALL FUNCTION 'IST_CA_UNBLOCK_WQTEL_PARA_T901' EXPORTING i_laufd = ld_i_laufd i_laufi = ld_i_laufi i_wmode = ld_i_wmode * i_copyd = ld_i_copyd * i_copyi = ld_i_copyi . " IST_CA_UNBLOCK_WQTEL_PARA_T901
IF SY-SUBRC EQ 0. "All OK 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_i_laufd  TYPE FKKCOCC-LAUFD ,
ld_i_laufi  TYPE FKKCOCC-LAUFI ,
ld_i_wmode  TYPE FKKOOGEN-WMODE ,
ld_i_copyd  TYPE FKKCOCC-COPYD ,
ld_i_copyi  TYPE FKKCOCC-COPYI .


ld_i_laufd = 20210129

ld_i_laufi = some text here

ld_i_wmode = some text here

ld_i_copyd = 20210129

ld_i_copyi = some text here

SAP Documentation for FM IST_CA_UNBLOCK_WQTEL_PARA_T901


This event is similar to event 1701 FKK_SAMPLE_1701. In this event, additional parameters for activity T900 (generate phone number ...See here for full SAP fm documentation







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 IST_CA_UNBLOCK_WQTEL_PARA_T901 or its description.