SAP Function Modules

ISH_DISTRIBUTE_ACTIVITY_ALLOC SAP Function module







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

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


Pattern for FM ISH_DISTRIBUTE_ACTIVITY_ALLOC - ISH DISTRIBUTE ACTIVITY ALLOC





CALL FUNCTION 'ISH_DISTRIBUTE_ACTIVITY_ALLOC' "
  EXPORTING
    einri =                     " tn02a-einri
    event =                     " tn02e-event
*   mappe = ' '                 "               Write BI session, if CALL TR. error -->F2
*   tmode = 'E'                 "               Processing mode for CALL TRANSACTION       -->F2
*   tupdate = 'A'               "               Update mode for CALL TRANSACTION           -->F2
  IMPORTING
    subrc =                     " sy-subrc      Return code of transaction
  TABLES
    t_rnhc01 =                  " rnhc01        Account Assignment Table
  EXCEPTIONS
    NO_CONFIGURATION_FOUND = 1  "
    ERROR_TRANSACTION = 2       "
    .  "  ISH_DISTRIBUTE_ACTIVITY_ALLOC

ABAP code example for Function Module ISH_DISTRIBUTE_ACTIVITY_ALLOC





The ABAP code below is a full code listing to execute function module ISH_DISTRIBUTE_ACTIVITY_ALLOC 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_subrc  TYPE SY-SUBRC ,
it_t_rnhc01  TYPE STANDARD TABLE OF RNHC01,"TABLES PARAM
wa_t_rnhc01  LIKE LINE OF it_t_rnhc01 .


SELECT single EINRI
FROM TN02A
INTO @DATA(ld_einri).


SELECT single EVENT
FROM TN02E
INTO @DATA(ld_event).

DATA(ld_mappe) = 'some text here'.
DATA(ld_tmode) = 'some text here'.
DATA(ld_tupdate) = 'some text here'.

"populate fields of struture and append to itab
append wa_t_rnhc01 to it_t_rnhc01. . CALL FUNCTION 'ISH_DISTRIBUTE_ACTIVITY_ALLOC' EXPORTING einri = ld_einri event = ld_event * mappe = ld_mappe * tmode = ld_tmode * tupdate = ld_tupdate IMPORTING subrc = ld_subrc TABLES t_rnhc01 = it_t_rnhc01 EXCEPTIONS NO_CONFIGURATION_FOUND = 1 ERROR_TRANSACTION = 2 . " ISH_DISTRIBUTE_ACTIVITY_ALLOC
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "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_subrc  TYPE SY-SUBRC ,
ld_einri  TYPE TN02A-EINRI ,
it_t_rnhc01  TYPE STANDARD TABLE OF RNHC01 ,
wa_t_rnhc01  LIKE LINE OF it_t_rnhc01,
ld_event  TYPE TN02E-EVENT ,
ld_mappe  TYPE STRING ,
ld_tmode  TYPE STRING ,
ld_tupdate  TYPE STRING .


SELECT single EINRI
FROM TN02A
INTO ld_einri.


"populate fields of struture and append to itab
append wa_t_rnhc01 to it_t_rnhc01.

SELECT single EVENT
FROM TN02E
INTO ld_event.

ld_mappe = 'some text here'.
ld_tmode = 'some text here'.
ld_tupdate = '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_DISTRIBUTE_ACTIVITY_ALLOC or its description.