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
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.
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
INCLUDE FINB_MSG_DEFAULT_MACROS.
No SAP DATABASE tables are accessed within this REPORT code!
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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
UA_BATCH_PROCESS_STAT_CALC - Static Calculation UA_BATCH_PROCESS_STAT_CALC - Static Calculation UA_BATCH_PROCESS_DYN_CALC - Dynamic Calculation UA_BATCH_PROCESS_DYN_CALC - Dynamic Calculation UA_BATCH_IMPORT_VARIANT_CREATE - Batch Process for Import UA_BATCH_IMPORT_VARIANT_CREATE - Batch Process for Import