Error in Service API while loading BI7.0 datasource objects

These are very simple HR master data text datasouce objects like 0EC_FREQU_TEXT and some custom datasources like ZAAPCAT_TEXT. We were able to load succesffully in DEV and Q. When trying to laod them in production using Process Chain, they failed with the following error message:
Error message from the source system
Diagnosis
An error occurred in the source system.
System Response
Caller 09 contains an error message.
Further analysis:
The error occurred in Service API .
Refer to the error message.
Procedure
How you remove the error depends on the error message.
Note
If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
I tested the datasources in RSA3 and they give data. I also tiied manual loading, but was giving the same error message.
Can anybody give some pointers. I need this help by tomorrow morning.
Any help would be appreciated.
Regards
Raj

Re-triggering the load should work.
Take a look at these links/threads...
http://help.sap.com/saphelp_nw2004s/helpdata/en/44/bce6c181f456a1e10000000a1553f6/content.htm
service API  in bi 7.0
Re: ALE

Similar Messages

  • Error on KEB0 execution ? = Program error: BI service API(component BC-BW)

    Error on KEB0 execution ?
    Iu2019m trying to create a data source on KEB0, but when I try to create, the system give this error:
    u201CProgram error: BI service API (component BC-BW) terminated: MAPI
    Message no. R8401u201D
    Some one knows this message ?
    Thanks !

    Marcus, have you checked following Note?
    504847 - Termination when creating a CO-PA DataSource

  • "Error in data selection" while loading

    hi,
    while loading data from one ODS to another(datamart) I, after extraction of some data packages successfully I m getting an error:"Error in data selection"
    i saw its help messages were
    1)error 7 when sending an idoc
    2)sql error in accessing table no 13
    3)error in source system
    in the source ods i have loaded thru init from R/3..
    please help

    Hi,
    Take a look on the cosulting note : 610938.
    In place of R/3 system you have to consider BW itself when you are reading the note.
    With rgds,
    Anil Kumar Sharma .P

  • Uknown Error in update rules while loading into InfoCube

    I load data from BC 0FIAR_O03 ODS into BC 0FIAR_C03 ICube.
    While loading I got error on second data package (1st package loading ok)
    The error message in monitor informs about error in update rules.
    I got nothing special than I looked into Application Logs (tcode SM21). It tells about message 560 with addition "no documentation exists for message 00560"...
    I can't get what's wrong. The update rules for ICube is BC without any modifications and data loaded succefully into ODS.... Any ideas?? Where I can find more inforamtion about error occured during update??

    update rule terminated if data load contains more than 1 data package. don't know why. I solved problem by spliting load process by Fiscal Year ranges

  • Error in ALPHA conversion while loading hierarchies

    Hi,
    I got the following error while loading hierarchies:
    <i>Error in ALPHA conversion in NodeId00000088 for InfoObject 0PROFIT_CTR
    Message no. RH224
    Diagnosis
    The technical node name  for node id 00000088 is not consistent for conversion exit ALPHA, which is stored with InfoObject 0PROFIT_CTR.
    Possible reasons for the error:
    The original consistent value returned by the DataSource was changed by a conversion routine to a non-consistent conversion exit value.
    The DataSource returns a value that is not consistent in the conversion exit.
    System response
    Loading the hierarchy was terminated.
    Procedure
    Check whether the correct conversion exit was entered for the InfoObject. If necessary, change the conversion exit, conversion routine or the data to be extracted.
    A further option is to activate automatic conversion in the transfer rules. Here, the system executes the conversion exit, making sure that the data is in the correct format.</i>
    If it is not hierarchies, we fix this error by prefixing the zeros (as we are working on Qbox we wont change the transfer rules to select the conversion routine) but here there is no PSA, the data is coming from ALE. Based on this please suggest me to how to fix this error?
    Points will be given for any helpful suggestion

    Ganesh,
    Can you please check out the Alpha Conversion Routine and also nodeid for that infoobject..
    There might be some inconsistencies in the code..
    Hope it helps
    Gattu

  • Error while loading data from DataSource to InfoCube/DSO through DTP

    Hi Friends,
    I am trying to load data from DataSource to InfoCube/DSO through DTP and getting the following error:
    Exception in substep: Extraction completed
    Processing terminated
    Data package 1 / 30.04.2009 22:38:30 / Status 'Processed with Errors'
    When i see the detail message it says:
    Syntax error in routine "convert_to_applstru", line 25 of generated program"
    I checked all my transformation and looks ok. I was able to load data earlier and i getting this error all of sudden. Does some one know what is this routine "convert_to_applstru" ?
    Thanks,
    Amit

    Hi Arun,
    Where do i see this generated program in RSRV. I dont see this in RSRV. Please guide me.
    Thanks,
    Amit

  • Invalid Number Error for Decimal Field While Loading Data

    I am loading a delimited text file using the SQL* loader however I am reciving an error in my decimal fields. When a decimal field only has leading zeros before the decimal point I receive invalid number error. Below will clarify:
    i.e.) 00000000.30 [*Invalid number*]
    i.e.) 00046567.45 [*Valid number*]
    i.e.) 00000001.00 [*Valid number*]
    I've tried setting the precision/scale in the table, tried declaring it a decimal field instead of number, none of these methods fixed the issue. Any help I would really appreciate.
      POLICY_NUMBER             NUMBER,
      EFFECTIVE_DATE     DATE "YYYYMMDD"          NULLIF EFFECTIVE_DATE = '',
      TRANSACTION_DATE     DATE "YYYYMMDD",
      TRANSACTION_AMOUNT     DECIMAL EXTERNAL,   -- Tried TRANSACTION_AMOUNT DECIMAL EXTERNAL (10)  & TRANSACTION_AMOUNT NUMBER
      MF_TRX_CODE          NUMBER,
      USER_ID          CHAR,
      GROUP_NUMBER          NUMBER,
      EXPIRATION_DATE     DATE "YYYYMMDD"          NULLIF EXPIRATION_DATE = '',
      BILL_NUMBER          NUMBER,Any help is greatly appreciated. Thanks before hand.

    Hi,
    Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
    Connected as hr
    SQL> SELECT * FROM TEST;
    TRANSACTION_AMOUNT
    SQL> SELECT * FROM TEST;
    TRANSACTION_AMOUNT
              11000,00
                293,37
               2000,00
               1134,32
                  0,30
    SQL>Between the selects I loaded the table with sql*loader using...
    Load Data
    INFILE *
    APPEND
    INTO TABLE TEST
    FIELDS TERMINATED BY '|'
    TRAILING NULLCOLS
      TRANSACTION_AMOUNT     DECIMAL EXTERNAL
    BEGINDATA
    00011000.00
    00000293.37
    00002000.00
    00001134.32
    00000000.30The log is
    SQL*Loader: Release 10.2.0.1.0 - Production on Tue Dec 23 17:23:47 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Control File:   test.ctl
    Data File:      test.ctl
      Bad File:     test.bad
      Discard File:  none specified
    (Allow all discards)
    Number to load: ALL
    Number to skip: 0
    Errors allowed: 50
    Bind array:     64 rows, maximum of 256000 bytes
    Continuation:    none specified
    Path used:      Conventional
    Table TEST, loaded from every logical record.
    Insert option in effect for this table: APPEND
    TRAILING NULLCOLS option in effect
       Column Name                  Position   Len  Term Encl Datatype
    TRANSACTION_AMOUNT                  FIRST     *   |       CHARACTER           
    Table TEST:
      5 Rows successfully loaded.
      0 Rows not loaded due to data errors.
      0 Rows not loaded because all WHEN clauses were failed.
      0 Rows not loaded because all fields were null.
    Space allocated for bind array:                  16512 bytes(64 rows)
    Read   buffer bytes: 1048576
    Total logical records skipped:          0
    Total logical records read:             5
    Total logical records rejected:         0
    Total logical records discarded:        0
    Run began on Tue Dec 23 17:23:47 2008
    Run ended on Tue Dec 23 17:23:50 2008
    Elapsed time was:     00:00:02.86
    CPU time was:         00:00:00.06Regards,

  • Problem while loading texts and authorization objects file in RAR

    Hi all,
           i am getting internet explorer error while loading the texts and authorization objects text files in RAR .actually we uploaded rule file before this,does this step causes any error ?if so how to resolve this error.do i need to remove all rules/risks and then load text and authorization files? is there any shortcut to renove all risks generated in one shot? please reply me soon to resolve this.
    Thanks,
    Joseph.

    Hi Joseph,
    Please make sure to convert both the files in UTF-8 encoding format and then try to upload the files again. This should resolve the issue and if not then please paste the logs here.
    Regards
    Harleen

  • Error at DB commit while loading data in BW

    Hi All,
    When I try to load data in my BW Dev the request ( infoPackage or DTP) remains in yellow status for a while & then turns red. When I check SM21 I get the following error:
    *Error 28 for write/read access to a file. File =
    Error 28 for write/read access to a file. File = /usr/sap/BWD/SYS/global/100JOBLG/0001X13301905X73572
    Error 28 for write/read access to a file. File = /usr/sap/BWD/SYS/global/100JOBLG/0001X13301906X65067
    TemSe input/output to unopened file
    Error at DB commit, return code 001024*
    I understand this is a Basis problem. But can anyone suggest what should be done to resolve it?
    Thanks,
    Andy Kroos

    Hi Andy,
    This is a Basis issue so maybe you could create a thread for it on one of the Basis forums (unfortunately I don't have suffficent authorisations to move it for you)?
    These SAP Notes should assist you:
      11070 - Space requirements of TemSe and spooler
      48400 - Reorganization of TemSe and Spool
      16875 - TemSe objects do not match TemSe files
      784969 - The RSBTCDEL2 program
      214969 - Error writing the job log
    Rgds,
    Colum

  • Error while loading data to ods object from flatfile

    hello all
    Iam loading data from flatfile to ods object and the processing type is PSA and then to data target(package by package),data arrived in PSA(its green) but in monitor the request is in red and in details tab of <b>subsequent processing</b> <b>its showing as ODS activation</b><b>?(change-log):not yet activated</b> and overall the error is <b>Missing Messages</b>.
    and its also saying like "Activation of data records from ODS object ODS_SALES terminated.
    and in help node its saying like data arrived in BW and try to change the request from red to green?
    can anyone tell me what will be the problem?
    In settings of ODS object everthing is set to automatically.
    many thanks
    balaji

    Hi praveen
    problem is <b>generic</b> here.
    In monitor tab the <b>request</b> and <b>overall</b> the statuts is "<b>RED</b>",but when I went into the <b>mange</b> tab of ODS object here the request is "<b>GREEN</b>",but the data is not available here.but data is still available in "<b>New data</b>",how come data is not yet activated.
    bcoz in settings all are set to "automatically",so there is no question of manual activation?
    One more question is in Settings Iam finding one column like "<b>Unique Data Records</b>",whats's this,if v check this what happens ifnot what happens?
    regrads
    balaji

  • Error in service desk while message processing.

    Dear Basis Guru,
    I have tried to configure the standarad servie desk scenario in solution manager 7.0 EHP1 stack 22.
             The end users are able to raise the message ( both without sap gui and from sap gui )
             Messages are properly getting routed to support teams.
             Message processesor is able to process the mesage ( can reply , can change the status of message ) from sap gui    only .
    But message processor is not able to process the message without sap gui ( thorough web link ).
    Link - http://solprodhml.hmldm.com:8003/sap/bc/webdynpro/sap/ags_workcenter?sap-client=113
    When mssage processor try to change status or propiry through web link following error occurs .
    The URL http://solprodhml.hmldm.com:8003/sap/bc/webdynpro/sap/ags_incident_trans was not called due to an error.
    Note
    The following error text was processed in the system HSP : Could not find attribute ATTR_00000001
    The error occurred on the application server SOLPRODHML_HSP_03 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_WD_CONTEXT_NODE_INFO~GET_ATTRIBUTE of program CL_WDR_CONTEXT_NODE_INFO======CP
    Method: IF_WD_CONTEXT_ELEMENT~GET_ATTRIBUTE of program CL_WDR_CONTEXT_ELEMENT========CP
    Method: UPDATE_BP_EVENT of program /1BCWDY/B33K1JXKX4WX14T8Y3RC==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/B33K1JXKX4WX14T8Y3RC==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: FIRE_EVENT of program CL_WDR_COMPONENT==============CP
    Method: IFWDR_INTERNAL_API~RAISE_EVENT of program SAPLWDR_RG_PROXY_FACTORY
    Method: IF_COMPONENTCONTROLLER~FIRE_UPDATE_BP_DETAIL_EVT of program /1BCWDY/B33K1JXKX4WX14T8Y3RC==CP
    Method: REFRESH_ONE_ORDER_OBJECT of program /1BCWDY/B33K1JXKX4WX14T8Y3RC==CP
    Method: IF_COMPONENTCONTROLLER~REFRESH_ONE_ORDER_OBJECT of program /1BCWDY/B33K1JXKX4WX14T8Y3RC==CP
    In system st22 shows following dump : -
    Runtime Errors         UNCAUGHT_EXCEPTION
    Exception              CX_WD_CONTEXT
    Client.............. 113
    User................ "KPIT_PR2"
    Language Key........ "E"
    Transaction......... " "
    Transactions ID..... "2A02CFE040A5F108B31F18A905457F24"
    Program............. "CL_WDR_CONTEXT_NODE_INFO======CP"
    Screen.............. "SAPMHTTP 0010"
    Screen Line......... 2
    Information on Caller ofr "HTTP" Connection:
    Plug-in Type.......... "HTTP"
    Caller IP............. "192.168.0.145"
    Caller Port........... 8003
    Universal Resource Id. "/sap/bc/webdynpro/sap/ags_incident_trans"
    Please help
    Thanks,
    Rusi123

    Hi
    Please find the reply in Bold :
    What Sol Man release are you workin on?
    SAP Solution Manager 4.0
    What kind of characters get truncated?
    General message characters (English alphabets)... is this because of length constraint?
    Are you working on a unicode system?
    Yes
    Does this happen while creating messages from a satellite system or from within Sol Man?
    When user creates messge in SAP ECC 6.0 , then the sme of the last characters of each row gets truncated.
    Best regards
    Sarang

  • Error in Process Chain while loading Master data text?

    Hello All
    Having a Process chain and having 5 infopackages(Master data Attri & text)with FULL LOAD with an processing options as PSA and Infobject.In this one of the infopackage failed and the status is in red colour,and when I right clicked there is no <b>repeat</b> option?Now <b>how to run this process</b>?
    Heard that v can restart the process in debug screen?can anyone let me know how to do this?
    Many Thanks
    balaji

    Hi dear,
    you don't find the repeat option because this is a full load...I think you can easily restart the entire PC (or loading directly the failed infopackage from RSA1), because full loads for master data don't cause any data duplication !
    Hope it helps!
    Bye,
    Roberto

  • Getting Error in  shuttle region while loading page.

    Hi All,
    I am developing shuttle region in a page which depends on selected values in the drop down list. i am getting all values for every value in the drop down list. but i want to get values in the Available list of shuttle region with respective value selected in drop down list.
    Can any body send code for shuttle RN co?(in process request and process form request ) .
    Thanks,
    Mahesh.

    In process form request :
    /* user changed the option - capture the event */
    if("optionChangeEvent".equals(pageContext.getParameter("event")))
    pageContext.forwardImmediatelyToCurrentPage(null,false ,ADD_BREAD_CRUMB_NO);
    In processRequest :
    String selected = pageContext.getParameter("choice");
    /* means some thing is selected */
    if(selected != null)
    test = Float.valueOf(selected);
    OADefaultListBean list1 = (OADefaultListBean)webBean.findChildRecursive("list1");
    list1.setListCacheEnabled(false);
    OADefaultListBean list2 = (OADefaultListBean)webBean.findChildRecursive("list2");
    list2.setListCacheEnabled(false);
    /* bind the query parameter through AM*/
    ShuttleAMImpl am = (ShuttleAMImpl)pageContext.getApplicationModule(webBean);
    am.initFWK_TBX_PO_HEADERVO(test);
    Regards,
    Guru K

  • Are there any APIs to load FND and other objects

    Hi
    We are having HR2HR configured and running between EBS R12.1.3 and Fusion. But the HR2HR does not bring in data in EBS like in Descriptive Flex Fields (DFF), User Defined Tables (UDT), Extra Information Types (EIT) & Lookups. How can we bring in this data in to Fusion. Are there any APIs? If not what is the Support model from Oracle if we are directly updating the tables?
    Thanks!
    Srinivasa Sunchu

    Happy Camper: Based on doc 1482027.1 in support system:
    DFF is not currently supported by HR2HR.An Enhancement Request (ER) has been logged to request this functionality:
    ER: Bug 12883914 - ER REQUEST - DFF FLEXFIELDS AND EIT'S NEED TO BE INCLUDED IN THE HR2HR AND INTER
    >
    For alternatives and the Support model I do not have answer, will reach out to try to find out.
    Kiran: This is an external forum, so the readers would not have access to internal documentation. Are the HCM scripts available externally i.e. through the support system? If not are there plans for providing them externally ?
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • URGENT Error while loading locations from R/3 to EBP

    Hi SRM Warriors,
    I am getting the error message "Error Accessing System XXXXX" while loading location from R/3 system.
    I was able to load them choosing the "Logical System (Source System)" for my Logical System. However, I need to do the same for my trusted system and it is where the error message is appearing.
    I am using transaction SA38 and running the program BBP_LOCATIONS_GET_SELECTED, where I already checked the RFC connections through WE59 transaction.
    Any help will be very appreciated and rewarded. Thanks,
    Luis Miranda

    Luis,
    It looks like this is something to do with RFC Connection to this specific Logical System. In transaction SM59 you should Test the Connection as well Test Authorization.
    Also Check whether the service user used for this RFC has User ID in the R/3 system and has SAP_ALL profile.
    Pl. award points to helpful answer.
    Thanks
    Shrini

Maybe you are looking for

  • Why my ipod classic is not show up in itunes or windows

    Hi everyone, I have a problem with ipod classic 120g when i connect it to computer don't show up in itunes or windows is been a few months that i don't sinc any music;before was ok  no problems at all but now can't do anything not even reset because

  • Printing problem on Deskjet F2280 connected to JetDirect en3700 (Scanning works)

    Hi, Recently acquired a JetDirect en3700 and after updating it to the latest firmware release (V.28.22.FF?) hooked up my trusty Deskjet F2280 to it. The printer is detected by the print server and I can scan pages using the Web UI but I can't print a

  • Items on desktop disappear

    Ever since I upgraded to Lion, when I restart my computer each day the items that were on my desktop are automatically relocated to a folder in my documents folder that is labeled "2011 November" and I have one labeled "2011 October". These are locat

  • Normal query behavior?

    I have about 70 documents loaded into a 10g DB and have a context index on that table. I am entering terms into an application that makes a keyword search with each individual term entered into the search string. What I have noticed is, it works bett

  • Where can I find my pictures to migrate to new Mac?

    My old iMac recently died, so have bought a new one. However, I can't find the folder in which all my pictures are stored. I used iPhoto for everything, and backed up old ones onto a portable hard drive, but even after re-synching from that, I can fi