SAP Reports / Programs

UA_BATCH_PROCESS_STAT_CALC SAP ABAP Report - Static Calculation







UA_BATCH_PROCESS_STAT_CALC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This task includes the three steps as below: 1...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter UA_BATCH_PROCESS_STAT_CALC into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT UA_BATCH_PROCESS_STAT_CALC. "Basic submit
SUBMIT UA_BATCH_PROCESS_STAT_CALC AND RETURN. "Return to original report after report execution complete
SUBMIT UA_BATCH_PROCESS_STAT_CALC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: PT_VAN = Variants
Selection Text: P_O_CHK = Only run a consistency check
Title: Static Calculation
Text Symbol: 001 = Select the variants specifying the selection criteria for calculated objects
Text Symbol: 002 = Variants do not have content in database
Text Symbol: 003 = Attention: Variants must share the same data basis


INCLUDES used within this REPORT UA_BATCH_PROCESS_STAT_CALC

INCLUDE FINB_MSG_DEFAULT_MACROS.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

UA_RFC_PDCE_INIT CALL FUNCTION 'UA_RFC_PDCE_INIT' EXPORTING id_databasis = ld_databasis TABLES bapiret2 = bapiret2.

UA_RFC_PDCE_TREE_LOAD_ID CALL FUNCTION 'UA_RFC_PDCE_TREE_LOAD_ID' EXPORTING id_databasis = ld_databasis id_root_obj_id = ls_objectlist-fobj_object_id id_root_obj_typename = ls_objectlist-fobj_type_name id_calculate = ' ' IMPORTING ed_code = ld_code TABLES et_object = lt_object et_node = lt_node et_edge = lt_edge et_hier = lt_tree bapiret2 = bapiret2 et_tnode = lt_tnode.

UA_RFC_PDCE_TREE_QUERY_CHILDRN * CALL FUNCTION 'UA_RFC_PDCE_TREE_QUERY_CHILDRN' * EXPORTING * id_databasis = ld_databasis * is_object = ls_object * id_tnode_id = ld_node_id * id_level = '0' * id_display = '' * IMPORTING * ed_code = ld_code * TABLES * et_object = lt_object * et_node = lt_node * et_edge = lt_edge * et_hier = lt_tree * bapiret2 = bapiret2 * et_tnode = lt_tnode.

UA_RFC_PDCE_TREE_CALCULATE CALL FUNCTION 'UA_RFC_PDCE_TREE_CALCULATE' EXPORTING id_root_node_id = ld_node_id IMPORTING ed_code = ld_code TABLES et_object = lt_object et_node = lt_node et_edge = lt_edge et_tnode = lt_tnode et_hier = lt_tree bapiret2 = bapiret2.

UA_RFC_PDCE_SAVE CALL FUNCTION 'UA_RFC_PDCE_SAVE' TABLES bapiret2 = bapiret2.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name UA_BATCH_PROCESS_STAT_CALC or its description.