SAP Reports / Programs

FOPC_CARRYFORWARD_CHECK SAP ABAP Report - Consistency Check of Task Status After Carryforward







FOPC_CARRYFORWARD_CHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this program to check the status of tasks after they have been carried forward into a new timeframe...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 FOPC_CARRYFORWARD_CHECK 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 FOPC_CARRYFORWARD_CHECK. "Basic submit
SUBMIT FOPC_CARRYFORWARD_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT FOPC_CARRYFORWARD_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: ALL_ORG = Collect All Org Units
Selection Text: CASE_CAT = D Category
Selection Text: CASE_ID = D Technical Case Key
Selection Text: CASE_REF = D External Reference
Selection Text: CASE_TYP = D Case Type
Selection Text: ORGUNIT = D Organizational Unit
Selection Text: TF = D Timeframe
Selection Text: TF_YEAR = D Year
Title: Consistency Check of Task Status After Carryforward
Text Symbol: 010 = Yes
Text Symbol: 011 = No
Text Symbol: 012 = Delete?
Text Symbol: G01 = Cases being read
Text Symbol: G02 = Attributes for &NR& cases being read
Text Symbol: TA1 = Organizational Unit
Text Symbol: TA2 = Case Key


INCLUDES used within this REPORT FOPC_CARRYFORWARD_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:

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 0 text = text-g01.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 20 text = l_indicator.

RH_GET_PLVAR CALL FUNCTION 'RH_GET_PLVAR' EXPORTING no_message = abap_true IMPORTING plvar = ls_hrorg-plvar EXCEPTIONS no_plvar = 1.

FOPC_CASE_EXT_REF_BUILD CALL FUNCTION 'FOPC_CASE_EXT_REF_BUILD' EXPORTING is_hrorg = ls_hrorg IMPORTING et_ext_ref = lt_range_temp.

FOPC_CASE_EXT_REF_BUILD CALL FUNCTION 'FOPC_CASE_EXT_REF_BUILD' EXPORTING is_hrorg = ls_hrorg IMPORTING et_ext_ref = lt_range_temp.

RH_GET_PLVAR CALL FUNCTION 'RH_GET_PLVAR' EXPORTING no_message = abap_true IMPORTING plvar = ls_hrorg-plvar EXCEPTIONS no_plvar = 1.

FOPC_CASE_EXT_REF_BUILD CALL FUNCTION 'FOPC_CASE_EXT_REF_BUILD' EXPORTING is_hrorg = ls_hrorg IMPORTING et_ext_ref = lt_range_case_ext_ref.

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

BAL_DSP_PROFILE_SINGLE_LOG_GET CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_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_LOG_FILTER = * I_T_LOG_CONTEXT_FILTER = * I_S_MSG_FILTER = * I_T_MSG_CONTEXT_FILTER = * I_T_LOG_HANDLE = * I_T_MSG_HANDLE = i_s_display_profile = l_s_display_profile * I_AMODAL = ' ' EXCEPTIONS OTHERS = 1.

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = ls_bal_msg EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.



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