SAP Reports / Programs | Personnel Management | E-Recruiting(PA-ER) SAP PA

RCF_ADDRESS_CHANGE SAP ABAP Report - Program for Changing Address Lines







RCF_ADDRESS_CHANGE 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 correction report to change the sequence of the address lines in the address management of a business partner of a candidate, branch, or agency, so that the address is correctly displayed in the relevant data overviews, such as the data overview of the candidate (see also SAP Note 920661 (2006))...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 RCF_ADDRESS_CHANGE 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 RCF_ADDRESS_CHANGE. "Basic submit
SUBMIT RCF_ADDRESS_CHANGE AND RETURN. "Return to original report after report execution complete
SUBMIT RCF_ADDRESS_CHANGE 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: P_TEST = Test Run
Selection Text: P_DEREG = Exclude Deregister. Candidates
Selection Text: P_CAND = Candidate
Selection Text: P_BRANCH = Branch
Selection Text: P_AGENCY = Agency
Selection Text: HROBJ = Object ID of Candidate
Title: Program for Changing Address Lines
Text Symbol: SSE = Selection
Text Symbol: OTH = Further Details
Text Symbol: ET3 = Information
Text Symbol: ET2 = Warning
Text Symbol: ET1 = Error
Text Symbol: ASE = Extended Selection
Text Symbol: 013 = Field STR_SUPPL3 Already Contains Data
Text Symbol: 012 = Result List for Address Change
Text Symbol: 011 = Results List for Address Change - Test Run
Text Symbol: 010 = Check of Address Successful
Text Symbol: 009 = Description
Text Symbol: 008 = Address Type
Text Symbol: 007 = Candidate Name
Text Symbol: 006 = Object ID
Text Symbol: 005 = Status
Text Symbol: 004 = Address Data Changed Successfully
Text Symbol: 003 = STR_SUPPL1 and STR_SUPPL3 Contain Data
Text Symbol: 002 = Street (Continued) Not Maintained
Text Symbol: 001 = No Address Data


INCLUDES used within this REPORT RCF_ADDRESS_CHANGE

INCLUDE RCF_ADDRESS_CHANGE_D . " DATA DECLARATIONS
INCLUDE RCF_ADDRESS_CHANGE_F . " FUNCTION MODULES
INCLUDE RCF_ADDRESS_CHANGE_OUTPUT.
INCLUDE RCF_ADDRESS_CHANGE_INPUT.


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:

BUPA_ADDRESSES_GET CALL FUNCTION 'BUPA_ADDRESSES_GET' EXPORTING iv_partner = lo_candidate->partner TABLES et_addresses = lt_addresses et_return = lt_return.

REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING it_fieldcat = lt_alvlist_fcat TABLES t_outtab = lt_output_hrobj.

REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING it_fieldcat = lt_alvlist_fcat TABLES t_outtab = lt_output_obj.

REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING it_fieldcat = lt_alvlist_fcat TABLES t_outtab = lt_output_obj.



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