SAP BBP_ACCTX_CREATE_47 Function Module for NOTRANSL: BBP_ACCTX_CREATE_4X
BBP_ACCTX_CREATE_47 is a standard bbp acctx create 47 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: BBP_ACCTX_CREATE_4X processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for bbp acctx create 47 FM, simply by entering the name BBP_ACCTX_CREATE_47 into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBPM_47A
Program Name: SAPLBBPM_47A
Main Program: SAPLBBPM_47A
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_ACCTX_CREATE_47 pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'BBP_ACCTX_CREATE_47'"NOTRANSL: BBP_ACCTX_CREATE_4X.
EXPORTING
I_HD = "
I_BE_DATA = "Backend Information
TABLES
TI_IT = "
TI_TAX = "
* TI_ADD = "
TX_ACCIT = "Accounting Interface: Item Information
TX_ACCCR = "Accounting Interface: Currency Information
TE_ACCTX = "Tax Data Document Segment
IMPORTING Parameters details for BBP_ACCTX_CREATE_47
I_HD -
Data type: BBP_IV_HDOptional: No
Call by Reference: Yes
I_BE_DATA - Backend Information
Data type: BBP_IV_BEOptional: No
Call by Reference: Yes
TABLES Parameters details for BBP_ACCTX_CREATE_47
TI_IT -
Data type: BBP_IV_ITOptional: No
Call by Reference: Yes
TI_TAX -
Data type: BBP_IV_TAXOptional: No
Call by Reference: Yes
TI_ADD -
Data type: BBP_IV_ADDOptional: Yes
Call by Reference: Yes
TX_ACCIT - Accounting Interface: Item Information
Data type: ACCITOptional: No
Call by Reference: Yes
TX_ACCCR - Accounting Interface: Currency Information
Data type: ACCCROptional: No
Call by Reference: Yes
TE_ACCTX - Tax Data Document Segment
Data type: BSETOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BBP_ACCTX_CREATE_47 Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_hd | TYPE BBP_IV_HD, " | |||
| lt_ti_it | TYPE STANDARD TABLE OF BBP_IV_IT, " | |||
| lt_ti_tax | TYPE STANDARD TABLE OF BBP_IV_TAX, " | |||
| lv_i_be_data | TYPE BBP_IV_BE, " | |||
| lt_ti_add | TYPE STANDARD TABLE OF BBP_IV_ADD, " | |||
| lt_tx_accit | TYPE STANDARD TABLE OF ACCIT, " | |||
| lt_tx_acccr | TYPE STANDARD TABLE OF ACCCR, " | |||
| lt_te_acctx | TYPE STANDARD TABLE OF BSET. " |
|   CALL FUNCTION 'BBP_ACCTX_CREATE_47' "NOTRANSL: BBP_ACCTX_CREATE_4X |
| EXPORTING | ||
| I_HD | = lv_i_hd | |
| I_BE_DATA | = lv_i_be_data | |
| TABLES | ||
| TI_IT | = lt_ti_it | |
| TI_TAX | = lt_ti_tax | |
| TI_ADD | = lt_ti_add | |
| TX_ACCIT | = lt_tx_accit | |
| TX_ACCCR | = lt_tx_acccr | |
| TE_ACCTX | = lt_te_acctx | |
| . " BBP_ACCTX_CREATE_47 | ||
ABAP code using 7.40 inline data declarations to call FM BBP_ACCTX_CREATE_47
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects