GRPC_AS_REORG_RELATION is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Use the selection options to select a case and check whether all of the relationships displayed for this case are valid and whether the other case exists...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 GRPC_AS_REORG_RELATION 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: CASE_CAT = D Category
Selection Text: CASE_ID = D Case Key
Selection Text: CASE_REF = D External Reference
Selection Text: CASE_TYP = D Case Type
Selection Text: ORGUNIT = D Organizational Unit
Title: Check and Repair Relationships Between Cases
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
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY call function 'REUSE_ALV_GRID_DISPLAY' exporting i_callback_program = l_report_name i_callback_user_command = 'CALL_UCOMM_WILIST' i_callback_pf_status_set = 'CALL_STATUS' is_layout = is_layout it_fieldcat = field_lst it_sort = it_sort i_buffer_active = 'X' * i_save = 'A' * is_variant = is_variant tables t_outtab = gt_case_list exceptions others = 1.
LVC_FIELDCATALOG_MERGE call function 'LVC_FIELDCATALOG_MERGE' exporting i_structure_name = structure_name i_buffer_active = 'X' i_bypassing_buffer = 'X' changing ct_fieldcat = lt_fieldcat exceptions inconsistent_interface = 1 program_error = 2 others = 3.
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting text_question = 'Löschen?'(012) text_button_1 = 'Ja'(010) icon_button_1 = 'ICON_DELETE' text_button_2 = 'Nein'(011) default_button = '2' display_cancel_button = ' ' importing answer = l_answer exceptions text_not_found = 1 others = 2.
GRPC_CASE_TYPE_CATEGORY_BUILD call function 'GRPC_CASE_TYPE_CATEGORY_BUILD' exporting i_type = case_typ i_category = case_cat importing et_type = lt_range_case_type et_category = lt_range_case_category.
SAPGUI_PROGRESS_INDICATOR call function 'SAPGUI_PROGRESS_INDICATOR' exporting percentage = 0 text = text-g01.
RH_GET_PLVAR call function 'RH_GET_PLVAR' exporting no_message = abap_true importing plvar = ls_hrorg-plvar exceptions no_plvar = 1.
GRPC_CASE_EXT_REF_BUILD call function 'GRPC_CASE_EXT_REF_BUILD' exporting is_hrorg = ls_hrorg importing et_ext_ref = lt_range_case_ext_ref.
SAPGUI_PROGRESS_INDICATOR call function 'SAPGUI_PROGRESS_INDICATOR' exporting percentage = 20 text = l_indicator.
GRPC_CASE_RELATION_READ call function 'GRPC_CASE_RELATION_READ' exporting i_guid = ls_case_attr-case_guid importing et_used = lt_used et_user = lt_user.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.