SAP Reports / Programs

RHCHECKP SAP ABAP Report - Consistency Check PD Database Table and Additional Data Pointers







RHCHECKP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Consistency Check PD Database: Table Pointer and Additional Data Pointer The report checks that table pointers, additional data pointers, and number ranges are correct for PD infotypes...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 RHCHECKP 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 RHCHECKP. "Basic submit
SUBMIT RHCHECKP AND RETURN. "Return to original report after report execution complete
SUBMIT RHCHECKP 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: INFO = Display 'Last Changed By'
Selection Text: MANDT = Client
Selection Text: NRVHRIAD = Number range check HRIADATANR
Selection Text: NRVHRITA = Number range check HRITABNR
Selection Text: NRVHRP11 = Number range check HRP1001
Selection Text: NRVHRPAD = Number range check HRPADnn
Selection Text: NRVHRPNN = Number range check HRPnnnn
Selection Text: NRVHRTNN = Number range check HRTnnnn
Selection Text: NRVPLOGI = Number range check PLOGI
Selection Text: UNIHRP11 = Uniqueness HRP1001
Selection Text: UNIHRPAD = Uniqueness HRPADnn
Selection Text: UNIHRPNN = Uniqueness HRPADnnnn
Selection Text: UNIHRTNN = Uniqueness HRTnnnn
Selection Text: CHKTABNR = All Table Pointers
Selection Text: CHKNRIV = All Number Ranges
Selection Text: CHKHRTNN = HRTnnnn consistency
Selection Text: CHKHRPNN = HRPnnnn consistency
Selection Text: CHKHRPAD = HRPADnn consistency
Selection Text: CHKHRP11 = HRP1001 consistency
Selection Text: CHKHRITA = HRITABNR consistency
Selection Text: CHKHRIAD = HRIADATANR consistency
Selection Text: CHKADATA = All Additional Data Pointers
Title: Consistency Check PD Database Table and Additional Data Pointers
Text Symbol: BUT = , but not in
Text Symbol: ARE = are in
Text Symbol: 016 = Initialize data...
Text Symbol: 015 = Number range check PLOGI...
Text Symbol: ERR = Check
Text Symbol: FOA = Fllwng pointers from
Text Symbol: FOG = Fllwng pointers
Text Symbol: FOL = Following pointers in
Text Symbol: HE2 = Error Description
Text Symbol: MUL = are in several
Text Symbol: NRV = exceed the number range status
Text Symbol: NUN = are not unique in
Text Symbol: TI1 = Table Pointer Check
Text Symbol: 014 = Number range table pointer HRIADATANR...
Text Symbol: 001 = Prepare display...





Text Symbol: 002 = Format error log...
Text Symbol: 003 = Check table pointer from HRPnnnn...
Text Symbol: 004 = Check table pointer from HRTnnnn...
Text Symbol: 005 = Check table pointer from HRITABNR...
Text Symbol: 006 = Check additional data pointer from HRP1001...
Text Symbol: 007 = Check additional data pointer from HRPADnn...
Text Symbol: 008 = Check additional data pointer from HRIADATANR...
Text Symbol: 009 = Number range check table pointer HRPnnnn...
Text Symbol: 010 = Number range check table pointer HRTnnnn...
Text Symbol: 011 = Number range check table pointer HRITABNR...
Text Symbol: 012 = Number range check table pointer HRP1001...
Text Symbol: 013 = Number range check table pointer HRPADnn...
Text Symbol: WRO = only correct in
Text Symbol: WRE = inadmissable relationship type
Text Symbol: TI3 = Number Range Check
Text Symbol: TI2 = Additional Data Pointer Check


INCLUDES used within this REPORT RHCHECKP

INCLUDE: RHCHKTAB,
RHCHKSQL.


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:

RH_INVERT_RELA_INFTY CALL FUNCTION 'RH_INVERT_RELA_INFTY' EXPORTING p1001_imp = q1001 IMPORTING p1001_exp = u1001 EXCEPTIONS relation_not_reversible = 01.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = p_text.

REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = pgm i_internal_tabname = 'IT_HEAD' i_inclname = pgm CHANGING ct_fieldcat = fieldcat.

REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = pgm i_internal_tabname = 'IT_ITEM' i_inclname = pgm CHANGING ct_fieldcat = fieldcat.

REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING i_callback_program = pgm i_callback_pf_status_set = 'STATUS_SET' i_callback_user_command = 'USER_COMMAND' is_layout = layout it_fieldcat = fieldcat i_tabname_header = 'IT_HEAD' i_tabname_item = 'IT_ITEM' is_keyinfo = keyinfo TABLES t_outtab_header = it_head t_outtab_item = it_item.



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