SAP Reports / Programs | Logistics - General(LO) SAP LO

RESETPPLOCK SAP ABAP Report - SAP Retail System: Unlocking of PP Transactions







RESETPPLOCK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report unlocks the transactions in the PP components that were locked because the system was defined as an 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 RESETPPLOCK 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 RESETPPLOCK. "Basic submit
SUBMIT RESETPPLOCK AND RETURN. "Return to original report after report execution complete
SUBMIT RESETPPLOCK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: SAP Retail System: Unlocking of PP Transactions
Text Symbol: 001 = SAP Retail System / PP Transactions
Text Symbol: 002 = Should the PP transactions be unlocked?


INCLUDES used within this REPORT RESETPPLOCK

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:

SYSTEM_SWITCH_GET * CALL FUNCTION 'SYSTEM_SWITCH_GET' * IMPORTING SYSDEF = L_I_SYSDEF * EXCEPTIONS * ERROR = 1 * OTHERS = 2.

POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING * DEFAULTOPTION = 'Y' DIAGNOSETEXT1 = ' ' * DIAGNOSETEXT2 = ' ' * DIAGNOSETEXT3 = ' ' TEXTLINE1 = TEXT-002 * TEXTLINE2 = ' ' TITEL = TEXT-001 * START_COLUMN = 25 * START_ROW = 6 * CANCEL_DISPLAY = 'X' IMPORTING ANSWER = L_ANSWER EXCEPTIONS OTHERS = 0.

PP_TRANSACTION_LOCK_UNLOCK CALL FUNCTION 'PP_TRANSACTION_LOCK_UNLOCK' EXPORTING UNLOCK = 'X' IMPORTING NB_TRANS = L_NB_TRANS NB_UPDATE = L_NB_UPDATE EXCEPTIONS PARAMETER_ERROR = 1 OTHER_ERROR = 2 OTHERS = 3.



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