SAP Function Modules

CIF_CONF_SEND_BUF SAP Function module







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

Associated Function Group: CFBGRFCBUF
Released Date: Not Released
Processing type: Start update immediately (start immed)
update module start immediate settings


Pattern for FM CIF_CONF_SEND_BUF - CIF CONF SEND BUF





CALL FUNCTION 'CIF_CONF_SEND_BUF' "
  EXPORTING
    is_ctrlparams =             " cifctrlpar    Control Parameters for Data Transfers
  TABLES
    it_apocon =                 " cif_apocon    Capacity Confirmations in APO Format
*   it_apocon_x =               " cif_apocox    Checklist for CIF_APOCON
*   it_enqueue_args =           " cif_imod      Basis Table of Integration Model for APO Interface
*   extensionout =              " cifbparex     Reference Structure for ExtensionIn and ExtensionOut BAPIs
    .  "  CIF_CONF_SEND_BUF

ABAP code example for Function Module CIF_CONF_SEND_BUF





The ABAP code below is a full code listing to execute function module CIF_CONF_SEND_BUF 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:
it_it_apocon  TYPE STANDARD TABLE OF CIF_APOCON,"TABLES PARAM
wa_it_apocon  LIKE LINE OF it_it_apocon ,
it_it_apocon_x  TYPE STANDARD TABLE OF CIF_APOCOX,"TABLES PARAM
wa_it_apocon_x  LIKE LINE OF it_it_apocon_x ,
it_it_enqueue_args  TYPE STANDARD TABLE OF CIF_IMOD,"TABLES PARAM
wa_it_enqueue_args  LIKE LINE OF it_it_enqueue_args ,
it_extensionout  TYPE STANDARD TABLE OF CIFBPAREX,"TABLES PARAM
wa_extensionout  LIKE LINE OF it_extensionout .

DATA(ld_is_ctrlparams) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_it_apocon to it_it_apocon.

"populate fields of struture and append to itab
append wa_it_apocon_x to it_it_apocon_x.

"populate fields of struture and append to itab
append wa_it_enqueue_args to it_it_enqueue_args.

"populate fields of struture and append to itab
append wa_extensionout to it_extensionout. . CALL FUNCTION 'CIF_CONF_SEND_BUF' EXPORTING is_ctrlparams = ld_is_ctrlparams TABLES it_apocon = it_it_apocon * it_apocon_x = it_it_apocon_x * it_enqueue_args = it_it_enqueue_args * extensionout = it_extensionout . " CIF_CONF_SEND_BUF
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_is_ctrlparams  TYPE CIFCTRLPAR ,
it_it_apocon  TYPE STANDARD TABLE OF CIF_APOCON ,
wa_it_apocon  LIKE LINE OF it_it_apocon,
it_it_apocon_x  TYPE STANDARD TABLE OF CIF_APOCOX ,
wa_it_apocon_x  LIKE LINE OF it_it_apocon_x,
it_it_enqueue_args  TYPE STANDARD TABLE OF CIF_IMOD ,
wa_it_enqueue_args  LIKE LINE OF it_it_enqueue_args,
it_extensionout  TYPE STANDARD TABLE OF CIFBPAREX ,
wa_extensionout  LIKE LINE OF it_extensionout.

ld_is_ctrlparams = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_it_apocon to it_it_apocon.

"populate fields of struture and append to itab
append wa_it_apocon_x to it_it_apocon_x.

"populate fields of struture and append to itab
append wa_it_enqueue_args to it_it_enqueue_args.

"populate fields of struture and append to itab
append wa_extensionout to it_extensionout.

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