SAP Reports / Programs

RSADRCK4 SAP ABAP Report - Changeing user addresses from imported addresses







RSADRCK4 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report supports the transport of user addresses from System A into System B to update the data in System B...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 RSADRCK4 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 RSADRCK4. "Basic submit
SUBMIT RSADRCK4 AND RETURN. "Return to original report after report execution complete
SUBMIT RSADRCK4 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: TEST = Start report in test mode
Title: Changeing user addresses from imported addresses
Text Symbol: 005 = changes from reference
Text Symbol: 004 = : Address
Text Symbol: 003 = User
Text Symbol: 002 = All changes were written to the database.
Text Symbol: 001 = The report has been run in test mode.


INCLUDES used within this REPORT RSADRCK4

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:

SUSR_USER_FIND_ADDR_FOR_CREATE * CALL FUNCTION 'SUSR_USER_FIND_ADDR_FOR_CREATE' * EXPORTING * USER_NAME = IUSR21-BNAME * IMPORTING * ADDR3_COMPLETE = ADDR3_COMPLETE * EXCEPTIONS * NO_ADDRESS_FOUND = 1 * OTHERS = 2.

ADDR_PERS_COMP_GET_COMPLETE * CALL FUNCTION 'ADDR_PERS_COMP_GET_COMPLETE' * EXPORTING * ADDRNUMBER = IUSR21-ADDRNUMBER * PERSNUMBER = IUSR21-PERSNUMBER * IMPORTING * ADDR3_COMPLETE = ADDR3_COMPLETE_OLD * EXCEPTIONS * PARAMETER_ERROR = 1 * ADDRESS_NOT_EXIST = 2 * PERSON_NOT_EXIST = 3 * INTERNAL_ERROR = 4 * OTHERS = 5.

ADDR_PERS_COMP_MAINTAIN_COMPL * CALL FUNCTION 'ADDR_PERS_COMP_MAINTAIN_COMPL' * EXPORTING * UPDATEFLAG = 'U' * ADDR3_COMPLETE = ADDR3_COMPLETE * PERSON_GROUP = 'BC01' * SUBSTITUTE_ALL_COMM_DATA = 'X' * IMPORTING * RETURNCODE = RETURNCODE * EXCEPTIONS * PARAMETER_ERROR = 1 * ADDRESS_NOT_EXIST = 2 * PERSON_NOT_EXIST = 3 * RELATION_NOT_EXIST = 4 * HANDLE_EXIST = 5 * INTERNAL_ERROR = 6 * OTHERS = 7.

ADDR_MEMORY_SAVE * CALL FUNCTION 'ADDR_MEMORY_SAVE' * EXCEPTIONS * OTHERS = 1.

ADDR_MEMORY_CLEAR * CALL FUNCTION 'ADDR_MEMORY_CLEAR' * EXPORTING * FORCE = 'X' * EXCEPTIONS * OTHERS = 1.



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