Error ZMH040

  • Upload
    atomv

  • View
    93

  • Download
    0

Embed Size (px)

Citation preview

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44

    Texto breve Overflow during the arithmetical operation (type P) in program

    Qu ha sucedido? Error in the ABAP Application Program The current ABAP program "ZREC_DETINGRE_CONTANAL" had to be terminated because it has come across a statement that unfortunately cannot be executed.

    Qu puede hacer? 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.

    Anl.errores An exception occurred that is explained in detail below. The exception, which is assigned to class 'CX_SY_ARITHMETIC_OVERFLOW', was not caught in procedure "VALIDA_DATOS" "(FORM)", nor was it propagated by a RAISING clause. Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated. The reason for the exception is: An overflow was discovered in an ongoing arithmetical operation with operands of type P. Possible causes are: 1. The result field of type P is too small for the result. 2. The result or a intermediate result has more than 31 decimal places.

    Notas para corregir errores The result field must be enlarged, if this is still possible. It may also be possible to break up the current process into subprocesses so that only smaller values occur. There may already be a solution to the error in the SAP notes system. If you have access to the SAP notes system first try searching with the following keywords: "COMPUTE_BCD_OVERFLOW" "BCD_FIELD_OVERFLOW" (Until release 4.0a, this runtime error occurred at this position) "ZREC_DETINGRE_CONTANAL" or "ZREC_DETINGRE_CONTANAL" "VALIDA_DATOS"

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 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. The exception must either be prevented, caught within proedure "VALIDA_DATOS" "(FORM)", or its possible occurrence must be declared in the RAISING clause of the procedure. To prevent the exception, note the following:

    Entorno sistema SAP-Release 700 Application server... "TDP-ECC100AP1" Network address...... "172.18.62.57" Operating system..... "Windows NT" Release.............. "6.1" Hardware type........ "8x AMD64 Level" Character length.... 16 Bits Pointer length....... 64 Bits Work process number.. 0 Shortdump setting.... "full" Database server... "TDPCGECCDB" Database type..... "MSSQL" Database name..... "MEP" Database user ID.. "mep" Char.set.... "C" SAP kernel....... 700 created (date)... "Jun 26 2011 22:51:49" create on........ "NT 5.2 3790 Service Pack 2 x86 MS VC++ 14.00" Database version. "SQL_Server_8.00 " Patch level. 308 Patch text.. " " Database............. "MSSQL 9.00.2047 or higher" SAP database version. 700 Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 NT 6.0, Windows NT 6.1" Memory consumption Roll.... 16192 EM...... 16768288 Heap.... 0 Page.... 57344 MM Used. 3678656 MM Free. 4702864

    Usuario y transaccin Client.............. 300 User................ "GODINEZVJ" Language key........ "S" Transaction......... "ZMH040 " Program............. "ZREC_DETINGRE_CONTANAL" Screen.............. "SAPMSSY0 1000" Screen line......... 6

    Info posicin de cancelacin Termination occurred in the ABAP program "ZREC_DETINGRE_CONTANAL" - in "VALIDA_DATOS". The main program was "ZREC_DETINGRE_CONTANAL ". In the source code you have the termination point in line 1953 of the (Include) program "ZREC_DETINGRE_CONTANAL". The termination is caused because exception "CX_SY_ARITHMETIC_OVERFLOW" occurred in procedure "VALIDA_DATOS" "(FORM)", but it was neither handled locally nor declared in the RAISING clause of its signature. The procedure is in program "ZREC_DETINGRE_CONTANAL "; its source code begins in line 1721 of the (Include program "ZREC_DETINGRE_CONTANAL ".

    Detalle cdigo fuente Ln. Txt.fte. 1923 append wa_paso to ti_paso. 1924 1925 *Monto Pagado 1926 elseif wa_consulta-hvorg = '0060' and wa_consulta-tvorg = '0100'. 1927 1928 wa_consulta-betrh = ABS( wa_consulta-betrh ). 1929 wa_consulta-betrh4 = wa_consulta-betrh. 1930 1931 move-corresponding wa_consulta to wa_paso. 1932 append wa_paso to ti_paso. 1933 1934 endif. 1935 1936 clear: 1937 wa_consulta, wa_paso.

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 1938 1939 endloop. 1940 ******************************************************************************************** 1941 1942 1943 ******************************************************************************************** 1944 *Recupera Sumatorias de los registros de la paso 1945 1946 clear: l_betrh1, l_betrh2, l_betrh3, l_betrh4, l_betrh5, vl_betrh6, vl_betrh7. 1947 1948 *utiliza los nuevos campos 1949 * sort ti_paso by legal_org bu_group transpzone vktyp persl. 1950 sort ti_paso by bpkind text40 legal_org textlong2 bu_group txt40 transpzone vtext psobtyp 1951 loop at ti_paso into wa_paso. 1952 >>>>> l_betrh1 = l_betrh1 + wa_paso-betrh1. "Monto Declarado 1954 l_betrh2 = l_betrh2 + wa_paso-betrh2. "Crditos aplicados 1955 l_betrh4 = l_betrh4 + wa_paso-betrh4. " 1956 1957 *Obtiene Monto declarado ms Crditos aplicados 1958 l_betrh3 = l_betrh1 + l_betrh2. "Ingreso Recaudado 1959 1960 vl_betrh6 = vl_betrh6 + wa_paso-betrh6. "Monto Pagado Caja Unica 1961 vl_betrh7 = vl_betrh7 + wa_paso-betrh7. "Monto Pagado DTR 1962 l_betrh5 = l_betrh3 - ( vl_betrh6 + vl_betrh7 ). "Ingreso Devengado 1963 1964 move-corresponding wa_paso to wa_reporte. 1965 1966 *Valida final de cada partner 1967 at end of persl. 1968 move l_betrh1 to wa_reporte-betrh1. 1969 move l_betrh2 to wa_reporte-betrh2. 1970 move l_betrh3 to wa_reporte-betrh3. 1971 move l_betrh4 to wa_reporte-betrh4. 1972 move l_betrh5 to wa_reporte-betrh5.

    Contenido campos sistema Nom. Val. SY-SUBRC 0 SY-INDEX 0 SY-TABIX 512 SY-DBCNT 14 SY-FDPOS 0 SY-LSIND 0 SY-PAGNO 0 SY-LINNO 1 SY-COLNO 1 SY-PFKEY SY-UCOMM SY-TITLE Reporte Detallado de Ingresos para Contabilidad Nacional SY-MSGTY I SY-MSGID SF SY-MSGNO 616 SY-MSGV1 ZREC_DETINGRE_CONTANAL SY-MSGV2 RE SY-MSGV3 ES SY-MSGV4

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 SY-MODNO 0 SY-DATUM 20120629 SY-UZEIT 102343 SY-XPROG SAPCNVE SY-XFORM CONVERSION_EXIT

    Llamadas/Eventos activos N Cl. Programa Include Ln. Nom. 2 FORM ZREC_DETINGRE_CONTANAL ZREC_DETINGRE_CONTANAL 1953 VALIDA_DATOS 1 EVENT ZREC_DETINGRE_CONTANAL ZREC_DETINGRE_CONTANAL 525 START-OF-SELECTION

    Variables seleccionadas Nom. Val. N 2 Cl. FORM Nom. VALIDA_DATOS L_BETRH4 ####### 0189990 061340C L_BETRH5 #`#5P## 9693521 908503C VL_BETRH6 ####### 0000000 000000C VL_BETRH7 ####### 0189990 061340C TI_PASO Table IT_45[1089x768] \PROGRAM=ZREC_DETINGRE_CONTANAL\DATA=TI_PASO Table reference: 34 TABH+ 0(20) = 20890B00DF070000000000000000000000000000 TABH+ 20(20) = 220000002D000000410400000003000000000000 TABH+ 40(16) = 04000000A010000010000000C9308001 store = 0x20890B00DF070000 ext1 = 0x0000000000000000 shmId = 0 (0x00000000) id = 34 (0x22000000) label = 45 (0x2D000000) fill = 1089 (0x41040000) leng = 768 (0x00030000) loop = 0 (0x00000000) xtyp = TYPE#000074 occu = 16 (0x10000000)

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 access = 1 (ItAccessStandard) idxKind = 1 (ItIndexLinear) uniKind = 2 (ItUniqueNon) keyKind = 1 (default) cmpMode = 8 (cmpManyEq) 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
  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 SCREEN %_17SNS0004902355_%_%_%_%_%_%_ 2533545333333333352525252525252222222222222222222222222222222222222222222222222222222222222222 5F173E30004902355F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000P_CAL X 5 8 0 0 %_SPACE 2 0 0 0 %_PRINT 000 0### 2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000L_REPORTE 0 0000 0000 %_VIASELSCR # 0 4 SY-MSGID SF 54222222222222222222 36000000000000000000 00000000000000000000 00000000000000000000 BUT000 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000TI_ZTBL_OBLIGACIONT[] Table[initial] SPACE 2 0 0 0 SY-MSGNO 616 333 616 000 000 SY-MSGV1 ZREC_DETINGRE_CONTANAL

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 55445445444545444544442222222222222222222222222222 A253F4549E725F3FE41E1C0000000000000000000000000000 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 SY-MSGV2 RE 54222222222222222222222222222222222222222222222222 25000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 SY-MSGV3 ES 45222222222222222222222222222222222222222222222222 53000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 SY-MSGV4 22222222222222222222222222222222222222222222222222 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000

    Notas internas The termination was triggered in function "ab_bcdArithmeticOverflow" of the SAP kernel, in line 72 of the module "//bas/700_REL/src/krn/runt/abcalc.c#7". The internal operation just processed is "ccqd". Internal mode was started at 20120629102335.

    Llamadas activas ncleo SAP Lneas de pila C en ncleo (estructura diferente segn la plataforma) SAP (R) - R/3(TM) Callstack, Version 1.0 Copyright (C) SAP AG. All rights reserved. Callstack without Exception: App : disp+work.EXE (pid=7700) When : 6/29/2012 10:23:44.100 Threads : 2 Computer Name : TDP-ECC100AP1 User Name : sapservicemep Number of Processors: 8 Processor Type: Intel64 Family 6 Model 23 Stepping 10 Windows Version : 6.1 Current Build: 7601 State Dump for Thread Id 17fc FramePtr ReturnAd Param#1 Function Name 00000000086885c0 000007fefd6810dc 00000000ffffffff ntdll!NtWaitForSingleObject 0000000008688660 00000000017a52f1 0000000000000614 KERNELBASE!WaitForSingleObjectEx 00000000086888b0 0000000000625fb5 0000000000000001 disp+work!NTDebugProcess [ntstcdbg.c (509)] 00000000086888e0 0000000000b3a20c 0000000000000001 disp+work!CTrcStack [dptstack.c (182)] 0000000008688930 0000000000b3f7c1 0000000000000001 disp+work!rabax_CStackSave [abrabax.c (7313)] 0000000008689310 0000000000925985 0000000001d37648 disp+work!ab_rabax [abrabax.c (1276)] 0000000008689350 0000000000860f58 000007df002d3e70 disp+work!ab_bcdArithmeticOverflow [abcalc.c (700000000086893e0 000000000086399d 0000000000000000 disp+work!QuickCald [abextri.c (1857)] 0000000008689540 0000000000a4b7ef 00000000000002f8 disp+work!ab_extri [abextri.c (525)] 0000000008689590 0000000000a4bff7 0000000000000000 disp+work!ab_xevent [abrunt1.c (339)]

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 0000000008689630 0000000000bbeb4c 0000000000000000 disp+work!ab_trigg [abrunt1.c (61)] 00000000086896d0 000000000068bce6 000007df0000002d disp+work!ab_run [absubmit.c (408)] 0000000008689860 0000000000690d6e 000007df000c148c disp+work!dynpmcal [dymainstp.c (2383)] 0000000008689900 000000000069001a 0000000000000000 disp+work!dynppai0 [dymainstp.c (1114)] 00000000086899b0 0000000000647893 0000000000000000 disp+work!dynprctl [dymainstp.c (361)] 000000000868fc10 00000000004f7a72 0000000000000013 disp+work!dynpen00 [dymain.c (1941)] 000000000868fe90 0000000000430b1b 0000000000263350 disp+work!TskhLoop [thxxhead.c (4671)] 000000000868fec0 000000000040108d ffffffff00000003 disp+work!DpMain [dpxxdisp.c (1171)] 000000000868fef0 0000000001a850a1 0000000000000000 disp+work!nlsui_main [thxxanf.c (84)] 000000000868ff50 0000000076b6652d 0000000000000000 disp+work!wmainCRTStartup [crtexe.c (498)] 000000000868ff80 0000000076eec521 0000000000000000 kernel32!BaseThreadInitThunk 000000000868ffd0 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart State Dump for Thread Id 7f4 FramePtr ReturnAd Param#1 Function Name 0000000011a0fdf0 000007fefd68c3ff 0000000000000000 ntdll!ZwFsControlFile 0000000011a0fe60 000000000196419f fffffffffffffffe KERNELBASE!ConnectNamedPipe 0000000011a0fef0 000007fefd71415f 000000000d8623a0 disp+work!SigIMsgFunc [signt.c (679)] 0000000011a0ff20 000007fefd716ebd 000007fefd7a1ea0 msvcrt!srand 0000000011a0ff50 0000000076b6652d 0000000000000000 msvcrt!ftime64_s 0000000011a0ff80 0000000076eec521 0000000000000000 kernel32!BaseThreadInitThunk 0000000011a0ffd0 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart

    Lista de programas ABAP implicados nd. Tp. Programa Grupo Fecha Tmpo Tam. Idioma 0 Prg ZREC_DETINGRE_CONTANAL 0 21.04.2012 08:08:36 128000 S 1 Prg SAPMSSY0 1 03.10.2008 13:21:40 92160 S 2 Prg SAPMSSYD 1 12.09.2006 11:33:31 21504 S 3 Prg SAPFSYSCALLS 1 09.09.2004 14:18:32 7168 S 4 Prg RSDBRUNT 0 24.02.2009 20:03:23 254976 S 5 Typ RSSCR 0 30.03.2005 10:21:45 5120 6 Prg RSDBSPBL 0 30.03.2005 10:21:58 72704 S 7 Prg SAPDB__S 0 30.03.2005 10:22:01 19456 S 8 Typ VARID 0 12.05.1997 16:51:30 4096 9 Typ SSCRFIELDS 0 13.05.1997 12:54:26 5120 10 Prg %_CSYDB0 0 30.03.2005 10:21:45 35840 S 11 Prg RSDBSPVA 0 24.02.2009 19:54:00 133120 S 12 Typ RSVAMEMKEY 0 07.05.1997 13:07:49 2048 13 Prg RSDBSPMC 0 12.09.2006 11:25:01 79872 S 14 Typ DDSHDESCR 0 03.09.1997 03:05:16 4096 15 Typ SPPARAMS 0 07.05.1997 13:10:38 2048 16 Prg SAPLICON 16 03.10.2008 13:35:25 27648 S 17 Prg %_CICON 16 03.10.2008 13:35:25 107520 S 18 Typ ICONT 0 12.09.2006 11:25:01 2048 19 Prg SAPLSABE 19 09.09.2004 14:18:36 12288 S 20 Prg SAPLSECU 20 29.01.2010 10:30:29 87040 S 21 Typ RSSUBINFO 0 14.10.1999 22:01:03 3072 22 Prg SAPLDSYA 22 03.10.2008 13:18:12 45056 S 23 Prg SAPFSDS1 22 30.03.2005 10:22:01 52224 S 24 Typ TDCLD 0 02.11.1998 09:51:35 5120 25 Prg SAPLSDOD 25 24.02.2009 19:33:44 45056 S 26 Typ DOKIL 0 12.05.1997 16:46:17 3072 27 Prg SAPCNVE 27 09.09.2004 14:36:10 8192 S 28 Prg SAPLLANG 28 03.10.2008 12:21:29 10240 S 29 Typ T002 0 03.10.2008 12:21:29 2048 30 Typ RSEXFCODE 0 13.08.1997 12:52:57 2048 31 Prg SAPFSPOR 0 03.10.2008 22:38:06 14336 S 32 Typ RSSELINT 0 04.04.1995 16:12:37 2048

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44 33 Prg SAPLSCNT 33 18.02.2005 14:16:06 30720 S 34 Typ DYCBOX 0 20.08.1998 11:16:53 3072 35 Prg SAPLSVSM 35 24.02.2009 19:53:46 28672 S 36 Prg SAPLSGUI 36 03.10.2008 13:21:40 84992 S 37 Prg SAPLSTTM 37 05.07.2005 13:10:18 69632 S 38 Prg SAPLSBDC 38 03.10.2008 12:22:11 44032 S 39 Prg CL_DATAPROVIDER===============CP 39 28.02.2005 21:00:46 49152 S 40 Prg %_CCNTL 39 18.02.2005 14:15:08 15360 S 41 Typ OBJ_RECORD 0 14.02.1998 08:30:43 2048 42 Prg SAPLSTUP 42 24.02.2009 19:33:47 74752 S 43 Prg SAPLCNDP 43 24.02.2009 20:02:47 197632 S 44 Prg SAPSHDTV 33 05.01.2005 16:26:16 33792 S 45 Typ SHDSTU 0 14.12.1998 23:15:34 2048 46 Typ SHDSTCIU 0 14.12.1998 23:15:34 2048 47 Prg SAPFGUICNTL 1 18.02.2005 14:15:08 24576 S 48 Prg SAPLOLEA 48 24.02.2009 20:01:12 96256 S 49 Prg SAPLSFES 49 24.02.2009 20:02:55 260096 S 50 Prg SAPLSPLUGIN 50 09.09.2004 14:18:36 8192 S 51 Typ ARFCRDATA 0 13.02.2005 18:20:24 6144 52 Prg SAPLGRFC 52 13.02.2005 18:20:25 16384 S 53 Typ SWCBCONT 0 15.11.2000 17:55:11 3072 54 Typ OLE_VERBS 0 04.04.1995 16:02:20 2048 55 Typ OLE_PA 0 04.04.1995 16:02:19 2048 56 Typ SSCRTEXTS 0 03.09.1997 03:12:33 3072 57 Prg CL_GUI_PROPS_CONSUMER=========CP 57 03.10.2008 13:38:30 29696 S 58 Prg SAPLTHFB 58 29.01.2010 10:30:30 394240 S 59 Typ EUDB 0 06.11.2003 20:28:08 8192 60 Prg CL_DYNAMIC_GUI_EXTENSIONS=====CP 60 18.02.2005 14:15:28 37888 S 61 Prg CL_GUI_DATAMANAGER============CP 61 05.07.2005 13:10:15 75776 S 62 Prg CL_ABAP_CHAR_UTILITIES========CP 62 05.07.2005 13:10:15 13312 S 63 Typ RSVUVINT 0 15.01.1996 16:09:23 2048 64 Prg RSDBSPVD 0 03.10.2008 12:30:34 88064 S 65 Typ RVARI 0 30.03.1998 09:40:50 4096 66 Typ RSVARIVDAT 0 04.04.1995 16:12:54 2048 67 Typ ZTBL_OBLIGACIONT 0 09.10.2008 18:10:00 2048 68 Typ TZONT 0 14.02.1998 15:14:38 2048 69 Typ TB032T 0 10.11.1998 05:48:52 2048 70 Typ TB004T 0 15.04.1998 00:37:24 2048 71 Typ TPSOB001T 0 24.02.2005 16:17:14 2048 72 Typ TB020 0 15.11.2000 17:56:50 3072 73 Typ BUT021_FS 0 06.11.2003 20:26:42 3072 74 Typ ADRC 0 06.11.2003 20:25:51 17408 75 Typ BUT000 0 25.08.2005 22:00:55 19456 76 Typ DFKKOP 0 07.10.2008 16:59:08 26624 77 Typ TB002 0 14.02.1998 12:33:25 2048 78 Typ DFKKZP 0 03.10.2008 20:18:52 13312 79 Typ ZTBL_HISPAGOSPOR 0 21.04.2012 08:08:36 7168 80 Typ ZTBL_REGPAGOBCCR 0 21.04.2012 08:08:36 4096 81 Prg CX_SY_ARITHMETIC_OVERFLOW=====CP 81 05.07.2005 13:10:16 10240 S 82 Typ SCX_SRCPOS 0 18.05.2004 14:07:11 2048 83 Prg CX_SY_ARITHMETIC_ERROR========CP 83 05.07.2005 13:10:16 10240 S 84 Prg CX_DYNAMIC_CHECK==============CP 84 05.07.2005 13:10:16 10240 S 85 Prg CX_ROOT=======================CP 85 03.10.2008 12:44:30 11264 S 86 Prg CX_NO_CHECK===================CP 86 05.07.2005 13:10:16 10240 S 87 Prg CX_SY_NO_HANDLER==============CP 87 05.07.2005 13:10:16 10240 S 88 Typ RSJOBINFO 0 29.04.1992 14:52:25 3072 89 Typ SYST 0 09.09.2004 14:18:12 31744

    Directorio de tablas de aplicacin

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44

    Nom. Fecha Tmpo Long. Val. Programa ZREC_DETINGRE_CONTANAL SYST 09.09.2004 14:18:12 00004612 \0\0\0\0\x0015\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x000E\0\0\0 RSJOBINFO . . : : 00000164 00000000000000 BUT000 . . : : 00002268 SSCRFIELDS 09.09.2004 14:18:02 00001708 SSCRTEXTS . . : : 00000742 Programa RSDBRUNT RSVUVINT . . : : 00000094 | VARID . . : : 00000252 Programa SAPLICON ICONT . . : : 00000130 Programa SAPFSDS1 TDCLD . . : : 00000098 RE DOKU 8R XX XXLIMUDOKUX \x001EXR3TRPROGX | Programa SAPLSDOD DOKIL . . : : 00000152 Programa SAPLLANG T002 . . : : 00000010 SS2ES| Programa SAPSHDTV SHDSTU . . : : 00000106 | SHDSTCIU . . : : 00000100 | Programa CL_GUI_PROPS_CONSUMER=========CP EUDB . . : : 00004068 %C6F06C2E1C704F17BA9330010183DFA56 \0\0\0

    Bloq.control ABAP (CONT) nd. Nom. Fl PAR0 PAR1 PAR2 PAR3 PAR4 PAR5 PAR6 Texto fuente Ln.

  • Err.tmpo.ejec. COMPUTE_BCD_OVERFLOW Excep. CX_SY_ARITHMETIC_OVERFLOW Fecha y hora 29.06.2012 10:23:44

    2544 PAR1 80 0101 ZREC_DETINGRE_CONTANAL 1950 2545 PAR1 80 00F4 ZREC_DETINGRE_CONTANAL 1950 2546 PAR1 80 0102 ZREC_DETINGRE_CONTANAL 1950 2547 PAR1 80 00F5 ZREC_DETINGRE_CONTANAL 1950 2548 PAR1 80 0103 ZREC_DETINGRE_CONTANAL 1950 2549 PAR1 80 00F6 ZREC_DETINGRE_CONTANAL 1950 2550 PAR1 80 0104 ZREC_DETINGRE_CONTANAL 1950 2551 PAR1 80 0105 ZREC_DETINGRE_CONTANAL 1950 2552 PAR1 80 00F7 ZREC_DETINGRE_CONTANAL 1950 2553 LOOP 03 0243 0053 0060 0000 0000 0000 0000 ZREC_DETINGRE_CONTANAL 1951 2557 LOOP 05 0000 0053 0060 0000 0000 0000 0000 ZREC_DETINGRE_CONTANAL 1951 2561 BRAN 05 004A ZREC_DETINGRE_CONTANAL 1951>>>>> ccqd 0B 62F2 0000 232C 0000 1213 0000 232C ZREC_DETINGRE_CONTANAL 1953 2566 ccqd 0B 62F2 0000 2333 0000 1223 0000 2333 ZREC_DETINGRE_CONTANAL 1954 2570 ccqd 0B 62F2 0000 2341 0000 1243 0000 2341 ZREC_DETINGRE_CONTANAL 1955 2574 ccqd 0B 6262 0000 232C 0000 2333 0000 233A ZREC_DETINGRE_CONTANAL 1958 2578 ccqd 0B 62F2 0000 234F 0000 1263 0000 234F ZREC_DETINGRE_CONTANAL 1960 2582 ccqd 0B 62F2 0000 2356 0000 1273 0000 2356 ZREC_DETINGRE_CONTANAL 1961 2586 cald 02 0071 ZREC_DETINGRE_CONTANAL 1962 2587 CALC 02 0074 ZREC_DETINGRE_CONTANAL 1962