RPUTMSI0_PS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this report to generate TemSe files for the
If you would like to execute this report or see the full code listing simply enter RPUTMSI0_PS into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PC00_M15_RPUTMSI0_EP - Temse viewer for PS objects
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: P_TSOBJ = Temse object name
Selection Text: P_EXFILE = File for data merge
Title: Generate DMA TemSe Files Report
Text Symbol: M02 = The calculation result of report RPCEUDI0 (CUD2002)
Text Symbol: M03 = was saved on the temse file with the following name:
Text Symbol: S01 = TemSe
Text Symbol: T02 = The following interface file line is incorrect:
Text Symbol: T03 = INTERN. ERROR OF FIELD SYMBOL ASSIGNMENT
Text Symbol: T04 = Attempted access to non-exist. field
Text Symbol: T05 = Internal error: EN tax no.int.table entry missing
Text Symbol: T06 = Internal error: record type does not exist
Text Symbol: T07 = Internal error: format not available in table format
Text Symbol: T08 = Internal error: invalid format
Text Symbol: T09 = Err.while open. temse file:
Text Symbol: T10 = Err.while read. temse file
Text Symbol: T11 = Err. while clos. temse file
Text Symbol: T12 = Err. while creat. temse file
Text Symbol: T13 = Err. while writ. temse file
Text Symbol: T14 = Err.while sen.temse file name
Text Symbol: T15 = Element change in table p_vartab_record_g_tab failed
Text Symbol: T17 = Internal error: invalid field name:
Text Symbol: T18 = APPLY_LAYOUT_FILE_MODS: error in insert lines
Text Symbol: T19 = FORMAT_TABLE_CHECK_AND_UPDATE:non-exist.indicator
Text Symbol: T20 = Internal error: in records_revert_to_fields ASSIGN
Text Symbol: T21 = Warning: negative value in box:
Text Symbol: 001 = Enter file name
Text Symbol: 007 = Error while loading file
Text Symbol: 335 = Header
Text Symbol: 336 = Basis
Text Symbol: 337 = Date
Text Symbol: 400 = Files will be generated.
Text Symbol: 401 = Do you want continue?
Text Symbol: 402 = Number of files to be generated
Text Symbol: 403 = Files created
Text Symbol: 463 = Errore
Text Symbol: 464 = Informazioni Generali
Text Symbol: E01 = Error in temse
Text Symbol: E02 = Error in function DOWNLOAD
INCLUDE RPC770IR_2007.
INCLUDE RPC770I9_2007.
INCLUDE RPC770ID_2007.
INCLUDE RPCDMAI4_PS.
INCLUDE RPUTMSI7_PS.
No SAP DATABASE tables are accessed within this REPORT code!
RP_TS_HELPVIEW CALL FUNCTION 'RP_TS_HELPVIEW' EXPORTING repid = 'RPUTMSI0' "#EC NOTEXT IMPORTING tsobj = p_tsobj EXCEPTIONS no_entries_found = 1 "! helpview_not_installed = 2 "! no_value_request_for_molga = 3 "! OTHERS = 4.
WS_FILENAME_GET CALL FUNCTION 'WS_FILENAME_GET' "#EC * EXPORTING mask = mask mode = 'O' IMPORTING filename = p_exfile EXCEPTIONS inv_winsys = 1 no_batch = 2 selection_cancel = 3 selection_error = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.