RHKMIT20 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 RHKMIT20 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PP40 - Correspondence
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: TLNTY = Attendee type
Selection Text: TEILN = Attendee
Selection Text: PLVAR = Plan version
Selection Text: MANZL = Number of attendees
Selection Text: LFCOD = Activity
Selection Text: KURS2 = Reserved/canceled event
Selection Text: KURS1 = Business event
Selection Text: KTYP = Business event type
Selection Text: KMIT = Notification abbreviation
Selection Text: FORM = Form
Selection Text: DEVIC = Output medium
Title: Output Notifications (Form)
Text Symbol: WWP = MS Word->Word Pro
Text Symbol: WPW = Word Pro->MS Word
Text Symbol: WPS = Word Pro form letter
Text Symbol: TZA = Number of attendees
Text Symbol: TTP = Attendee type
Text Symbol: TLN = Attendee
Text Symbol: PLV = Plan version
Text Symbol: MWS = MS Word form letter
Text Symbol: MKZ = Notification abbr.
Text Symbol: MED = Output medium
Text Symbol: LFC = Activity
Text Symbol: KTP = Business event type
Text Symbol: KS2 = Reserved/canceled event
Text Symbol: KS1 = Event/alternative event
Text Symbol: FML = Form
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RH_LFCOD_REQUEST CALL FUNCTION 'RH_LFCOD_REQUEST' EXPORTING * DISPL = ' ' * SEARC = LFCOD kmgrp = kmgrp IMPORTING sel_lfcod = lfcod * SEL_LFCODT = EXCEPTIONS no_values_found = 1 OTHERS = 2.
RH_MITTK_REQUEST CALL FUNCTION 'RH_MITTK_REQUEST' EXPORTING * DISPL = ' ' * SEARC = KMIT lfcod = lfcod kmgrp = kmgrp IMPORTING sel_kmitt = kmit * SEL_KMTXT = EXCEPTIONS no_lfcod = 01 no_values_found = 02 OTHERS = 03.
RH_MESSAGE_OUTPUT CALL FUNCTION 'RH_MESSAGE_OUTPUT' EXPORTING plvar = pkmit-plvar lfcod = pkmit-lfcod kmit = pkmit-kmit vst1 = pkmit-krs1_id vst2 = pkmit-krs2_id vtyp = pkmit-typ_id tlntyp = pkmit-teilntyp tlnid = pkmit-teiln_id tlnanz = pkmit-manzl vobeg = pkmit-vobeg voend = pkmit-voend volng = pkmit-volng device = devic modus_flag = modus_flag IMPORTING out_err = error errprot = protokoll * TABLES * VA_RELTAB = EXCEPTIONS no_authority = 01 no_plvar = 02 no_abbriv = 03 form_not_maintained = 04 abbriv_user_authority = 05 no_stand_entry_for_abbriv = 06 no_event_id = 07 addressee_error = 08 no_device_address = 09 OTHERS = 10.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.