SAP Reports / Programs | Cross-Application Components | Processes and Tools for Enterprise Applications | Process Orchestration for Built-In Processes(CA-EPT-POC) SAP CA

POC_MODEL_CHECK SAP ABAP Report - Process Definition Checks







POC_MODEL_CHECK is a standard Executable ABAP Report 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 POC_MODEL_CHECK into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

POC_MODEL_CHECK - POC: Check Process Definitions


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 POC_MODEL_CHECK. "Basic submit
SUBMIT POC_MODEL_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT POC_MODEL_CHECK 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: FPROCESS = D .
Selection Text: FADD = Additional checks
Selection Text: FACTIVE = Show active only
Title: Process Definition Checks
Text Symbol: PDO = Process definitions overview
Text Symbol: PIO = &1 process instances of
Text Symbol: PIQ = &1 entries in log queue (BOR events)
Text Symbol: PIR = &1 entries in log queue (direct)
Text Symbol: PIT = &1 process instances total
Text Symbol: PRC = Process
Text Symbol: PST = Activity
Text Symbol: Q01 = Do you want to deactivate process version &3 of process (&2)?
Text Symbol: Q02 = Do you want to activate process version &3 of process &1 (&2)?
Text Symbol: Q03 = Do you want to deactivate process definition &1 (&2)?
Text Symbol: Q04 = Do you want to activate process definition &1 (&2)?
Text Symbol: Q33 = Do you want to deactivate &1 process definitions?
Text Symbol: ROO = Process Type
Text Symbol: SAR = Do you want to set version &1 as current version of process &2 (&3)?
Text Symbol: SCH = Scheduled
Text Symbol: SCN = Not scheduled
Text Symbol: SE1 = No sequence information at all
Text Symbol: SE2 = Sequence information missing for activity
Text Symbol: SE3 = Not connected to a start activity
Text Symbol: SEC = Please select a version to set as current
Text Symbol: SEK = Please select a process or a version to activate
Text Symbol: SET = Selection
Text Symbol: SHW = Show active only
Text Symbol: TA2 = Task assigned to multiple activities
Text Symbol: TIA = This is already the current version
Text Symbol: VEI = Version inconsistent
Text Symbol: VER = Version
Text Symbol: WAR = Warning
Text Symbol: PDM = Process Definitions
Text Symbol: AC1 = Activation
Text Symbol: AC2 = Active
Text Symbol: AC3 = Not Active
Text Symbol: AC5 = Activation
Text Symbol: ACT = Active





Text Symbol: ACV = Activate
Text Symbol: BFR = Business function
Text Symbol: BJB = Background job
Text Symbol: BON = BOR event not active
Text Symbol: BOX = Check assignment
Text Symbol: CAN = Cancel
Text Symbol: CO2 = Description
Text Symbol: CO3 = Key
Text Symbol: CO4 = Consistency
Text Symbol: CUR = Current version
Text Symbol: DEA = Deactivate &1
Text Symbol: DEB = Activate &1
Text Symbol: DEC = Deactivate All Process Definitions
Text Symbol: DEV = Deactivate
Text Symbol: IN0 = in
Text Symbol: IPM = &1 integration points defined, but no RPC ID assigned
Text Symbol: JOB = Scheduling
Text Symbol: NAC = Not Active
Text Symbol: NCA = Current version invalid
Text Symbol: NCI = Current version initial
Text Symbol: NOB = No BOR event or class assigned to any task
Text Symbol: NOS = No BOR event or class assigned to some tasks
Text Symbol: NOT = No task assigned to activity
Text Symbol: NSS = No start activity
Text Symbol: NVA = No versions available
Text Symbol: NXA = There are no active process definitions
Text Symbol: OBS = Version obsolete or being prepared


INCLUDES used within this REPORT POC_MODEL_CHECK

No INCLUDES are used within this REPORT code!


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:

ICON_CREATE * CALL FUNCTION 'ICON_CREATE' * EXPORTING * name = icon_operation ** TEXT = ' ' * info = 'Process binding'(bnd) ** ADD_STDINF = 'X' * IMPORTING * result = g_icon_binding.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_background_job * TEXT = ' ' info = 'Background job'(bjb) * ADD_STDINF = 'X' IMPORTING result = g_icon_job.

ICON_CREATE * CALL FUNCTION 'ICON_CREATE' * EXPORTING * name = icon_wd_interface_view ** TEXT = ' ' * info = 'Callable business entity'(cbe) ** ADD_STDINF = 'X' * IMPORTING * result = g_icon_cbe.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_overview * TEXT = ' ' info = 'Process definitions overview'(pdo) * ADD_STDINF = 'X' IMPORTING result = g_icon_overview.

ICON_CREATE





CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_businav_process * TEXT = ' ' info = 'Process'(prc) * ADD_STDINF = 'X' IMPORTING result = g_icon_process.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_next_step * TEXT = ' ' info = 'Activity'(pst) * ADD_STDINF = 'X' IMPORTING result = g_icon_process_step.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_helpassistent_on * TEXT = ' ' info = 'Activation'(ac5) * ADD_STDINF = 'X' IMPORTING result = g_icon_poc_active.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_businav_objects * TEXT = ' ' info = 'Business function'(bfr) * ADD_STDINF = 'X' IMPORTING result = g_icon_bf_active.

ICON_CREATE * CALL FUNCTION 'ICON_CREATE' * EXPORTING * name = icon_workflow_internal_event ** TEXT = ' ' * info = 'BOR-Event'(boe) ** ADD_STDINF = 'X' * IMPORTING * result = g_icon_event.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_warning * TEXT = ' ' info = 'Warning '(war) * ADD_STDINF = 'X' IMPORTING result = g_icon_warning.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_gis_layer_properties * TEXT = ' ' info = 'Version '(ver) * ADD_STDINF = 'X' IMPORTING result = g_icon_version.

ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_warning * TEXT = ' ' info = 'Check assignment '(box) * ADD_STDINF = 'X' IMPORTING result = g_icon_no_bor_event.

BP_FIND_JOBS_WITH_PROGRAM CALL FUNCTION 'BP_FIND_JOBS_WITH_PROGRAM' EXPORTING abap_program_name = iv_report_name status = 'S' "submitted (?) TABLES joblist = lt_joblist EXCEPTIONS no_jobs_found = 0 "we can ignore this program_specification_missing = 2 invalid_dialog_type = 3 job_find_canceled = 4 OTHERS = 5.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = lv_titlebar * DIAGNOSE_OBJECT = ' ' text_question = lv_question * TEXT_BUTTON_1 = 'Ja'(001) icon_button_1 = lv_icon1 text_button_2 = 'Cancel'(can) icon_button_2 = 'ICON_CANCEL' default_button = '2' display_cancel_button = space * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = iv_quickinfo_button_1 = lv_quickinfo1 iv_quickinfo_button_2 = text-can IMPORTING answer = lv_answer * TABLES * PARAMETER = .

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Set as current version' * DIAGNOSE_OBJECT = ' ' text_question = lv_question * TEXT_BUTTON_1 = 'Ja'(001) ** icon_button_1 = lv_icon1 text_button_2 = 'Cancel'(can) icon_button_2 = 'ICON_CANCEL' default_button = '2' display_cancel_button = space * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = * iv_quickinfo_button_1 = 'lv_quickinfo1' iv_quickinfo_button_2 = text-can IMPORTING answer = lv_answer.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = lv_titlebar * DIAGNOSE_OBJECT = ' ' text_question = lv_question * TEXT_BUTTON_1 = 'Ja'(001) icon_button_1 = lv_icon1 text_button_2 = text-can "Cancel icon_button_2 = 'ICON_CANCEL' default_button = '2' display_cancel_button = space * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = iv_quickinfo_button_1 = lv_quickinfo1 iv_quickinfo_button_2 = text-can IMPORTING answer = lv_answer * TABLES * PARAMETER = .

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = lv_titlebar * DIAGNOSE_OBJECT = ' ' text_question = lv_question * TEXT_BUTTON_1 = 'Ja'(001) icon_button_1 = lv_icon1 text_button_2 = 'Cancel'(can) icon_button_2 = 'ICON_CANCEL' default_button = '2' display_cancel_button = space * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = iv_quickinfo_button_1 = lv_quickinfo1 iv_quickinfo_button_2 = text-can IMPORTING answer = lv_answer * TABLES * PARAMETER = .

DEQUEUE_E_TABLE CALL FUNCTION 'DEQUEUE_E_TABLE' EXPORTING * MODE_RSTABLE = 'E' tabname = 'POC_C_PROCESS' * VARKEY = * X_TABNAME = ' ' * X_VARKEY = ' ' * _SCOPE = '3' * _SYNCHRON = ' ' * _COLLECT = ' ' .

ENQUEUE_E_TABLE CALL FUNCTION 'ENQUEUE_E_TABLE' EXPORTING * MODE_RSTABLE = 'E' tabname = 'POC_C_PROCESS'.

BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log IMPORTING e_log_handle = l_log_handle EXCEPTIONS OTHERS = 1.

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = l_log_handle i_s_msg = l_s_msg.

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = l_log_handle i_s_msg = l_s_msg.

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = l_log_handle i_s_msg = l_s_msg.

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = l_log_handle i_s_msg = l_s_msg.




BAL_DSP_PROFILE_POPUP_GET CALL FUNCTION 'BAL_DSP_PROFILE_POPUP_GET' IMPORTING e_s_display_profile = l_s_display_profile EXCEPTIONS OTHERS = 1.

BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = l_s_display_profile EXCEPTIONS OTHERS = 0. "ignore: what can we do?

POC_CALL_VIEWCLUSTER CALL FUNCTION 'POC_CALL_VIEWCLUSTER' EXPORTING it_process_type_id = lt_process_type_id iv_poc_defn_activity = '02' EXCEPTIONS invalid_param_value = 1 OTHERS = 2.

VIEWCLUSTER_MAINTENANCE_CALL * CALL FUNCTION 'VIEWCLUSTER_MAINTENANCE_CALL' "SW 261095 * EXPORTING * viewcluster_name = 'POC_VC_PS_BND' "p_viewname ** START_OBJECT = ' ' * maintenance_action = 'U' "action ** READ_KIND = ' ' ** show_selection_popup = range_limits_input * TABLES * dba_sellist = lt_dba_sellist * EXCEPTIONS * client_reference = 1 * foreign_lock = 2 * viewcluster_not_found = 3 * viewcluster_is_inconsistent = 4 * missing_generated_function = 5 * no_upd_auth = 6 * no_show_auth = 7 * object_not_found = 8 * no_tvdir_entry = 9 ** NO_CLIENTINDEP_AUTH = 10 " intern -> SHOW ** INVALID_ACTION = 11 ** SAVING_CORRECTION_FAILED = 12 * system_failure = 13.

TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING * SYSTEMEDIT = * SYSTEMNAME = * SYSTEMTYPE = * SYSTEM_CLIENT_EDIT = * SYS_CLIINDDEP_EDIT = system_client_role = lv_role * EV_SFW_BCSET_REC = * EV_C_SYSTEM = EXCEPTIONS * NO_SYSTEMNAME = 1 * NO_SYSTEMTYPE = 2 OTHERS = 3.



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 POC_MODEL_CHECK or its description.