Error while data selection against 0Material_attr

Dear Gurus,
My Inventory Process Chain has one "0Material_attr" component which is failing constantly citing reasons  "Error occurred in the data selection . An error occurred in the source system.The error occurred in Service API ."
Could someone kindly guide me.
Thanks
Sheeja

Hi
Check the DS at Source system/ REplicate the same at BI if needed and Activate TRules again / try to upload
https://service.sap.com/sap/support/notes/366222
https://service.sap.com/sap/support/notes/501053

Similar Messages

  • "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

  • Error while data loading

    Hi Gurus,
    I am getting error while data loading. At BI side when I  check the error it says Background Job Cancelled and when I check in R3 side I got the following error
    Job started
    Step 001 started (program SBIE0001, variant &0000000065503, user ID R3REMOTE)
    Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
    DATASOURCE = 2LIS_11_V_ITM
             Current Values for Selected Profile Parameters               *
    abap/heap_area_nondia......... 2000683008                              *
    abap/heap_area_total.......... 4000317440                              *
    abap/heaplimit................ 40894464                                *
    zcsa/installed_languages...... ED                                      *
    zcsa/system_language.......... E                                       *
    ztta/max_memreq_MB............ 2047                                    *
    ztta/roll_area................ 6500352                                 *
    ztta/roll_extension........... 3001024512                              *
    4 LUWs confirmed and 4 LUWs to be deleted with function module RSC2_QOUT_CONFIRM_DATA
    ABAP/4 processor: DBIF_RSQL_SQL_ERROR
    Job cancelled
    Please help me out what should I do.
    Regards,
    Mayank

    Hi Mayank,
    The log says it went to short dump due to temp space issue.as its the source system job ,check in the source system side for temp table space and also check at the BI side as well.
    Check with your basis regarding the TEMP PSA table space - if its out of space ask them to increase the table space and try to repeat the load.
    Check the below note
    Note 796422 - DBIF_RSQL_SQL_ERROR during deletion of table BWFI_AEDAT
    Regards
    KP
    Edited by: prashanthk on Jul 19, 2010 10:42 AM

  • Cube to Cube "Error in data Selection" plz help

    Hi this is Ajay Reddy
    when am sending data from Cube to Cube am getting an error
    "Error in data Selection" plz help

    Hi,
    It needs a Note implementaion. I got similar problem in version BIW 7 and SP 11. We got the solution with on of the note . I am not able to recollect the note number.
    Any way check the notes 920971,155471 may help you or not.
    With rgds,
    Anil Kumar Sharma .P

  • Error in data Selection

    Hi experts,
    I have added a field to 0emp_attr data source using DS enhancements, when trying to extract with full the job is getting failed stating  " error in data selection".

    Hi,
    Just see following thing
    1. Try to extract data in R/3 in RSA3 transaction.If it is working correctly no issue
    2. If RSA3 throw issue check the definition of your code and try to debug it.
    3. If RSA3 is fine check your Infopackage selection settings if it is ok or there is any error,If there is any selection try to remove it and load data.
    Thanks and regards

  • Error in data selection of Infopackage

    Hi,
    My infopackage is failing with "Error in data selection". RSM 340 is the error message number.
    Datasoucre: 0FI_AP_4
    I have checked
    1. Timestamp--consistent
    2.Reactivated and replicated datasource
    3.Checked SM58 in both BW and source systems and found it OK
    I have taken Source jobs for 1 succesfull infopackage run and 1 unsucessfull infopackage run.
    I see that Job log for unsucessfull has no call to customer enhancement and no data selection is done thereby.
    i am attaching the job logs for 1 successful and 1 unsuccessful case. Please check and let me know the gap that is contributing to this error.

    Hi nayab,
    You and harish works at same location?
    i seen same issue from harish as well.
    http://scn.sap.com/thread/3578278
    Thanks

  • Getting error while data archiving in BWP.

    Dear All,
    I am getting following error while data archiving in BWP .
        Value 'NP' in field COMPOP not permitted.
    Can anybody help me to solve this error.
    Thanks in advance.
    Regards,
    Vaibhav

    Hi,
    May i know the field description? COMPOP?
    Rgds,
    Ravi

  • Error while doing GR against STO in IS Retail

    Hi.
    I am getting an Error while doing the GR against STO.
    The error is "Enter goods receipts for vendor only. Message no. M7107".  I am not able to understand the reason for the GR checking the vendor where it should consider the supplying site as vendor as the GR is being done against a delivery.
    I have checked the Inforecord and the source list which is correctly maintained
    (i doubt whether they are to be considered).
    Kindly suggest...
    Regards,
    Vinod Kapote.

    Hi Vinod Kapote,
    Check following IMG Settings in your system;
    (a) Schema for Stock transports
    (b) Shipping data for Site
    Hope you have carried out following activities;
    (1) Purchase order with document type UB
    (2) Outbound delivery using VL10B
    (3) Post Goods Issue using VL02N
    (4) Goods Receipt using MIGO
    Bye,
    Muralidhara

  • Table or view does not exists error while executing select statement

    Hi,
    I am new to Oracle. I am getting a error while executing the select statement if i give table name without double quotes.
    Ex: Select * from Customer;
    But working fine when the table name is enclosed within a double quotes.
    Ex: Select * from "Customer";
    Is there any way to execute the select statement without the double quotes?
    Actually I am using NHibernate objects for data access.
    Thanks,
    Sai

    Actually I am using NHibernate objects for data access.And probably that's the problem:
    SQL> select * from mytab;
             A
             1
    SQL> select * from mYtAb;
             A
             1
    SQL> select * from MYTAB;
             A
             1
    SQL>  select * from MYTAb;
             A
             1Oracle statements are case insensitive and doesn't require double quotes unless the object names are reserved words.
    As wrote by others if table is created using double quotes it's name bacomes case-sensitive... and this could be the problem...
    Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2010/02/05/gestione-degli-errori-in-sql-con-log-errors/]
    Edited by: Massimo Ruocchio on Feb 5, 2010 7:08 PM
    Added last comment..

  • Error while using selection option variable in the selection screen

    Hi All,
    I am facing an issue while using selection option variable in the selection screen for one of my reports.
    Scenario: For the field "Region From" we need to have wild card logic () in tes selection screen, for example if we put "BE" in the selection screen for the field Region From then the query should be executed only for those "Region From" values which begin from "BE".
    Approach: For the above requirement I have made a selection option variable for "Region From". This allows use wild card
    But when the report is executed we get the following error:
    "System error in program CL_RSR_REQUEST. Invalid filter on ETVRGNFR".
    (ETVRGNFR is technical name of the info object Region From)
    Though the report is executed it displays all the values for the field "Region From" irrespective of the selection given in the selection screen.
    Please give suggestions / alternate solutions to crack this issue.
    Thanks in advance
    Regards
    Priyanka.

    Hi,
    Try to use a variable of type Customer Exit and do the validation inside the exit to display according to your request.
    This is just my view, i am not sure if u are already using this or Char. Variable.
    Cheers.
    Ranga.

  • Error while doing delievry against Return Purchase order

    HI Experts
    I am getting error "PO NO XXXXXX is incomplete. You cannot save the delivery" while creating delivery against a return order using T code VL10B.
    Please note that I am able to create delivery for one vendor, material & plant combination, but cannot create against another vendor, material and plant combination.
    Please let me know the check points where I can check.
    Thanking you in advance.
    Regards
    Bhavesh Mistry

    Please check the setting in IMG.
    - Logistics Execution->Shipping->Basic Shipping Functions->
      Incompletion Control for Deliveries->Define Incompletion Procedures
    Then, please check in the document according to the incompletion list

  • Error while data loading in real time cube

    HI experts,
    I have a problem. I am loading data from a flat file.The data is loading correctly till the DSO but when i am trying to load it into the cube it is giving an error.
    The cube is  a real time cube for PLANING. I have chnaged the status to allow data loading but still the DTP is giving an error.
    It shows an error "error while extracting from DataStore" and some RSBK 224 ERROR and rsar 051 error.

    What was the resolution to this issue.  We rae having the same issue only with external system (not a flat file).  We get the  RSAR 051 with a return code of 238 error message, like it is not even getting to the rfc connection (DI_SOURCE).  We have been facing this issue for a while and even opened up a message with SAP.

  • Help me to fix the error while running DBMaintain Against the Database Schema in ASE.

    Hi All,
    I am trying to install sybase mobiliser platform 5.1 SP 03.I am  referring the following guide
    http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc01871.0513/pdf/Mobiliser_Platform_Installation_Guide_5.1…
    Now I have configured the ASE database server with default settings and now it is running fine.
    Now my concerns are as follows:
    1) I have executed the database schema (mobr5): 001_MONEY_drop_and_create_user.DDL with the help of linux command
    isql -Usa -SASE1 -Phello@123 -i/opt/sybase/db/sql/001_MONEY_drop_and_create_user.DDL -o/opt/sybase/ASE-15_0/install/ASE1.log
    How do I check the created database schema and user with default name 'mobr5'?
    2) While running DBMaintain Against the Database Schema, I have followed the steps mentioned in the guide and made the following changes in the file dbmaintain.properties.ase
    database.driverClassName=com.sybase.jdbc4.jdbc.SybDriver
    database.url=jdbc:sybase:Tds:ASE1:5000/mobr5
    database.userName=mobr5
    database.schemaNames=mobr5
    database.password=paybox
    #Must be set if the driver is not packaged inside the scriptarchive or is present on the classpath
    #e.g. /path/to/driver.jar
    #database.driverLocation=/path/to/jconnect.jar
    database.driverLocation=/opt/sybase/db/sql/com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase.jar
    database.driverLocation=/opt/sybase/db/sql/com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase-vanilla.jar
    When I execute the script archives ,
    java –jar /opt/sybase/db/sql/com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase-driverless.jar -c /opt/sybase/db/sql/dbmaintain.properties.ase
    java –jar com.sybase365.mobiliser.vanilla.standalone-5.1.3.RELEASE-scriptarchive-ase-vanilla-driverless.jar -c dbmaintain.properties.ase
    I get the following error:
    So please help me to resolve the issues.

    Hi All,
    Issue is resolved and database has been updated successfully..
    Error was in database .url field of dbmaintain.properties.ase file.
    I have changed the database.url field  from database.url=jdbc:sybase:Tds:ASE1:5000/mobr5
    to  database.url=jdbc:sybase:Tds:<Private IP of Linux instance>:5000/mobr5
    Note:- I am installing mobiliser platform on AWS cloud.So I have made use of Private IP address of AWS Linux instance.

  • Error in Data selection in R/3 Generic Extraction Using function Modules

    Hi Friends,
    I have created a a generic data source using function module to load data from PA0000 and PA0001 Tables ,Function module is working fine when i execute it indipendently and  the data source is also working fine when i extract data using RSA3. it is showing correct no of records 157.
    When loading data into DSO from BW (using 3.x/7.0 flows) data is comming to PSA  all 157 records but in the RSMO the load status is showing yellow when i look into the step by step analysis it is
    data selection successfully started
    Data selection successfully ended
    All Data packets completed.
    are showing in red.
    after and hour time load getting failed and in the error message it is showing " job terminated in source system---> Request set to red"
    it is giving this message wir no RSM 78.
    Please let me know it

    Hi Jerry,
    Thanks for the immediate replay
    But here in my source system job is getting terminated.
    this is the status of job in Job logs.
    the job is running till this step not going ahead.
    Call customer enhancement BW_BTE_CALL_BW204010_E (BTE) with 157 records 
    Result of customer enhancement: 157 records                             
    Call customer enhancement EXIT_SAPLRSAP_001 (CMOD) with 301 records     
    Result of customer enhancement: 157 records                             
    Asynchronous send of data package 000001 in task 0002 (1 parallel tasks)
    pl. update me if any idea.

  • Error while doing GR against STO for Project stocks

    Hi Friends
    While doing GR against  for an STO (INTRA Company) - project stocks, I am getting teh below error
    Check table 156V: entry MSSQ-SQTRA     does not exist
    Could you please let me know how do I resolve the same . If any one of you have encountered a similar issue please do advice on its resolution
    Thanks
    Vikrant

    Hi
    I did check the table T156v ,
    the enetries do exist in the table
    MSSQ-SQTRA
              POSITIVE     MISSING PART     AVAIL CHECK     NEGATIVE STK     I.BRKDN  MSG MSG
                  X                         X                                   3                         X                              X        328     329
    I also tried by changing enteries in table for avail check , msg
    however the error as mentioned above kept on coming

Maybe you are looking for

  • Apple Mobile Device Service does not start

    I'm running XP Pro on a Mac Pro with Bootcamp, and have the latest version of iTunes. Every time I plug in an iDevice, iTunes opens and says that the Apple Mobile Device service hasn't started. I go in to Services and start it, restart iTunes, and we

  • WebDav not authenticating

    Hello All, I have set up an OS X server that I am trying to get ical to work on the web interface.  When a user navigates to http://server.example.net it shows up with the calendar icon.  They can click on the icon and the authentication dialog box o

  • MIRO Error in Asset Acquisition

    Dear All, While doing MIRO for Asset acquisition, I am getting this error message Account 'Acquisition:Acquis. and production costs' could not be found for area 01 Message no. AU133 Diagnosis When creating the accounting document, the system could no

  • Export for Web using optimized for "download" or "streaming"?

    Hi, Exporting for Web have some setting there,i'll choosing the .mov - H264 - and medium low quality - 15 Frame Rate - Checked Frame Reordering, others Automatic and the Audio will be 32.000hz and Mono. Now,what about the optimizing? Download or Stre

  • Centering canvas on browser screen

    I have been trying to set up my Fireworks pages so that they look centered on a standard browser. Under Modify - Canvas - Canvas Size, I chose the "top center" arrow from the grid of 9 choices.  When I export (I export to Dreamweaver), under Options