SAP Function Modules

BBP_APO_CTR_CONVERSION SAP Function module







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

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


Pattern for FM BBP_APO_CTR_CONVERSION - BBP APO CTR CONVERSION





CALL FUNCTION 'BBP_APO_CTR_CONVERSION' "
  EXPORTING
    iv_apo_logsys =             " bbp_logsys
*   it_header_pd =              " bbpt_pds_ctr_header_d
*   it_item_pd =                " bbpt_pd_ctr_item_d
*   it_partner_pd =             " bbpt_pds_partner
*   it_orgdata_pd =             " bbpt_pds_org
  IMPORTING
    et_apo_guids =              " bbpt_apo_guids
    et_apo_check_rel =          " bbpt_apo_check_rel_x
    et_apo_tpsrc =              " bbpt_apo_tpsrc
    et_apo_tpsrcx =             " bbpt_apo_tpsrcx
    et_apo_scales =             " bbpt_apo_scalest
    et_apo_scalesx =            " bbpt_apo_scales_xt
  EXCEPTIONS
    NO_RFC_DESTINATION = 1      "
    NO_APO_CURRENCY = 2         "
    NO_TIMEZONE = 3             "
    .  "  BBP_APO_CTR_CONVERSION

ABAP code example for Function Module BBP_APO_CTR_CONVERSION





The ABAP code below is a full code listing to execute function module BBP_APO_CTR_CONVERSION 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_apo_guids  TYPE BBPT_APO_GUIDS ,
ld_et_apo_check_rel  TYPE BBPT_APO_CHECK_REL_X ,
ld_et_apo_tpsrc  TYPE BBPT_APO_TPSRC ,
ld_et_apo_tpsrcx  TYPE BBPT_APO_TPSRCX ,
ld_et_apo_scales  TYPE BBPT_APO_SCALEST ,
ld_et_apo_scalesx  TYPE BBPT_APO_SCALES_XT .

DATA(ld_iv_apo_logsys) = 'Check type of data required'.
DATA(ld_it_header_pd) = 'some text here'.
DATA(ld_it_item_pd) = 'some text here'.
DATA(ld_it_partner_pd) = 'some text here'.
DATA(ld_it_orgdata_pd) = 'some text here'. . CALL FUNCTION 'BBP_APO_CTR_CONVERSION' EXPORTING iv_apo_logsys = ld_iv_apo_logsys * it_header_pd = ld_it_header_pd * it_item_pd = ld_it_item_pd * it_partner_pd = ld_it_partner_pd * it_orgdata_pd = ld_it_orgdata_pd IMPORTING et_apo_guids = ld_et_apo_guids et_apo_check_rel = ld_et_apo_check_rel et_apo_tpsrc = ld_et_apo_tpsrc et_apo_tpsrcx = ld_et_apo_tpsrcx et_apo_scales = ld_et_apo_scales et_apo_scalesx = ld_et_apo_scalesx EXCEPTIONS NO_RFC_DESTINATION = 1 NO_APO_CURRENCY = 2 NO_TIMEZONE = 3 . " BBP_APO_CTR_CONVERSION
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 ELSEIF SY-SUBRC EQ 3. "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_et_apo_guids  TYPE BBPT_APO_GUIDS ,
ld_iv_apo_logsys  TYPE BBP_LOGSYS ,
ld_et_apo_check_rel  TYPE BBPT_APO_CHECK_REL_X ,
ld_it_header_pd  TYPE BBPT_PDS_CTR_HEADER_D ,
ld_et_apo_tpsrc  TYPE BBPT_APO_TPSRC ,
ld_it_item_pd  TYPE BBPT_PD_CTR_ITEM_D ,
ld_et_apo_tpsrcx  TYPE BBPT_APO_TPSRCX ,
ld_it_partner_pd  TYPE BBPT_PDS_PARTNER ,
ld_et_apo_scales  TYPE BBPT_APO_SCALEST ,
ld_it_orgdata_pd  TYPE BBPT_PDS_ORG ,
ld_et_apo_scalesx  TYPE BBPT_APO_SCALES_XT .

ld_iv_apo_logsys = 'Check type of data required'.
ld_it_header_pd = 'some text here'.
ld_it_item_pd = 'some text here'.
ld_it_partner_pd = 'some text here'.
ld_it_orgdata_pd = '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 BBP_APO_CTR_CONVERSION or its description.