ISP_GEN_BE2BBE 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 ISP_GEN_BE2BBE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JJ01
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISP_GEN_BE2BBE' "IS-M/AM: Determine Planning Data for a BBU
* EXPORTING
* be = " jjtbe-beleinh
* rubric = " jjtiko-inhaltskom
* rubric2 = " jjtiko-inhaltskom
* xno_filter = " jjtiko-xscripte
* xhide_svo = " xhide_svo IS-M: Give preference to cont.comps in ad section indicator
* xbuild_tree = 'X' " sy-batch
* pv_pos_art = '01' " jhap-pos_art
IMPORTING
rubric_fl = " jhapa-inhk_klev1
* TABLES
* itab_bbe = " rjjbday
* itab_bbe_r1 = " rjjobjin
* itab_bbe_r1_basis = " rjjoeiko
* itab_bbe_r1_double = " rjjobjin
* itab_bbe_r1_miss = " rjjobjin
* itab_bbe_r1_succs = " rjjoinf
* itab_be_r1 = " rjjobjin
* itab_bbe_tree = " jjb1_objtree_tab
* itab_bbe_tree_all = " jjb1_objtree_tab
* itab_pe_match = " rjjpefn
* itab_vavartyp = " rjlj011
EXCEPTIONS
BE_NOT_FOUND = 1 "
. " ISP_GEN_BE2BBE
The ABAP code below is a full code listing to execute function module ISP_GEN_BE2BBE 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_rubric_fl | TYPE JHAPA-INHK_KLEV1 , |
| it_itab_bbe | TYPE STANDARD TABLE OF RJJBDAY,"TABLES PARAM |
| wa_itab_bbe | LIKE LINE OF it_itab_bbe , |
| it_itab_bbe_r1 | TYPE STANDARD TABLE OF RJJOBJIN,"TABLES PARAM |
| wa_itab_bbe_r1 | LIKE LINE OF it_itab_bbe_r1 , |
| it_itab_bbe_r1_basis | TYPE STANDARD TABLE OF RJJOEIKO,"TABLES PARAM |
| wa_itab_bbe_r1_basis | LIKE LINE OF it_itab_bbe_r1_basis , |
| it_itab_bbe_r1_double | TYPE STANDARD TABLE OF RJJOBJIN,"TABLES PARAM |
| wa_itab_bbe_r1_double | LIKE LINE OF it_itab_bbe_r1_double , |
| it_itab_bbe_r1_miss | TYPE STANDARD TABLE OF RJJOBJIN,"TABLES PARAM |
| wa_itab_bbe_r1_miss | LIKE LINE OF it_itab_bbe_r1_miss , |
| it_itab_bbe_r1_succs | TYPE STANDARD TABLE OF RJJOINF,"TABLES PARAM |
| wa_itab_bbe_r1_succs | LIKE LINE OF it_itab_bbe_r1_succs , |
| it_itab_be_r1 | TYPE STANDARD TABLE OF RJJOBJIN,"TABLES PARAM |
| wa_itab_be_r1 | LIKE LINE OF it_itab_be_r1 , |
| it_itab_bbe_tree | TYPE STANDARD TABLE OF JJB1_OBJTREE_TAB,"TABLES PARAM |
| wa_itab_bbe_tree | LIKE LINE OF it_itab_bbe_tree , |
| it_itab_bbe_tree_all | TYPE STANDARD TABLE OF JJB1_OBJTREE_TAB,"TABLES PARAM |
| wa_itab_bbe_tree_all | LIKE LINE OF it_itab_bbe_tree_all , |
| it_itab_pe_match | TYPE STANDARD TABLE OF RJJPEFN,"TABLES PARAM |
| wa_itab_pe_match | LIKE LINE OF it_itab_pe_match , |
| it_itab_vavartyp | TYPE STANDARD TABLE OF RJLJ011,"TABLES PARAM |
| wa_itab_vavartyp | LIKE LINE OF it_itab_vavartyp . |
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_rubric_fl | TYPE JHAPA-INHK_KLEV1 , |
| ld_be | TYPE JJTBE-BELEINH , |
| it_itab_bbe | TYPE STANDARD TABLE OF RJJBDAY , |
| wa_itab_bbe | LIKE LINE OF it_itab_bbe, |
| ld_rubric | TYPE JJTIKO-INHALTSKOM , |
| it_itab_bbe_r1 | TYPE STANDARD TABLE OF RJJOBJIN , |
| wa_itab_bbe_r1 | LIKE LINE OF it_itab_bbe_r1, |
| ld_rubric2 | TYPE JJTIKO-INHALTSKOM , |
| it_itab_bbe_r1_basis | TYPE STANDARD TABLE OF RJJOEIKO , |
| wa_itab_bbe_r1_basis | LIKE LINE OF it_itab_bbe_r1_basis, |
| ld_xno_filter | TYPE JJTIKO-XSCRIPTE , |
| it_itab_bbe_r1_double | TYPE STANDARD TABLE OF RJJOBJIN , |
| wa_itab_bbe_r1_double | LIKE LINE OF it_itab_bbe_r1_double, |
| ld_xhide_svo | TYPE XHIDE_SVO , |
| it_itab_bbe_r1_miss | TYPE STANDARD TABLE OF RJJOBJIN , |
| wa_itab_bbe_r1_miss | LIKE LINE OF it_itab_bbe_r1_miss, |
| ld_xbuild_tree | TYPE SY-BATCH , |
| it_itab_bbe_r1_succs | TYPE STANDARD TABLE OF RJJOINF , |
| wa_itab_bbe_r1_succs | LIKE LINE OF it_itab_bbe_r1_succs, |
| ld_pv_pos_art | TYPE JHAP-POS_ART , |
| it_itab_be_r1 | TYPE STANDARD TABLE OF RJJOBJIN , |
| wa_itab_be_r1 | LIKE LINE OF it_itab_be_r1, |
| it_itab_bbe_tree | TYPE STANDARD TABLE OF JJB1_OBJTREE_TAB , |
| wa_itab_bbe_tree | LIKE LINE OF it_itab_bbe_tree, |
| it_itab_bbe_tree_all | TYPE STANDARD TABLE OF JJB1_OBJTREE_TAB , |
| wa_itab_bbe_tree_all | LIKE LINE OF it_itab_bbe_tree_all, |
| it_itab_pe_match | TYPE STANDARD TABLE OF RJJPEFN , |
| wa_itab_pe_match | LIKE LINE OF it_itab_pe_match, |
| it_itab_vavartyp | TYPE STANDARD TABLE OF RJLJ011 , |
| wa_itab_vavartyp | LIKE LINE OF it_itab_vavartyp. |
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 ISP_GEN_BE2BBE or its description.
ISP_GEN_BE2BBE - IS-M/AM: Determine Planning Data for a BBU ISP_GENER_UPOS_EIN_VT_PREPARE - IS-M/AM: Distribution Planning Inquire for jhpa/jhpg ISP_GENER_UPOS_EIN_VT - IS-M/AM: Generate Sub-Items and Schedule Lines (Distribution) ISP_GENER_UPOS_EIN_SI_PREPARE - IS-M/AM: Ad Inserts Planning Query Function Module ISP_GENER_UPOS_EIN_SI - IS-M/AM: Generate Sub-Items and Schedule Lines (Ad Insert) ISP_GENER_RULE_NOT_DAY_PERIOD -