SAP Reports / Programs

RECLACC SAP ABAP INCLUDE - Program for Object Type ISULOYACC: Loyalty Account







RECLACC is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter RECLACC 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 RECLACC. "Basic submit
SUBMIT RECLACC AND RETURN. "Return to original report after report execution complete
SUBMIT RECLACC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Program for Object Type ISULOYACC: Loyalty Account
Text Symbol: 004 = Cont. Acct
Text Symbol: 003 = Contract Acct Name
Text Symbol: 002 = Loyalty Program
Text Symbol: 001 = Loyalty Account


INCLUDES used within this REPORT RECLACC

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:

ISU_FINDER_DIALOG CALL FUNCTION 'ISU_FINDER_DIALOG' EXPORTING x_objtype = 'ISUACCOUNT' x_findpar = wa_efindpar IMPORTING y_result = res EXCEPTIONS cancelled = 1 OTHERS = 99.

ISU_S_LOYALACC_CREATE CALL FUNCTION 'ISU_S_LOYALACC_CREATE' EXPORTING x_lpcode = loyaltyprogram x_vkont = contractaccount x_upd_online = 'X' IMPORTING y_db_update = l_db_update y_exit_type = l_exit_type y_new_lacc = new_lacc EXCEPTIONS foreign_lock = 1 OTHERS = 2.

ISU_S_LOYALACC_CHANGE CALL FUNCTION 'ISU_S_LOYALACC_CHANGE' EXPORTING x_lpcode = l_key-loyaltyprogram x_vkont = l_key-contractaccount x_upd_online = 'X' x_no_other = 'X' IMPORTING y_db_update = l_db_update y_exit_type = l_exit_type EXCEPTIONS not_found = 1 foreign_lock = 2 OTHERS = 3.

ISU_DB_ELACC_SINGLE CALL FUNCTION 'ISU_DB_ELACC_SINGLE' EXPORTING x_lpcode = object-key-loyaltyprogram x_vkont = object-key-contractaccount IMPORTING y_elacc = elacc EXCEPTIONS OTHERS = 1.

ISU_S_LOYALACC_DISPLAY CALL FUNCTION 'ISU_S_LOYALACC_DISPLAY' EXPORTING x_lpcode = l_key-loyaltyprogram x_vkont = l_key-contractaccount x_no_other = 'X' x_no_change = 'X' IMPORTING y_db_update = l_db_update y_exit_type = l_exit_type EXCEPTIONS not_found = 1 OTHERS = 2.

ISU_FIND_LOYALACC CALL FUNCTION 'ISU_FIND_LOYALACC' EXPORTING x_contractaccount = contractaccount x_businesspartner = businesspartner x_loyaltyprogram = loyaltyprogram IMPORTING y_contractaccount = loyacckey-contractaccount y_loyaltyprogram = loyacckey-loyaltyprogram EXCEPTIONS cancelled = 1 OTHERS = 2.

ISU_DB_EREDEMP_SELECT CALL FUNCTION 'ISU_DB_EREDEMP_SELECT' EXPORTING x_vkont = loyacckey-contractaccount x_lpcode = loyacckey-loyaltyprogram TABLES t_eredemp = lt_eredemp 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 RECLACC or its description.