SAPDFKT1 is a standard Module pool for a dialog screen ABAP Program 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 SAPDFKT1 into the relevant SAP transactions such as SE38 or SE80
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.
Title: FI Customizing: Text IDs
Text Symbol: 001 = Selected text ID's
Text Symbol: 002 = Accounting view
Text Symbol: 003 = Materials management view
Text Symbol: P11 = Do you want to exit
Text Symbol: P12 = editing?
Text Symbol: P41 = Do you want to save
Text Symbol: P42 = the data first?
Text Symbol: PT1 = Exit Editing
Text Symbol: PT2 = Other Text Determination
Text Symbol: PT5 = Back
INCLUDE DFKB0CPD. " DATENFELDER
INCLUDE DFKB0CPF. " FORMS + MODULE
INCLUDE DFKB1F10. " FORMS + MODULE
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TITEL = V01_TITEL TEXTLINE1 = TEXT-P41 TEXTLINE2 = TEXT-P42 IMPORTING ANSWER = ANSWER.
POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING TITEL = D02_TITEL TEXTLINE1 = TEXT-P11 TEXTLINE2 = TEXT-P12 IMPORTING ANSWER = ANSWER.
FI_CUST_CLIENT_CHECK CALL FUNCTION 'FI_CUST_CLIENT_CHECK' EXCEPTIONS OTHERS = 1.
FI_CUST_AUTHORITY_CHECK CALL FUNCTION 'FI_CUST_AUTHORITY_CHECK' EXPORTING I_AKTYP = 'A' I_OKCOD = OK-CODE I_OKCOD_TO_CHANGE_AKTYP = 'AEND' I_TABLES = TABLES EXCEPTIONS NO_AUTHORITY = 1 NO_AUTHORITY_NOW_DISPLAY = 2 NO_AUTHORITY_TO_CHANGE_AKTYP = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.