Error reading SAP_XIAdapterFramework from SLD

Hi,
I am working with JDBC to RFC scenario. Where i am getting the following error in sxmb_moni -
error reading SAP_XIAdapterFramework from SLD
The problem is i couldn't post any data to RFC from XI.
Please help.
Thanks in advance!!
Sudheer

I have tried the things mentioned by you but still i couldn't solve the problem.
When i try sending the data, moni shows it is successful but the data is not available in R/3.
Now it is not showing the error - error reading SAP_XIAdapterFramework from SLD
But still the data is not passing into the receiver system.

Similar Messages

  • Export with Table Splitting : ORA-01115: IO error reading block from file

    Hello,
    We are in perfroming the last dryrun of our CU&UC conversion.
    The are now in the process of exporting the ECC6 system (Oracle 10.2.0.4.0, HPUX ia64) using sapinst features, "table splitting preparation"
    When doing so, we are facing critical errors :
    Creating file /export_uni/sapinst_splitting/ora_query3_tmp3_1.sql.
    ERROR 2010-08-11 10:27:28.881
    CJS-00084  SQL statement or script failed. DIAGNOSIS: Error message: ORA-12801: error signaled in parallel query server P002
    ORA-01115: IO error reading block from file 90 (block # 16640)
    ORA-27072: File I/O error
    HPUX-ia64 Error: 22: Invalid argument
    Additional information: 4
    Additional information: 16640
    Additional information: -1
    ORA-01115: IO error reading block from file 90 (block # 16640)
    ORA-27072: File I/O error
    HPUX-ia64 Error: 22: Invalid argument
    ORA-06512: at "SAPR3.TABLE_SPLITTER", line 775
    ORA-06512: at line 1
    I have therefore perfmed a dbverify ; no corruption has been recorded.
    When trying to perfrom the EXPORT, without table splitting ; it works fine ...but the processing time is extremely long, as you can imagine. Any help would be highly appreciated.Regards.
    Raoul

    Thank you Stefan,
    Our HPUX Release seems to be indeed 11v3,
    [root@:/root]# uname -a
    HP-UX B.11.31 U ia64 2566039091 unlimited-user license
    I'll check the installation of the  patch and keep you informed
    Thank you
    Raoul
    Edited by: Raoul Shiro on Aug 11, 2010 11:57 AM

  • Error reading data from static cursor cache.

    Hi,
    Does anyone know what causes this error below. It just started happening out of the blue. I'm running Apache Tomcat 4.1 on Win 2000 server with MS SQL Server 2000 database.
    Error:
    java.sql.SQLException: [Microsoft][SQLServer JDBC Driver]Error reading data from static cursor cache.
    Thanks,
    TR

    hi,
    i had a similar sort of error, something along the lines of "error setting up static cursor cache" using the SQL JDBC drivers on Win2K. i deleted the file entries in the TEMP folder of c:\documents and settings\<user>\Local Settings\TEMP and everything was cool after it. i'm not sure what the exact issue is (probably something like maximum folder size had been reached). i ran the FileMon utility from www.sysinternals.com and it reported a DISK_FULL error on a temporary file being read by the process. to cut a long story short, everything is NOW cool.
    cheer,
    dara

  • HTTP-500 Error Reading Data from Client!!

    I'm trying to create a page where by clients are able to contact us through the portal. So, it's a pretty basic form where I have a text box for the subject, and a text area for the message body.
    My problem is when the message body is over a certain size, I'm getting a "portlet cannot be contacted" on my screen. The Apache log comes up with the error:
    [error] mod_plsql: /pls/portal/!PORTAL.wwpob_page.show HTTP-500 Error Reading Data from Client!!
    I'm not using a windows OS, so the bug that has been talked about previously talked about shouldn't be the problem.
    Also, I am using a POST rather than a GET, so I don't think it has to do with the browser (and I have tested this on Firefox and IE 5.5 and IE 6).
    Would appreciate any advise.
    Thanks, Nicky

    Are you using SSL? Maybe, it has to do with it. I encountered a similar problem. It turned up that this read error occurred inside Apache and was caused by a nonstandard-SSL-request by Internet Explorer. te remedy was to add this to the Apache configuration:
    SetEnvIf     User-Agent     ".*MSIE.*"     \
    nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
    It tells Apache to switch to HTTP/1.0 and to never keep open socket connections with MSIE on SSL connections.
    Lycka till!

  • Error reading data from the MS Dos Console.

    Hi,
    We have a legacy application which is launched via a 3rd-party Telnet Server - the app acts as a remote shell for an RF device. The system has been functioning for many years but now we have migrated to Server 2012 the system no longer launches.
    The RF device successfully connects to the telnet server, logs-in with embedded credentails but drops the connection when the shell application is launched.
    The server has the following Application error
    Error reading data from the MS Dos Console.
    The pipe has been ended. 109 (0x6d)
    The application can successfully be launched locally outside of the shell on the server. The error is reproducable across RF devices and desktop telnet connections.
    The firewalls are off.
    Are there some additional protections in Server 2012 which would cause the pipe-based link to be stopped when launching the exe? Am I missing something? The 3rd-party telnet server is certified for Server 2012.
    Thnak you

    I'd ask in the
    Windows Server General Forum, or ask the third party vendor.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer
    My Blog: http://unlockpowershell.wordpress.com
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ("6B61726C6D69747363686B65406D742E6E6574"-split"(?<=\G.{2})",19|%{[char][int]"0x$_"})

  • Error reading data from CLOB column into VARCHAR2 variable

    Hi all,
    Am hitting an issue retrieving data > 8K (minus 1) stored in a CLOB column into a VARCHAR2 variable in PL/SQL...
    The "problem to be solved" here is storing DDL, in this case a "CREATE VIEW" statement, that is longer than 8K for later retrieval (and execution) using dynamic SQL. Given that the EXECUTE IMMEDIATE statement can take a VARCHAR2 variable (up to 32K(-1)), this should suffice for our needs, however, it seems that somewhere in the process of converting this VARCHAR2 text to a CLOB for storage, and then retrieving the CLOB and attempting to put it back into a VARCHAR2 variable, it is throwing a standard ORA-06502 exception ("PL/SQL: numeric or value error"). Consider the following code:
    set serveroutput on
    drop table test1;
    create table test1(col1 CLOB);
    declare
    cursor c1 is select col1 from test1;
    myvar VARCHAR2(32000);
    begin
    myvar := '';
    for i in 1..8192 loop
    myvar := myvar || 'a';
    end loop;
    INSERT INTO test1 (col1) VALUES (myvar);
    for arec in c1 loop
    begin
    myvar := arec.col1;
    dbms_output.put_line('Read data of length ' || length(myvar));
    exception when others then
    dbms_output.put_line('Error reading data: ' || sqlerrm);
    end;
    end loop;
    end;
    If you change the loop upper bound to 8191, all works fine. I'm guessing this might have something to do with the database character set -- we've recently converted our databases over to UTF-8, for Internationalizion support, and that seems to have changed underlying assumptions regarding character processing...?
    As far as the dynamic SQL issue goes, we can probably use the DBMS_SQL interface instead, with it's EXECUTE procedure that takes a PL/SQL array of varchar2(32K) - the only issue there is reading the data from the CLOB column, and then breaking that data into an array but that doesn't seem insurmountable. But this same basic issue (when a 9K text block, let's say, turns into a >32K block after being CLOBberred) seems to comes up in other text-processing situations also, so any ideas for how to resolve would be much appreciated.
    Thanks for any tips/hints/ideas...
    Jim

    For those curious about this, here's the word from Oracle support (courtesy of Metalinks):
    RESEARCH
    ========
    Test the issue for different DB version and different characterset.
    --Testing the following PL/SQL blocks by using direct assignment method(myvar := arec.col1;) on
    different database version and different characterset.
    SQL>create table test1(col1 CLOB);
    --Inserting four CLOB data into test1.
    declare
    myvar VARCHAR2(32767);
    begin
    myvar := RPAD('a',4000);
    INSERT INTO test1 (col1) VALUES (myvar);
    myvar := RPAD('a',8191);
    INSERT INTO test1 (col1) VALUES (myvar);
    myvar := RPAD('b',8192);
    INSERT INTO test1 (col1) VALUES (myvar);
    myvar := RPAD('c',32767);
    INSERT INTO test1 (col1) VALUES (myvar);
    commit;
    end;
    --Testing the direct assignment method.
    declare
    cursor c1 is select col1, length(col1) len1 from test1;
    myvar VARCHAR2(32767);
    begin
    for arec in c1 loop
    myvar := arec.col1;
    --DBMS_LOB.READ(arec.col1, arec.len1, 1, myvar);
    dbms_output.put_line('Read data of length: ' || length(myvar));
    end loop;
    end;
    The following are the summary of the test results:
    ===================================
    1. If the database characterset is WE8ISO8859P1, then the above direct assignment
    method(myvar := arec.col1;) works for database version 9i/10g/11g without any
    errors.
    2. If the database characterset is UTF8 or AL32UTF8, then the above direct assignment method(myvar := arec.col1;) will generate the "ORA-06502:
    PL/SQL: numeric or value error" when the length of the CLOB data is greater
    than 8191(=8K-1). The same error can be reproduced across all database versions
    9i/10g/11g.
    3. Using DBMS_LOB.READ(arec.col1, arec.len1, 1, myvar) method to read CLOB data into a VARCHAR2 variable works for both WE8ISO8859P1 and UTF8
    characterset and for all database versions.
    So - it seems as I'd surmised, UTF8 changes the way VARCHAR2 and CLOB data is handled. Not too surprising, I suppose - may you all be lucky enough to be able to stay away from this sort of issue. But - the DBMS_LOB.READ workaround is certainly sufficient for the text processing situations we find ourselves in currently.
    Cheers,
    Jim C.

  • Error reading data from Infocube using shell script.

    Dear all ,
    I am facing a problem while reading data from an infocube using a shell script.
    The details are as follows.
    One of the shell script reads the data from the infocube to extract files with the values.
    The tables used for extraction by the shell script are :
    from   SAPR3."/BIC/F&PAR_CUBE.COPA"     FCOPA,
           SAPR3."/BIC/D&PAR_CUBE.COPAU"    COPAU,
           SAPR3."/BIC/D&PAR_CUBE.COPAP"    COPAP,
           SAPR3."/BIC/D&PAR_CUBE.COPA1"    CCPROD,
           SAPR3."/BIC/D&PAR_CUBE.COPA2"    CCCUST,
           SAPR3."/BIC/D&PAR_CUBE.COPA3"    COPA3,
           SAPR3."/BIC/D&PAR_CUBE.COPA4"    COPA4,
           SAPR3."/BIC/D&PAR_CUBE.COPA5"    COPA5,
           SAPR3."/BIC/MCCPROD"      MCCPROD,
           SAPR3."/BIC/SCCPROD"      SCCPROD,
           SAPR3."/BIC/MCCCUSTOM"    MCCCUSTOM,
           SAPR3."/BIC/SCCCUSTOM"    SCCCUSTOM,
           SAPR3."/BIC/SORGUNIT"     SORGUNIT,
           SAPR3."/BIC/SUNIMOYEAR"   SUNIMOYEAR,
    /*     SAPR3."/BI0/SFISCPER"     SFISCPER, */
           SAPR3."/BI0/SREQUID"      SREQUID,
           SAPR3."/BI0/SCURRENCY"    SCURRENCY,
           SAPR3."/BIC/SSCENARIO"    SSCENARIO,
           SAPR3."/BIC/SSOURCE"      SSOURCE
    The problem is that the file generation by this script (after reading the data from teh infocube) is taking an unexpected time of 2 hours which needs to be maximum 10 mins only.
    I used RSRV to get the info about these tables for the infocube:
    Entry '00046174', SID = 37 in SID table is missing in master data table /BIC/MCUSLEVEL2
    Entry '00081450', SID = 38 in SID table is missing in master data table /BIC/MCUSLEVEL2
    and so on for SID = 39  and SID = 35 .
    Checking of SID table /BIC/SCUSLEVEL2 produced errors
    Checking of SID table /BIC/SCUSLEVEL3 produced errors
    Can you please let me know if this can be a reason of delay in file generation (or reading of data from the infocube).
    Also , Please let me know how to proceed with this issue.
    Kindly let me know for more information, if required.
    Thanks in advance for your help.
    -Shalabh

    Hi ,
    In continuation with searching the solution to the problem , I could manage to note a difference in the partition of the Fact table of the infocube.
    Using SE14 -> Storage Parameters, I could find the partition done for the fact table as :
    PARTITION BY: RANGE
    COLUMN_LIST: KEY_ABACOPA
    and subsequently there are partitions with data in it.
    I need to understand the details of these partitions .
    Do they correspond to each requests in the infocube(which may not be possible as there are 13 requests in infocube and much more partitions).
    Most importantly, since this partition is observed for this onfocube only and not for other infocubes, it is possible that it can be a reason for SLOW RETRIEVAL of data from this ionfocube( not sure since the partition is used to help in fast retreival of data from the infocubes).
    Kindly help.
    Thanks for your co-operation in advance.
    -Shalabh

  • WSDLException: faultCode=INVALID_WSDL: Error reading import from oramds

    Hi,
    We are currently facing a strange problem. We have two composites that needs to be deployed on to the 11g SOA server.
    composite A and composite B. A is a dependent composite of composite B and we are referring the WSDL of composite B in composite A using oramds.
    Our oramds is pointing to DB based metadata repository and for the deployment time there is no issue encountered. Also during the deployment time we follow the order like deploy B and then deploy A. But when we need to restart our SOA Server , after restarting we see that though composite B is up and running state but composite A goes in pending state. Not able to diagnose the issue. Please note that the after the sucessful deployment both the composites are coming as up and running state. Below is the error we encountered in SOA diagnostic log .
    ####<Aug 31, 2010 1:00:09 PM EST> <Notice> <WebLogicServer> <serverhost> <WLS_SOA1> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1283223609404> <BEA-000332> <Started WebLogic Managed Server "WLS_SOA1" for domain "soadev1_domain" running in Development Mode>
    ####<Aug 31, 2010 1:00:13 PM EST> <Notice> <WebLogicServer> <serverhost> <WLS_SOA1> <main> <<WLS Kernel>> <> <> <1283223613150> <BEA-000365> <Server state changed to RUNNING>
    ####<Aug 31, 2010 1:00:13 PM EST> <Notice> <WebLogicServer> <serverhost> <WLS_SOA1> <main> <<WLS Kernel>> <> <> <1283223613152> <BEA-000360> <Server started in RUNNING mode>
    ####<Aug 31, 2010 1:00:33 PM EST> <Error> <oracle.integration.platform> <serverhost> <WLS_SOA1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@2d6d72f7> <<anonymous>> <> <> <1283223633787> <SOA-20020> <Deployment of composite "CreateDisbursedPaymentJDEGlobalReqABCSImplV1" failed: [JCABinding] [CreateDisbursedPaymentJDEGlobalReqABCSImplV1.WriteBOFAFileDetails/1.0]Unable to complete load due to: javax.wsdl.WSDLException: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503: javax.wsdl.WSDLException: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503.>
    ####<Aug 31, 2010 1:01:23 PM EST> <Error> <oracle.integration.platform> <serverhost> <WLS_SOA1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@2d6d72f7> <<anonymous>> <> <> <1283223683770> <SOA-20020> <Deployment of composite "UpdateDisbursedPaymentWBCReqABCSImplV1" failed: [JCABinding] [UpdateDisbursedPaymentWBCReqABCSImplV1.Delete_CO_DELETE_WSTP_DATA/1.0]Unable to complete load due to: javax.wsdl.WSDLException: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503: javax.wsdl.WSDLException: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503: WSDLException: faultCode=INVALID_WSDL: Error reading import of oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl: oracle.j2ee.ws.wsdl.LocalizedWSDLException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://serverhost:port/soa-infra/services/default/DisbursedPaymentEBSV1/DisbursedPaymentsEBSV1_ep?WSDL: HTTP connection error code is 503.>
    Appreciate a response.
    Thanks
    Soumya

    Thanks both of you for your response.
    @user13268867: Yes. I am using Stored Procedure.But The same thing is used in Provider as well. But EBS is not going in pending state.
    There is no migration as you mentioned. It is pure development from scratch on AIA 11gR1.
    @Pavan :
    Please find the dependency in the composite.
    In the Requestor:
    <reference name="DisbursedPaymentEBSV1"
    ui:wsdlLocation="oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/EnterpriseServices/Core/DisbursedPayment/V1#wsdl.interface(DisbursedPaymentEBS)"/>
    <binding.ws port="http://xmlns.oracle.com/EnterpriseServices/Core/DisbursedPayment/V1#wsdl.endpoint(DisbursedPaymentEBSV1_ep/DisbursedPaymentEBS_pt)"
    location="oramds:/apps/AIAMetaData/Banking/wsdl/DisbursedPaymentEBSV1.wsdl"/>
    </reference>
    In the EBS:
    <reference name="DisbursedPaymentBOFAProvABCSImplV1Service"
    ui:wsdlLocation="http://host:port/soa-infra/services/default/DisbursedPaymentBOFAProvABCSImplV1/DisbursedPaymentBOFAProvABCSImplV1.wsdl">
    <interface.wsdl interface="http://xmlns.fostersgroup.com/intg/COBankOfAmerica/DisbursedPaymentBOFAProvABCSImplV1#wsdl.interface(DisbursedPaymentBOFAProvABCSImplV1)"/>
    <binding.ws port="http://xmlns.fostersgroup.com/intg/COBankOfAmerica/DisbursedPaymentBOFAProvABCSImplV1#wsdl.endpoint(DisbursedPaymentBOFAProvABCSImplV1Service/DisbursedPaymentBOFAProvABCSImplV1_pt)"
    location="http://host:port/soa-infra/services/default/DisbursedPaymentBOFAProvABCSImplV1/DisbursedPaymentBOFAProvABCSImplV1Service?WSDL"/>
    </reference>
    When the EBS is up after restarting the server but Requestor is not.
    Please note that in the EBS composite I have referred the Provider WSDL directly using Server URL where as in the Requestor i have provided the Oramds path reference of the EBS runtime WSDL.
    Thanks
    Soumyajit

  • Error reading data from an infocube

    Hello,
    I want to read data from a remote infocube in tcode listcube, and I get this 2 error messages: "Error reading the data of InfoProvider IC_SNP_DR" and "Error when generating program". This is a remote cube reading data from a SNP Planning Area.
    I´ve already activated Plng Object Strucuture 9ASNPBAS and repair all infoobject but in tcode /SAPAPO/MSDP_ADMIN in 9ASNPBAS I get message "Not All InfoObjects Can Be Read". Is this why I get the error in reading the infocube?
    Does anyone know why I get this errors and how to solve them?
    Thanks and Regards,
    Teresa Lopes

    Teresa
      From   /SAPAPO/MSDP_ADMIN go to extras/data extraction tools.  This gives you all the things you need to manage the extractors on the snp planning areas.  you can use RSA3 to test the extractor and pull data to a list.  Are you sure you want to extract using the total POS  (9SNPBAS).  Based on the data you need you might want to extract based on one of the standard SNP aggregates.  MALO  (material location) for example.
    You mention that the POS was active.  Make sure you Planning area is also initialized
    George

  • Error reading data from infocube using RSDRI_INFOPROV_READ

    hi,
    I am trying to write a Function module to read data from an Infocube.
    This is a remote enabled Function module and is working fine if I make a few minor changes and customize it to read data from a  case of a DSO.
    However, for cube, code is showing no syntax errors, but on execution is not returning any data also.
    I have tried defining E_T_data as E/F/V tables of the cube, but still not getting any output.
    Probably this is related to structure of E_T_data only. . . .
    Can anyone please guide me on this.
    regards
    Parikshit.

    Hello,
    E_T_DATA needs to defined as an internal table with all the fields you need as an O/P from the infocube you are trying to fetch data from. Just make sure, you keep the name of the fields same as Name of the infoobjects in the Cube. So just define e_t_data Standard internal table with all fields you want to fetch from Infocube (name of fields same as infoobject name).
    Also fill in the g_th_sfc, g_th_sfk internal tables with the list of characteristics and Keyfigues you wanna o/p with chanm/kyfnm field populated with exact name of infoobject and chaalias/kyfalias same as defined in g_t_data (good to keep both same).
    Thanks
    Edited by: Sandesh Shetty on Jul 29, 2008 2:26 PM

  • Server return code 0x80020004 : Error reading fileu201D from ABAP MDM API

    Hello,
    I am trying use ABAP APIs to create records in a qulifier table in SRM MDM catalog . The tabel i am trying to update is Contract price. it has 4 non qualifier fields and 5 qualifier fields. I am using below code to create it.
    CALL METHOD lr_api->mo_core_service->create_simple
              EXPORTING
                iv_object_type_code = 'MDMSRM_CONTRACT_PRICE'
                is_ddic_structure   = ls_retrive
              IMPORTING
                ev_new_internal_id  = lv_key.
    But it retuns an exception cx_mdm_server_rc_code : Server return code 0x80020004 : Error reading file . My ID has admin auth in MDM data manger and able to create recrds direclty in data manager. But API retuns an error.
    Requst you to help me ith this . Please advice if i have posted it in wrong section.
    Thanks,
    DIvya.

    done. This API is working from MDM7 version, not available in MDM5

  • Error reading data from Info Provider

    Hi Folks,
    I am executing a report and am getting the following error message:
    Error reading data of Info Provider.
    System Error: Whole Number Overflow on Multiplication.
    The infoprovider being read is a Virtual Info provider Based on DTP/3.x InfoSource.
    Let me know what could be the potential problem here ? How would I fix such issues.
    Regards
    Arjun

    Hello,
    There is some problem in data. Check if in transformation u have any formulas or routines.
    regards,
    Shashank

  • ITunes Producer: Error reading password from keychain ?

    I'm using iTunes Producer 2.9 on Mac OS X 10.8.5
    When I try to log in using my Apple ID (enabled for iBookStore) I get an error regarding keychain access.
    Can you please point me to the right direction?

    You can also use $(...)
    bob_pw=$(cat /home/oracle/scripts/bob.pw)However, it may not be the best idea to supply the password with the executable since everyone will be able to see the password when doing a process listing with ps command. But you can use the following.
    pwd=hr
    sqlplus -s /nolog <<-EOF
    connect hr/$pwd;
    show user;
    EOF

  • XI Error:  Unable to read from SLD

    I have created product, software components, Technical system and business system in SLD. I am trying to import into design (Integration Repository) for further steps but it gives an error saying unable to read from SLD. I am using SAP XI 7.0
    How do i rectify this error to import them into I.R ?

    Sridhar,
    Please read the below thread and try to check all the replies in the thread .It will be very much useful.
    Unable to read software component versions from SLD
    Best regards,
    raj.

  • Error while trying to import Software components from SLD.

    Hi Gurus,
    Need Help.
    When we are trying to import Software components from SLD we are getting following error. Could not read list of software component versions from SLD. In Description  i am getting following two points.
    1. Could not read list of software component versions from SLD (COULD_NOT_READ_SWCV)
    2. User credentials are invalid or user is denied access
    We have tried following
    1. LCRSAPRFC and SAPSLDAPI are working fine.
    2  SLDAPICUST is ok
    3. In nwa connections are available for LCRSAPRFC and SAPSLDAPI.
    Request you to let us know how to resolve this issue.
    Thanks in advance.

    Hello ,
    Can you check below roles assigned to the user id?
    SAP_SLD_CONFIGURATOR
    SAP_SLD_DEVELOPER
    SAP_SLD_ORGANIZER
    Thanks

Maybe you are looking for

  • How can I add a new field for Belgium in T588M?

    Hi experts, I am trying to change the infotype 0002 screen for BElgium. This is how I am doing T588M > new entry > MP000200 > alt. screen 2012 > var. key 12 >  feature p0002 >. I also maintained 12 as the var. key for the countr yBE in P0002 feature.

  • Context Index and performance

    Hi, I want to create a context index on one column which contains large text. And the table contains millions of records and daily inserts happen into the same table. My question is 1.Do we need to run any procedures after inserting the records daily

  • Using openDoc in internet explorer

    Hi all, I have a pdf file with links to other documents using JavaScript, openDoc. This works perfect in Acrobat reader and Acrobat pro. Now some user wants to open the pdf in Internet Explorer with the pdf plugin. This works to some extent, other Ja

  • How to pen .boxchart file (which gives Firefox as default browser)

    A friend has sent ma a .boxchart file, which I have downloaded. It gives Firefox as its default browser but only gibberish is displayed.

  • Problems publishing to a non-mobile me URL/host - HELP!!

    Hi, I'm using iweb 08 and having major problems posting my site to my hosting service. I'm using BlueHost with a godaddy URL and the problems are not on their end. I'm using Easy iWeb publisher 5.0.1 to upload it and gives me could not upload errors