Error when setting JMS Destination  for Agile PLM Content Services (cannot

In not the right forum please suggest the correct one.
Before creating the destination I did the following setup and testing.
1.) Created a JMS on the Weblogic Server
2.) Created a Jdeveloper BPEL Project and successfully put a message into the JMS queue
Here are the details for the new destination I am creating.
1.) Protocol = JMS
2.) Provider Context Factory = weblogic.jndi.WLInitialContextFactory
* this is the one that seems to be the cause of the error
3.) Connection Factory = jmstest/jmstest-cp
* this is my JNDI name for the connection pool
4.) Default Provider URL = t3://10.16.131.110:7001
* this is the URL for the Weblogic server
5.) Destination Name = jms/queueout
* this is the JNDI name for the queue
The error message I am getting when I click the button to "Test Destination" is
"The remote server returns the following message: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory"
I would appreciate any input
Thanks

Which version of Agile are you using?
There is a patch needed for agile 9.2 for weblogic server.
Please check the Metalink

Similar Messages

  • Runtime Error when setting sync parameters for Outlook - what to do?

    In Desktop Manager, I configure Synchronization to use with Outlook so I can pull my calendar onto the Blackberry. It lets me set it up and then gives me a Runtime Error - Cannot find system in table file. I have Comcast email setup in Outlook, but previously had used Outlook Express when I bought the Blackberry. Could this be part of the problem and if so, how do I fix it?
    Thanks for any help you can offer...

    This bug should be fixed in SDK 4.5. Please use the latest SDK.
    My environment is FlashBuilder 4.5 premium and its default SDK 4.5. It's all right on my machine.
    Thanks

  • HTTP handler for starting an external service cannot be read

    Hi,
    When i execute the work item from Business Work place and also from the UWL in Enterprise portal of the task TS21300098 for HR Process Requisition workflow.
    In the Error is says
    HTTP handler for starting an external service cannot be read
    Message no. SWK045
    Diagnosis
    This work item is a link to a HTTP service. To start the service, a launch handler must be known to the SAP System.
    However, the system could not find a launch handler.
    System Response
    The workflow system cannot start execution of the work item.
    Procedure
    Contact your workflow administrator:
    In Customizing you must maintain a launch handler for HTTP-supported dialog services.
    I have checked the config under WF_HANDCUST transaction and made the launch Handler settings generated automatically.
    But still the problem occurs.
    Any Suggesions and help?
    Thanks & Regards
    Sumanth

    hi Guys,
    I have got the same issue. This blog helped me with tcode WF_HANDCUST. I have generated the url
    http://waspgh.kcc.com:8083/sap/bc/webflow/wshandler-->Click on Generate URL and click on distribution.
    Immediately u will get click on Test url . Click Test url . Then It is not successful. It stopped at 
    http://waspgh.kcc.com:8083/sap/bc/webflow
    Getting http page error. So use tcode sicf >sap>bc-->webflow service and activate it.
    Then test the connection. It will be successfull.
    http://waspgh.kcc.com:8083/sap/bc/webflow/wshandler?ping=true&sap-client=400
    Handler test
    Test successful
    Thanks,
    Shankar

  • Extensibility Pack 3.6 for Agile PLM for Process 6.1.1.1 is now available

    Extensibility Pack 3.6 for Agile PLM for Process 6.1.1.1 is now on Oracle Software Delivery Cloud
    We are pleased to announce the General Availability of Agile PLM for Process Extensibility Pack 3.6 as of October 30th, 2013.
    Extensibility Pack 3.6 provides two new technical enablement features:
    Email Extensibility
    Customizing the content of workflow emails in GSM and SCRM without custom code is now easier with the addition of a new set of placeholder variables, conditional variables, and other capabilities. These variables are available by deploying a new set of plugins, which can be configured through the CustomPluginExtensions.xml file.
    Some examples of the new functionality include:
    Displaying new data in the emails, such as the workflow Comment, Cross Reference numbers, Category/Sub-category/Group, a trade specification’s GTIN, a material specification’s Ingredient Statement, etc.
    Providing meaningful related specification information in Signature Document emails.
    Conditionally displaying data, such as only including a material specification’s classification if it is an Approved status.
    User Interface Extensibility
    Clients wishing to customize specific User Interface behavior, such as marking certain fields as read only, or applying formatting to show required fields, will be able to do this using the User Interface Extensions feature. Clients can write simple Javascript code which then gets pulled into the desired user interface pages. The Javascript code can leverage useful new Javascript variables and functions that make it easier to perform user interface manipulation, as well as access specific data from the given item (e.g., the specification’s status, the user’s groups, etc).
    Watch the introductory video on the User Collaboration site for a high level overview.
    More information on these new features can be found in the Extensibility Guide, along with detailed technical documentation.

    Hello dirk and Kyle203,
    I have PCI 8532 devicenet card in my system, the test unit has devicent implemented in it,
    to verify devicenet is working or not we check whether we can read Devicenet vendor id, I have downoaded the latest driver NI-IndComDNET2.1-Beta1.
    Thanks for the new update. I developed a VI which is very similar to GetIdentityAttrs VI which is in Example.
    Port opens fine, but I cannot see connection being established.I always get the error Error -1074388991 occurred at Get DeviceNet Attribute.vi
    I know connections are proper and the Device MAC ID and speed too. Pls throw some light.'
    Attached is the VI and error image
    Thanks
    Attachments:
    devicenet.vi ‏18 KB
    devicenet error.JPG ‏32 KB

  • How to start the file server for Agile PLM

    when i try to add one attachment for an Item, i got the following error message:
    The preferred file server http://agileserver:8080/Filemgr/AttachmentServlet for user : xxx is down
    how to startup the file mgr?

    Hi is this looks like a question for Agile A9.
    For Agile A9 or Primavera questions, you can use Oracle Support, Support Communities, Yahoo Groups for Agile API or WRAU.
    This forum is for Agile PLM for Process, which is part of the same Agile family but a different product.
    Thanks.

  • Error while setting up enviroment for the application

    Hi,
    Im getting a popup box displaying the error message
    C:\WINDOWS\system32\ntvdm.exe
    Error while setting up enviroment for the application. Choose 'Close' to terminate the application.
    When I try to excute an external exe, why am I getting this error? and is there a way of getting this exe to execute properly without the error?
    Here my code for excuting the external exe
    String[] cmd = {"C:/gen.exe", "C:/a.zip"};
    Process p = Runtime.getRuntime().exec(cmd);
    p.waitFor(); "gen.exe" is the program i wish to execute and "a.zip" is the parameter i wish to excute it with.

    class ExecRuntime {
    public static void main(String args[]) throws Exception {
    String[] cmd = {"C:\\gen.exe", "C:\\a.zip"};
    Process p = Runtime.getRuntime().exec(cmd);
    p.waitFor();
    } Here we need to use backslashes, because the command is passed to the OS as is.
    If you need to be in C:\ to execute from command line, you will also need to use the
    exec() version that allows you to specify the 'current directory'
    Edited by: baftos on Mar 7, 2008 12:13 PM

  • Getting an error when setting up Apple ID on new Mac book air

    I am setting up new Mac book air and getting an error at the sign up with Apple ID. Says couldn't sign in because of a server error. Try signing in again

    I got this error when setting up a new iMac. I now beleive the reason was that I had already restored accounts and files from a Time Machine backup, and it then connected me to the Apple ID during the login. It is a flaw in the setup process that it didn't check for that and skip the Apple ID step.

  • When setting up iCloud for my Contacts, it wiped out my contact list from Outlook on my PC.  The contact list is on iCloud and on my iPad.  How do I get my contact list back on my PC?

    When setting up iCloud for my Contacts, it wiped out my contact list from my PC.  How do I get the contact list back in Outlook on my PC?

    It's in Outlook, in the iCloud account Contacts.

  • Getting error in creating JCo destination for WebDynpro

    Hi Guys,
    I am getting an error in creating JCo Destination under Web Dynpro Content Admin.I am deploying MSS on Netweaver portal SR1 and ecc 5.0.I am getting a message"An error has occurred: "Failed to process the request."Contact your System Admin.
    When I am seeing the details:
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322), version: null, DOM version: null, client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Web Dynpro runtime:
    Vendor: SAP, Build ID: 6.4009.00.0000.20041104173322.0000 (release=630_REL, buildtime=2004-11-18:22:17:10[UTC], changelist=298578, host=PWDFM027)
    Web Dynpro code generators of DC sap.com/tcwdtools:
    No information available
    Web Dynpro code generators of DC sap.com/tcwddispwda:
    No information available
    Web Dynpro code generators of DC sap.com/tcwdcorecomp:
    No information available
    J2EE Engine:
    6.40 patchlevel 87289.311
    Java VM:
    Java HotSpot(TM) Server VM, version: 1.4.2_07-b05, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2003, version: 5.2, architecture: x86
    Error stacktrace:
    java.lang.NullPointerException
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.checkStatus(SystemLandscapeFactory.java:871)
         at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.checkStatus(WDSystemLandscape.java:469)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateJCODestinations(NameDefinition.java:272)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateNavigation(NameDefinition.java:237)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.wdDoInit(NameDefinition.java:144)
         at com.sap.tc.webdynpro.tools.sld.wdp.InternalNameDefinition.wdDoInit(InternalNameDefinition.java:223)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:274)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:43)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.makeVisible(ViewManager.java:620)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.performNavigation(ViewManager.java:263)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:737)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:350)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:635)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Please help me guys.
    Paritosh

    You should post your question to the Webdynpro forum:
    Web Dynpro Java

  • Getting errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation

    Hi sap Gurus,
      I am getting Errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation that Material (144) does not exist but it is alreardy maintained in MM01.
    I dont get how it is coming.and what are the mandatory fields in bapi BAPI_PO_CREATE1 in item level .that is too material only.
    pls let me know .
    thanks in advance.

    Hi,
    Check the sample code..
    report  zpo_test             .
    *DATA DECLARATION
    constants : c_x value 'X'.
    *Structures to hold PO header data
    data : header like bapimepoheader ,
    headerx like bapimepoheaderx .
    *Structures to hold PO account data
    data : account like bapimepoaccount occurs 0 with header line ,
    accountx like bapimepoaccountx occurs 0 with header line .
    *Internal Tables to hold PO ITEM DATA
    data : item like bapimepoitem occurs 0 with header line,
    itemx like bapimepoitemx occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    return like bapiret2 occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    pocontractlimits like bapiesucc occurs 0 with header line.
    data : w_header(40) value 'PO Header',
    purchaseorder like bapimepoheader-po_number,
    delivery_date like bapimeposchedule-delivery_date.
    data : ws_langu like sy-langu.
    *text-001 = 'PO Header' - define as text element
    selection-screen begin of block b1 with frame title text-001.
    parameters : company like header-comp_code default '122' ,
    doctyp like header-doc_type default 'NB' ,
    cdate like header-creat_date default sy-datum ,
    vendor like header-vendor default '2000000012' ,
    pur_org like header-purch_org default 'PU01' ,
    pur_grp like header-pur_group default '005' .
    *sociedad like HEADER-COMP_CODE default '122' ,
    *vendedor like HEADER-SALES_PERS default 'sale person'.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-002.
    parameters : item_num like item-po_item default '00010',
    material like item-material default '12000000' ,
    tipo_imp like item-acctasscat default 'K' ,
    *pos_doc like ITEM-ITEM_CAT default 'F' ,
    shorttxt like item-short_text default 'PRUEBA BAPI' ,
    grup_art like item-matl_group default '817230000' ,
    plant like item-plant default '3001' ,
    mpe like item-trackingno default '9999' ,
    *contrato like ITEM-AGREEMENT default '4904000003' ,
    *quantity like ITEM-QUANTITY default 1 .
    po_unit like item-po_unit default 'EA'.
    selection-screen end of block b2.
    Par?mnetros de imputaci?n
    selection-screen begin of block b3 with frame title text-004.
    parameters : centro like account-costcenter default '1220813150',
    cuenta like account-gl_account default '6631400' ,
    num_pos like account-po_item default '10' ,
    serial like account-serial_no default '01' ,
    ind_imp like account-tax_code default 'I2' .
    selection-screen end of block b3.
    start-of-selection.
    *DATA POPULATION
      ws_langu = sy-langu. "Language variable
    *POPULATE HEADER DATA FOR PO
    *HEADER-COMP_CODE = sociedad .
      header-doc_type = doctyp .
      header-vendor = vendor .
      header-creat_date = cdate .
      header-created_by = 'TD17191' .
      header-purch_org = pur_org .
      header-pur_group = pur_grp .
      header-comp_code = company .
      header-langu = ws_langu .
    *HEADER-SALES_PERS = vendedor .
    *HEADER-CURRENCY = 'DOP' .
    *HEADER-ITEM_INTVL = 10 .
    *HEADER-PMNTTRMS = 'N30' .
    *HEADER-EXCH_RATE = 1 .
    *POPULATE HEADER FLAG.
      headerx-comp_code = c_x.
      headerx-doc_type = c_x.
      headerx-vendor = c_x.
      headerx-creat_date = c_x.
      headerx-created_by = c_x.
      headerx-purch_org = c_x.
      headerx-pur_group = c_x.
      headerx-langu = c_x.
    *HEADERX-sales_pers = c_x.
    *HEADERX-CURRENCY = c_x.
    *HEADER-ITEM_INTVL = c_x.
    *HEADER-PMNTTRMS = c_x.
    *HEADER-EXCH_RATE = c_x.
    *HEADER-EXCH_RATE = c_x.
    *POPULATE ITEM DATA.
      item-po_item = item_num.
      item-quantity = '1'.
    *ITEM-MATERIAL = material .
      item-short_text = 'prueba bapi_po_create1'.
    *ITEM-TAX_CODE = ''.
      item-acctasscat = 'K' .
    *ITEM-ITEM_CAT = 'D' .
      item-matl_group = '817230000' .
      item-plant = '3001' .
      item-trackingno = '99999'.
      item-preq_name = 'test'.
    *ITEM-AGREEMENT = '' .
    *ITEM-AGMT_ITEM = ''.
      item-quantity = '1' .
      item-po_unit = 'EA'.
    *ITEM-ORDERPR_UN = 'EA'.
      item-conv_num1 = '1'.
      item-conv_den1 = '1'.
      item-net_price = '1000000' .
      item-price_unit = '1'.
      item-gr_pr_time = '0'.
      item-prnt_price = 'X'.
      item-unlimited_dlv = 'X'.
      item-gr_ind = 'X' .
      item-ir_ind = 'X' .
      item-gr_basediv = 'X'.
    *ITEM-PCKG_NO = '' .
      append item. clear item.
    *POPULATE ITEM FLAG TABLE
      itemx-po_item = item_num.
      itemx-po_itemx = c_x.
    *ITEMX-MATERIAL = C_X.
      itemx-short_text = c_x.
      itemx-quantity = c_x.
    *ITEMX-TAX_CODE = C_X.
      itemx-acctasscat = c_x.
    *ITEMX-ITEM_CAT = c_x.
      itemx-matl_group = c_x.
      itemx-plant = c_x.
      itemx-trackingno = c_x.
      itemx-preq_name = c_x.
    *ITEMX-AGREEMENT = C_X.
    *ITEMX-AGMT_ITEM = c_x.
      itemx-stge_loc = c_x.
      itemx-quantity = c_x.
      itemx-po_unit = c_x.
    *ITEMX-ORDERPR_UN = C_X.
      itemx-conv_num1 = c_x.
      itemx-conv_den1 = c_x.
      itemx-net_price = c_x.
      itemx-price_unit = c_x.
      itemx-gr_pr_time = c_x.
      itemx-prnt_price = c_x.
      itemx-unlimited_dlv = c_x.
      itemx-gr_ind = c_x .
      itemx-ir_ind = c_x .
      itemx-gr_basediv = c_x .
      append itemx. clear itemx.
    *POPULATE ACCOUNT DATA.
      account-po_item = item_num.
      account-serial_no = serial .
      account-creat_date = sy-datum .
      account-costcenter = centro .
      account-gl_account = cuenta .
      account-gr_rcpt = 'tester'.
      append account. clear account.
    *POPULATE ACCOUNT FLAG TABLE.
      accountx-po_item = item_num .
      accountx-po_itemx = c_x .
      accountx-serial_no = serial .
      accountx-serial_nox = c_x .
      accountx-creat_date = c_x .
      accountx-costcenter = c_x .
      accountx-gl_account = c_x .
      account-gr_rcpt = c_x.
      append accountx. clear accountx.
    *BAPI CALL
      call function 'DIALOG_SET_NO_DIALOG'.
      call function 'BAPI_PO_CREATE1'
        exporting
          poheader         = header
          poheaderx        = headerx
        importing
          exppurchaseorder = purchaseorder
        tables
          return           = return
          poitem           = item
          poitemx          = itemx
          poaccount        = account
          poaccountx       = accountx.
    *Confirm the document creation by calling database COMMIT
      call function 'BAPI_TRANSACTION_COMMIT'
      exporting
      wait = 'X'
    IMPORTING
    RETURN =
    end-of-selection.
    *Output the messages returned from BAPI call
      loop at return.
        write / return-message.
      endloop.
    Regards
    Sudheer

  • Error when import ABAP stage for Database Instance Installation

    I got error for DI Installation for ERP2005 (NW2004sSR2) on Windows 2003 R2, MSSQL2005 on IA64. Below is are logs. Please help. Thanks in advance.
    import_monitor.java.log
    [code]
    java version "1.4.2_13"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_13-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 1.4.2_13-b06, mixed mode)
    Import Monitor jobs: running 1, waiting 18, completed 0, failed 0, total 19.
    Loading of 'SAPSDIC' import package: OK
    Import Monitor jobs: running 0, waiting 18, completed 1, failed 0, total 19.
    Import Monitor jobs: running 1, waiting 17, completed 1, failed 0, total 19.
    Import Monitor jobs: running 2, waiting 16, completed 1, failed 0, total 19.
    Import Monitor jobs: running 3, waiting 15, completed 1, failed 0, total 19.
    Loading of 'SAPAPPL0' import package: OK
    Import Monitor jobs: running 2, waiting 15, completed 2, failed 0, total 19.
    Import Monitor jobs: running 3, waiting 14, completed 2, failed 0, total 19.
    Loading of 'SAPAPPL2' import package: OK
    Import Monitor jobs: running 2, waiting 14, completed 3, failed 0, total 19.
    Import Monitor jobs: running 3, waiting 13, completed 3, failed 0, total 19.
    Loading of 'SAPSLEXC' import package: OK
    Import Monitor jobs: running 2, waiting 13, completed 4, failed 0, total 19.
    Import Monitor jobs: running 3, waiting 12, completed 4, failed 0, total 19.
    Loading of 'SAPSSRC' import package: OK
    Import Monitor jobs: running 2, waiting 12, completed 5, failed 0, total 19.
    Import Monitor jobs: running 3, waiting 11, completed 5, failed 0, total 19.
    Loading of 'SAPPOOL' import package: ERROR
    Import Monitor jobs: running 2, waiting 11, completed 5, failed 1, total 19.
    Import Monitor jobs: running 3, waiting 10, completed 5, failed 1, total 19.
    Loading of 'SAPSPROT' import package: OK
    Import Monitor jobs: running 2, waiting 10, completed 6, failed 1, total 19.
    Import Monitor jobs: running 3, waiting 9, completed 6, failed 1, total 19.
    Loading of 'SAPSDOCU' import package: OK
    Import Monitor jobs: running 2, waiting 9, completed 7, failed 1, total 19.
    Import Monitor jobs: running 3, waiting 8, completed 7, failed 1, total 19.
    Loading of 'SAPCLUST' import package: ERROR
    Import Monitor jobs: running 2, waiting 8, completed 7, failed 2, total 19.
    Import Monitor jobs: running 3, waiting 7, completed 7, failed 2, total 19.
    Loading of 'SAPUSER' import package: OK
    Import Monitor jobs: running 2, waiting 7, completed 8, failed 2, total 19.
    Import Monitor jobs: running 3, waiting 6, completed 8, failed 2, total 19.
    Loading of 'SAPSLOAD' import package: OK
    Import Monitor jobs: running 2, waiting 6, completed 9, failed 2, total 19.
    Import Monitor jobs: running 3, waiting 5, completed 9, failed 2, total 19.
    Loading of 'SAPDDIM' import package: OK
    Import Monitor jobs: running 2, waiting 5, completed 10, failed 2, total 19.
    Import Monitor jobs: running 3, waiting 4, completed 10, failed 2, total 19.
    Loading of 'SAPDFACT' import package: OK
    Import Monitor jobs: running 2, waiting 4, completed 11, failed 2, total 19.
    Import Monitor jobs: running 3, waiting 3, completed 11, failed 2, total 19.
    Loading of 'SAPDODS' import package: OK
    Import Monitor jobs: running 2, waiting 3, completed 12, failed 2, total 19.
    Import Monitor jobs: running 3, waiting 2, completed 12, failed 2, total 19.
    Loading of 'SAPUSER1' import package: OK
    Import Monitor jobs: running 2, waiting 2, completed 13, failed 2, total 19.
    Import Monitor jobs: running 3, waiting 1, completed 13, failed 2, total 19.
    Loading of 'SAP0000' import package: OK
    Import Monitor jobs: running 2, waiting 1, completed 14, failed 2, total 19.
    Loading of 'SAPAPPL1' import package: OK
    Import Monitor jobs: running 1, waiting 1, completed 15, failed 2, total 19.
    Loading of 'SAPSSEXC' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 15, failed 3, total 19.
    [/code]
    SAPCLUST.log
    [code]
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: START OF LOG: 20071121150033
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 04:00:32
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe -ctf I C:\installcd\Netweaver 2004 SR2 Installation Export Disc 1\EXP1\DATA\SAPCLUST.STR C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\DISTRIBUTED\AS\DB\DDLMSS.TPL SAPCLUST.TSK MSS -l SAPCLUST.log
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: job completed
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: END OF LOG: 20071121150033
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: START OF LOG: 20071121150034
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 04:00:32
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe -i SAPCLUST.cmd -dbcodepage 4103 -l SAPCLUST.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: AABLG created
    (DB) INFO: AABLG~0 created
    (IMP) INFO: import of AABLG completed (0 rows) #20071121150034
    (DB) INFO: CDCLS created
    (DB) INFO: CDCLS~0 created
    myCluster (63.18.Imp): 657: error when retrieving table description for physical table CDCLS.
    myCluster (63.18.Imp): 658: return code received from nametab is 32
    myCluster (63.18.Imp): 295: error when retrieving physical nametab for table CDCLS.
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: CLU4 created
    (DB) INFO: CLU4~0 created
    (IMP) INFO: import of CLU4 completed (0 rows) #20071121150034
    (DB) INFO: CLUSTERVER created
    (DB) INFO: CLUSTERVER~0 created
    (IMP) INFO: import of CLUSTERVER completed (0 rows) #20071121150034
    (DB) INFO: CLUTAB created
    (DB) INFO: CLUTAB~0 created
    (IMP) INFO: import of CLUTAB completed (0 rows) #20071121150035
    (DB) INFO: CVEP1 created
    (DB) INFO: CVEP1~0 created
    (IMP) INFO: import of CVEP1 completed (0 rows) #20071121150035
    (DB) INFO: CVEP2 created
    (DB) INFO: CVEP2~0 created
    (IMP) INFO: import of CVEP2 completed (0 rows) #20071121150035
    (DB) INFO: CVER1 created
    (DB) INFO: CVER1~0 created
    (IMP) INFO: import of CVER1 completed (0 rows) #20071121150035
    (DB) INFO: CVER2 created
    (DB) INFO: CVER2~0 created
    (IMP) INFO: import of CVER2 completed (0 rows) #20071121150035
    (DB) INFO: CVER3 created
    (DB) INFO: CVER3~0 created
    (IMP) INFO: import of CVER3 completed (0 rows) #20071121150035
    (DB) INFO: CVER4 created
    (DB) INFO: CVER4~0 created
    (IMP) INFO: import of CVER4 completed (0 rows) #20071121150035
    (DB) INFO: CVER5 created
    (DB) INFO: CVER5~0 created
    (IMP) INFO: import of CVER5 completed (0 rows) #20071121150035
    (DB) INFO: DOKCL created
    (DB) INFO: DOKCL~0 created
    (IMP) INFO: import of DOKCL completed (0 rows) #20071121150036
    (DB) INFO: DSYCLV created
    (DB) INFO: DSYCLV~0 created
    (IMP) INFO: import of DSYCLV completed (0 rows) #20071121150036
    (DB) INFO: DSYO1 created
    (DB) INFO: DSYO1~0 created
    myCluster (63.18.Imp): 657: error when retrieving table description for physical table DSYO1.
    myCluster (63.18.Imp): 658: return code received from nametab is 32
    myCluster (63.18.Imp): 295: error when retrieving physical nametab for table DSYO1.
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: DSYO2 created
    (DB) INFO: DSYO2~0 created
    myCluster (63.18.Imp): 657: error when retrieving table description for physical table DSYO2.
    myCluster (63.18.Imp): 658: return code received from nametab is 32
    myCluster (63.18.Imp): 295: error when retrieving physical nametab for table DSYO2.
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: DSYO3 created
    (DB) INFO: DSYO3~0 created
    (IMP) INFO: import of DSYO3 completed (0 rows) #20071121150036
    (DB) INFO: EDI30C created
    (DB) INFO: EDI30C~0 created
    (IMP) INFO: import of EDI30C completed (0 rows) #20071121150036
    (DB) INFO: EDI40 created
    (DB) INFO: EDI40~0 created
    myCluster (63.18.Imp): 657: error when retrieving table description for physical table EDI40.
    myCluster (63.18.Imp): 658: return code received from nametab is 32
    myCluster (63.18.Imp): 295: error when retrieving physical nametab for table EDI40.
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: EDIDOC created
    (DB) INFO: EDIDOC~0 created
    (IMP) INFO: import of EDIDOC completed (0 rows) #20071121150037
    (DB) INFO: EPIDXB created
    (DB) INFO: EPIDXB~0 created
    (IMP) INFO: import of EPIDXB completed (0 rows) #20071121150037
    (DB) INFO: EPIDXC created
    (DB) INFO: EPIDXC~0 created
    (IMP) INFO: import of EPIDXC completed (0 rows) #20071121150037
    (DB) INFO: GLS2CLUS created
    (DB) INFO: GLS2CLUS~0 created
    (IMP) INFO: import of GLS2CLUS completed (0 rows) #20071121150038
    (DB) INFO: IMPREDOC created
    (DB) INFO: IMPREDOC~0 created
    (IMP) INFO: import of IMPREDOC completed (0 rows) #20071121150038
    (DB) INFO: J_CLU created
    (DB) INFO: J_CLU~0 created
    (IMP) INFO: import of J_CLU completed (0 rows) #20071121150038
    (DB) INFO: KOCLU created
    (DB) INFO: KOCLU~0 created
    (IMP) INFO: import of KOCLU completed (0 rows) #20071121150038
    (DB) INFO: MWOFF_CL created
    (DB) INFO: MWOFF_CL~0 created
    (IMP) INFO: import of MWOFF_CL completed (0 rows) #20071121150038
    (DB) INFO: PCDCLS created
    (DB) INFO: PCDCLS~0 created
    (IMP) INFO: import of PCDCLS completed (0 rows) #20071121150038
    (DB) INFO: PRCD_CLUST created
    (DB) INFO: PRCD_CLUST~0 created
    (IMP) INFO: import of PRCD_CLUST completed (0 rows) #20071121150039
    (DB) INFO: REGUC created
    (DB) INFO: REGUC~0 created
    (IMP) INFO: import of REGUC completed (0 rows) #20071121150039
    (DB) INFO: RFBLG created
    (DB) INFO: RFBLG~0 created
    myCluster (63.18.Imp): 657: error when retrieving table description for physical table RFBLG.
    myCluster (63.18.Imp): 658: return code received from nametab is 32
    myCluster (63.18.Imp): 295: error when retrieving physical nametab for table RFBLG.
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: RFMHN created
    (DB) INFO: RFMHN~0 created
    (IMP) INFO: import of RFMHN completed (0 rows) #20071121150039
    (DB) INFO: RKEPI created
    (DB) INFO: RKEPI~0 created
    (IMP) INFO: import of RKEPI completed (0 rows) #20071121150039
    (DB) INFO: SFHOA created
    (DB) INFO: SFHOA~0 created
    myCluster (63.18.Imp): 657: error when retrieving table description for physical table SFHOA.
    myCluster (63.18.Imp): 658: return code received from nametab is 32
    myCluster (63.18.Imp): 295: error when retrieving physical nametab for table SFHOA.
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: SFHYT created
    (DB) INFO: SFHYT~0 created
    (IMP) INFO: import of SFHYT completed (0 rows) #20071121150040
    (DB) INFO: TESCL created
    (DB) INFO: TESCL~0 created
    (IMP) INFO: import of TESCL completed (0 rows) #20071121150040
    (DB) INFO: UMG_TEST_C created
    (DB) INFO: UMG_TEST_C~0 created
    (IMP) INFO: import of UMG_TEST_C completed (0 rows) #20071121150040
    (DB) INFO: UMG_TEST_F created
    (DB) INFO: UMG_TEST_F~0 created
    (IMP) INFO: import of UMG_TEST_F completed (0 rows) #20071121150040
    (DB) INFO: VBCLU created
    (DB) INFO: VBCLU~0 created
    (IMP) INFO: import of VBCLU completed (0 rows) #20071121150040
    (DB) INFO: VBFCL created
    (DB) INFO: VBFCL~0 created
    (IMP) INFO: import of VBFCL completed (0 rows) #20071121150040
    (DB) INFO: VBLOG created
    (DB) INFO: VBLOG~0 created
    (IMP) INFO: import of VBLOG completed (0 rows) #20071121150040
    (DB) INFO: VERCLUSTER created
    (DB) INFO: VERCLUSTER~0 created
    (IMP) INFO: import of VERCLUSTER completed (0 rows) #20071121150040
    (DB) INFO: VER_CLUSTR created
    (DB) INFO: VER_CLUSTR~0 created
    (IMP) INFO: import of VER_CLUSTR completed (0 rows) #20071121150040
    (DB) INFO: VTEST10 created
    (DB) INFO: VTEST10~0 created
    (IMP) INFO: import of VTEST10 completed (0 rows) #20071121150041
    (DB) INFO: disconnected from DB
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: job finished with 6 error(s)
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: END OF LOG: 20071121150041
    [/code]
    SAPPOOL.log
    [code]
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: START OF LOG: 20071121145733
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 04:00:32
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe -ctf I C:\installcd\Netweaver 2004 SR2 Installation Export Disc 1\EXP1\DATA\SAPPOOL.STR C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\DISTRIBUTED\AS\DB\DDLMSS.TPL SAPPOOL.TSK MSS -l SAPPOOL.log
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: job completed
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: END OF LOG: 20071121145733
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: START OF LOG: 20071121145734
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 04:00:32
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe -i SAPPOOL.cmd -dbcodepage 4103 -l SAPPOOL.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: AANK created
    (DB) INFO: AANK~0 created
    (IMP) INFO: import of AANK completed (0 rows) #20071121145734
    (DB) INFO: AANL created
    (DB) INFO: AANL~0 created
    (IMP) INFO: import of AANL completed (0 rows) #20071121145734
    (DB) INFO: ATAB created
    (DB) INFO: ATAB~0 created
    failed to read short nametab of table ARCH_NUM                       (rc=32)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = ⁘††††††††††††††††††††††††
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: BPHIER created
    (DB) INFO: BPHIER~0 created
    (IMP) INFO: import of BPHIER completed (0 rows) #20071121145734
    (DB) INFO: CFIS created
    (DB) INFO: CFIS~0 created
    (IMP) INFO: import of CFIS completed (0 rows) #20071121145734
    (DB) INFO: CRVP created
    (DB) INFO: CRVP~0 created
    (IMP) INFO: import of CRVP completed (0 rows) #20071121145734
    (DB) INFO: DEBI created
    (DB) INFO: DEBI~0 created
    (IMP) INFO: import of DEBI completed (0 rows) #20071121145734
    (DB) INFO: DVPOOL created
    (DB) INFO: DVPOOL~0 created
    (IMP) INFO: import of DVPOOL completed (0 rows) #20071121145734
    (DB) INFO: DVPOOLTEXT created
    (DB) INFO: DVPOOLTEXT~0 created
    (IMP) INFO: import of DVPOOLTEXT completed (0 rows) #20071121145734
    (DB) INFO: FINPL created
    (DB) INFO: FINPL~0 created
    failed to read short nametab of table FINK                           (rc=32)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = 卄卙䉅住䙋䉟彅佂䭏†††††䔠ぅ〰‱†††††††††††††††††††††††††††††††††††††
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: GLSP created
    (DB) INFO: GLSP~0 created
    (IMP) INFO: import of GLSP completed (0 rows) #20071121145735
    (DB) INFO: GLTP created
    (DB) INFO: GLTP~0 created
    (IMP) INFO: import of GLTP completed (0 rows) #20071121145735
    (DB) INFO: KALK created
    (DB) INFO: KALK~0 created
    (IMP) INFO: import of KALK completed (0 rows) #20071121145735
    (DB) INFO: KAPOL created
    (DB) INFO: KAPOL~0 created
    failed to read short nametab of table A026                           (rc=32)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = 〰䌰䅓娭〲〰ㄱ〰〰〰㈴〱㤱㈹㈱ㄳ††††††††††††††††
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: KBPOL created
    (DB) INFO: KBPOL~0 created
    (IMP) INFO: import of KBPOL completed (0 rows) #20071121145735
    (DB) INFO: KCPOL created
    (DB) INFO: KCPOL~0 created
    (IMP) INFO: import of KCPOL completed (0 rows) #20071121145735
    (DB) INFO: KDPOL created
    (DB) INFO: KDPOL~0 created
    (IMP) INFO: import of KDPOL completed (0 rows) #20071121145735
    (DB) INFO: KEPOOL created
    (DB) INFO: KEPOOL~0 created
    failed to read short nametab of table K9001                          (rc=32)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = 〰匰〰〱〰〰㤱㤹ㄹ㌲‱†††††††††††††††††††††††††††††
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: KGPOL created
    (DB) INFO: KGPOL~0 created
    (IMP) INFO: import of KGPOL completed (0 rows) #20071121145736
    (DB) INFO: KRED created
    (DB) INFO: KRED~0 created
    (IMP) INFO: import of KRED completed (0 rows) #20071121145736
    (DB) INFO: LDAN created
    (DB) INFO: LDAN~0 created
    (IMP) INFO: import of LDAN completed (0 rows) #20071121145736
    (DB) INFO: LDKO created
    (DB) INFO: LDKO~0 created
    (IMP) INFO: import of LDKO completed (0 rows) #20071121145736
    (DB) INFO: LISA created
    (DB) INFO: LISA~0 created
    (IMP) INFO: import of LISA completed (0 rows) #20071121145736
    (DB) INFO: MAT1 created
    (DB) INFO: MAT1~0 created
    (IMP) INFO: import of MAT1 completed (0 rows) #20071121145736
    (DB) INFO: MBAN created
    (DB) INFO: MBAN~0 created
    (IMP) INFO: import of MBAN completed (0 rows) #20071121145736
    (DB) INFO: MBMP created
    (DB) INFO: MBMP~0 created
    (IMP) INFO: import of MBMP completed (0 rows) #20071121145736
    (DB) INFO: MBRK created
    (DB) INFO: MBRK~0 created
    (IMP) INFO: import of MBRK completed (0 rows) #20071121145736
    (DB) INFO: MCLIB created
    (DB) INFO: MCLIB~0 created
    (IMP) INFO: import of MCLIB completed (0 rows) #20071121145736
    (DB) INFO: MEIN created
    (DB) INFO: MEIN~0 created
    (IMP) INFO: import of MEIN completed (0 rows) #20071121145737
    (DB) INFO: MEKK created
    (DB) INFO: MEKK~0 created
    (IMP) INFO: import of MEKK completed (0 rows) #20071121145737
    (DB) INFO: MEOR created
    (DB) INFO: MEOR~0 created
    (IMP) INFO: import of MEOR completed (0 rows) #20071121145737
    (DB) INFO: MSAK created
    (DB) INFO: MSAK~0 created
    (IMP) INFO: import of MSAK completed (0 rows) #20071121145737
    (DB) INFO: MSPOOL created
    (DB) INFO: MSPOOL~0 created
    (IMP) INFO: import of MSPOOL completed (0 rows) #20071121145737
    (DB) INFO: M_AANL created
    (DB) INFO: M_AANL~0 created
    (IMP) INFO: import of M_AANL completed (0 rows) #20071121145737
    (DB) INFO: M_ADMC created
    (DB) INFO: M_ADMC~0 created
    (IMP) INFO: import of M_ADMC completed (0 rows) #20071121145737
    (DB) INFO: M_ADRC created
    (DB) INFO: M_ADRC~0 created
    (IMP) INFO: import of M_ADRC completed (0 rows) #20071121145737
    (DB) INFO: M_ADRP created
    (DB) INFO: M_ADRP~0 created
    (IMP) INFO: import of M_ADRP completed (0 rows) #20071121145737
    (DB) INFO: M_AEN1 created
    (DB) INFO: M_AEN1~0 created
    (IMP) INFO: import of M_AEN1 completed (0 rows) #20071121145737
    (DB) INFO: M_BUPA created
    (DB) INFO: M_BUPA~0 created
    (IMP) INFO: import of M_BUPA completed (0 rows) #20071121145737
    (DB) INFO: M_CF01 created
    (DB) INFO: M_CF01~0 created
    (IMP) INFO: import of M_CF01 completed (0 rows) #20071121145737
    (DB) INFO: M_CLAS created
    (DB) INFO: M_CLAS~0 created
    (IMP) INFO: import of M_CLAS completed (0 rows) #20071121145738
    (DB) INFO: M_CLFN created
    (DB) INFO: M_CLFN~0 created
    (IMP) INFO: import of M_CLFN completed (0 rows) #20071121145738
    (DB) INFO: M_ESM2 created
    (DB) INFO: M_ESM2~0 created
    (IMP) INFO: import of M_ESM2 completed (0 rows) #20071121145738
    (DB) INFO: M_FDUP created
    (DB) INFO: M_FDUP~0 created
    (IMP) INFO: import of M_FDUP completed (0 rows) #20071121145738
    (DB) INFO: M_FPVT created
    (DB) INFO: M_FPVT~0 created
    (IMP) INFO: import of M_FPVT completed (0 rows) #20071121145738
    (DB) INFO: M_IBEW created
    (DB) INFO: M_IBEW~0 created
    (IMP) INFO: import of M_IBEW completed (0 rows) #20071121145738
    (DB) INFO: M_IFLM created
    (DB) INFO: M_IFLM~0 created
    (IMP) INFO: import of M_IFLM completed (0 rows) #20071121145738
    (DB) INFO: M_IIMA created
    (DB) INFO: M_IIMA~0 created
    (IMP) INFO: import of M_IIMA completed (0 rows) #20071121145738
    (DB) INFO: M_IRLM created
    (DB) INFO: M_IRLM~0 created
    (IMP) INFO: import of M_IRLM completed (0 rows) #20071121145738
    (DB) INFO: M_J1BA created
    (DB) INFO: M_J1BA~0 created
    (IMP) INFO: import of M_J1BA completed (0 rows) #20071121145738
    (DB) INFO: M_J1IA created
    (DB) INFO: M_J1IA~0 created
    (IMP) INFO: import of M_J1IA completed (0 rows) #20071121145739
    (DB) INFO: M_J1IB created
    (DB) INFO: M_J1IB~0 created
    (IMP) INFO: import of M_J1IB completed (0 rows) #20071121145739
    (DB) INFO: M_J1ID created
    (DB) INFO: M_J1ID~0 created
    (IMP) INFO: import of M_J1ID completed (0 rows) #20071121145739
    (DB) INFO: M_J1IH created
    (DB) INFO: M_J1IH~0 created
    (IMP) INFO: import of M_J1IH completed (0 rows) #20071121145739
    (DB) INFO: M_J1IK created
    (DB) INFO: M_J1IK~0 created
    (IMP) INFO: import of M_J1IK completed (0 rows) #20071121145739
    (DB) INFO: M_KLSW created
    (DB) INFO: M_KLSW~0 created
    (IMP) INFO: import of M_KLSW completed (0 rows) #20071121145739
    (DB) INFO: M_KMNR created
    (DB) INFO: M_KMNR~0 created
    (IMP) INFO: import of M_KMNR completed (0 rows) #20071121145739
    (DB) INFO: M_LOBJ created
    (DB) INFO: M_LOBJ~0 created
    (IMP) INFO: import of M_LOBJ completed (0 rows) #20071121145739
    (DB) INFO: M_MCA1 created
    (DB) INFO: M_MCA1~0 created
    (IMP) INFO: import of M_MCA1 completed (0 rows) #20071121145739
    (DB) INFO: M_MCA2 created
    (DB) INFO: M_MCA2~0 created
    (IMP) INFO: import of M_MCA2 completed (0 rows) #20071121145739
    (DB) INFO: M_MCBM created
    (DB) INFO: M_MCBM~0 created
    (IMP) INFO: import of M_MCBM completed (0 rows) #20071121145740
    (DB) INFO: M_MCEA created
    (DB) INFO: M_MCEA~0 created
    (IMP) INFO: import of M_MCEA completed (0 rows) #20071121145740
    (DB) INFO: M_MCEM created
    (DB) INFO: M_MCEM~0 created
    (IMP) INFO: import of M_MCEM completed (0 rows) #20071121145740
    (DB) INFO: M_MCES created
    (DB) INFO: M_MCES~0 created
    (IMP) INFO: import of M_MCES completed (0 rows) #20071121145740
    (DB) INFO: M_MCGB created
    (DB) INFO: M_MCGB~0 created
    (IMP) INFO: import of M_MCGB completed (0 rows) #20071121145740
    (DB) INFO: M_MCGU created
    (DB) INFO: M_MCGU~0 created
    (IMP) INFO: import of M_MCGU completed (0 rows) #20071121145740
    (DB) INFO: M_MCHA created
    (DB) INFO: M_MCHA~0 created
    (IMP) INFO: import of M_MCHA completed (0 rows) #20071121145740
    (DB) INFO: M_MCOB created
    (DB) INFO: M_MCOB~0 created
    (IMP) INFO: import of M_MCOB completed (0 rows) #20071121145740
    (DB) INFO: M_MERK created
    (DB) INFO: M_MERK~0 created
    (IMP) INFO: import of M_MERK completed (0 rows) #20071121145740
    (DB) INFO: M_MJB2 created
    (DB) INFO: M_MJB2~0 created
    (IMP) INFO: import of M_MJB2 completed (0 rows) #20071121145740
    (DB) INFO: M_MJB3 created
    (DB) INFO: M_MJB3~0 created
    (IMP) INFO: import of M_MJB3 completed (0 rows) #20071121145740
    (DB) INFO: M_MJB4 created
    (DB) INFO: M_MJB4~0 created
    (IMP) INFO: import of M_MJB4 completed (0 rows) #20071121145741
    (DB) INFO: M_MJB5 created
    (DB) INFO: M_MJB5~0 created
    (IMP) INFO: import of M_MJB5 completed (0 rows) #20071121145741
    (DB) INFO: M_MJBU created
    (DB) INFO: M_MJBU~0 created
    (IMP) INFO: import of M_MJBU completed (0 rows) #20071121145741
    (DB) INFO: M_MJBV created
    (DB) INFO: M_MJBV~0 created
    (IMP) INFO: import of M_MJBV completed (0 rows) #20071121145741
    (DB) INFO: M_MJBW created
    (DB) INFO: M_MJBW~0 created
    (IMP) INFO: import of M_MJBW completed (0 rows) #20071121145741
    (DB) INFO: M_MJBX created
    (DB) INFO: M_MJBX~0 created
    (IMP) INFO: import of M_MJBX completed (0 rows) #20071121145741
    (DB) INFO: M_MJBZ created
    (DB) INFO: M_MJBZ~0 created
    (IMP) INFO: import of M_MJBZ completed (0 rows) #20071121145741
    (DB) INFO: M_MREA created
    (DB) INFO: M_MREA~0 created
    (IMP) INFO: import of M_MREA completed (0 rows) #20071121145741
    (DB) INFO: M_MSAK created
    (DB) INFO: M_MSAK~0 created
    (IMP) INFO: import of M_MSAK completed (0 rows) #20071121145741
    (DB) INFO: M_MTLN created
    (DB) INFO: M_MTLN~0 created
    (IMP) INFO: import of M_MTLN completed (0 rows) #20071121145741
    (DB) INFO: M_MTVM created
    (DB) INFO: M_MTVM~0 created
    (IMP) INFO: import of M_MTVM completed (0 rows) #20071121145742
    (DB) INFO: M_MTVN created
    (DB) INFO: M_MTVN~0 created
    (IMP) INFO: import of M_MTVN completed (0 rows) #20071121145742
    (DB) INFO: M_MTVO created
    (DB) INFO: M_MTVO~0 created
    (IMP) INFO: import of M_MTVO completed (0 rows) #20071121145742
    (DB) INFO: M_MVER created
    (DB) INFO: M_MVER~0 created
    (IMP) INFO: import of M_MVER completed (0 rows) #20071121145742
    (DB) INFO: M_MWAK created
    (DB) INFO: M_MWAK~0 created
    (IMP) INFO: import of M_MWAK completed (0 rows) #20071121145742
    (DB) INFO: M_OBJE created
    (DB) INFO: M_OBJE~0 created
    (IMP) INFO: import of M_OBJE completed (0 rows) #20071121145742
    (DB) INFO: M_PTER created
    (DB) INFO: M_PTER~0 created
    (IMP) INFO: import of M_PTER completed (0 rows) #20071121145742
    (DB) INFO: M_PTRM created
    (DB) INFO: M_PTRM~0 created
    (IMP) INFO: import of M_PTRM completed (0 rows) #20071121145742
    (DB) INFO: M_SFIP created
    (DB) INFO: M_SFIP~0 created
    (IMP) INFO: import of M_SFIP completed (0 rows) #20071121145742
    (DB) INFO: M_SPBB created
    (DB) INFO: M_SPBB~0 created
    (IMP) INFO: import of M_SPBB completed (0 rows) #20071121145742
    (DB) INFO: M_SWZA created
    (DB) INFO: M_SWZA~0 created
    (IMP) INFO: import of M_SWZA completed (0 rows) #20071121145742
    (DB) INFO: M_VMCF created
    (DB) INFO: M_VMCF~0 created
    (IMP) INFO: import of M_VMCF completed (0 rows) #20071121145742
    (DB) INFO: M_VMVK created
    (DB) INFO: M_VMVK~0 created
    (IMP) INFO: import of M_VMVK completed (0 rows) #20071121145743
    (DB) INFO: M_VTBS created
    (DB) INFO: M_VTBS~0 created
    (IMP) INFO: import of M_VTBS completed (0 rows) #20071121145743
    (DB) INFO: M_VTMA created
    (DB) INFO: M_VTMA~0 created
    (IMP) INFO: import of M_VTMA completed (0 rows) #20071121145743
    (DB) INFO: M_VTOF created
    (DB) INFO: M_VTOF~0 created
    (IMP) INFO: import of M_VTOF completed (0 rows) #20071121145743
    (DB) INFO: M_WASV created
    (DB) INFO: M_WASV~0 created
    (IMP) INFO: import of M_WASV completed (0 rows) #20071121145743
    (DB) INFO: M_WDEP created
    (DB) INFO: M_WDEP~0 created
    (IMP) INFO: import of M_WDEP completed (0 rows) #20071121145743
    (DB) INFO: M_WORD created
    (DB) INFO: M_WORD~0 created
    (IMP) INFO: import of M_WORD completed (0 rows) #20071121145743
    (DB) INFO: M_WPAN created
    (DB) INFO: M_WPAN~0 created
    (IMP) INFO: import of M_WPAN completed (0 rows) #20071121145743
    (DB) INFO: NCOM created
    (DB) INFO: NCOM~0 created
    (IMP) INFO: import of NCOM completed (0 rows) #20071121145743
    (DB) INFO: ORDE created
    (DB) INFO: ORDE~0 created
    (IMP) INFO: import of ORDE completed (0 rows) #20071121145744
    (DB) INFO: PLOM created
    (DB) INFO: PLOM~0 created
    (IMP) INFO: import of PLOM completed (0 rows) #20071121145744
    (DB) INFO: PTEST1 created
    (DB) INFO: PTEST1~0 created
    (IMP) INFO: import of PTEST1 completed (0 rows) #20071121145744
    (DB) INFO: PVER1 created
    (DB) INFO: PVER1~0 created
    (IMP) INFO: import of PVER1 completed (0 rows) #20071121145744
    (DB) INFO: QDPT created
    (DB) INFO: QDPT~0 created
    (IMP) INFO: import of QDPT completed (0 rows) #20071121145744
    (DB) INFO: REBL created
    (DB) INFO: REBL~0 created
    (IMP) INFO: import of REBL completed (0 rows) #20071121145744
    (DB) INFO: SAKO created
    (DB) INFO: SAKO~0 created
    (IMP) INFO: import of SAKO completed (0 rows) #20071121145744
    (DB) INFO: SFCPL created
    (DB) INFO: SFCPL~0 created
    failed to read short nametab of table SFIA                           (rc=32)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = ☦佃呓††††††††††††††††††††††††††††††††††††††††††††††††††††
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: SFWPL created
    (DB) INFO: SFWPL~0 created
    (IMP) INFO: import of SFWPL completed (0 rows) #20071121145744
    (DB) INFO: SMPOOL created
    (DB) INFO: SMPOOL~0 created
    (IMP) INFO: import of SMPOOL completed (0 rows) #20071121145745
    (DB) INFO: TESPO created
    (DB) INFO: TESPO~0 created
    (IMP) INFO: import of TESPO completed (0 rows) #20071121145745
    (DB) INFO: UMG_TEST_P created
    (DB) INFO: UMG_TEST_P~0 created
    (IMP) INFO: import of UMG_TEST_P completed (0 rows) #20071121145745
    (DB) INFO: UTAB created
    (DB) INFO: UTAB~0 created
    failed to read short nametab of table T449U                          (rc=32)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = 〰‰†††††††††††††††††††††††
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: VBMC created
    (DB) INFO: VBMC~0 created
    (IMP) INFO: import of VBMC completed (0 rows) #20071121145745
    (DB) INFO: VIND created
    (DB) INFO: VIND~0 created
    (IMP) INFO: import of VIND completed (0 rows) #20071121145745
    (DB) INFO: VLIM created
    (DB) INFO: VLIM~0 created
    (IMP) INFO: import of VLIM completed (0 rows) #20071121145745
    (DB) INFO: VMCV created
    (DB) INFO: VMCV~0 created
    (IMP) INFO: import of VMCV completed (0 rows) #20071121145745
    (DB) INFO: VPOOL created
    (DB) INFO: VPOOL~0 created
    (IMP) INFO: import of VPOOL completed (0 rows) #20071121145745
    (DB) INFO: VTEST11 created
    (DB) INFO: VTEST11~0 created
    (IMP) INFO: import of VTEST11 completed (0 rows) #20071121145745
    (DB) INFO: YMUS created
    (DB) INFO: YMUS~0 created
    (IMP) INFO: import of YMUS completed (0 rows) #20071121145745
    (DB) INFO: disconnected from DB
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: job finished with 6 error(s)
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: END OF LOG: 20071121145745
    [/code]
    SAPSSEXC.log
    [code]
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: START OF LOG: 20071121123833
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 04:00:32
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe -ctf I C:\installcd\Netweaver 2004 SR2 Installation Export Disc 3\EXP3\DATA\SAPSSEXC.STR C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\DISTRIBUTED\AS\DB\DDLMSS.TPL SAPSSEXC.TSK MSS -l SAPSSEXC.log
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: job completed
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: END OF LOG: 20071121123834
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: START OF LOG: 20071121123834
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 04:00:32
    D:\usr\sap\SLM\SYS\exe\uc\NTIA64\R3load.exe -i SAPSSEXC.cmd -dbcodepage 4103 -l SAPSSEXC.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: AAB_ID_PROP created
    (DB) INFO: AAB_ID_PROP~0 created
    Interface access functions from dynamic library dbmssslib.dll loaded.
    (IMP) INFO: import of AAB_ID_PROP completed (676 rows) #20071121123834
    (DB) INFO: AAB_ID_PROPT created
    (DB) INFO: AAB_ID_PROPT~0 created
    (IMP) INFO: import of AAB_ID_PROPT completed (7690 rows) #20071121123834
    (DB) INFO: BRATEXT created
    (DB) INFO: BRATEXT~0 created
    (IMP) INFO: import of BRATEXT completed (229628 rows) #20071121123853
    (DB) INFO: D010INC created
    (DB) INFO: D010INC~0 created
    (IMP) INFO: import of D010INC completed (14295517 rows) #20071121124550
    (DB) INFO: D010INC~1 created
    (DB) INFO: D010TAB created
    (DB) INFO: D010TAB~0 created
    (IMP) INFO: import of D010TAB completed (42971435 rows) #20071121131352
    (DB) INFO: D010TAB~1 created
    (DB) INFO: D020S created
    (DB) INFO: D020S~0 created
    (IMP) INFO: import of D020S completed (172222 rows) #20071121132909
    (DB) INFO: D020T created
    (DB) INFO: D020T~0 created
    (IMP) INFO: import of D020T completed (682520 rows) #20071121132930
    (DB) INFO: D021T created
    (DB) INFO: D021T~0 created
    (IMP) INFO: import of D021T completed (4535077 rows) #20071121133341
    (DB) INFO: D301T created
    (DB) INFO: D301T~0 created
    (IMP) INFO: import of D301T completed (6654 rows) #20071121133341
    (DB) INFO: D301T~A created
    (DB) INFO: D345T created
    (DB) INFO: D345T~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of D345T completed (1867 rows) #20071121133347
    (DB) INFO: D347T created
    (DB) INFO: D347T~0 created
    (IMP) INFO: import of D347T completed (27321 rows) #20071121133348
    (DB) INFO: DBDIFF created
    (DB) INFO: DBDIFF~0 created
    (IMP) INFO: import of DBDIFF completed (202 rows) #20071121133348
    (DB) INFO: DBMAPS created
    (DB) INFO: DBMAPS~0 created
    (IMP) INFO: import of DBMAPS completed (0 rows) #20071121133348
    (DB) INFO: DD01L created
    (DB) INFO: DD01L~0 created
    (IMP) INFO: import of DD01L completed (73037 rows) #20071121133354
    (DB) INFO: DD01L~1 created
    (DB) INFO: DD01T created
    (DB) INFO: DD01T~0 created
    (IMP) INFO: import of DD01T completed (806872 rows) #20071121133424
    (DB) INFO: DD02L created
    (DB) INFO: DD02L~0 created
    (IMP) INFO: import of DD02L completed (295550 rows) #20071121133444
    (DB) INFO: DD02L~1 created
    (DB) INFO: DD02T created
    (DB) INFO: DD02T~0 created
    (IMP) INFO: import of DD02T completed (2951280 rows) #20071121133623
    (DB) INFO: DD03L created
    (DB) INFO: DD03L~0 created
    (IMP) INFO: import of DD03L completed (4785428 rows) #20071121134238
    (DB) INFO: DD03L~1 created
    (DB) INFO: DD03L~2 created
    (DB) INFO: DD03L~3 created
    (DB) INFO: DD03L~4 created
    (DB) INFO: DD03L~5 created
    (DB) INFO: DD03L~6 created
    (DB) INFO: DD03L~7 created
    (DB) INFO: DD03T created
    (DB) INFO: DD03T~0 created
    (IMP) INFO: import of DD03T completed (719472 rows) #20071121134905
    (DB) INFO: DD04L created
    (DB) INFO: DD04L~0 created
    (IMP) INFO: import of DD04L completed (344271 rows) #20071121134934
    (DB) INFO: DD04L~1 created
    (DB) INFO: DD04T created
    (DB) INFO: DD04T~0 created
    (IMP) INFO: import of DD04T completed (3477223 rows) #20071121135239
    (DB) INFO: DD06L created
    (DB) INFO: DD06L~0 created
    (IMP) INFO: import of DD06L completed (172 rows) #20071121135239
    (DB) INFO: DD06T created
    (DB) INFO: DD06T~0 created
    (IMP) INFO: import of DD06T completed (1187 rows) #20071121135239
    (DB) INFO: DD07L created
    (DB) INFO: DD07L~0 created
    (IMP) INFO: import of DD07L completed (137884 rows) #20071121135243
    (DB) INFO: DD07T created
    (DB) INFO: DD07T~0 created
    (IMP) INFO: import of DD07T completed (1548660 rows) #20071121135348
    (DB) INFO: DD09L created
    (DB) INFO: DD09L~0 created
    (IMP) INFO: import of DD09L completed (69863 rows) #20071121135351
    (DB) INFO: DD20L created
    (DB) INFO: DD20L~0 created
    (IMP) INFO: import of DD20L completed (215 rows) #20071121135351
    (DB) INFO: DD25L created
    (DB) INFO: DD25L~0 created
    (IMP) INFO: import of DD25L completed (45190 rows) #20071121135354
    (DB) INFO: DD25L~1 created
    (DB) INFO: DD26S created
    (DB) INFO: DD26S~0 created
    (IMP) INFO: import of DD26S completed (111584 rows) #20071121135359
    (DB) INFO: DD26S~1 created
    (DB) INFO: DD26S~2 created
    (DB) INFO: DD27S created
    (DB) INFO: DD27S~0 created
    (IMP) INFO: import of DD27S completed (468737 rows) #20071121135423
    (DB) INFO: DD27S~1 created
    (DB) INFO: DD27S~2 created
    (DB) INFO: DD28S created
    (DB) INFO: DD28S~0 created
    (IMP) INFO: import of DD28S completed (68679 rows) #20071121135436
    (DB) INFO: DD29L created
    (DB) INFO: DD29L~0 created
    (IMP) INFO: import of DD29L completed (40288 rows) #20071121135437
    (DB) INFO: DD30L created
    (DB) INFO: DD30L~0 created
    (IMP) INFO: import of DD30L completed (14122 rows) #20071121135438
    (DB) INFO: DD30L~EXI created
    (DB) INFO: DD30L~MET created
    (DB) INFO: DD30L~TXT created
    (DB) INFO: DD30T created
    (DB) INFO: DD30T~0 created
    (IMP) INFO: import of DD30T completed (160514 rows) #20071121135443
    (DB) INFO: DD31S created
    (DB) INFO: DD31S~0 created
    (IMP) INFO: import of DD31S completed (21370 rows) #20071121135444
    (DB) INFO: DD32S created
    (DB) INFO: DD32S~0 created
    (IMP) INFO: import of DD32S completed (61724 rows) #20071121135447
    (DB) INFO: DD32S~ROL created
    (DB) INFO: DD32S~SQL created
    (DB) INFO: DD33S created
    (DB) INFO: DD33S~0 created
    (IMP) INFO: import of DD33S completed (62514 rows) #20071121135451
    (DB) INFO: DD35L created
    (DB) INFO: DD35L~0 created
    (IMP) INFO: import of DD35L completed (59959 rows) #20071121135452
    (DB) INFO: DD35L~1 created
    (DB) INFO: DD36S created
    (DB) INFO: DD36S~0 created
    (IMP) INFO: import of DD36S completed (212767 rows) #20071121135501
    (DB) INFO: DD40L created
    (DB) INFO: DD40L~0 created
    (IMP) INFO: import of DD40L completed (70613 rows) #20071121135505
    (DB) INFO: DD40L~1 created
    (DB) INFO: DD40T created
    (DB) INFO: DD40T~0 created
    (IMP) INFO: import of DD40T completed (800240 rows) #20071121135534
    (DB) INFO: DD42S created
    (DB) INFO: DD42S~0 created
    (IMP) INFO: import of DD42S completed (20627 rows) #20071121135535
    (DB) INFO: DDTYPES created
    (DB) INFO: DDTYPES~0 created
    (IMP) INFO: import of DDTYPES completed (764846 rows) #20071121135552
    (DB) INFO: DDTYPET created
    (DB) INFO: DDTYPET~0 created
    (IMP) INFO: import of DDTYPET completed (41000 rows) #20071121135553
    (DB) INFO: DDXTF created
    (DB) INFO: DDXTF~0 created
    (IMP) INFO: import of DDXTF completed (0 rows) #20071121135553
    (DB) INFO: DDXTF_CONV_UC created
    (DB) INFO: DDXTF_CONV_UC~0 created
    (IMP) INFO: import of DDXTF_CONV_UC completed (0 rows) #20071121135554
    (DB) INFO: DDXTT created
    (DB) INFO: DDXTT~0 created
    (IMP) INFO: import of DDXTT completed (0 rows) #20071121135554
    (DB) INFO: DDXTT_CONV_UC created
    (DB) INFO: DDXTT_CONV_UC~0 created
    (IMP) INFO: import of DDXTT_CONV_UC completed (0 rows) #20071121135554
    (DB) INFO: DF03L created
    (DB) INFO: DF03L~0 created
    (IMP) INFO: import of DF03L completed (1764 rows) #20071121135554
    (DB) INFO: DF03L~ARI created
    (DB) INFO: DF03T created
    (DB) INFO: DF03T~0 created
    (IMP) INFO: import of DF03T completed (148261 rows) #20071121135603
    (DB) INFO: DF03T~OBJ created
    (DB) INFO: DF04L created
    (DB) INFO: DF04L~0 created
    (IMP) INFO: import of DF04L completed (3715 rows) #20071121135605
    (DB) INFO: DF04L~ARI created
    (DB) INFO: DF04L~STR created
    (DB) INFO: DF04L~SYN created
    (DB) INFO: DF04T created
    (DB) INFO: DF04T~0 created
    (IMP) INFO: import of DF04T completed (25566 rows) #20071121135607
    (DB) INFO: DF04T~OBJ created
    (DB) INFO: DF06L created
    (DB) INFO: DF06L~0 created
    (IMP) INFO: import of DF06L completed (0 rows) #20071121135608
    (DB) INFO: DF06L~ARI created
    (DB) INFO: DF06T created
    (DB) INFO: DF06T~0 created
    (IMP) INFO: import of DF06T completed (0 rows) #20071121135608
    (DB) INFO: DF07L created
    (DB) INFO: DF07L~0 created
    (IMP) INFO: import of DF07L completed (0 rows) #20071121135608
    (DB) INFO: DF07L~ARI created
    (DB) INFO: DF07L~OVW created
    (DB) INFO: DF07T created
    (DB) INFO: DF07T~0 created
    (IMP) INFO: import of DF07T completed (0 rows) #20071121135608
    (DB) INFO: DF08L created
    (DB) INFO: DF08L~0 created
    (IMP) INFO: import of DF08L completed (0 rows) #20071121135608
    (DB) INFO: DF08L~ARI created
    (DB) INFO: DF08T created
    (DB) INFO: DF08T~0 created
    (IMP) INFO: import of DF08T completed (0 rows) #20071121135608
    (DB) INFO: DF10L created
    (DB) INFO: DF10L~0 created
    (IMP) INFO: import of DF10L completed (0 rows) #20071121135609
    (DB) INFO: DF10L~ARI created
    (DB) INFO: DF10L~PRE created
    (DB) INFO: DF10L~SUC created
    (DB) INFO: DF10T created
    (DB) INFO: DF10T~0 created
    (IMP) INFO: import of DF10T completed (0 rows) #20071121135609
    (DB) INFO: DF11L created
    (DB) INFO: DF11L~0 created
    (IMP) INFO: import of DF11L completed (0 rows) #20071121135609
    (DB) INFO: DF11L~ARI created
    (DB) INFO: DF11L~REF created
    (DB) INFO: DF11T created
    (DB) INFO: DF11T~0 created
    (IMP) INFO: import of DF11T completed (0 rows) #20071121135609
    (DB) INFO: DF12L created
    (DB) INFO: DF12L~0 created
    (IMP) INFO: import of DF12L completed (17 rows) #20071121135609
    (DB) INFO: DF12L~ARI created
    (DB) INFO: DF12L~REF created
    (DB) INFO: DF12T created
    (DB) INFO: DF12T~0 created
    (IMP) INFO: import of DF12T completed (17 rows) #20071121135610
    (DB) INFO: DF13L created
    (DB) INFO: DF13L~0 created
    (IMP) INFO: import of DF13L completed (0 rows) #20071121135610
    (DB) INFO: DF13L~ARI created
    (DB) INFO: DF13T created
    (DB) INFO: DF13T~0 created
    (IMP) INFO: import of DF13T completed (0 rows) #20071121135610
    (DB) INFO: DF14L created
    (DB) INFO: DF14L~0 created
    (IMP) INFO: import of DF14L completed (5010 rows) #20071121135611
    (DB) INFO: DF14L~ARI created
    (DB) INFO: DF14L~PS created
    (DB) INFO: DF14L~REF created
    (DB) INFO: DF14T created
    (DB) INFO: DF14T~0 created
    (IMP) INFO: import of DF14T completed (66673 rows) #20071121135614
    (DB) INFO: DF14T~OBJ created
    (DB) INFO: DF15L created
    (DB) INFO: DF15L~0 created
    (IMP) INFO: import of DF15L completed (0 rows) #20071121135615
    (DB) INFO: DF15L~ARI created
    (DB) INFO: DF15T created
    (DB) INFO: DF15T~0 created
    (IMP) INFO: import of DF15T completed (0 rows) #20071121135615
    (DB) INFO: DF16L created
    (DB) INFO: DF16L~0 created
    (IMP) INFO: import of DF16L completed (724 rows) #20071121135615
    (DB) INFO: DF16L~REF created
    (DB) INFO: DF16T created
    (DB) INFO: DF16T~0 created
    (IMP) INFO: import of DF16T completed (1448 rows) #20071121135615
    (DB) INFO: DF16T~OBJ created
    (DB) INFO: DF30S created
    (DB) INFO: DF30S~0 created
    (IMP) INFO: import of DF30S completed (12181 rows) #20071121135616
    (DB) INFO: DF30S~SUC created
    (DB) INFO: DF34S created
    (DB) INFO: DF34S~0 created
    (IMP) INFO: import of DF34S completed (0 rows) #20071121135616
    (DB) INFO: DF40D created
    (DB) INFO: DF40D~0 created
    (IMP) INFO: import of DF40D completed (6188 rows) #20071121135617
    (DB) INFO: DF40D~OBJ created
    (DB) INFO: DF40D~SHI created
    (DB) INFO: DF41S created
    (DB) INFO: DF41S~0 created
    (IMP) INFO: import of DF41S completed (140387 rows) #20071121135624
    (DB) INFO: DF41S~ACT created
    (DB) INFO: DF41S~OVW created
    (DB) INFO: DF42S created
    (DB) INFO: DF42S~0 created
    (IMP) INFO: import of DF42S completed (125131 rows) #20071121135633
    (DB) INFO: DF43S created
    (DB) INFO: DF43S~0 created
    (IMP) INFO: import of DF43S completed (0 rows) #20071121135633
    (DB) INFO: DIAPAR created
    (DB) INFO: DIAPAR~0 created
    (IMP) INFO: import of DIAPAR completed (8422 rows) #20071121135633
    (DB) INFO: DM02L created
    (DB) INFO: DM02L~0 created
    (IMP) INFO: import of DM02L completed (5255 rows) #20071121135634
    (DB) INFO: DM02S created
    (DB) INFO: DM02S~0 created
    (IMP) INFO: import of DM02S completed (0 rows) #20071121135634
    (DB) INFO: DM02T created
    (DB) INFO: DM02T~0 created
    (IMP) INFO: import of DM02T completed (33187 rows) #20071121135635
    (DB) INFO: DM03S created
    (DB) INFO: DM03S~0 created
    (IMP) INFO: import of DM03S completed (12151 rows) #20071121135636
    (DB) INFO: DM03S~1 created
    (DB) INFO: DM25L created
    (DB) INFO: DM25L~0 created
    (IMP) INFO: import of DM25L completed (2644 rows) #20071121135637
    (DB) INFO: DM25L~A created
    (DB) INFO: DM26L created
    (DB) INFO: DM26L~0 created
    (IMP) INFO: import of DM26L completed (8516 rows) #20071121135637
    (DB) INFO: DM26L~A created
    (DB) INFO: DM40L created
    (DB) INFO: DM40L~0 created
    (IMP) INFO: import of DM40L completed (5032 rows) #20071121135638
    (DB) INFO: DM40L~A created
    (DB) INFO: DM40T created
    (DB) INFO: DM40T~0 created
    (IMP) INFO: import of DM40T completed (31492 rows) #20071121135639

    Hi Henry,
    Regarding your initial problem.
    Only the imports of the non-transparent tables (pool, cluster, report/dynpro sources) fail.
    return code received from nametab is 32
    ==
    no entry for the searched table is found in the nametab (runtime dictionary, consists of tables DDNTT (table description) and DDNTF (field catalogue)).
    Is this a complete new installation or is this a migration (with unicode conversion)?
    If it's an unicode migration of an own R/3 system, I assume that the RADCUCNT-report wasn't executed on the non-unicode source system. RADCUCNT writes the 'unicode version' of the nametab (DDNTT_CONV_UC and DDNTF_CONV_UC). During the import with uc-conversion R3load exchanges DDNTT and DDNTT_CONV_UC resp DDNTF and DDNTF_CONV_UC. So if the RADCUCNT wasn't run on the source system, the conversions can't be done (and later your target system won't run at all).
    Please check if there are entries in your target system's DDNTT (it should have been imported with SAPSDIC).
    See note 932779 Unicode conversion - analysis of nametab problems
           note 837173 RADCUCNT in Unicode Conversion: Collective Note
    and the migration guide.
    Best regards,
    Guenther

  • Having a constant error when downloading latest update for Illustrator CC, error message: Adobe Illustrator CC Latest Updates (December 2014) Installation failed. Error Code: U44M1P7

    Having a constant error when downloading latest update for Illustrator CC, error message:
    Adobe Illustrator CC Latest Updates (December 2014) Installation failed. Error Code: U44M1P7

    U44.. update error http://forums.adobe.com/thread/1289956 may help
    -more U44.. discussion http://forums.adobe.com/thread/1275963
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html
    -http://helpx.adobe.com/creative-suite/kb/error-u44m1i210-installing-updates-ccm.html

  • Error when reading HTTP destination: INTEGRATION_DIRECTORY_HMI

    Hi, PI experts.
    When refreshing XI cache I get following error:
    <b>“Error when reading HTTP destination: INTEGRATION_DIRECTORY_HMI.”</b>
    Status of XI Runtime Cache is
    <b>Unable to refresh cache contents
    Error during last attempt to refresh cache</b>
    When starting cache delta refresh I get an error <b>OBJECTS_OBJREF_NOT_ASSIGNED</b>
    HTTP-destination INTEGRATION_DIRECTORY_HMI works correct (gives an error 500)
    In Cache Connectivity Test - Java IS and Adapter Engine are green and ABAP IS is yellow giving message “Attempt to fetch cache data from Integration Directory not yet started or still in process”
    I also read forum threads:
    sxi_cache
    Error while refreshing the XI runtime cache
    and “How To Handle XPI Caches in SAP NetWeaver 04s” but didn’t find there a solution
    Can anybody give me an advice how to solve this problem

    Hi
    You please check the INTEGRATION_DIRECTORY_HMI in SM59.
    Check the following fields:
    Target host:host name of xi
    Service No:xxxxx(ex:53000)
    Path Prefix:/dir/hmi_cache_refresh_service/ext
    make sure the service no is not Java port.
    Logon credentials:
    User:XIISUSER

  • [svn] 2692: Bug: BLZ-227 - When using JMS Destination, MessageClient and FlexClient not released from memory when the session times out .

    Revision: 2692
    Author: [email protected]
    Date: 2008-07-31 13:05:35 -0700 (Thu, 31 Jul 2008)
    Log Message:
    Bug: BLZ-227 - When using JMS Destination, MessageClient and FlexClient not released from memory when the session times out.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: Fixed a memory leak with JMS adapter. Also a minor tweak to QA build file to not to start the server if the server is already running.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-227
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/services/messaging/adapters/J MSAdapter.java
    blazeds/branches/3.0.x/qa/build.xml

    Revision: 2692
    Author: [email protected]
    Date: 2008-07-31 13:05:35 -0700 (Thu, 31 Jul 2008)
    Log Message:
    Bug: BLZ-227 - When using JMS Destination, MessageClient and FlexClient not released from memory when the session times out.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: Fixed a memory leak with JMS adapter. Also a minor tweak to QA build file to not to start the server if the server is already running.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-227
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/services/messaging/adapters/J MSAdapter.java
    blazeds/branches/3.0.x/qa/build.xml

  • When setting up permissions for application files--URGENT

    Hello All,
    when setting up permissions for application files,
    Is this following permisson appropriate?
    If application files are owned by a single owner,
    that owner should be the oracle user.
    DN

    Here is my question again.
    when setting up permission for application file, which permission is
    appropriate?
    a) If application files are owned by a sigle owner,that owner should be oracle
    user.
    b) Application files should be owned by oracle user
    c) Application files should be owned by single user.

Maybe you are looking for

  • ~~ New XMP CS6 SDK Releases ~~

    Hi, You can now find new versions of our XMP SDKs on Adobe Devnet: http://www.adobe.com/devnet/xmp/ So please check  out the CS6 versions of the SDKs and post your feedback in this forum! The prior versions are still listed. Updates: Updated XMP Spec

  • I now understand frustration - problem signing in to iTunes Store

    Hi there, After many unsuccessful attempts to sign in through Store I decided to sign up through the site - success! But... Now when I try to log in to Store, I get told that "This Apple ID has not been used with iTunes Store... Please review..." - w

  • Cannot Create a new ALSB Configuration Project in Work-Space Studio!?!

    Hi friends, I am using BEA WorkSpace Studio version 1.1 which gets automatically installed with ALSB 3.0 To get started with the ALSB project development, I try creating a new ALSB Configuration Project But I am getting a pop-up that says- {color:#33

  • Why are my iTunes movies subtitled in Spanish?

    I'm not sure if it's an iTunes issue or iPad (the device upon which I watch my movies), but when I watch a movie and there's the occasional subtitle, it's always in Spanish.  I can't figure out how to change this.  Any ideas? Thanks

  • How  to modified automatic batch number with plant and current year details

    hi all,         i want tomodify automatic batch number with plant and current year details. if any one understand plz explain. thanks, radhakrishna.