During the material creation ,it is showing some error(bdc program)

hi expects,
     during execution the program ,the material is created.but i am getting a message that field rmmg1-mbrsh(industrial sector) that "input value is longer than screen field.please help me solving this problem.

REPORT  ZMM_RDD0009_MATERIAL_CREATION           .
structure declaration.
types : begin of ty_upload,
        MAKTX TYPE MAKTX,   "Material Description
        WERKS TYPE WERKS,   "PLANT
        MTART TYPE MTART,   "Material Type
        MATKL TYPE MATKL,   "Material Group
        MEINS TYPE MEINS,   "Base Unit of Measure
        MFRPN TYPE MFRPN,   "Manufacturing part number
        SALK3 TYPE SALK3,   "net amounting
        PEINH TYPE PEINH,   "price unit
        VPRSV TYPE VPRSV,   "price control indicator
        BKLAS TYPE BKLAS,   "valuattion class
        end of ty_upload.
INTERNAL TABLE DECLARATION.
internal table for upload the data.
data:t_upload type standard table of ty_upload initial size 0,
*internal table for bdcdata.
     t_bdcdata type standard table of bdcdata initial size 0 ,
*internal table for bdcmsgcoll.
     t_bdcmsgcoll type standard table of bdcmsgcoll initial size 0,
     t_error type standard table of ty_upload initial size 0,
WORK-AREA DECLARATION.
work-area for upload the data.
     w_upload type ty_upload,
     bdcdata type bdcdata,
work-area for bdcmsgcoll.
     w_bdcmsg type bdcmsgcoll,
*global variable declaration.
     g_message(70) type c.
*include bdcrecx1.
*start-of-selection.
start-of-selection.
call function 'GUI_UPLOAD'
  exporting
    filename                      = 'D:/MATERIAL.txt'
   filetype                      = 'ASC'
   has_field_separator           = 'X'
  HEADER_LENGTH                 = 0
  READ_BY_LINE                  = 'X'
  DAT_MODE                      = ' '
IMPORTING
  FILELENGTH                    =
  HEADER                        =
  tables
    data_tab                      = t_upload.
EXCEPTIONS
call function 'BDC_OPEN_GROUP'
exporting
   client                    = sy-mandt
  DEST                      = FILLER8
   group                     = 'ERROR_MAT'
  HOLDDATE                  = ''
  KEEP                      = 'X'
   user                      = sy-uname
  RECORD                    = FILLER1
   prog                      = sy-cprog.
loop at t_upload into w_upload.
refresh t_bdcdata.
*perform open_group.
perform bdc_dynpro      using 'SAPLMGMM' '0060'.
perform bdc_field       using 'BDC_CURSOR'
                              'RMMG1-MATNR'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'RMMG1-MBRSH'
                              'W_UPLOAD-MBRSH'.
perform bdc_field       using 'RMMG1-MTART'
                              'W_UPLOAD-MTART'.
perform bdc_dynpro      using 'SAPLMGMM' '0070'.
perform bdc_field       using 'BDC_CURSOR'
                              'MSICHTAUSW-DYTXT(17)'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTR'.
perform bdc_field       using 'MSICHTAUSW-KZSEL(01)'
                              'X'.
perform bdc_field       using 'MSICHTAUSW-KZSEL(04)'
                              'X'.
perform bdc_field       using 'MSICHTAUSW-KZSEL(17)'
                              'X'.
perform bdc_dynpro      using 'SAPLMGMM' '0080'.
perform bdc_field       using 'BDC_CURSOR'
                              'RMMG1-WERKS'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTR'.
perform bdc_field       using 'RMMG1-WERKS'
                              'W_UPLOAD-WERKS'.
perform bdc_dynpro      using 'SAPLMGMM' '4004'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'MAKT-MAKTX'
                              'W_UPLOAD-MAKTX'.
perform bdc_field       using 'BDC_CURSOR'
                              'MARA-MATKL'.
perform bdc_field       using 'MARA-MEINS'
                              'W_UPLOAD-MEINS'.
perform bdc_field       using 'MARA-MATKL'
                              'W_UPLOAD-MATKL'.
perform bdc_dynpro      using 'SAPLMGMM' '4000'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'MAKT-MAKTX'
                              'W_UPLOAD-MAKTX'.
perform bdc_field       using 'MARA-MEINS'
                              'W_UPLOAD-MEINS'.
perform bdc_field       using 'MARA-MATKL'
                              'W_UPLOAD-MATKL'.
perform bdc_field       using 'BDC_CURSOR'
                              'MARA-MFRPN'.
perform bdc_field       using 'MARA-MFRPN'
                              'W_UPLOAD-MFRPN'.
perform bdc_dynpro      using 'SAPLMGMM' '4000'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'MAKT-MAKTX'
                              'W_UPLOAD-MAKTX'.
perform bdc_field       using 'MARA-MEINS'
                              'W_UPLOAD-MEINS'.
perform bdc_field       using 'BDC_CURSOR'
                              'MBEW-VERPR'.
perform bdc_field       using 'MBEW-BKLAS'
                              'W_UPLOAD-BKLAS'.
perform bdc_field       using 'MBEW-VPRSV'
                              'W_UPLOAD-VPRSV'.
perform bdc_field       using 'MBEW-PEINH'
                              '1'.
perform bdc_field       using 'MBEW-VERPR'
                              'W_UPLOAD-VERPR'.
perform bdc_dynpro      using 'SAPLSPO1' '0300'.
perform bdc_field       using 'BDC_OKCODE'
                              '=YES'.
*perform bdc_transaction using 'MM01'.
*perform close_group.
call transaction 'MM01' using t_bdcdata mode 'N' update 'S'
                   messages into t_bdcmsgcoll.
if sy-subrc <> 0.
*append w_upload to t_error.
call function 'BDC_INSERT'
exporting
   tcode                  = 'MM01'
  tables
    dynprotab              = t_bdcdata.
endif.
clear w_bdcmsg.
read table t_bdcmsgcoll into w_bdcmsg index 1.
call function 'FORMAT_MESSAGE'
exporting
   id              = w_bdcmsg-msgid
   lang            = sy-langu
   no              = w_bdcmsg-msgnr
   v1              = w_bdcmsg-msgv1
   v2              = w_bdcmsg-msgv2
   v3              = w_bdcmsg-msgv3
   v4              = w_bdcmsg-msgv4
importing
   msg             = g_message
exceptions
   not_found       = 1
   others          = 2.
if sy-subrc = 0.
write:/ w_upload-maktx,'----', g_message.
refresh t_bdcmsgcoll.
endif.
endloop.
call function 'BDC_CLOSE_GROUP'.
EXCEPTIONS
  NOT_OPEN          = 1
  QUEUE_ERROR       = 2
  OTHERS            = 3
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
       Start new screen                                              *
form bdc_dynpro using program dynpro.
  clear bdcdata.
  bdcdata-program  = program.
  bdcdata-dynpro   = dynpro.
  bdcdata-dynbegin = 'X'.
  append bdcdata to t_bdcdata.
  clear bdcdata.
endform.
       Insert field                                                  *
form bdc_field using fnam fval.
IF FVAL <> NODATA.
    clear bdcdata.
    bdcdata-fnam = fnam.
    bdcdata-fval = fval.
    append bdcdata to t_bdcdata.
    clear bdcdata.
ENDIF.
endform.
FLAT FILE
MAT.DESCRIPTION          PLANT     MAT.TYPE     MAT.GROUP                UNIT
        M                    1000          ROH               001          KG
MANU.PART              NET               PRICE          PRICE          VALUATION     
NUMBER                   AMOUNTING            UNIT              CONTROL        CLASS     
    1                  25                   1              V              3000

Similar Messages

  • User Exits / BADIs triggered during the Material document creation

    Hi Experts,
    Can anybody tell me the User Exits / BADIs /Possibilities that can be triggered during the Material Document Creation which can be used to update the Equipment Master User Statuses.
    Thanks,
    Sangeeta.

    Hey Sangeeta,
      Try these User Exit's
    MGA00001  Material Master (Industry): Checks and Enhancements
    MGA00002  Material Master (Industry): Number Assignment
    MGA00003  Material Master (Industry and Retail): Number Display
    Using Enhancement MGA00001 (Function Exit : EXIT_SAPLMGMU_001 ) you can validate & Change your Material Document Number.
    Badi's
    BADI_EAN_SYSTEMATIC
    BADI_GTIN_VARIANT
    BADI_MAT_F_SPEC_SEL
    BADI_MATERIAL_CHECK
    BADI_MATERIAL_OD
    BADI_MATERIAL_OD
    BADI_MATERIAL_REF
    BADI_MATNR_CHECK_PVS
    BADI_MM_MATNR
    BADI_MM_MATNR
    CDT_CHECK_MATERIAL
    MG_MASS_NEWSEG
    MG_MASS_NEWSEG
    WRF_DISCONT_FACT_E
    Note: This is for transaction code MM01, MM02 & MM03.
    Regards,
    Saravanan M

  • While running the form-showing some error

    hi,
    while running the form-showing some error... I mentioned Below
    # An unexpected error has been detected by Java Runtime Environment:
    # Internal Error (safepoint.cpp:583), pid=3512, tid=4932
    # Error: Illegal threadstate encountered: 4
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x16788400): JavaThread "Thread-6" [_thread_in_native, id=4932, stack(0x1d7d0000,0x1d9d0000)]
    Stack: [0x1d7d0000,0x1d9d0000]
    <<<<<<<<<<<<<<<<<<<This is Another One Error>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0c307fd3, pid=5880, tid=6964
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
    # Problematic frame:
    # V [jvm.dll+0x57fd3]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x17926000): JavaThread "Thread-14" [_thread_in_native, id=6964, stack(0x04be0000,0x04de0000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0xfffffffc
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x00000000, EDX=0x04ddcf8c
    ESP=0x04ddcf58, EBP=0x00000000, ESI=0x04ddcf8c, EDI=0x00000400
    EIP=0x0c307fd3, EFLAGS=0x00010246
    Top of Stack: (sp=0x04ddcf58)
    0x04ddcf58: 04ddcf8c 0c3087a6 00000000 00000000
    0x04ddcf68: 00000000 0c37d855 04ddcf8c 1790e61c
    0x04ddcf78: 1790e61c 04ddd2f8 04ddd238 00000958
    0x04ddcf88: 00000000 00000000 00000001 00000000
    0x04ddcf98: 00000000 00000000 00000000 ffffffff
    0x04ddcfa8: 75966ce9 75966d91 00040000 17895c08
    0x04ddcfb8: 179b9f08 179b9f10 179ba2fc 00000400
    0x04ddcfc8: 178e9f70 0e563a98 0e563ab0 0e563b40
    Instructions: (pc=0x0c307fd3)
    0x0c307fc3: 04 56 8b f1 8b 4c 24 0c 89 06 89 46 14 89 4e 10
    0x0c307fd3: 8b 40 fc 50 89 46 04 e8 91 09 02 00 83 c4 04 85
    Stack: [0x04be0000,0x04de0000], sp=0x04ddcf58, free space=2035k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x57fd3]
    [error occurred during error reporting (printing native stack), id 0xc0000005]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x17924000 JavaThread "Flush Queue" [_thread_blocked, id=5624, stack(0x1fb80000,0x1fc80000)]
    0x17928000 JavaThread "Busy indicator" daemon [_thread_blocked, id=5324, stack(0x1f9f0000,0x1faf0000)]
    0x17924800 JavaThread "HeartBeat" [_thread_blocked, id=5576, stack(0x1f8d0000,0x1f9d0000)]
    0x17928400 JavaThread "Forms-StreamMessageWriter" [_thread_blocked, id=5696, stack(0x1f4b0000,0x1f5b0000)]
    0x17926c00 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=5412, stack(0x1f2d0000,0x1f3d0000)]
    0x17925000 JavaThread "thread applet-oracle.forms.engine.Main" [_thread_blocked, id=3904, stack(0x1e980000,0x1ea80000)]
    0x17926800 JavaThread "Thread-16" [_thread_in_vm, id=5080, stack(0x1d100000,0x1d300000)]
    0x17921c00 JavaThread "TaskScheduler timer" [_thread_blocked, id=6188, stack(0x1cef0000,0x1cff0000)]
    0x17927400 JavaThread "Flush Queue" [_thread_blocked, id=5620, stack(0x0a600000,0x0a700000)]
    0x17922800 JavaThread "CursorIdler" [_thread_blocked, id=6120, stack(0x1bf10000,0x1c010000)]
    0x17925400 JavaThread "Busy indicator" daemon [_thread_blocked, id=5428, stack(0x1c300000,0x1c400000)]
    0x17924400 JavaThread "HeartBeat" [_thread_blocked, id=480, stack(0x1cc70000,0x1cd70000)]
    0x17929000 JavaThread "Forms-StreamMessageWriter" [_thread_blocked, id=6288, stack(0x1c050000,0x1c150000)]
    0x17922c00 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=3932, stack(0x0a1d0000,0x0a2d0000)]
    0x17927800 JavaThread "thread applet-oracle.forms.engine.Main" [_thread_blocked, id=6708, stack(0x0b570000,0x0b670000)]
    0x17928800 JavaThread "SunToolkit.PostEventQueue-6" [_thread_blocked, id=4140, stack(0x1be10000,0x1bf10000)]
    0x17922000 JavaThread "AWT-EventQueue-6" [_thread_blocked, id=6524, stack(0x0b6d0000,0x0b7d0000)]
    =>0x17926000 JavaThread "Thread-14" [_thread_in_native, id=6964, stack(0x04be0000,0x04de0000)]
    0x17923400 JavaThread "Screen Updater" [_thread_blocked, id=3812, stack(0x1a990000,0x1aa90000)]
    0x178f2400 JavaThread "JAR Cache Cleanup Thread" [_thread_blocked, id=3784, stack(0x1a360000,0x1a460000)]
    0x178ec800 JavaThread "TimerQueue" daemon [_thread_blocked, id=4844, stack(0x19fe0000,0x1a0e0000)]
    0x178e4400 JavaThread "Thread-2" [_thread_blocked, id=5800, stack(0x1a150000,0x1a250000)]
    0x178e3c00 JavaThread "Thread-1" [_thread_blocked, id=3496, stack(0x19450000,0x19550000)]
    0x0be0f400 JavaThread "Main Console Writer" [_thread_blocked, id=3324, stack(0x18ee0000,0x18fe0000)]
    0x0be0e000 JavaThread "AWT-Windows" [_thread_in_native, id=2040, stack(0x18b60000,0x18c60000)]
    0x0be0dc00 JavaThread "SunToolkit.PostEventQueue-1" [_thread_blocked, id=728, stack(0x175d0000,0x176d0000)]
    0x0be0d400 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=4000, stack(0x188a0000,0x189a0000)]
    0x0bdc5000 JavaThread "SunToolkit.PostEventQueue-0" [_thread_blocked, id=4720, stack(0x174b0000,0x175b0000)]
    0x0bdd8800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2708, stack(0x17790000,0x17890000)]
    0x0bd8d000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3772, stack(0x16cb0000,0x16db0000)]
    0x0bd86400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3780, stack(0x16fe0000,0x170e0000)]
    0x0bd85800 JavaThread "Attach Listener" daemon [_thread_blocked, id=5828, stack(0x16dc0000,0x16ec0000)]
    0x0bd7b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2492, stack(0x16b90000,0x16c90000)]
    0x0bd72800 JavaThread "Finalizer" daemon [_thread_blocked, id=3800, stack(0x0c0e0000,0x0c1e0000)]
    0x0bd6e000 JavaThread "Reference Handler" daemon [_thread_blocked, id=1824, stack(0x16980000,0x16a80000)]
    Other Threads:
    0x0bd6c000 VMThread [stack: 0x16840000,0x16940000] [id=3892]
    0x0bd95c00 WatcherThread [stack: 0x17160000,0x17260000] [id=4680]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1024K, used 400K [0x0e510000, 0x0e620000, 0x0e9f0000)
    eden space 960K, 35% used [0x0e510000, 0x0e5642b0, 0x0e600000)
    from space 64K, 100% used [0x0e610000, 0x0e620000, 0x0e620000)
    to space 64K, 0% used [0x0e600000, 0x0e600000, 0x0e610000)
    tenured generation total 11516K, used 10193K [0x0e9f0000, 0x0f52f000, 0x12510000)
    the space 11516K, 88% used [0x0e9f0000, 0x0f3e4780, 0x0f3e4800, 0x0f52f000)
    compacting perm gen total 12288K, used 9184K [0x12510000, 0x13110000, 0x16510000)
    the space 12288K, 74% used [0x12510000, 0x12e08140, 0x12e08200, 0x13110000)
    No shared spaces configured.
    Dynamic libraries:
    0x012f0000 - 0x013a8000      C:\Program Files (x86)\Internet Explorer\iexplore.exe
    0x77e00000 - 0x77f80000      C:\Windows\SysWOW64\ntdll.dll
    0x76980000 - 0x76a90000      C:\Windows\syswow64\kernel32.dll
    0x76b10000 - 0x76b56000      C:\Windows\syswow64\KERNELBASE.dll
    0x758b0000 - 0x75950000      C:\Windows\syswow64\ADVAPI32.dll
    0x75b40000 - 0x75bec000      C:\Windows\syswow64\msvcrt.dll
    0x76ec0000 - 0x76ed9000      C:\Windows\SysWOW64\sechost.dll
    0x770d0000 - 0x771c0000      C:\Windows\syswow64\RPCRT4.dll
    0x754e0000 - 0x75540000      C:\Windows\syswow64\SspiCli.dll
    0x754d0000 - 0x754dc000      C:\Windows\syswow64\CRYPTBASE.dll
    0x75950000 - 0x75a50000      C:\Windows\syswow64\USER32.dll
    0x77450000 - 0x774e0000      C:\Windows\syswow64\GDI32.dll
    0x756d0000 - 0x756da000      C:\Windows\syswow64\LPK.dll
    0x77030000 - 0x770cd000      C:\Windows\syswow64\USP10.dll
    0x76e60000 - 0x76eb7000      C:\Windows\syswow64\SHLWAPI.dll
    0x75d30000 - 0x7697a000      C:\Windows\syswow64\SHELL32.dll
    0x76d00000 - 0x76e5c000      C:\Windows\syswow64\ole32.dll
    0x75560000 - 0x75671000      C:\Windows\syswow64\urlmon.dll
    0x756e0000 - 0x7576f000      C:\Windows\syswow64\OLEAUT32.dll
    0x771c0000 - 0x77378000      C:\Windows\syswow64\iertutil.dll
    0x75c10000 - 0x75d2b000      C:\Windows\syswow64\WININET.dll
    0x77dd0000 - 0x77dd3000      C:\Windows\syswow64\Normaliz.dll
    0x75770000 - 0x757d0000      C:\Windows\system32\IMM32.DLL
    0x77380000 - 0x7744c000      C:\Windows\syswow64\MSCTF.dll
    0x6c5a0000 - 0x6cee6000      C:\Windows\system32\IEFRAME.dll
    0x75550000 - 0x75555000      C:\Windows\syswow64\PSAPI.DLL
    0x6dbc0000 - 0x6dbfc000      C:\Windows\system32\OLEACC.dll
    0x71710000 - 0x718ae000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\comctl32.dll
    0x76a90000 - 0x76b0b000      C:\Windows\syswow64\comdlg32.dll
    0x6b640000 - 0x6b671000      C:\Program Files (x86)\Internet Explorer\IEShims.dll
    0x73070000 - 0x730f0000      C:\Windows\system32\uxtheme.dll
    0x73870000 - 0x73878000      C:\Windows\system32\Secur32.dll
    0x73c60000 - 0x73c6b000      C:\Windows\system32\profapi.dll
    0x757d0000 - 0x75805000      C:\Windows\syswow64\WS2_32.dll
    0x75540000 - 0x75546000      C:\Windows\syswow64\NSI.dll
    0x73720000 - 0x73764000      C:\Windows\system32\dnsapi.DLL
    0x736c0000 - 0x736dc000      C:\Windows\system32\iphlpapi.DLL
    0x736b0000 - 0x736b7000      C:\Windows\system32\WINNSI.DLL
    0x73c70000 - 0x73c7e000      C:\Windows\system32\RpcRtRemote.dll
    0x70230000 - 0x70243000      C:\Windows\system32\dwmapi.dll
    0x6cef0000 - 0x6daab000      C:\Windows\system32\MSHTML.dll
    0x73d40000 - 0x73d49000      C:\Windows\system32\VERSION.dll
    0x76b60000 - 0x76cfd000      C:\Windows\syswow64\setupapi.dll
    0x75a50000 - 0x75a77000      C:\Windows\syswow64\CFGMGR32.dll
    0x75bf0000 - 0x75c02000      C:\Windows\syswow64\DEVOBJ.dll
    0x6c0a0000 - 0x6c15a000      C:\Windows\system32\d2d1.dll
    0x6ff30000 - 0x7003b000      C:\Windows\system32\DWrite.dll
    0x6c010000 - 0x6c093000      C:\Windows\system32\dxgi.dll
    0x75a80000 - 0x75aad000      C:\Windows\syswow64\WINTRUST.dll
    0x76ee0000 - 0x76ffd000      C:\Windows\syswow64\CRYPT32.dll
    0x75810000 - 0x7581c000      C:\Windows\syswow64\MSASN1.dll
    0x6bfe0000 - 0x6c00c000      C:\Windows\system32\d3d10_1.dll
    0x6bfa0000 - 0x6bfda000      C:\Windows\system32\d3d10_1core.dll
    0x73cc0000 - 0x73cd6000      C:\Windows\system32\CRYPTSP.dll
    0x73c80000 - 0x73cbb000      C:\Windows\system32\rsaenh.dll
    0x75820000 - 0x758a3000      C:\Windows\syswow64\CLBCatQ.DLL
    0x6bf30000 - 0x6bf62000      C:\Program Files (x86)\Internet Explorer\ieproxy.dll
    0x73cf0000 - 0x73d3c000      C:\Windows\system32\apphelp.dll
    0x6db60000 - 0x6db8e000      C:\Windows\system32\MLANG.dll
    0x72910000 - 0x72931000      C:\Windows\system32\ntmarta.dll
    0x75680000 - 0x756c5000      C:\Windows\syswow64\WLDAP32.dll
    0x716b0000 - 0x71702000      C:\Windows\system32\RASAPI32.dll
    0x728f0000 - 0x72905000      C:\Windows\system32\rasman.dll
    0x73d60000 - 0x73d6d000      C:\Windows\system32\rtutils.dll
    0x737a0000 - 0x737a6000      C:\Windows\system32\sensapi.dll
    0x73a70000 - 0x73aac000      C:\Windows\system32\mswsock.dll
    0x73a60000 - 0x73a65000      C:\Windows\System32\wshtcpip.dll
    0x738b0000 - 0x738c0000      C:\Windows\system32\NLAapi.dll
    0x6de50000 - 0x6deaf000      C:\Windows\system32\SXS.DLL
    0x73660000 - 0x73666000      C:\Windows\system32\rasadhlp.dll
    0x701c0000 - 0x701c7000      C:\Windows\system32\msiltcfg.dll
    0x6f290000 - 0x6f4d0000      C:\Windows\system32\msi.dll
    0x73c50000 - 0x73c53000      C:\Windows\SysWOW64\SFC.DLL
    0x73ac0000 - 0x73acd000      C:\Windows\system32\sfc_os.DLL
    0x658b0000 - 0x65a6b000      C:\Windows\SysWOW64\jscript9.dll
    0x6dbb0000 - 0x6dbbb000      C:\Windows\system32\msimtf.dll
    0x6c460000 - 0x6c555000      C:\Windows\system32\PROPSYS.dll
    0x6bbf0000 - 0x6bceb000      C:\Windows\system32\windowscodecs.dll
    0x6bd30000 - 0x6be32000      C:\Windows\system32\d3d10.dll
    0x6bcf0000 - 0x6bd23000      C:\Windows\system32\d3d10core.dll
    0x6be40000 - 0x6be6b000      C:\Windows\system32\msls31.dll
    0x728e0000 - 0x728e6000      C:\Windows\System32\wship6.dll
    0x736e0000 - 0x73707000      C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL
    0x73670000 - 0x736a8000      C:\Windows\System32\fwpuclnt.dll
    0x01150000 - 0x0115d000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\npjinit13122.dll
    0x09160000 - 0x0918b000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\beans.ocx
    0x73960000 - 0x73967000      C:\Windows\system32\wsock32.dll
    0x73890000 - 0x738a0000      C:\Windows\system32\napinsp.dll
    0x73780000 - 0x73792000      C:\Windows\system32\pnrpnsp.dll
    0x73710000 - 0x73718000      C:\Windows\System32\winrnr.dll
    0x089e0000 - 0x089f6000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\jpishare.dll
    0x0c2b0000 - 0x0c506000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\hotspot\jvm.dll
    0x73ad0000 - 0x73b02000      C:\Windows\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\Windows\system32\MSVCR71.dll
    0x04960000 - 0x04967000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\hpi.dll
    0x08890000 - 0x0889d000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\verify.dll
    0x08f30000 - 0x08f48000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\java.dll
    0x08a00000 - 0x08a0d000      C:\PROGRA~2\Oracle\JINITI~1.22\bin\zip.dll
    0x16a80000 - 0x16b8b000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\awt.dll
    0x732b0000 - 0x73301000      C:\Windows\system32\WINSPOOL.DRV
    0x09340000 - 0x0937c000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\fontmanager.dll
    0x6b130000 - 0x6b1f8000      C:\Windows\system32\OPENGL32.DLL
    0x6b100000 - 0x6b122000      C:\Windows\system32\GLU32.dll
    0x6fc20000 - 0x6fd07000      C:\Windows\system32\DDRAW.dll
    0x70210000 - 0x70216000      C:\Windows\system32\DCIMAN32.dll
    0x17a90000 - 0x187f1000      C:\Windows\system32\ig4icd32.dll
    0x08b60000 - 0x08b68000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\net.dll
    0x1a250000 - 0x1a2e4000      C:\Windows\system32\igdumdx32.dll
    0x1af50000 - 0x1b56d000      C:\Windows\system32\igdumd32.dll
    0x6b9b0000 - 0x6b9d5000      C:\Windows\system32\PowrProf.dll
    0x09190000 - 0x0919a000      C:\Program Files (x86)\Oracle\JInitiator 1.3.1.22\bin\packager.dll
    0x72b50000 - 0x72b9f000      C:\Windows\System32\Wpc.dll
    0x731f0000 - 0x73207000      C:\Windows\System32\USERENV.dll
    0x72b00000 - 0x72b42000      C:\Windows\System32\wevtapi.dll
    0x738f0000 - 0x738ff000      C:\Windows\system32\samcli.dll
    0x73360000 - 0x73372000      C:\Windows\system32\SAMLIB.dll
    0x73930000 - 0x73939000      C:\Windows\system32\netutils.dll
    0x69d90000 - 0x6a9a5000      C:\Windows\system32\igd10umd32.dll
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~2\Oracle\JINITI~1.22\lib\jaws.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\plugprov.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\sunrsasign.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\javax-ssl-1_2.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\jssl-1_2.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.3.1.22 -Djavaplugin.nodotversion=13122 -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Oracle\JINITI~1.22 -Djava.protocol.handler.pkgs=sun.plugin.protocol.jdk12 -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~2\Oracle\JINITI~1.22\lib\applet. -Xbootclasspath/a:C:\PROGRA~2\Oracle\JINITI~1.22\lib\jaws.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\plugprov.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\sunrsasign.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\javax-ssl-1_2.jar;C:\PROGRA~2\Oracle\JINITI~1.22\lib\jssl-1_2.jar -Xmx64m -Djavaplugin.maxHeapSize=64m -Xverify:remote -Djavaplugin.version=1.3.1.22 -Djavaplugin.nodotversion=13122 -DtrustProxy=true -Dapplication.home=C:\PROGRA~2\Oracle\JINITI~1.22 -Djava.protocol.handler.pkgs=sun.plugin.protocol.jdk12
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    PATH=C:\PROGRA~2\Oracle\JINITI~1.22\bin;C:\PROGRA~2\Oracle\JINITI~1.22\jre\bin;E:\DevSuiteHome_1\jdk\jre\bin\classic;E:\DevSuiteHome_1\jdk\jre\bin;E:\DevSuiteHome_1\jdk\jre\bin\client;E:\DevSuiteHome_1\jlib;E:\DevSuiteHome_1\bin;E:\DevSuiteHome_1\jre\1.4.2\bin\client;E:\DevSuiteHome_1\jre\1.4.2\bin;E:\oracle\product\10.2.0\db_1\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Java\jdk1.6.0_30\jre\bin;;.
    USERNAME=free
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows NT 6.1 Build 7601 Service Pack 1
    CPU:total 4 (8 cores per cpu, 2 threads per core) family 6 model 10 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, ht
    Memory: 4k page, physical 4039108k(2141856k free), swap 4194303k(797372k free)
    vm_info: Java HotSpot(TM) Client VM (11.3-b02) for windows-x86 JRE (1.6.0_13-b03), built on Mar 9 2009 01:15:24 by "java_re" with MS VC++ 7.1
    time: Thu Mar 29 12:31:47 2012
    elapsed time: 7308 seconds
    Please find solution to solve the problem...

    you form is running in the browser with the help of Jinitiator which is nothing but A JavaInitiator.
    as your machine files located in the System32 folder of your windows directory as .DLL. are not able to communicate with the Jinitiator DLL Files being used
    for the JRE.
    The Form is sending the request to the internet explorer to run the object of applet ttype which is nothing but the Oracle Java Applet named as OC4J(Oracle Container for Java)
    if your form is running or trying to run and hangged due to some problems and your machine got abnormal shutdown then at that time the DLL fiels communicating each other may got corrupt
    due to any abmormal shutdown of your machine...
    the problem is there with the Java Side...
    There is no solution other then reloading the JRE and Jinitiator as per the error being thrown by your machine

  • I downloaded the ios 7.0.4 n tried to update it through itunes ....bt it doesnt work and its showing some error...!!!!

    i dwnloaded the ios 7.0.4 on my laptop n tried to update my iphone through lap bt it din wrk its showing some error tht m nt really awre of...some please help me out...!!!!

    Do you mind sharing the error message with us?
    That would certainly increase the chances for an answer.
    Allan

  • We are the authorise reseller of adobe product. We sold your Adobe Photoshop CC, But now it showing some error. We are having trouble verifying your membership.

    Adobe Photoshop CC, But now it showing some error. We are having trouble verifying your membership.

    Sreejith Technograph Oman wrote:
    any body have same error?? and how you solved
    What error?  You don't even describe the error. 
    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that because this is boilerplate text, not all points may apply to any given, specific poster.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I have a tool in window8 its work perfect in all other windows but its show some error in windows8

    i have a tool in window8 its work perfect in all other windows but its show some error in windows8
    in all other windows its hows all screens nd sound
    but in wondows8 its miss 3 screens nd sound its blank screen appear in windows8

    after installing this the error appeared
    run time error 372
    failed to load cntrol 'shockwavectl' from cntroll.dll
    'From: [email protected]
    To: [email protected]
    Subject: RE:  i have a tool in window8 its work perfect in all other windows but its show some error in windows8

  • While installing the BI Content i am getting some error??

    Questions:-
    1).while installing the BI Content i am getting some error plz tell me what is the process??

    Kishore,
    The answer would be simple - correct the error since the error ATM is known only to you...!!!
    Please be specific with your questions...
    http://www.google.com/search?hl=en&client=firefox-a&hs=So5&rls=org.mozilla%3Aen-US%3Aofficial&q=howtocorrecterrorinbusinesscontent+installation&aq=f&aqi=&aql=&oq=&gs_rfai=
    Edited by: Arun Varadarajan on May 6, 2010 1:15 AM

  • TS3694 I am unable to view My Wish List on the ITunes Store After installing the updated ITunes. It shows an Error -1202 and says try again later. But it never works.

    I am unable to view My Wish List on the ITunes Store After installing the updated ITunes. It shows an Error -1202 and says try again later. But it never works.

    Hi Jen.  My daughter just compleated her nursing program and is now working as a full time nurse.  Focus and study hard and soon you will be there too.  Now to the problem at hand.  I have the same problem.  I gave up on it and satisfied myself with my iPod without the upgrade.  Reason being I've read so many posts of people having problems after the upgrade.  But I'm sure other factors are involved.  Nevertheless here is the fix most say works to solve the problem:  What ever virus protection you have installed on your computer, disable it.  Then try to install the update. After that enable the protection. I had Kaspersky, and it does it's job well. The thinking is, the virus protection is blocking the upgrade.  Hope this works.   Charlie

  • Am trying to download itunes as it has previously deleted during an update, and it comes up during the installation that there is a file error with my resources

    Am trying to download itunes as it has previously deleted during an update, and it comes up during the installation that there is a file error with my resources

    That's perfect, thanks.
    error writing to file: C:\Program
    files\ i tunes\ i tunes.Resources\ja.lproj\AppleTVStream
    itxib. Verify that you have access to that directory
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • Assignment of the asset during the equipment creation

    Hello everyone,
    I am currently working on the PM-AA interface which consists in linking the asset field (ITOB-ANLNR) of an equipment with the asset number given in the purchase order. The goods receipt (MIGO) creates automatically an equipment (thanks to the serial number profile of the materiel).
    As the purchase order contains the asset, I expected that the system would put this value in the corresponding field of the equipment.
    In the customizing, we have made the following changes :
    - equipment is modified synchronously with tha asset modification
    - the assignment of master data fields of assets and equipment includes the asset fields itself
    - the serial number profile is assigned to the material and allow the creation of the equipment during the goods receipt.
    Has someone already experienced this case? What do I have to do to have the asset number saved in the equipment during its creation?

    Hi Paul,
    Thanks for you answer.
    I've already checked these customizing aspects but tjey are not saisfying enough : my customer wants the equipment to be created at the goods receipts in order to save the serial number registered during the reception.
    Furthermore, I'm not sure of the process if I create the equipment formerly : will it take into account the material and serial number that are given during the reception of the goods? And how does the system react with more than one equipment?

  • My phone switches off after showing horizontal lines on the screen during the restore process and then shows the error 9 problem. please help i am so stressed.

    Hello
    My iphone  4S switches off after showing horizontal lines on the screen cutting through the apple logo during the restore process and then right after my iTunes shows the error 9 message, this happened 2 days ago when my phone just switched off unexpectedily and has been in this recovery mode since then. i have watched videos on Youtube and i have disabled Firewall before starting the process, i think i have done almost everything. please help anyone what do i do from here?
    Just for interest sake i watched this video on youtube where this guy had the same problem  but the difference is that he had it on an iPad. he opened the ipad up and did something on the ipad, it took less than a minute then his ipad worked.
    I would appreciate it if someone would respond to this as fast as they can i am so stressed.
    Regards
    Lwando

    Read here:
    http://support.apple.com/kb/ts3694#9
    Error 9 is usually a security software issue.

  • The Fe0/0 on 2801 show some "change state to up"

    hi
    i have an Issue with my cisco 2801.
    in the logs shown me the interface FE0/0 cames up some times but never show the down state, I receive my internet service on this interface but never lost the conection, just this logs information
    Oct 7 18:39:32.412: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 7 18:39:41.448: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 7 21:57:20.775: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 8 02:29:31.350: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 8 02:55:12.362: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 8 13:02:21.824: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 8 13:05:30.076: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 9 01:49:25.864: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 9 01:49:58.616: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 9 01:54:11.708: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 9 03:26:23.080: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 9 05:59:39.519: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 9 11:27:14.246: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    Oct 9 14:59:02.057: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    the IOS Version that is running is
    flash:c2801-adventerprisek9-mz.124-24.T1.bin
    what could be the problem?
    thank you
    Roland

    Hello,
    Any idea how to troubleshoot/resolve this issue? We have a old 2801 which started displaying the same problem and i see both FE0/0, FE0/1 link messages.
    Oct 29 01:28:57.091 PST: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
    .Oct 29 01:29:03.839 PST: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
    .Oct 29 01:29:29.747 PST: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    .Oct 29 01:29:42.283 PST: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
    .Oct 29 01:29:48.923 PST: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
    .Oct 29 01:30:01.343 PST: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up

  • HT4623 My iPhone 4 has become unresponsive during the update. It's showing a progress bar and has not moved for over half an hour can anyone help ?

    My iPhone 4 has become unresponsive during the latest update I have a progress bar about half way through the update and it hasn't moved for about an hour can anyone help???

    Hey Ali.M27,
    Thanks for the question. I understand you are experiencing issues with your iPhone during an iOS update. If your issues persist, you may need to restore your device in recovery mode:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Thanks,
    Matt M.

  • How to aviod L3 008 message during the TO creation (Technically)

    Hi ,
    How to skip the L3 008 error message during the TO cration , we have picking strategy user exit is active and we want to skip the L3 008 error message for specific logic in user exit .
    We had found FM RV_DELIVERY_PICK_VIEW is helpful but how to  implement at quants level or LIPS table ? .
    Please suggest .
    Thanks ,
    Raghu

    Are you not storing the project number in the staging table designed for storing the task data? You can use create_project API to create the project and tasks at the same time with one single call. You may want to try that option

  • When I use "tabs from other computers," some of the tabs from the other computer show (7/11) and others don't, and going the other way, it keeps showing some tabs that have been closed.

    Desktop is running Windows XP and laptop is using Windows 7. Both have the latest version of Firefox.
    I press the Synch buttom before I press the "show tabs" button.

    I think I may have solved the problem. I cleared the cache, and then the old tabs no longer appeared. I think the ones that weren't showing were tabs that were already on the other computer.
    Haven't yet checked thoroughly.
    I can't upgrade easily because I have HughesNet, which limits downloads. Last time I downloaded Windows upgrade to my laptop, I went over the limit and got slowed down to slower than dial-up. And as mentioned in question, I *did* press Synch Now before asking for tabs.
    Also, if I did all the upgrades that various pieces of software want me to do, I'd have no time to get any work done.
    But thanks for the ideas.

Maybe you are looking for

  • Duplicated events on iCal after moving to iCloud

    Hi, i just updated mi iphone 4 to iOS5, then updated iTunes, then updated OSX Lion to 10.7.2, then moved to icloud... Everything seems to be ok, but there's a problem: my events duplicated on iCal in my macbookpro... Every input has cloned itself! Bu

  • Problems when waking from sleep with display

    Okay, so I have a Dual 1.8 G5 with an upgraded ATI Radeon 9800 Pro graphics card that I've had in it for over a year now. I just bought a new monitor, a Viewsonic 22" widescreen LCD to replace the 17" viewsonic CRD I had. Now, i get occasionally some

  • How do I unlock a folder in Finder?

    All of a sudden in Finder "My Documents" folder now has a red minus on it and when I attempt to open it I get the error message "The Folder My Documents cannot be opened because you do not have permission to see its contents" and when I click on get

  • I want a SAP system to play with!

    Hi Students often want access to a SAP system to enhance their skills but this there is an inherent risk to other students learning.  At my blog I talk about how to get access to a system at minimal cost and minimal risk. /people/paul.hawking3/blog G

  • Parent application

    Hi, How can I set the parent application in Oracle 9iAS? I could not see the option during the deployment.