FM_BL_DOCUMENT_PROJECT 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 FM_BL_DOCUMENT_PROJECT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FMFG_BLCORE
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FM_BL_DOCUMENT_PROJECT' "Create budgetary ledger lines from RWIN
TABLES
t_acchd = " acchd Interface to Accounting: Header Information
t_accit = " accit Interface to Accounting: Item Information
t_acccr = " acccr Accounting Interface: Currency Information
* t_accit_ext = " accit_extension ACC Interface: Additional Item Information
* t_ausz_clr = " ausz_clr Assign Clearing Item to Cleared Items
. " FM_BL_DOCUMENT_PROJECT
The ABAP code below is a full code listing to execute function module FM_BL_DOCUMENT_PROJECT 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).
| it_t_acchd | TYPE STANDARD TABLE OF ACCHD,"TABLES PARAM |
| wa_t_acchd | LIKE LINE OF it_t_acchd , |
| it_t_accit | TYPE STANDARD TABLE OF ACCIT,"TABLES PARAM |
| wa_t_accit | LIKE LINE OF it_t_accit , |
| it_t_acccr | TYPE STANDARD TABLE OF ACCCR,"TABLES PARAM |
| wa_t_acccr | LIKE LINE OF it_t_acccr , |
| it_t_accit_ext | TYPE STANDARD TABLE OF ACCIT_EXTENSION,"TABLES PARAM |
| wa_t_accit_ext | LIKE LINE OF it_t_accit_ext , |
| it_t_ausz_clr | TYPE STANDARD TABLE OF AUSZ_CLR,"TABLES PARAM |
| wa_t_ausz_clr | LIKE LINE OF it_t_ausz_clr . |
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:
| it_t_acchd | TYPE STANDARD TABLE OF ACCHD , |
| wa_t_acchd | LIKE LINE OF it_t_acchd, |
| it_t_accit | TYPE STANDARD TABLE OF ACCIT , |
| wa_t_accit | LIKE LINE OF it_t_accit, |
| it_t_acccr | TYPE STANDARD TABLE OF ACCCR , |
| wa_t_acccr | LIKE LINE OF it_t_acccr, |
| it_t_accit_ext | TYPE STANDARD TABLE OF ACCIT_EXTENSION , |
| wa_t_accit_ext | LIKE LINE OF it_t_accit_ext, |
| it_t_ausz_clr | TYPE STANDARD TABLE OF AUSZ_CLR , |
| wa_t_ausz_clr | LIKE LINE OF it_t_ausz_clr. |
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 FM_BL_DOCUMENT_PROJECT or its description.
FM_BL_DOCUMENT_PROJECT - Create budgetary ledger lines from RWIN FM_BL_DOCUMENT_GET - To get the global data from the BL FM_BL_CREATE_STAT_LEDGER - Call of BL from actuals FM_BL_CO_ACCT_DERIVE_TEST - CO-PA tool Colombia - Account derivation test for Open Items & Actuals FM_BL_CO_ACCOUNTS_DERIVE - Derive the US Fed. Gov. budgetary ledger accounts FM_BL_CORRECTION_POST - Post correction to previous BL entries