RPCBWLD0_FORMS is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RPCBWLD0_FORMS into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_DBW_GET_DATASET_DDIC_INFO CALL FUNCTION 'HR_DBW_GET_DATASET_DDIC_INFO' EXPORTING msgid = p_msgid sagrp = 'BEW' datum = p_date TABLES et_ddic_info = g_it_ddic_info EXCEPTIONS no_valid_version = 1 OTHERS = 2.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING tclas = 'A' pernr = p_pernr infty = '0001' * BEGDA = '18000101' * ENDDA = '99991231' * BYPASS_BUFFER = ' ' * IMPORTING * SUBRC = TABLES infty_tab = p0001 EXCEPTIONS infty_not_found = 1 OTHERS = 2 .
DDUT_TEXT_FOR_VALUE CALL FUNCTION 'DDUT_TEXT_FOR_VALUE' EXPORTING tabname = 'P01W_ADMIN_01' fieldname = 'STATUS' * CALLING_PROGRAM = * STRUCNAME = value = p_status * VALUE_IS_EXTERNAL = ' ' IMPORTING text = l_text * NOT_UNIQUE = * VALUE_INTERNAL = * TEXT_FIELDS = * CHANGING * ADDITIONAL_FIELDS = EXCEPTIONS no_ddic_field = 1 illegal_value = 2 OTHERS = 3 .
HR_PAL_LOG_DISPLAY CALL FUNCTION 'HR_PAL_LOG_DISPLAY' EXPORTING i_s_display_profile = l_wa_display_profile EXCEPTIONS program_error = 1 no_logs = 2 OTHERS = 3.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = p_table state = 'A' langu = p_langu IMPORTING dd02v_wa = l_wa_dd02v EXCEPTIONS illegal_input = 1 OTHERS = 2.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING i_categ_id = l_categ_id i_structure_name = l_ftabname i_save = 'A' is_variant = l_wa_variant i_default = c_true EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = l_parent_id i_node_txt = p_text i_categ_id = l_categ_id i_expand = l_expand IMPORTING e_node_key = l_node_id EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD_ROW CALL FUNCTION 'HR_PAL_NODE_ADD_ROW' EXPORTING i_node_key = l_node_id i_row_data = p_record EXCEPTIONS program_error = 1 OTHERS = 2.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = p_pernr infty = '0001' IMPORTING subrc = p_rc TABLES infty_tab = lt_0001 EXCEPTIONS infty_not_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.