BILLING_SCHEDULE_DIALOG 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 BILLING_SCHEDULE_DIALOG into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
V60F
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BILLING_SCHEDULE_DIALOG' "Maintain billing plan
* EXPORTING
* i_t185 = " t185
* i_t185f = " t185f
* i_t185v = " t185v
* i_fplnr = SPACE " fpla-fplnr
* i_waers = SPACE " fplt-waers
* i_fpart = SPACE " tfpla-fpart
* i_veda = " vedavb
* i_fkdat = " vbkd-fkdat
* i_fplaa = " fplaa
* i_standard = SPACE "
* i_upd_fpla = SPACE "
* i_upd_fplt = SPACE "
* i_komk = " komk
* i_komp = " komp
* i_kompax = " kompax
* i_bezei = SPACE "
* i_fpltr = " vbrp-fpltr Call billing document with date
* i_fkrel = SPACE " vbap-fkrel
* i_veda_kopf = " vedavb
* i_kfplan = SPACE " rv60f-kfplan
* i_kfplnr = SPACE " fpla-fplnr
* i_absagen = SPACE "
* i_anzeigen = SPACE "
* i_berechtigung_block = SPACE "
* i_berechtigung_unblock = SPACE "
* i_taxi_tabstrip_captions = " taxi_tabstrip_captions
* i_taxi_program = " sy-repid
* i_taxi_header_subscreen = " taxi_params-dynpronr
* i_taxi_gui_program = " sy-repid
* i_taxi_gui_status = " taxi_params-gui_status
* i_taxi_gui_title = " taxi_params-gui_title
IMPORTING
e_t185 = " t185
e_t185f = " t185f
e_t185v = " t185v
e_fplnr = " fpla-fplnr
e_dataloss = " r185d-dataloss
e_upd_fpla = "
e_upd_fplt = "
e_kompax = " kompax
e_upd_posfakt = "
TABLES
fpla_new = " fplavb
fpla_old = " fplavb
fplt_new = " fpltvb
fplt_old = " fpltvb
* i_fplts = " fplts
* i_fpltnp = " fpltnp
* i_komv = " komv
* i_tkomk = " komk
* i_svbap = " vbapu Stucture-info item / Higher-level item
* CHANGING
* c_taxi_tabstrip = "
. " BILLING_SCHEDULE_DIALOG
The ABAP code below is a full code listing to execute function module BILLING_SCHEDULE_DIALOG 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).
| ld_e_t185 | TYPE T185 , |
| ld_e_t185f | TYPE T185F , |
| ld_e_t185v | TYPE T185V , |
| ld_e_fplnr | TYPE FPLA-FPLNR , |
| ld_e_dataloss | TYPE R185D-DATALOSS , |
| ld_e_upd_fpla | TYPE STRING , |
| ld_e_upd_fplt | TYPE STRING , |
| ld_e_kompax | TYPE KOMPAX , |
| ld_e_upd_posfakt | TYPE STRING , |
| it_fpla_new | TYPE STANDARD TABLE OF FPLAVB,"TABLES PARAM |
| wa_fpla_new | LIKE LINE OF it_fpla_new , |
| it_fpla_old | TYPE STANDARD TABLE OF FPLAVB,"TABLES PARAM |
| wa_fpla_old | LIKE LINE OF it_fpla_old , |
| it_fplt_new | TYPE STANDARD TABLE OF FPLTVB,"TABLES PARAM |
| wa_fplt_new | LIKE LINE OF it_fplt_new , |
| it_fplt_old | TYPE STANDARD TABLE OF FPLTVB,"TABLES PARAM |
| wa_fplt_old | LIKE LINE OF it_fplt_old , |
| it_i_fplts | TYPE STANDARD TABLE OF FPLTS,"TABLES PARAM |
| wa_i_fplts | LIKE LINE OF it_i_fplts , |
| it_i_fpltnp | TYPE STANDARD TABLE OF FPLTNP,"TABLES PARAM |
| wa_i_fpltnp | LIKE LINE OF it_i_fpltnp , |
| it_i_komv | TYPE STANDARD TABLE OF KOMV,"TABLES PARAM |
| wa_i_komv | LIKE LINE OF it_i_komv , |
| it_i_tkomk | TYPE STANDARD TABLE OF KOMK,"TABLES PARAM |
| wa_i_tkomk | LIKE LINE OF it_i_tkomk , |
| it_i_svbap | TYPE STANDARD TABLE OF VBAPU,"TABLES PARAM |
| wa_i_svbap | LIKE LINE OF it_i_svbap . |
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_taxi_tabstrip | TYPE STRING , |
| ld_e_t185 | TYPE T185 , |
| it_fpla_new | TYPE STANDARD TABLE OF FPLAVB , |
| wa_fpla_new | LIKE LINE OF it_fpla_new, |
| ld_i_t185 | TYPE T185 , |
| ld_e_t185f | TYPE T185F , |
| it_fpla_old | TYPE STANDARD TABLE OF FPLAVB , |
| wa_fpla_old | LIKE LINE OF it_fpla_old, |
| ld_i_t185f | TYPE T185F , |
| ld_e_t185v | TYPE T185V , |
| it_fplt_new | TYPE STANDARD TABLE OF FPLTVB , |
| wa_fplt_new | LIKE LINE OF it_fplt_new, |
| ld_i_t185v | TYPE T185V , |
| ld_e_fplnr | TYPE FPLA-FPLNR , |
| ld_i_fplnr | TYPE FPLA-FPLNR , |
| it_fplt_old | TYPE STANDARD TABLE OF FPLTVB , |
| wa_fplt_old | LIKE LINE OF it_fplt_old, |
| ld_e_dataloss | TYPE R185D-DATALOSS , |
| ld_i_waers | TYPE FPLT-WAERS , |
| it_i_fplts | TYPE STANDARD TABLE OF FPLTS , |
| wa_i_fplts | LIKE LINE OF it_i_fplts, |
| ld_e_upd_fpla | TYPE STRING , |
| ld_i_fpart | TYPE TFPLA-FPART , |
| it_i_fpltnp | TYPE STANDARD TABLE OF FPLTNP , |
| wa_i_fpltnp | LIKE LINE OF it_i_fpltnp, |
| it_i_komv | TYPE STANDARD TABLE OF KOMV , |
| wa_i_komv | LIKE LINE OF it_i_komv, |
| ld_i_veda | TYPE VEDAVB , |
| ld_e_upd_fplt | TYPE STRING , |
| it_i_tkomk | TYPE STANDARD TABLE OF KOMK , |
| wa_i_tkomk | LIKE LINE OF it_i_tkomk, |
| ld_i_fkdat | TYPE VBKD-FKDAT , |
| ld_e_kompax | TYPE KOMPAX , |
| it_i_svbap | TYPE STANDARD TABLE OF VBAPU , |
| wa_i_svbap | LIKE LINE OF it_i_svbap, |
| ld_i_fplaa | TYPE FPLAA , |
| ld_e_upd_posfakt | TYPE STRING , |
| ld_i_standard | TYPE STRING , |
| ld_i_upd_fpla | TYPE STRING , |
| ld_i_upd_fplt | TYPE STRING , |
| ld_i_komk | TYPE KOMK , |
| ld_i_komp | TYPE KOMP , |
| ld_i_kompax | TYPE KOMPAX , |
| ld_i_bezei | TYPE STRING , |
| ld_i_fpltr | TYPE VBRP-FPLTR , |
| ld_i_fkrel | TYPE VBAP-FKREL , |
| ld_i_veda_kopf | TYPE VEDAVB , |
| ld_i_kfplan | TYPE RV60F-KFPLAN , |
| ld_i_kfplnr | TYPE FPLA-FPLNR , |
| ld_i_absagen | TYPE STRING , |
| ld_i_anzeigen | TYPE STRING , |
| ld_i_berechtigung_block | TYPE STRING , |
| ld_i_berechtigung_unblock | TYPE STRING , |
| ld_i_taxi_tabstrip_captions | TYPE TAXI_TABSTRIP_CAPTIONS , |
| ld_i_taxi_program | TYPE SY-REPID , |
| ld_i_taxi_header_subscreen | TYPE TAXI_PARAMS-DYNPRONR , |
| ld_i_taxi_gui_program | TYPE SY-REPID , |
| ld_i_taxi_gui_status | TYPE TAXI_PARAMS-GUI_STATUS , |
| ld_i_taxi_gui_title | TYPE TAXI_PARAMS-GUI_TITLE . |
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 BILLING_SCHEDULE_DIALOG or its description.