SLG1 errors during load of DNL_CUST_CNDALL

Hi,
In our system, when loading DNL_CUST_CNDALL, the SLG1 shows the following errors.
1. There are no entries for certain tables(around 30 different tables) and so these tables cannot be deleted.
2. Some Fields of table are not referenced in access CRM PR UTXC.
3. Creating names of generated objects failed
4. Customizing error: Field PRED_HEADER_GUID is not defined in application CRM.
I have checked the Long Texts and the Notes wherever possible. But they were not of a great help. Most of these are /SAPCND/GENERATION errors.
Has anyone faced these kind of problems? Any inputs on how to solve these?
Thanks,
Rashmi.

Hi
I also had a lot of problems when downloading DNL_CUST_DNALL to CRM. Hopefully, this will help anyone else having similar issues.
For PRED_HEADER_GUID issue try note 766711.
In CRM 5.0 some conditions are already created in CRM as a local source, therefore when attempting to download from R/3, it fails. Please follow instructions from note 1003793 to delete the necessary conditions in CRM prior to download.
Cheers
Rhianna

Similar Messages

  • Error during loading of transaction data: An RFC call-up triggered the ...

    Dear Sirs,
    during loading of master data from a 4.6C SAP system to BI 7.0 SP9 I get the following error during processing (data packet).
    <i>"An RFC call-up triggered the exception (ID: RSAR NO: 503) "</i>
    The strange thing with this error is that it emerged today, after successfully loading master data and a subset of transaction data yesterday from same source system.
    Has anyone else come across this error, and can tell us where we should look for a possible solution? (or a better error explaination).
    The RFC connections works fine when testing in SM59, and was functioning yesterday. No relevant dumps in either system.

    Hi folks,
    I am also interested in this error.
    Thanks.

  • Errors during Loading TD from Flat file to PSA

    Hi Guys,
    I got some errors while loading the flat file transaction data into PSA using infopackage.
    Could you guys can help me to solve the below errors. It would be more appreciated if you guys could send some material which tells about these types of errors more detailly.
    Points will be awarded.
    Field /BIC/ZIO_PRIC ( Position 4 ): External length specification will be ignored
    Message no. RSDS101
    Diagnosis
    The value 23 is specified as output length in Field /BIC/ZIO_PRIC ( Position 4 ). It is also specified that the data is shipped in internal format.
    System Response
    The length specification for output length is ignored. If the data in the source actually have the specified lengths, this results in conversion errors.
    Procedure
    Select the external format if required.
    Field /BIC/ZIO_PRIC ( Position 4 ): Amount field in internal format; check settings
    Message no. RSDS099
    Diagnosis
    Setting made for Field /BIC/ZIO_PRIC ( Position 4 ) states that the data from the source is available in the internal format.
    This is not usually the case for this source system type.
    System Response
    If you do not change this setting, the data has to be available in the internal SAP format.
    Example:
    For the Japanese Yen this means: 1000 JPY has to be delivered from the source as 10.00 JPY.
    Procedure
    Check the data format of the source and where necessary, change the setting to External.
    Field /BIC/ZIO_PRIC ( Position 4 ): Missing reference to currency field/unit field
    Message no. RSDS151
    Diagnosis
    If an amount or quantity field is not delivered with values in internal format, an associated currency field or unit field must be specified so that the currency or units can be converted during data import.
    System Response
    The DataSource can not be activated.
    Procedure
    Specify a reference field if the data is delivered in external format.
    Specify a reference field even if the currency or unit is constant. Fields with fixed values are not part of the data source; they are filled by the system when loaded.

    Hi JUergen.
    The order of the fields are same as datasource. I didn't make any field for amount in a flat file as it is defined as fixed currency usd when i created a key figure. i don't think so we have to create a field unless we take 0currency is a unit for price instead of fixed currency.
    Though we got the above error, it still allows activates the datasource but the 10.00 usd shows as 1000 usd.
    Cheers,
    Shrinu

  • Error during loading and deletion of write-optimized DSO

    Hey guys,
    I am using a write optimized DSO ZMYDSO to store data from several sources (two datasources and one DSO).
    I have disabled the check of uniqueness in the DSO, but I defined a semantic key for the fields ZCLIENT, ZGUID, ZSOURCE, ZPOSID which are used in a non-unique index.
    In the given case, I want to delete existing rows in the DSO. I execute these steps in the endroutine. Here the abstract coding:
    LOOP AT RESULT_PACKAGE ASSINING <RESULT_FIELDS>.
    u201Csome other logic [u2026]
    DELETE /BIC/AZMYDSO00
    WHERE /BIC/ZCLIENT = RESULT_FIELDS-/BIC/ZCLIENT
         AND /BIC/ZGUID = RESULT_FIELDS-/BIC/ZGUID
    AND /BIC/ZSOURCE = RESULT_FIELDS-/BIC/ZSOURCE
    AND /BIC/ZPOSID = RESULT_FIELDS-/BIC/ ZPOSID.
    ENDLOOP.
    COMMIT WORK AND WAIT.
    During the Loading (after the transformation step in the updating step), I get the messages (not every time):
    1.     Error while writing the data. (RSAODS131)
    2.     Could not Save DataPackage xy in DataStore ZMYDSO (RSODSO_UPDATE027).
    Diagnosis: DataPackage XY could not be saved. Reasons therefore could be violation of key uniqueness (duplicate data) or general database error.
    3.     Error in the substep of updating DataStore.
    I have checked the system log (SM21) and the system dumps (ST22) but I could not find an exact error description.
    I guess, I am creating some inconsistencies or locks (I also checked the SM12) so that the load process interrupts. But I also tried a serial updating within the DTP (I reduced the number of batch processes to 1). No success.
    Perhaps the loading of one specific package could take a longer time so that the following package would overtake the predecessor. Could that be a problem? Do you generally advise against the deletion of rows within the endroutine?
    Regards,
    Philipp

    Hi,
    is ZMYDSO the name of the DSO?
    And is this the end routine of the transformation while loading the same DSO?
    if so we never do such a thing.
    you are comparing the DSO with the data that is flowing in and then deleting the data from the DSO...
    Which doesnt actually make any sense... because when loading the data to a DSO (or a cube or any table) the DSO (or cube) will be locked exclusively for any modifications of data. You can only read data from it.
    If your requirement is that existing duplicate records need not arrive in the DSO then you can delete the data from the SOURCE_PACKAGE in the start routine like below
    SELECT FIELDS FROM /BIC/AZMYDSO00 INTO INTERNAL_TABLE WHERE <CONDITION>.
    LOOP AT INTERNAL_TABLE.
       DELETE SOURCE_PACKAGE
      WHERE SOURCE_PACKAGE-/BIC/ZCLIENT = INTERNAL_TABLE-/BIC/ZCLIENT
         AND SOURCE_PACKAGE-/BIC/ZGUID = INTERNAL_TABLE-/BIC/ZGUID
      AND SOURCE_PACKAGE-/BIC/ZSOURCE = INTERNAL_TABLE-/BIC/ZSOURCE
      AND SOURCE_PACKAGE-/BIC/ZPOSID = INTERNAL_TABLE-/BIC/ ZPOSID.
    ENDLOOP.
    or if your requirement is that you need to delete the old data from the DSO for the same key which is arriving newly in order to load the new data into the DSO in that case, you could do something like this in the start routine
    SELECT FIELDS FROM /BIC/AZMYDSO00 INTO INTERNAL_TABLE FOR ALL ENTRIES IN SOURCE_PACKAGE
    WHERE /BIC/ZCLIENT = SOURCE_PACKAGE-/BIC/ZCLIENT
         AND /BIC/ZGUID = SOURCE_PACKAGE-/BIC/ZGUID
    AND /BIC/ZSOURCE = SOURCE_PACKAGE-/BIC/ZSOURCE
    AND /BIC/ZPOSID = SOURCE_PACKAGE-/BIC/ ZPOSID.
    * now update the new values you want to write in the loop
    LOOP AT INTERNAL_TABLE INTO WORK_AREA.
    "CODE FOR MANIPULATION of WORK_AREA
    *write a modify statement to update the RESULT_PACKAGE.
    MODIFY RESULT_PACKAGE FROM WORK_AREA TRANSPORTING FIELDS.
    ENDLOOP.
    hope it helps,
    Regards,
    Joe

  • ERROR DURING LOADING DATA FROM PSA TO DSO IN "PRUEFMBKT"

    Respected all
    I am trying to load data through an r/3 field( pruefmbkt, char-40length) to infoobject. the data is coming correctly to psa but when i am loading it in to dso or infocube request is turning red giving following error message--
    Value '010/12.05-112.15/hold on not operate' (hex.
    '3031302F31322E30352D3131322E31352F686F6C64206F6E20') of characteristic
    PRU_LSIL contains invalid characters
    Message no. BRAIN060
    Diagnosis
        Only the following standard characters are valid in characteristic
        values by default:
        !"%&''()*,-./:;<=>?_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ.+
        Furthermore, characteristic values that only consist of the character #
        or that begin with ! are not valid.
        You are trying to load the invalid characteristic value 1. (hexidecimal
        representation 3031302F31322E30352D3131322E31352F686F6C64206F6E20).
    Procedure for System Administration
        Try to change the invalid characters to valid characters.
        If you want values that contain invalid characters to be admitted into
        the system, make the appropriate setting in BW Customizing. Refer to the
        documentation describing the requirements for special characters and the
        possible consequences.
        For more information on the problems involved with valid and invalid
        characters, click here.
    kindly give me the solution how to deal with this problem.
    thanks
    abhay

    HI Abhay,
    please check if the infoobject corresponding to field PRU_LSIL in BW system has lower case checkbox enabled in the infoobject properties, as the  value '010/12.05-112.15/hold on not operate' coming from R/3 has lower case alphabets.
    Hope this helps.
    Regards,
    Umesh.

  • Loadjava / soap.jar / errors during loading into 9.2 dbms

    Hello!
    I followed the description under "
    http://otn.oracle.com/sample_code/tech/java/jsp/loadjars.html"!
    I tried to test a webservice call from java stored procedure in oracle 9.2 dbms, but i get the following error while using loadjava.
    e.g.
    referenced object oracle/dms/http/HttpBasicAuthorizationException could not be resolved, or e.g. OracleSOAPHTTPConnection ...
    Any idea, what i should do instead?
    regards
    Harald.

    This note details the errors I typically get from loading as well as the extra commands I need to run to get a call out to a particular endpoint running (as extra information to the writeup you already have used).
    Can 8i be a Web Service Consumer?
    The other thing to make sure is that you use the soap.jar that ships with Oracle9iAS not the one that ships with the database as the database soap.jar is from a much older version of Apache SOAP than that that ships with 9iAS. I believe the above writeup details this too.
    Mike.

  • Error during Load

    Gurus,
    I am trying to load data from BI content datasource 0HR_PY_1 to cube 0PY_C02. But when the infopackage runs, it throws an error and no records get transferred.
    Error while reading the payroll area information D2 , table T549A     HR_BW_PY99     
    I have made sure the transfer rules are activated and redid the process several times. What am I doing wrong. Please help.

    Hi,
    First make sure that you can get the data in RSA3. This atleast makes sure that data can come from R/3. Is your datasource active? If not, go to RSA6 and do that and then again try.
    Also, check this for information:
    http://help.sap.com/saphelp_nw04/helpdata/en/a5/94e8288eec11d4b2fb00010220c65f/content.htm
    Also, check the table from were the datasource is extracting data.
    http://help.sap.com/saphelp_nw04/helpdata/en/22/7883373c1af326e10000009b38f8cf/content.htm
    Hope this helps.
    PB

  • Error During Load Infocube from ODS

    Hi guys i hae an infocube and an ODS i load data to the ODS directly from SAP and its OK but i have an error when i try to load data from ODS to infocube, i`ve created an update rule from ODS to infocube theres an error in the load request "Load Request is invalid" i try to load to infocube from ODS in many ways Full, Init Delta but i have the same error in all of them.....i need to do something before or i need to change in any way the data targets.....
    I hope somebody could help me with this.......

    HI,
    Activate the data in ur ODS. Then right click on ur ODS n choose "create export datasource". Now right click ur ODS and go to "Manage" and make sure that the QM status is green and the Datamart status is checked with a green mark. Now carry on the load from ODS to infocube.
    Hope this helps...Let me know
    Regards,
    R.Ravi

  • Error During Loading Master Data

    Hi Gurus,
    I'm loading master data from R/3 to BW 3.5 but i'm getting the following error for all the Infosources
    "Request IDoc : Application document not posted"
    Can anyone help me out of this
    Thanking you inadvance
    R.Saravanan

    Hi Saravanan,
                 Check this previous postings on the same issue.
    InfoPackage loading giving IDOC Error: Status 51
    Application document not posted
    Cheers,
    Aravindhan

  • Error during loading of initialization data for 0ic_c03

    Hi
    I am setting up the inventory cube 0IC_C03 for stock reports. I am following the document How to Scenarios for inventory management.
    I have made the necessary preperations in the R/3 side. The setup tables have been populated and the data is visible using rsa3.
    Now in BW i have created infopackages for the 3 data sources 2LIS_03_BX / BF / UM.
    For 2LIS_03_BX the update status is generate initial status
    For 2LIS_03_BF the update status is  initialize delta process
    For 2LIS_03_UM the update status is  initialize delta process
    I am now trying to upload the data for stock initialization by scheduling the 2LIS_03_BX infopackage for an immediate pull. However in the manage are there are no records being transferred (0 of 0 records) and the status of the request is yellow.
    Is there some interim step that i am perhaps missing?
    Regards
    Pranav

    Hi AHP / Aby
    The update was going on for an elongated period of time so I set the QM status to red and have restarted the data pull. This time the data did come to the BW system but still showed an error.
    The details panel shows the following information
    > Overall status : Errors occured or missing messages
    > Requests everything ok (green light)
    >Extraction : Errors occured (yellow light)
    >>25000 records sent (yellow)
    >>22115 records recieved (green)
    >Transfer (Idocs and TRFC) Errors occurred
    >> Data package1 :25000 records arrived in BW (green light)
    >> Data package 2 : arrived in BW. Data records for package 2 in PSA-1 er (red light)
    >Processing (Errors Occured) (red)
    >> Data package1 (25000 records):missing messages (yellow)
    >>>update PSA (25000 records posted) : no errors (green)
    >>>transfer rules (25000 records >25000 records) : no errors (green)
    >>>Update rules (25000 >39027 records): no errors (green)
    >>> Update (0new/0 changed) Warning recieved(red)
    >>>>Data records for package 2 selected in PSA 1 error
    >>>>>>>> record 1965 : value of characteristic 0batch contains invalid number
    >Processing End : Errors occured
    >> Error 4 in the update
    According to my understanding of the situation there is a data error in the record 1965 in the second package. Is it possible / advisable to go an edit this in the PSA? If not then what is the procedure to be adopted. Since this is an initiallization and not a delta update i am not sure whether i should pull this again!
    Thanks in advance and for all the help so far! its really appreciated!
    pranav

  • Invalid character error during load to cube

    I have char length 30 and i trying to populate the cube field zpacreanm with values
    "barrier" in transformation, please help me should i reduce the length of char to 10
    or what should be th solution of error below.
    Error
    Value 'barrier' (hex. '004E0065007700410063007100750069007300690074006900') of characteristic ZPACREANM contains invalid Character     
    Please help me asap to resolve will really appreciate
    Thanks
    Soniya

    Hi,
    U can do in this way also.......
    actually there are no special charectors in ur text, the problem is u r trying to input lower case letters, u either change the lower case letters to upper case or
    select the check box 'lower case letters' in info object change/create screen for the particular/ relevant info object.
    assign points if useful
    Gan

  • Palm desktop 4.1.4 will not run fatal error during load from startbar (Palm Vx)

    Hello
    My problem is the desktop software will not run. According to documentation, it is os 3.5 on hand held and 4.1.4 is right for my computer OS (98). I can hotsync most but not all of the applications (notably: recent memo entries won't) with the Home software button but not the hardware button. I have done a soft reset and just downloaded the palm desktop software and loaded it today.
    Post relates to: Palm Vx

    Oh, sorry I neglected to review your original post regarding the OS.
    Try using the following directions to see if you can "clean" uninstall Palm desktop. They are for XP but most of the instructions should work on 98. Once you uninstall, sync with the conduits set at handheld overwrites desktop.
    You should first make a copy of your data to have just in case something
    happens. You can find your data files by going to C:\Program Files\Palm or
    Palm One. Highlight your Palm Desktop username and right click and copy.
    Then go to your PC desktop, right click on a blank spot and select paste.
    Now you want to uninstall Palm Desktop and remove everything that has to do
    with Palm Desktop from your computer. Like the above folder, delete the Palm folder. Once this is done, you will need to delete some registry keys
    from your PC Operating System registry.
    Word of warning, going here and deleting the wrong thing can cause your PC
    to not start up, crashing and deletion of programs and data. If you feel
    you are unsure of yourself, see if you have a friend that can help you or a
    PC technician that you can pay to help you. This will show them everything
    they need to delete. To retain your current Registry settings, we need to do a backup of the Registry.
    On the PC, go to start and run type "regedit" without quotes
    Highlight MY COMPUTER, go to File --> export. Should pop up with a Save As
    box. Current location is fine should be in My Documents or you can change to a location you will remember. In the file name box, type "Regbackup[todaysdate]" i.e. Regbackup07072008. Next, the hard part.
    The easiest way to make sure your working with the correct key, highlight the key i.e. palm quick install, and press delete on your keyboard. It will ask you, are
    you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician.
    BUT do not turn off your computer.
    The reg keys are as follows (Note: some of theses reg keys will not be here
    but if they are delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\palmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource or anything else that says palm
    Next reboot your computer
    Then reinstall your Palm desktop from the CD and do a hotsync. If it asks
    you for a username and you synced your device before, put in 'test" if you
    did not sync before you create a hotsync name.
    Post relates to: Palm i705

  • Error during J2EE installation on oracle and AIX 5.1

    I am getting the following error during "Load JAVA database Content" Phase. We are running on AIX 5.1 oracle 9.205 and JDK 1.4.2 :-
    Mar 10, 2005 1:16:26 PM com.sap.inst.jload.Jload main
    SEVERE: couldn't connect to DB
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    ERROR      2005-03-10 13:16:26
               CJSlibModule::writeError_impl()
    CJS-20065  Execution of JLoad tool '/usr/java14_64/bin/java '-classpath' './sharedlib/antlr.jar:./sharedlib/exception.jar:./sharedlib/jddi.jar:./sharedlib/jload.jar:./sharedlib/logging.jar:./sharedlib/offlineconfiguration.jar:./sharedlib/opensqlsta.jar:./sharedlib/tc_sec_secstorefs.jar:/oracle/POX/920_64/jdbc/lib/classes12.jar:/sapmnt/POX/global/security/lib/tools/iaik_jce_export.jar:/sapmnt/POX/global/security/lib/tools/iaik_jsse.jar:/sapmnt/POX/global/security/lib/tools/iaik_smime.jar:/sapmnt/POX/global/security/lib/tools/iaik_ssl.jar:/sapmnt/POX/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'POX,jdbc/pool/POX,/sapmnt/POX/global/security/data/SecStore.properties,/sapmnt/POX/global/security/data/SecStore.key' '-dataDir' '/install/sap/v6.4/sap_web_as_java/J2EE_OSINDEP/J2EE-ENG/JDMP' '-job' '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/IMPORT.XML' '-log' '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/jload.log'' aborts with returncode 1. Check '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/jload.log' and '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/jload.java.log' for more information.
    Any help will be great,
    Regards,
    Mike

    Hi Mike
    please make sure that the connection to the database is working(R3trans -d -> trans.log). Additionally check if the Oracle listener is running (lsnrctl status) and the configuration files (listener.ora and tnsnames.ora) contain the correct hostname.
    Hope it helps, I had a similar problem & it was due to the Oracle listener not started up, problem solved after I started the listener & re-run the installation.
    Thanks & Rgds,
    Abhishek

  • Assertion Failed error in Load test.

    hi all
    i am getting the following error during load test when clicking on a button in a row in a table which extends
    ObjectArrayDataProvider.This error around 10 to 20 times for 1500 users load test after around half an hour.
    my ui: table tag contains the following tags nested in it
    <ui:tableRowGroup binding="#{view$ViewCommodityPrices.tableRowGroup1}" id="tableRowGroup1" rows="10"
    sourceData="#{view$ViewCommodityPrices.defaultTableDataProvider}" sourceVar="currentRow">
    <ui:tableColumn binding="#{view$ViewCommodityPrices.tableColumn1}" headerText="Customer Type" id="tableColumn1">
    <ui:staticText binding="#{view$ViewCommodityPrices.cust_type_statictext}" id="cust_type_statictext" text="#{currentRow.value['column1']}"/>
    </ui:tableColumn>
    SRVE0068E: Uncaught exception thrown in one of the service methods of the servlet: Faces Servlet. Exception thrown : javax.servlet.ServletException: Assertion Failed
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:209)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at mgeretail.gateway.SecurityFilter.doFilter(SecurityFilter.java:205)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.cj.gzipflt.GzipFilter.doFilter(GzipFilter.java:47)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:696)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:641)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    ---- Begin backtrace for Nested Throwables
    javax.faces.FacesException: Assertion Failed
         at com.sun.faces.util.Util.doAssert(Util.java:1353)
         at com.sun.faces.util.InstancePool.checkin(InstancePool.java:157)
         at com.sun.faces.el.ValueBindingImpl.checkinExpressionInfo(ValueBindingImpl.java:449)
         at com.sun.faces.el.ValueBindingImpl.getType(ValueBindingImpl.java:375)
         at com.sun.rave.web.ui.util.ConversionUtilities.convertValueToObject(ConversionUtilities.java:103)
         at com.sun.rave.web.ui.util.ConversionUtilities.convertRenderedValue(ConversionUtilities.java:614)
         at com.sun.rave.web.ui.component.HiddenField.getConvertedValue(HiddenField.java:98)
         at javax.faces.component.UIInput.validate(UIInput.java:638)
         at javax.faces.component.UIInput.executeValidate(UIInput.java:849)
         at javax.faces.component.UIInput.processValidators(UIInput.java:412)
         at com.sun.rave.web.ui.component.TableRowGroup.iterateTableColumnChildren(TableRowGroup.java:2069)
         at com.sun.rave.web.ui.component.TableRowGroup.iterate(TableRowGroup.java:1990)
         at com.sun.rave.web.ui.component.TableRowGroup.processValidators(TableRowGroup.java:1720)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIForm.processValidators(UIForm.java:170)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:946)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:373)
         at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:80)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:220)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:91)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at mgeretail.gateway.SecurityFilter.doFilter(SecurityFilter.java:205)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.cj.gzipflt.GzipFilter.doFilter(GzipFilter.java:47)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:696)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:641)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)

    Upgrade to 1.1_02 [1]. The instance pool stuff was removed in that release.
    [1] https://javaserverfaces.dev.java.net/servlets/ProjectDocumentList?folderID=5225&expandFolder=5225&folderID=5222

  • Error occured during load process com.essbase.api.base.EssException: (-1):

    I am trying extract the Measures dimension from Sample application by following John's blog (ODI Series - Loading Essbase Metadata) . Its giving error on extracting metadata from Sample basic.
    ODI Ver 10.1.3.6.3
    Error
    Error occured during load process com.essbase.api.base.EssException: (-1):
    Error log :
    2010-07-17 04:25:30,741 INFO [DwgCmdExecutionThread:null:9]: ODI Hyperion Essbase Adapter Version 9.3.1.1
    2010-07-17 04:25:30,741 INFO [DwgCmdExecutionThread:null:9]: Connecting to Essbase application [Sample] on [M2BTG.BADAKLNG.COM]:[1423] using username [admin].
    2010-07-17 04:25:30,760 INFO [DwgCmdExecutionThread:null:9]: Successfully connected to the Essbase application.
    2010-07-17 04:25:30,760 INFO [DwgCmdExecutionThread:null:9]: Essbase Load IKM option RULES_FILE = prodload
    2010-07-17 04:25:30,762 INFO [DwgCmdExecutionThread:null:9]: Essbase Load IKM option RULE_SEPARATOR = Tab
    2010-07-17 04:25:30,762 INFO [DwgCmdExecutionThread:null:9]: Essbase Load IKM option PRE_LOAD_MAXL_SCRIPT =
    2010-07-17 04:25:30,762 INFO [DwgCmdExecutionThread:null:9]: Essbase Load IKM option POST_LOAD_MAXL_SCRIPT =
    2010-07-17 04:25:30,762 INFO [DwgCmdExecutionThread:null:9]: Essbase Load IKM option ABORT_ON_PRE_MAXL_ERROR = true
    2010-07-17 04:25:30,763 INFO [DwgCmdExecutionThread:null:9]: Essbase Load IKM option RESTRUCTURE_DATABASE = KEEP_ALL_DATA
    2010-07-17 04:25:30,774 INFO [DwgCmdExecutionThread:null:9]: Begining the load process.
    2010-07-17 04:25:30,792 ERROR [DwgCmdExecutionThread:null:9]: Error occured during load process com.essbase.api.base.EssException: (-1): null.
    2010-07-17 04:25:30,792 INFO [DwgCmdExecutionThread:null:9]: Load process completed.
    2010-07-17 04:25:30,792 INFO [DwgCmdExecutionThread:null:9]: Logging out and disconnecting from the essbase application.
    On checking the toplology manager, it gives error as shown below.
    rg.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 23, in ?
    com.hyperion.odi.essbase.ODIEssbaseException: (-1): null
         at com.hyperion.odi.essbase.ODIEssbaseMetaWriter.loadData(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java)
         at org.python.core.PyMethod.__call__(PyMethod.java)
         at org.python.core.PyObject.__call__(PyObject.java)
         at org.python.core.PyInstance.invoke(PyInstance.java)
         at org.python.pycode._pyx9.f$0(<string>:23)
         at org.python.pycode._pyx9.call_function(<string>)
         at org.python.core.PyTableCode.call(PyTableCode.java)
         at org.python.core.PyCode.call(PyCode.java)
         at org.python.core.Py.runCode(Py.java)
         at org.python.core.Py.exec(Py.java)
         at org.python.util.PythonInterpreter.exec(PythonInterpreter.java)
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:144)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.k(e.java)
         at com.sunopsis.dwg.cmd.h.A(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.essbase.api.base.EssException: (-1): null
         at com.essbase.server.framework.EssOrbPluginDirect.ex_olap(Unknown Source)
         at com.essbase.server.framework.EssOrbPluginDirect.essMainBuildDimension(Unknown Source)
         at com.essbase.api.session.EssOrbPlugin._invokeMainMethod(Unknown Source)
         at com.essbase.api.session.EssOrbPlugin._invokeMethod2(Unknown Source)
         at com.essbase.api.session.EssOrbPlugin._invokeMethod(Unknown Source)
         at com.essbase.server.framework.EssOrbPluginDirect._invokeProtected(Unknown Source)
         at com.essbase.api.session.EssOrbPluginEmbedded.invokeMethod(Unknown Source)
         at com.essbase.api.session.EssOrbPluginEmbedded.invokeMethod(Unknown Source)
         at com.essbase.api.session.EssOrbPlugin.essMainBuildDimension(Unknown Source)
         at com.essbase.api.datasource.EssCube.buildDimension(Unknown Source)
         at com.hyperion.odi.essbase.wrapper.EssbaseApplication.buildDimension(Unknown Source)
         ... 32 more
    com.hyperion.odi.essbase.ODIEssbaseException: com.hyperion.odi.essbase.ODIEssbaseException: (-1): null
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.k(e.java)
         at com.sunopsis.dwg.cmd.h.A(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Please Help me
    Rgds
    Uka FP

    You won't get much response with an error like that, what I can suggest is have a look at one of the blogs I wrote going through loading metadata :- http://john-goodwin.blogspot.com/2008/11/odi-series-loading-essbase-metadata.html
    Try building some test metadata loads against the sample.basic application to get a feel for how to do it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Apple DVI to Video Adapter - Apple Store $19

    Find this item, http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wo/StoreReentry. wo?productLearnMore=M9267G/A Can I use this to obtain 1080i on a JVC 60" HDTV? I have nVidia 7800 card here.

  • Reg: to add the fileds from R3 to BW

    Hi all I need to add the below fields from R3 to BW side in exisitng report. AFUC- AZ30 + LTXA1 = Operation Short Text AUFK = Sales Order & Line If any one has any idea , how to get these in to my bw report from R3...plz let me know... thanks

  • Transfer Numbers files from your MAC to Ipad

    When I try to transfer/read files made in Numbers on my Mac Pro, they cannot be read in Numbers on the Ipad. What good is that? That is the only reason I paid for the app on Ipad! Anyone with this problem??

  • Exporting an iPhoto slideshow

    I have about 500 images that I want to put into a slideshow.  However, an MUST-HAVE is that the show randomizes or shuffles the photos. It would appear that the only way to turn on shuffle is when viewing the photos in an album.. the option does not

  • Sorting a HashTable

    I am trying to sort a HashTable accoring to values . But i am getting compilation errors on String hasKey =(String) entries.getKey(); String siteDesc =(String)entries.getValue(); The Error is cananot resolve symbol getKey and getValue. The follwing i