SAP Function Modules

FVD_DISB_OL_ANALYZE_CHANGES SAP Function module - Analyze Changes to Disbursement Data







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

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


Pattern for FM FVD_DISB_OL_ANALYZE_CHANGES - FVD DISB OL ANALYZE CHANGES





CALL FUNCTION 'FVD_DISB_OL_ANALYZE_CHANGES' "Analyze Changes to Disbursement Data
  EXPORTING
    i_s_rdisb_last =            " rdisb         Interface Structure and Control Data for Disbursement
*   i_init = '1'                " char1         Ausruf aus der Initialisierung
  CHANGING
    c_s_activity =              " rdisb_activity  Disbursement: Activity List
    .  "  FVD_DISB_OL_ANALYZE_CHANGES

ABAP code example for Function Module FVD_DISB_OL_ANALYZE_CHANGES





The ABAP code below is a full code listing to execute function module FVD_DISB_OL_ANALYZE_CHANGES 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_c_s_activity) = 'Check type of data required'.
DATA(ld_i_s_rdisb_last) = 'Check type of data required'.
DATA(ld_i_init) = 'Check type of data required'. . CALL FUNCTION 'FVD_DISB_OL_ANALYZE_CHANGES' EXPORTING i_s_rdisb_last = ld_i_s_rdisb_last * i_init = ld_i_init CHANGING c_s_activity = ld_c_s_activity . " FVD_DISB_OL_ANALYZE_CHANGES
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_c_s_activity  TYPE RDISB_ACTIVITY ,
ld_i_s_rdisb_last  TYPE RDISB ,
ld_i_init  TYPE CHAR1 .

ld_c_s_activity = 'Check type of data required'.
ld_i_s_rdisb_last = 'Check type of data required'.
ld_i_init = 'Check type of data required'.

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