RFVWKMCE is a standard Executable ABAP Report 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 RFVWKMCE 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.
Selection Text: SO_KMNR = Corporate actions
Selection Text: P_XZUS = Assignment text
Selection Text: P_SIMU = Simulate posting
Selection Text: P_DVALUT = Value date
Selection Text: P_DBUDAT = Posting date
Selection Text: P_DBLDAT = Document date
Text Symbol: 002 = Exercise data
Text Symbol: 001 = Accrual/deferral of issue currency changeovers to be posted
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FVF4_KMNR_CHECK CALL FUNCTION 'FVF4_KMNR_CHECK' EXPORTING DYNPR_FIELDNAME = 'SO_KMNR_LOW' KMTYP = '05' ALL_TYPES = ' ' IMPORTING KMNR = SO_KMNR-LOW EXCEPTIONS NO_POSTING_SELECTED = 1 POSTING_NOT_FOUND = 2 OTHERS = 3.
FVF4_KMNR_CHECK CALL FUNCTION 'FVF4_KMNR_CHECK' EXPORTING DYNPR_FIELDNAME = 'SO_KMNR_HIGH' KMTYP = '05' ALL_TYPES = ' ' IMPORTING KMNR = SO_KMNR-LOW EXCEPTIONS NO_POSTING_SELECTED = 1 POSTING_NOT_FOUND = 2 OTHERS = 3.
BDC_OPEN_GROUP CALL FUNCTION 'BDC_OPEN_GROUP' EXPORTING CLIENT = SY-MANDT * DEST = FILLER8 GROUP = CON_BDC_NAME * HOLDDATE = FILLER8 * KEEP = FILLER1 USER = SY-UNAME.
BDC_INSERT CALL FUNCTION 'BDC_INSERT' EXPORTING TCODE = CON_TRANSACTION_NAME TABLES DYNPROTAB = BDC_TAB EXCEPTIONS INTERNAL_ERROR = 01 NOT_OPEN = 02 QUEUE_ERROR = 03 TCODE_INVALID = 04 PRINTING_INVALID = 05 POSTING_INVALID = 06.
BDC_CLOSE_GROUP CALL FUNCTION 'BDC_CLOSE_GROUP' EXCEPTIONS NOT_OPEN = 1 QUEUE_ERROR = 2 OTHERS = 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.