RIBASE_CONVERT_OBJNR 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 RIBASE_CONVERT_OBJNR 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.
Conversion Program for Installed Bases for Upgrade of CRM2.0B
Selection Text: CREATE = Create Only Status Objects
Selection Text: DETAIL = Detail Log
Selection Text: IBASETYP = Installed Base Category
Selection Text: REAL = Database Update
Selection Text: SETCHGKZ = + Status Change Documents
Selection Text: SUMMARY = Overview Log
Selection Text: TEST = Test
Title: Report RIBASE_CONVERT_OBJNR
Text Symbol: 001 = Creation of Status Objects for Installed Bases
Text Symbol: 002 = and Activation of Status Change Documents for Selected Installed Base Categories
Text Symbol: 003 = Create Only Objects: Generation of Status Objects for All Installations
Text Symbol: 004 = + Status Change Documents: Additional Activation of Change Documents
Text Symbol: 005 = if '+ Status Change Documents' , Restriction to Installed Base Category Possible:
001 Test
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GUID_CONVERT * CALL FUNCTION 'GUID_CONVERT' * EXPORTING * IV_GUID_C22 = ibrec-ib_guid * IMPORTING * EV_GUID_X16 = ibrec-ib_objnr * EXCEPTIONS * NO_UNICODE_SUPPORT_YET = 1 * PARAMETERS_ERROR = 2 * OTHERS = 3 .
CRM_STATUS_OBJECT_CREATE * call function 'CRM_STATUS_OBJECT_CREATE' * exporting * chgkz = l_chgkz * objnr = ibrec-ib_objnr * obtyp = l_type * stsma = l_profile * exceptions * obtyp_invalid = 1 * status_object_already_exists = 2 * stsma_invalid = 3 * stsma_obtyp_invalid = 4 * others = 5.
GUID_CREATE * CALL FUNCTION 'GUID_CREATE' * IMPORTING * ev_guid_22 = ibin_rec-in_objnr.
GUID_CONVERT * CALL FUNCTION 'GUID_CONVERT' * EXPORTING * IV_GUID_C22 = ibselrec-ibguid * IMPORTING * EV_GUID_X16 = ibselrec-ib_objnr * EXCEPTIONS * NO_UNICODE_SUPPORT_YET = 1 * PARAMETERS_ERROR = 2 * OTHERS = 3 .
CRM_STATUS_CDOCS_ACTIVATE * CALL FUNCTION 'CRM_STATUS_CDOCS_ACTIVATE' * EXPORTING * OBJNR = ibselrec-ib_objnr * EXCEPTIONS * OBJECT_NOT_FOUND = 1 * CDOCS_ALREADY_ACTIVE = 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.