Error_Text 3100000030802447 ID MATK language EN not found during BOM transf

Hi Experts,
When the user do the BOM transfer , they got the error message : Text 3100000000308020447 ID MATK language EN not found.
Message no. TD600
Diagnosis :
You want to read a text which doese not exist in the data base ( or update memory )
System response :
Reading could not be carried out.
Procedure :
You need to create this text.
1 . Initializaion ( module INIT_TEXT )
Could someone help me to solve ?
BR, Shubin

Hi Virendra,
Thanks a lot  !
BR , Shubin

Similar Messages

  • Error while creating so "Text 0000001025 ID 0012 language EN not found

    Dear Sirs,
    I am creating sales order but when i enter the material i am getting an error message
    "Text 0000001025 ID 0012 language EN not found
    Message no. TD600
    Diagnosis
    You want to read a text which does not exist in the data base (or update memory).
    System Response
    Reading could not be carried out.
    Procedure
    You need to create this text:
    1. Initialization (module INIT_TEXT)
    2. Save (module SAVE_TEXT)"
    Can any one please let me know what i am doing wrong?
    Thank & regards,
    Sameer

    Hi,
    I hope its an error related to ABAP developements,either smartforms or reports related so you consult your abaper to resolve it.
    Here is an sample ABAP code using the READ_TEXT function module without Exceptions uncommented.
    This sample ABAP code is taken from a SAP Smartform which is created for SAP invoice output document.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
      id = 'ZI01' " Billing Item Text
      language = 'I'
      name = lv_name " Invoice
      object = 'VBBP' " Billing
    ARCHIVE_HANDLE = 0
    LOCAL_CAT = ' '
    *IMPORTING
    HEADER =
    tables
      lines = lt_lines
    *EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    NOT_FOUND = 4
    OBJECT = 5
    REFERENCE_CHECK = 6
    WRONG_ACCESS_TO_ARCHIVE = 7
    OTHERS = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thank you

  • Long Text 0000000015120044ZOH ID ZOH language EN not found

    Hi Good day,
    i am trying to Create, Save and Read the long Text.
    for that i have done the following.
    1. SE75 Created the Object and Object ID  Ex :
    Now when i implement the logic in the Program,
    at the end when i execute ,
    1. it does the CALL FUNCTION 'INIT_TEXT' successfully , SAVE_TEXT Successfully but when i try to READ_TEXT it says
    Text 0000000015120044ZOH ID ZOH language EN not found
    this is my logic
    TABLES : ZEHS00_EXA_CARD.
    PARAMETERS SRV_NUM TYPE CHAR16.
    DATA:  textname         LIKE thead-tdname,
            func,
            co_co            LIKE sy-index.
    * Interne Tabellen
    DATA  t_tf02hz LIKE thead OCCURS 0 WITH HEADER LINE.
    DATA  t_tf02lz LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA: ltxtflg             LIKE bapistdtyp-boolean.
    DATA : l_text_tab LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA: ltxtflg1             LIKE bapistdtyp-boolean.
    DATA : l_text_tab1 LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA : description(225).
    DATA : description1(225).
    DATA: line(132) TYPE c,
           text_tab LIKE STANDARD TABLE OF line,
           text_tab1 LIKE STANDARD TABLE OF line,
           WA_TAB LIKE STANDARD TABLE OF LINE,
           WA_TAB1 LIKE LINE OF text_tab1,
           field LIKE line.
    DATA: line1(132) TYPE c,
           field1 LIKE line.
    DATA: e_header  TYPE thead,
        i_header  TYPE  STANDARD  TABLE  OF thead,
        w_tline   TYPE tline,
        i_tline   TYPE  STANDARD  TABLE  OF tline  WITH  HEADER  LINE.
    e_header-tdobject =  'ZSYS_ACT1'.
    e_header-tdid =  'ZOH'.
    e_header-tdspras = sy-langu.
    e_header-tdlinesize =  072.
    CONCATENATE SRV_NUM e_header-tdid     INTO textname.
    CALL FUNCTION 'C14G_TEXT_INPUT_EDIT'
         EXPORTING
           i_windowtitle           = 'Systolic action Description'
           i_tablename             = 'CCIHT_IP'
           i_fieldname             = 'ACDESC'
           i_language              = sy-langu
           i_actype                = 'X'
         TABLES
           x_text_tab              = l_text_tab
         CHANGING
           x_text                  = description
           x_ltxtflg               = ltxtflg.
    CALL FUNCTION 'INIT_TEXT'
       EXPORTING
         id       = 'ZOH'
         language = sy-langu"'E'
         name     = textname
         object   = 'ZSYS_ACT1'
       IMPORTING
         header   = t_tf02hz
       TABLES
         lines    = t_tf02lz.
    LOOP AT l_text_tab.
       MOVE :l_text_tab-TDLINE TO LINE.
       APPEND line TO t_tf02lz.
    ENDLOOP.
    CONCATENATE SRV_NUM e_header-tdid     INTO e_header-tdname.
    **  APPEND 'DevComments for Obj 1' to  i_tline.
    CALL FUNCTION 'SAVE_TEXT'
       EXPORTING
         client          = sy-mandt
         header          = e_header
         savemode_direct = 'X'
       TABLES
         lines           = i_tline
       EXCEPTIONS
         id              = 1
         language        = 2
         name            = 3
         object          = 4
         OTHERS          = 5.
    CLEAR : l_text_tab[].
    CALL FUNCTION 'READ_TEXT'
                       EXPORTING
                        CLIENT                        = SY-MANDT
                         ID                            = 'ZOH'
                         LANGUAGE                      = 'E'
                         NAME                          = e_header-tdname"textname
                         OBJECT                        = 'ZSYS_ACT1'
                       TABLES
                         LINES                         = l_text_tab."t_tf02lz.
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF     l_text_tab[] IS NOT INITIAL.
    ENDIF.
    thank you,
    J.

    Hi,
    Go to tcode SE11 check table STXH whether the text stored in it. If yes, then see the layout of field TDNAME.
    Thanks.
    Regards,
    Keng Haw

  • ABAP Report Text ID FKK0 language EN not found

    I'm having a problem with my program. I added the following code and Iu2019m getting the below error from u2018FKK0u2019 can anyone help with my problem?
    *& Form DISPLAY
    text
    --> p1 text
    <-- p2 text
    form DISPLAY .
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
    id = 'FKK0'
    language = 'E'
    name = opbel
    object = 'FKKKO'
    ARCHIVE_HANDLE = 0
    LOCAL_CAT = ' '
    IMPORTING
    HEADER =
    tables
    lines = textlines
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    NOT_FOUND = 4
    OBJECT = 5
    REFERENCE_CHECK = 6
    WRONG_ACCESS_TO_ARCHIVE = 7
    OTHERS = 8
    IF sy-subrc = 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform. " DISPLAY
    Text IDFKK0 language EN not found
    Message no. TD600
    Diagnosis
    You want to read a text which does not exist in the data base (or update memory).
    SystemResponse
    Reading could not be carried out.
    Procedure
    You need to create this text:
    1. Initialization (module INIT_TEXT)
    2. Save (module SAVE_TEXT)

    Based on the information I believe you are correct. (cannot confirm since the object FKKO is not in our system).
    The only thing I would like to add is that the
    id = '0001'
    c/b configurable so it could well be that the text id you are after has a differnt id.  This can be confirmed with the functional analyst (or checked in SPRO ( maybe ->OBT3 (Maintain Text Determination Configuration).
    Robert

  • Error in File name or class name not found during Automation operation: 'CreateObj​ect'

    Hello Team,
    When I am trying to execute the below code i am getting the following error. Any help would be greatly appreciated.
    Set oFSO = CreateObject("Scripting.FileSystemObject")
    If Not oFSO.FolderExists(SavePath) Then
    Set f = oFSO.CreateFolder(SavePath)
    Else
    End If
    53 4/11/2014 12:27:22 PM Error:
    Error in <NoName(4).VBS> (Line: 9, Column: 1):
    File name or class name not found during Automation operation: 'CreateObject'
    I have googled through the error and tried to re-register the scrrun.dll using regsvr32 eventhogh it is successfully registered, i am getting the following error. My PC is windows 7 32bit OS.
    any help is greatly appreciated.

    The following script class will write a log file entry. See if it will run for you.
    The script is using a class object that you might not have seen before. A little intro:  The top section is just for testing the class. Normally I just comment this out after the class is working well.  It should run right way. I would save the vbs file in the editor, That way when you are using autoactpath or currentscriptpath variables they will be able resolve the paths.
    Paul
    Attachments:
    LoggingCode_V2.VBS ‏5 KB

  • Class not found during deployment

    I'm getting "class not found during deserialization of descriptor" during deployment of an EJB. What does this mean?

    The problem is I am trying to use JavaMail in an EJB and it gives me the error if I create a javax.mail.Session. If I comment out the Session, deployment is fine. I am thinking that maybe the problem is I am using 8i version 8.1.5 and it only supports java 1.1.8.

  • HT1386 my sync stops due to iphone not found during the final copy step...how do I fix?

    my sync stops with an error message that iphone not founds during the final copy step...how to I fix?  always work before.

    The backup is located at: iTunes/Preferences/Devices. Select the backup from the window and hit the delete key. Then connect your iPhone to your computer. It'll take a new backup.

  • Class not found during deserialization of descriptor UserSession

    I am using JDeveloper 3.1.1.2 (build 767) to deploy an EJB to Oracle 8.1.6 and I get the following error message....
    Generating EJBHome and EJBObject on the server...
    Class not found during deserialization of descriptor UserSession
    *** Errors occurred while deploying the EJB to JServer ***
    *** Deployment completed ***
    I've tried
    a) to deploy all the classes in the project,
    b) create a new project step by step,
    c) use 'deployejb' and I still get the same error...
    Can anyone help? Thanks.

    Yep, JDeveloper auto generates the <>.ejb and it is a binary file.
    Seems a pretty specific error message....any help available from the JDev team??

  • OS 6 Multi-language "FILE NOT FOUND"

    Someone here please see this post.
    I am trying to download the software update for the bold, the multilanguage file.
    After you enter your phone number, I am redirected to a page that says "File not Found"
    PLEASE fix this.. or let me know where I can download the multi-language os

    I have provided some information below that may help.
    To download the Blackberry 6 Multi-language software, please follow the steps below:
    Step 1 – Visit the website www.vzam.net/blackberry
    Step 2 – From the main page select the Personal Email (for consumer) or Corporate Email (if you are going to use a BES or company email)
    Step 3 – Choose the model Blackberry you will be using
    Step 4 – Follow the steps on the page and select the options
    -Choose upgrade if it is going to be a web-based upgrade, or continue with the instructions below if it is going to be through desktop manager.
    -Select Multilanguage
    -Enter your 10 digit mobile number
    -Select download at the bottom of the page
    I hope this helps.

  • File not found during installation (WinXP)

    Well, I downloaded Oracle 11g for Windows (32 bit) from http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html, and, basically, after having had some trouble configuring a new database, I selected the option to (simply) install a database through the wizard. I breezed through the settings, and, ran the installation wizard, however, some files seem not to be available within \win32_11gR2_database_1of2\database, or perhaps my laptop (Amilo Pro 8210) is too slow to be able to read these files.
    The errors show up during Setting up Oracle Database 11g 11.2.0.10. The errors showing up within the UI are as follows:
    File not found F:\app\Jon\product\11.2.0\dbhome_1\bin\db2gc
    File not found F:\app\Jon\product\11.2.0\dbhome_1\oc4j\OC4J_DBConsole\config\system-application.xml
    File not found F:\app\Jon\product\11.2.0\db_home_1\oc4j\j2ee\OC4j_DBConsole\config\system-jazn-data.xml
    NOTE: It is quite painful that there is no functionality to enable me to upload attachments (e.g. screenshots and log files) because it is very time consuming to copy everything manually, and, it is human nature to get bored typing after a while, so please, Oracle, pimp this profile :~) I did not take exhaustive screenshots, the error log files shows quite a few exceptions as well:
    oraInstall2012-06-17_08-09-30PM.err
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup12.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup12.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup5.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup5.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup19.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup19.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup1.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup1.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup20.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup20.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup15.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup15.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup8.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup8.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup11.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup11.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup4.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup4.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup18.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup18.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup14.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup14.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup7.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup7.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup3.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup3.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup10.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup10.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup17.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup17.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup13.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup13.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup6.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup6.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup2.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup2.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup16.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup16.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup9.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup9.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.sysman.console.db\11.2.0.1.0\1\DataFiles\filegroup3.jar (The system cannot find the path specified)
    NOTE: Due to the message limit of 30000 characters I could not post the log file, nor upload it because no such options is available within
    Database Installation I had to chop off parts of the error file as well, patiently highlighting the filenames of the jar files.
    oraInstall2012-06-17_08-09-30PM.out
    You can find the log of this install session at:
    C:\Program Files\Oracle\Inventory\logs\installActions2012-06-17_08-09-30PM.log
    Dll to load is C:\DOCUME~1\Jon\LOCALS~1\Temp\OraInstall2012-06-17_08-09-30PM\Win32RunProcesses.dll
    Loading psapi.dll from C:\DOCUME~1\Jon\LOCALS~1\Temp\OraInstall2012-06-17_08-09-30PM\psapi.dll
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.

    >
    Your imagination is not limited, my friend. I have already told you that I have unzipped the folders, and, it is not the scope of this forum to have myself insulted in this manner.
    Seriously, one expects forum members to be respectful rather than talk garbage about manuals, I was only asking for help, because I thought that files were missing from the installation pack.
    I might be your next client for all you know.
    >
    No offence was intended - it was merely a tongue-in-cheek observation. If you read my previous two replies in this thread, they are courteous to a fault - as are all my posts.
    The forums are a volunteer organization - people take time out from their personal and professional lives to help others. Some folks, thankfully a very small minority, use the forums as a free personal support/helpdesk tool to read all the documentation on their behalf and look up or solve things on their behalf. The forums work best when there is real dialogue and exchange of information, rather than monosyllabic answers and mudslinging.
    Good luck with your install
    HTH
    Srini

  • ResourceAdapter not found during deployment using WL 7.0 SP2

    Hi,
              Am using WL 7.0 SP2 on Win2k w/ JDK 1.4.
              Am using the non-managed mode (wherein the admin server is also the managed-server).
              Am trying to deploy my RA. On uploading the RAR using
              the admin console, I get the following error (from the server.log):
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer Initiating a deployment task with id 8 for application bs-ra
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer preparing application bs-ra on vspl-dev-server
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer prepared application bs-ra on vspl-dev-server
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Management Configuration changes for domain saved to the repository.
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer activating application bs-ra on vspl-dev-server
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Connector Initializing connection pool for resource adapter BookStore-
              Resource Adapter_eis/BSResourceAdapter.
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error Deployer Unexpected error was encountered during the deployment proce
              ss.
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error Deployer The Slave Deployer failed to complete the deployment task wi
              th id 8 for the application bs-ra.
              java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter
                   at java.lang.Class.getMethods0(Native Method)
                   at java.lang.Class.getDeclaredMethods(Class.java:1034)
                   at java.beans.Introspector$1.run(Introspector.java:847)
                   at java.security.AccessController.doPrivileged(Native Method)
                   at java.beans.Introspector.getPublicDeclaredMethods(Introspector.java:845)
                   at java.beans.Introspector.getTargetEventInfo(Introspector.java:551)
                   at java.beans.Introspector.getBeanInfo(Introspector.java:289)
                   at java.beans.Introspector.getBeanInfo(Introspector.java:76)
                   at weblogic.connector.common.internal.ConnectionPool.<init>(ConnectionPool.java:402)
                   at weblogic.connector.common.internal.ConnectionPoolManager.addManagedConnectionFactory(ConnectionPoolManager.java:64)
                   at weblogic.connector.deploy.ConnectorDeployer.activate(ConnectorDeployer.java:315)
                   at weblogic.connector.deploy.ConnectorModule.activate(ConnectorModule.java:221)
                   at weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1662)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1087)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1074)
                   at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1110)
                   at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
                   at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              --------------- nested within: ------------------
              weblogic.management.ManagementException: 149233 - with nested exception:
              [java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter]
                   at weblogic.management.deploy.slave.SlaveDeployer.convertThrowable(SlaveDeployer.java:834)
                   at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1180)
                   at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
                   at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Warning Deployer Failures detected initiating weblogic.management.ManagementE
              xception: 149233 - with nested exception:
              [java.lang.NoClassDefFoundError: javax/resource/spi/Resource
                                                                                                  Adapter] task for application Activate application bs-ra on
              vspl-dev-server
              Jun 9, 2003 5:32:32 PM EDT vspl-dev-server Info Management Configuration changes for domain saved to the repository.
              Jun 9, 2003 5:32:36 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
              ceAdapter.
              Jun 9, 2003 5:32:39 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
              ceAdapter.
              Jun 9, 2003 5:32:47 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
              ceAdapter.
              Jun 9, 2003 5:32:48 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
              ceAdapter.
              There are two things I observer here.
              1. The ResourceAdapter class does not seem to be found by Weblogic. It's part of the javax.resource.spi package.
              I checked the weblogic.jar archive in the WL-HOME/server/lib folder. It does not seem to have the class. Why ?
              2. It complains about the ManagedConnectionFactory not being found. Am assuming that if the RA was deployed
              in the first place, I would not have seen this error (coz, the ManagedConnectionFactory would have been
              deployed in the previous step). Right ?
              I did observe that WL 7.0 supports only JCA 1.0. In JCA 1.0's (public) API, there is no mention of the
              javax.resource.spi.ResourceAdapter class, though the spec talks about it. ??
              Note: I had designed and implemented my RA as per JCA 1.5 (but nothing 1.5-specific, I guess).
              Any ideas ?
              thanks,
              raghu
              

    I figured it out. Darn simple.
              My ManagedConnectionFactory implementation referenced ResourceAdapter as
              it has to implement the ManagedConnnectionFactory interface of JCA 1.5.
              In JCA 1.0 (which is supported by WL 7.0 & 8.1), the ResourceAdapater
              is undefined. Hence, the classloading problem.
              Sorry for any confusion.
              raghu
              raghu h wrote:
              > Hi,
              >
              > Am using WL 7.0 SP2 on Win2k w/ JDK 1.4. Am using the non-managed mode
              > (wherein the admin server is also the managed-server).
              >
              > Am trying to deploy my RA. On uploading the RAR using
              > the admin console, I get the following error (from the server.log):
              >
              >
              >
              > -----------------------------------------------------------------------------------------------------------------
              >
              >
              > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info
              > Deployer Initiating a deployment task with id 8 for
              > application bs-ra
              > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info
              > Deployer preparing application bs-ra on
              > vspl-dev-server Jun 9, 2003 5:32:31 PM EDT
              > vspl-dev-server Info Deployer prepared application
              > bs-ra on vspl-dev-server Jun 9, 2003 5:32:31 PM EDT
              > vspl-dev-server Info Management Configuration
              > changes for domain saved to the repository. Jun 9, 2003 5:32:31 PM
              > EDT vspl-dev-server Info Deployer activating
              > application bs-ra on vspl-dev-server Jun 9, 2003 5:32:31 PM
              > EDT vspl-dev-server Info Connector
              > Initializing connection pool for resource adapter BookStore-
              >
              > Resource Adapter_eis/BSResourceAdapter.
              >
              > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error
              > Deployer Unexpected error was encountered during the
              > deployment proce
              >
              > ss.
              >
              > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error
              > Deployer The Slave Deployer failed to complete the deployment
              > task wi
              >
              > th id 8 for the application bs-ra.
              >
              > java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter
              > at java.lang.Class.getMethods0(Native Method)
              > at java.lang.Class.getDeclaredMethods(Class.java:1034)
              > at java.beans.Introspector$1.run(Introspector.java:847)
              > at java.security.AccessController.doPrivileged(Native Method)
              > at
              > java.beans.Introspector.getPublicDeclaredMethods(Introspector.java:845)
              > at java.beans.Introspector.getTargetEventInfo(Introspector.java:551)
              > at java.beans.Introspector.getBeanInfo(Introspector.java:289)
              > at java.beans.Introspector.getBeanInfo(Introspector.java:76)
              > at
              > weblogic.connector.common.internal.ConnectionPool.<init>(ConnectionPool.java:402)
              >
              > at
              > weblogic.connector.common.internal.ConnectionPoolManager.addManagedConnectionFactory(ConnectionPoolManager.java:64)
              >
              > at
              > weblogic.connector.deploy.ConnectorDeployer.activate(ConnectorDeployer.java:315)
              >
              > at
              > weblogic.connector.deploy.ConnectorModule.activate(ConnectorModule.java:221)
              >
              > at
              > weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1662)
              >
              > at
              > weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1087)
              >
              > at
              > weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1074)
              >
              > at
              > weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1110)
              >
              > at
              > weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
              >
              > at
              > weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
              >
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > --------------- nested within: ------------------
              > weblogic.management.ManagementException: 149233 - with nested exception:
              > [java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter]
              > at
              > weblogic.management.deploy.slave.SlaveDeployer.convertThrowable(SlaveDeployer.java:834)
              >
              > at
              > weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1180)
              >
              > at
              > weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
              >
              > at
              > weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
              >
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
              > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Warning
              > Deployer Failures detected initiating
              > weblogic.management.ManagementE
              >
              > xception: 149233 - with nested exception:
              >
              > [java.lang.NoClassDefFoundError: javax/resource/spi/Resource
              >                                                                                   
              > Adapter] task for application Activate application bs-ra on
              >
              > vspl-dev-server
              >
              > Jun 9, 2003 5:32:32 PM EDT vspl-dev-server Info
              > Management Configuration changes for domain saved to the
              > repository. Jun 9, 2003 5:32:36 PM EDT vspl-dev-server
              > Error Connector ManagedConnectionFactory not found for
              > jndiName eis/BSResour
              >
              > ceAdapter.
              >
              > Jun 9, 2003 5:32:39 PM EDT vspl-dev-server Error
              > Connector ManagedConnectionFactory not found for jndiName
              > eis/BSResour
              >
              > ceAdapter.
              >
              > Jun 9, 2003 5:32:47 PM EDT vspl-dev-server Error
              > Connector ManagedConnectionFactory not found for jndiName
              > eis/BSResour
              >
              > ceAdapter.
              >
              > Jun 9, 2003 5:32:48 PM EDT vspl-dev-server Error
              > Connector ManagedConnectionFactory not found for jndiName
              > eis/BSResour
              >
              > ceAdapter.
              >
              > -------------------------------------------------------------------------------------------------------------
              >
              >
              >
              > There are two things I observer here. 1. The ResourceAdapter class does
              > not seem to be found by Weblogic. It's part of the javax.resource.spi
              > package.
              > I checked the weblogic.jar archive in the WL-HOME/server/lib folder. It
              > does not seem to have the class. Why ?
              > 2. It complains about the ManagedConnectionFactory not being found. Am
              > assuming that if the RA was deployed
              > in the first place, I would not have seen this error (coz, the
              > ManagedConnectionFactory would have been
              > deployed in the previous step). Right ?
              >
              > I did observe that WL 7.0 supports only JCA 1.0. In JCA 1.0's (public)
              > API, there is no mention of the
              > javax.resource.spi.ResourceAdapter class, though the spec talks about
              > it. ??
              >
              >
              > Note: I had designed and implemented my RA as per JCA 1.5 (but nothing
              > 1.5-specific, I guess).
              >
              > Any ideas ?
              >
              > thanks,
              > raghu
              >
              >
              >
              >
              

  • [solved] error: gnome-doc-utils = 0.3.2 not found during configuring

    When configuring libdbusmenu after downloading the PKGBUILD from AUR, I get the following error:
    [tharriso@localhost libdbusmenu]$ makepkg
    ==> Making package: libdbusmenu 12.10.2-1 (Tue Feb 26 21:04:56 CST 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found libdbusmenu-12.10.2.tar.gz
    ==> Validating source files with md5sums...
    libdbusmenu-12.10.2.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting libdbusmenu-12.10.2.tar.gz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking whether NLS is requested... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for intltool >= 0.35.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.16.2
    checking for XML::Parser... ok
    checking for library containing strerror... none required
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking whether gcc and cc understand -c and -o together... yes
    checking how to run the C preprocessor... gcc -E
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ANSI C header files... yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking whether make supports nested variables... yes
    checking for glib-mkenums... /usr/bin/glib-mkenums
    checking for pkg-config... /home/tharriso/ApeInstalled/External/pkg-config/0.22/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for gtkdoc-check... /usr/bin/gtkdoc-check
    checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
    checking for gtkdoc-mkpdf... /usr/bin/gtkdoc-mkpdf
    checking whether to build gtk-doc documentation... no
    checking gnome-doc-utils >= 0.3.2... no
    configure: error: gnome-doc-utils >= 0.3.2 not found
    ==> ERROR: A failure occurred in build().
    Aborting...
    Some things I've tried -
    [tharriso@localhost libdbusmenu]$ pkg-config --modversion gnome-doc-utils
    Package gnome-doc-utils was not found in the pkg-config search path.
    Perhaps you should add the directory containing `gnome-doc-utils.pc'
    to the PKG_CONFIG_PATH environment variable
    No package 'gnome-doc-utils' found
    [tharriso@localhost libdbusmenu]$ pacman -Q gnome-doc-utils
    gnome-doc-utils 0.20.10-1
    Found a few results on Google where people mention the same error with a different package, but haven't found any solutions.
    Last edited by harro112 (2013-02-26 12:37:33)

    checking for pkg-config... /home/tharriso/ApeInstalled/External/pkg-config/0.22/bin/pkg-config
    current pkg-config version in arch is 0.28-1 , and should be found as /usr/bin/pkg-config .

  • Report Variant Not Found During Transport

    A user has requested a routine change (adding a purchase group) to a report variant.
    According to our procedures, I have gone into our Development system and changed the report variant to include the new purchasing group. I have then created a transport referencing this report and variant.
    However, when I release the transport I get a warning that...
    LIMU VARX REPORTNAME VARIANTNAME not found, object also deleted in target system
    Application help states that it is a Message no. TW 330
    The transport goes through to our production system, but no changes are made. It is essentially an empty transport.
    I have done this type of change before to numerous report variants without any issues, and other request of this nature continue to go through without problems. Any idea why this might be happening, and how it can be resolved?
    Thanks - points will be rewarded.

    Same problem once I face.
    I transported one variant name and after that name changed and again transported.
    It is not showing new variant name so we executed program and
    Goto->variant      and overwrite the previous one.
    Reward if useful...
    Minal

  • Member In Outline, Not Found During Data Load

    I am exporting data from DatabaseA (zero level export in columns to a text file) using MaxL. I then to import this data (using MaxL) into Database B on another server but which has the same exact outline. We set this up about 3 weeks ago and the export import scripts run every day and have been working fine. However today I got an error while loading members into Database B, 3 members were not able to load:
    Member 73997612 Not Found In Database
    Member STCR Not Found In Database
    Member 22-340101 Not Found In Database
    Initially I thought that these 3 members got added to DatabaseA, and were therefore in the export file and probably didn't exist in Database B. However when I went to database B and did a "find members" on the outline, all 3 members are there. Just a note that they had been added manually, but were added.
    Then I thought maybe they had been added in the wrong dimension. I checked the location of the above three members in Database A, and they were added in the same location in the hierarchy in Database B.
    So if the members exist in Database B and are not in the wrong location, why can't they be loaded to Database B ?
    I also wanted to add that there seemed to be several data values which existed for these members. I am guessing they came from the export.
    Version is 11.1.2.1. OS = Oracle Enterprise Linux
    Has anybody encountered an issue like this before ? I don't think it has to do with the member names, they seem to fit syntax requirements PLUS they are exported from the production database.
    Thanks in advance
    Edited by: EssbaseApprentice on Feb 9, 2012 11:12 AM
    Edited by: EssbaseApprentice on Feb 9, 2012 11:54 AM

    Check member names are exactly same( Without any extra spaces, spellings etc...)
    Check storage type

  • Menu Not Found during Runtime

    Dear Colleague,
    My customer attempted to run the new version of the Oracle 9i Forms application that I developed for him. He successfully started the initial form, but the referenced menu file within the initial form is not found. There is no path included in the reference to the menu module within the property sheet, only the file name of the menu.
    Currently, the MMX-file is in the same directory as the initial FMX-file that references the MMX-file.
    Which parameter or configuration file must one change for the menu file to be found and used within the context of Oracle 9i AS?
    Best regards,
    Randy

    If you're running a Unix/Linux server; please keep in mind filenames are case-sensitive! So if in the FMB a menu is attached with the name "MyMenu" and you have MYMENU.MMX on the filesystem it will not be found! You can check what the filename is in the FMB by converting it to FMT.
    Tim

Maybe you are looking for

  • How can I control the order of iDVD menu items using the Arrow keys?

    I have a submenu screen containing 10 selectable buttons plus the Return Arrow button.  I have ordered all the slideshows in the correct order in the DVD map.  However, when I run the program, the arrow keys jump the selection focus in an apparently

  • Save the data for the incident.

    HI MASTERS, I have managed to GENERATE AN INCIDENT via PROGRAM usiing  FM 'CBIH_IA30_IAL_CREATE'. which is fine and am happy with it. now when the user enters values on the input screen that i have and click on save button it should get saved and sho

  • When typing a Contacts group into Mail address, it inserts duplicates

    MacBook Air using Mavericks. I have a Group set up in Contacts. When I type the name of that group into the BCC field in Mail, I get every name in the group at least twice.

  • Edge Certificate Not Appearing After Import

    Having trouble assigning a public certificate to the Edge External Interface. I imported the Root CA Cert. to Computer Store along with intermediate CA Cert. and imported the Certificate issued using the Lync Wizard. However when I go to assign, noth

  • How to download oracle 11g Developer

    I have been heard from a friend that oracle launch developer 11g. but I cant find it in download section. Would you please tell me from where to download it. Regards Naeem