msg type x

download msg type x

of 61

description

log

Transcript of msg type x

Runtime Errors MESSAGE_TYPE_XDate and Time 26.08.2014 10:05:22--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|Short Text || The current application triggered a termination with a short dump. |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|What happened? || The current application program detected a situation which really || should not occur. Therefore, a termination with a short dump was || triggered on purpose by the key word MESSAGE (type X). |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|What can you do? || Note down which actions and inputs caused the error. || || || To process the problem further, contact you SAP system || administrator. || || Using Transaction ST22 for ABAP Dump Analysis, you can look || at and manage termination messages, and you can also || keep them for a long time. |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|Error analysis || Short text of error message: || Request ID does not exist || || Long text of error message: || || Technical information about the message: || Message class....... "HRTIM_ABS_REQ" || Number.............. 038 || Variable 1.......... " " || Variable 2.......... " " || Variable 3.......... " " || Variable 4.......... " " |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|How to correct the error || Probably the only way to eliminate the error is to correct the program. || - || || If the error occures in a non-modified SAP program, you may be able to || find an interim solution in an SAP Note. || If you have access to SAP Notes, carry out a search with the following || keywords: || || "MESSAGE_TYPE_X" " " || "CL_PT_ARQ_REQS_LIST===========CP" or "CL_PT_ARQ_REQS_LIST===========CM005" || "GET_REQLIST_ENTRY" || || If you cannot solve the problem yourself and want to send an error || notification to SAP, include the following information: || || 1. The description of the current problem (short dump) || || To save the description, choose "System->List->Save->Local File || (Unconverted)". || || 2. Corresponding system log || || Display the system log by calling transaction SM21. || Restrict the time interval to 10 minutes before and five minutes || after the short dump. Then choose "System->List->Save->Local File || (Unconverted)". || || 3. If the problem occurs in a problem of your own or a modified SAP || program: The source code of the program || In the editor, choose "Utilities->More || Utilities->Upload/Download->Download". || || 4. Details about the conditions under which the error occurred or which || actions and input led to the error. || |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|System environment || SAP-Release 700 || || Application server... "ciGPR" || Network address...... "80.8.0.95" || Operating system..... "HP-UX" || Release.............. "B.11.31" || Hardware type........ "ia64" || Character length.... 16 Bits || Pointer length....... 64 Bits || Work process number.. 5 || Shortdump setting.... "full" || || Database server... "gpiprod" || Database type..... "ORACLE" || Database name..... "GPR" || Database user ID.. "SAPSR3" || || Terminal................. "80.8.0.232" || || Char.set.... "C" || || SAP kernel....... 700 || created (date)... "Sep 26 2008 06:08:03" || create on........ "HP-UX B.11.23 U ia64" || Database version. "OCI_102 (10.2.0.1.0) " || || Patch level. 179 || Patch text.. " " || || Database............. "ORACLE 9.2.0.*.*, ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*" || SAP database version. 700 || Operating system..... "HP-UX B.11" || || Memory consumption || Roll.... 16192 || EM...... 8379680 || Heap.... 0 || Page.... 0 || MM Used. 4385120 || MM Free. 3991712 |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|User and Transaction || Client.............. 400 || User................ "DWIJENLAHIRI" || Language Key........ "E" || Transaction......... " " || Transactions ID..... "0f3c29d42cd911e4a78b001e0bbde6ec" || || Program............. "CL_PT_ARQ_REQS_LIST===========CP" || Screen.............. "SAPMSSY1 3004" || Screen Line......... 2 || || Information on caller of Remote Function Call (RFC): || System.............. "########" || Database Release.... 645 || Kernel Release...... 700 || Connection Type..... "E" (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.) || Call Type........... "synchron and non-transactional (emode 0, imode 0)" || Inbound TID.........." " || Inbound Queue Name..." " || Outbound TID........." " || Outbound Queue Name.." " || || Client.............. "###" || User................ "############" || Transaction......... " " || Call Program........." " || Function Module..... "PT_ARQ_REQUEST_PREPARE" || Call Destination.... "ciGPR_GPR_02" || Source Server....... "gpiepprd" || Source IP Address... "80.8.0.232" || || Additional information on RFC logon: || Trusted Relationship " " || Logon Return Code... 0 || Trusted Return Code. 0 || || Note: For releases < 4.0, information on the RFC caller are often || only partially available. |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|Information on where terminated || Termination occurred in the ABAP program "CL_PT_ARQ_REQS_LIST===========CP" - || in "GET_REQLIST_ENTRY". || The main program was "SAPMSSY1 ". || || In the source code you have the termination point in line 48 || of the (Include) program "CL_PT_ARQ_REQS_LIST===========CM005". |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|Source Code Extract |----------------------------------------------------------------------------------------------------|Line |SourceCde |----------------------------------------------------------------------------------------------------| 18|*END INS SP03 || 19| || 20|* CHECK NOT selected_reqlist IS INITIAL. "Note1140959 || 21|*---Read specified entry from internal table SELECTED_REQLIST || 22| READ TABLE selected_reqlist || 23| WITH KEY request_id = im_request_id || 24| INTO ex_reqlist_entry. || 25|*---Request ID doesn't exist --> major problem! || 26| IF sy-subrc NE 0. || 27|* check for infotype || 28| READ TABLE reqid_docnr_tab "INS745331 || 29| INTO reqid_docnr_wa "INS745331 || 30| WITH KEY reqid = im_request_id."INS745331 || 31| IF sy-subrc = 0. "INS745331 || 32| ex_reqlist_entry = reqid_docnr_wa-request. "INS745331 || 33| ELSE. "INS745331 || 34|*BEGIN INS SP03 || 35|* surch for request (not in time_range) || 36| CALL METHOD ca_pt_req_header=>sel_reqs_by_all_attribs || 37| EXPORTING || 38| im_request_id = im_request_id || 39| IMPORTING || 40| ex_result_tab = req_objs_tab || 41| EXCEPTIONS || 42| actor_not_found = 1 || 43| OTHERS = 2. || 44| || 45| READ TABLE req_objs_tab INDEX 1 INTO obj_request. || 46| || 47| IF sy-subrc NE 0. ||>>>>>| MESSAGE x038(hrtim_abs_req) WITH im_request_id. || 49| ENDIF. || 50| || 51| CALL METHOD obj_request->get_all_attribs || 52| IMPORTING || 53| ex_attribs_struc = attribs_struc. || 54| || 55| ex_reqlist_entry-request_or_attabs = cl_pt_req_const=>c_datakind_request. || 56| ex_reqlist_entry-request_id = attribs_struc-request_id. || 57| ex_reqlist_entry-first_subm_date = attribs_struc-first_subm_date. || 58| ex_reqlist_entry-first_subm_time = attribs_struc-first_subm_time. || 59| ex_reqlist_entry-version = attribs_struc-version. || 60| || 61| CALL METHOD me->get_deduction || 62| CHANGING || 63| ch_reqlist_entry = ex_reqlist_entry. || 64| || 65|*END INS SP03 || 66|* MESSAGE x038(hrtim_abs_req) WITH im_request_id. "DEL SP03 || 67| ENDIF. "INS745331 |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|Contents of system fields |----------------------------------------------------------------------------------------------------|Name |Val. |----------------------------------------------------------------------------------------------------|SY-SUBRC|4 ||SY-INDEX|5 ||SY-TABIX|0 ||SY-DBCNT|0 ||SY-FDPOS|99 ||SY-LSIND|0 ||SY-PAGNO|0 ||SY-LINNO|1 ||SY-COLNO|1 ||SY-PFKEY| ||SY-UCOMM| ||SY-TITLE|CPIC and RFC Control ||SY-MSGTY|X ||SY-MSGID|HRTIM_ABS_REQ ||SY-MSGNO|038 ||SY-MSGV1| ||SY-MSGV2| ||SY-MSGV3| ||SY-MSGV4| ||SY-MODNO|0 ||SY-DATUM|20140826 ||SY-UZEIT|100511 ||SY-XPROG|SAPLPT_ARQ_REQUEST_UIA ||SY-XFORM|PT_ARQ_REQUEST_PREPARE |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|Active Calls/Events |----------------------------------------------------------------------------------------------------|No. Ty. Program Include Line || Name |----------------------------------------------------------------------------------------------------| 7 METHOD CL_PT_ARQ_REQS_LIST===========CP CL_PT_ARQ_REQS_LIST===========CM005 48 || CL_PT_ARQ_REQS_LIST=>GET_REQLIST_ENTRY || 6 FORM SAPLPT_ARQ_REQUEST_UIA LPT_ARQ_REQUEST_UIAF05 29 || GET_REQLIST_ROW || 5 FORM SAPLPT_ARQ_REQUEST_UIA LPT_ARQ_REQUEST_UIAF07 465 || PREPARE_SELECT || 4 FUNCTION SAPLPT_ARQ_REQUEST_UIA LPT_ARQ_REQUEST_UIAU19 140 || PT_ARQ_REQUEST_PREPARE || 3 FORM SAPLPT_ARQ_REQUEST_UIA LPT_ARQ_REQUEST_UIAU19 2 || PT_ARQ_REQUEST_PREPARE || 2 FORM SAPMSSY1 SAPMSSY1 85 || REMOTE_FUNCTION_CALL || 1 MODULE (PBO) SAPMSSY1 SAPMSSY1 30 || %_RFC_START |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|Chosen variables |----------------------------------------------------------------------------------------------------|Name || Val. |----------------------------------------------------------------------------------------------------|No. 7 Ty. METHOD ||Name CL_PT_ARQ_REQS_LIST=>GET_REQLIST_ENTRY |----------------------------------------------------------------------------------------------------|IM_REQUEST_ID || || 00000000000000000000000000000000 || 00000000000000000000000000000000 || 22222222222222222222222222222222 || 00000000000000000000000000000000 ||EX_REQLIST_ENTRY || 00000000 ### || 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|| 2222222222222222222222222222222223333333322222200022222222222222222222222222222222222222222222|| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000||REQ_OBJS_TAB || Table IT_1156[0x8] || \CLASS=CL_PT_ARQ_REQS_LIST\METHOD=GET_REQLIST_ENTRY\DATA=REQ_OBJS_TAB || Table reference: 242 || TABH+ 0(20) = 0000000000000000000000000000000000000000 || TABH+ 20(20) = 000000F2000004840000000000000008FFFFFFFF || TABH+ 40(16) = 0400013B000010A0001024A401800000 || store = 0x0000000000000000 || ext1 = 0x0000000000000000 || shmId = 0 (0x00000000) || id = 242 (0x000000F2) || label = 1156 (0x00000484) || fill = 0 (0x00000000) || leng = 8 (0x00000008) || loop = -1 (0xFFFFFFFF) || xtyp = TYPE#000074 || occu = 16 (0x00000010) || access = 1 (ItAccessStandard) || idxKind = 0 (ItIndexNone) || uniKind = 2 (ItUniqueNon) || keyKind = 1 (default) || cmpMode = 4 (cmpSingleEq) || occu0 = 1 || groupCntl = 0 || rfc = 0 || unShareable = 0 || mightBeShared = 0 || sharedWithShmTab = 0 || isShmLockId = 0 || gcKind = 0 || isUsed = 1 || isCtfyAble = 1 || >>>>> Shareable Table Header Data > 1st level extension part > 2nd level extension part >>> Shareable Table Header Data > 1st level extension part > 2nd level extension part > Shareable Table Header Data > 1st level extension part > 2nd level extension part > Shareable Table Header Data > 1st level extension part > 2nd level extension part >>>|MESS|00|0020| | | | | | |CL_PT_ARQ_REQS_LIST===========CM005 | 48|| 194|METH|03|0001|0000|8015|0000|0000|0000|0000|CL_PT_ARQ_REQS_LIST===========CM005 | 51|| 198|PAR1|41|C006| | | | | | |CL_PT_ARQ_REQS_LIST===========CM005 | 51|| 199|PAR2|00|0000|0001|0000| | | | |CL_PT_ARQ_REQS_LIST===========CM005 | 51|| 201|move|FF|0002|C00A|002E| | | | |CL_PT_ARQ_REQS_LIST===========CM005 | 55|| 203|mvqk|40|8380|0002|14C0| | | | |CL_PT_ARQ_REQS_LIST===========CM005 | 56|| 205|mvqk|10|8380|0042|1500| | | | |CL_PT_ARQ_REQS_LIST===========CM005 | 57|| 207|mvqk|0C|8380|0052|1510| | | | |CL_PT_ARQ_REQS_LIST===========CM005 | 58|----------------------------------------------------------------------------------------------------