SAP Function Modules

FSCD_SAMPLE_V363 SAP Function module - Read ICDA with ID or Ext. Ref: Customer Data Enhancement







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

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


Pattern for FM FSCD_SAMPLE_V363 - FSCD SAMPLE V363





CALL FUNCTION 'FSCD_SAMPLE_V363' "Read ICDA with ID or Ext.  Ref: Customer Data Enhancement
  EXPORTING
    i_selection =               " vkk_icda_by_elements  ICDA Selection with Elements
    i_dimaiob =                 " dimaiob       IO: Header Data for Insurance Object in FS-CD
    i_dimaiobbcon =             " dimaiobbcon   Contract Data in the Feeder System
    it_dimaiobpar =             " timaiobpar    IO: Insurance Object-Partner Relationship in FS-CD
    it_dimaparbrok =            " timaparbrok   IO: Insurance Object-Broker Relationship in FS-CD
    it_timaparcorr =            " timaparcorr   IO: Table Category for DIMAPARCORR
    it_timabroker =             " timabroker    IO: Table Category for DIMABROKER
    it_timaparpay =             " timaparpay    IO: Table Category for DIMAPARPAY
    it_dimaparwhv =             " timaparwhv    Valid Variable Withholding Tax Supplements for IO-BP Rel.
    it_dfkklocks_t =            " dfkklocks_t   Table Type for DFKKLOCKS
  IMPORTING
    et_return =                 " bapirettab    Table with BAPI Return Information
  CHANGING
    c_icda_data =               " vkk_icda_data_det  Detailed ICDA Data
    .  "  FSCD_SAMPLE_V363

ABAP code example for Function Module FSCD_SAMPLE_V363





The ABAP code below is a full code listing to execute function module FSCD_SAMPLE_V363 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_et_return  TYPE BAPIRETTAB .

DATA(ld_c_icda_data) = 'Check type of data required'.
DATA(ld_i_selection) = 'Check type of data required'.
DATA(ld_i_dimaiob) = 'Check type of data required'.
DATA(ld_i_dimaiobbcon) = 'Check type of data required'.
DATA(ld_it_dimaiobpar) = 'Check type of data required'.
DATA(ld_it_dimaparbrok) = 'Check type of data required'.
DATA(ld_it_timaparcorr) = 'Check type of data required'.
DATA(ld_it_timabroker) = 'Check type of data required'.
DATA(ld_it_timaparpay) = 'Check type of data required'.
DATA(ld_it_dimaparwhv) = 'Check type of data required'.
DATA(ld_it_dfkklocks_t) = 'Check type of data required'. . CALL FUNCTION 'FSCD_SAMPLE_V363' EXPORTING i_selection = ld_i_selection i_dimaiob = ld_i_dimaiob i_dimaiobbcon = ld_i_dimaiobbcon it_dimaiobpar = ld_it_dimaiobpar it_dimaparbrok = ld_it_dimaparbrok it_timaparcorr = ld_it_timaparcorr it_timabroker = ld_it_timabroker it_timaparpay = ld_it_timaparpay it_dimaparwhv = ld_it_dimaparwhv it_dfkklocks_t = ld_it_dfkklocks_t IMPORTING et_return = ld_et_return CHANGING c_icda_data = ld_c_icda_data . " FSCD_SAMPLE_V363
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_icda_data  TYPE VKK_ICDA_DATA_DET ,
ld_et_return  TYPE BAPIRETTAB ,
ld_i_selection  TYPE VKK_ICDA_BY_ELEMENTS ,
ld_i_dimaiob  TYPE DIMAIOB ,
ld_i_dimaiobbcon  TYPE DIMAIOBBCON ,
ld_it_dimaiobpar  TYPE TIMAIOBPAR ,
ld_it_dimaparbrok  TYPE TIMAPARBROK ,
ld_it_timaparcorr  TYPE TIMAPARCORR ,
ld_it_timabroker  TYPE TIMABROKER ,
ld_it_timaparpay  TYPE TIMAPARPAY ,
ld_it_dimaparwhv  TYPE TIMAPARWHV ,
ld_it_dfkklocks_t  TYPE DFKKLOCKS_T .

ld_c_icda_data = 'Check type of data required'.
ld_i_selection = 'Check type of data required'.
ld_i_dimaiob = 'Check type of data required'.
ld_i_dimaiobbcon = 'Check type of data required'.
ld_it_dimaiobpar = 'Check type of data required'.
ld_it_dimaparbrok = 'Check type of data required'.
ld_it_timaparcorr = 'Check type of data required'.
ld_it_timabroker = 'Check type of data required'.
ld_it_timaparpay = 'Check type of data required'.
ld_it_dimaparwhv = 'Check type of data required'.
ld_it_dfkklocks_t = '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 FSCD_SAMPLE_V363 or its description.