Execute locally - no data available

Hi,
when I edit an application in Design Studio, the instant preview in Design Studio works fine. There are all data from the data source available. So I guess the connection to the backend BW server and the query should be ok. See Screenshoot -application_Design Studio.PNG-
When I execute the application locally, there is an error "no data available" (in german as shown in the screenshoot: "Keine Daten verfügbar").
See Screenshoot -application_execute locally.PNG -
Do you know why this happen? And how can I solve this problem so I have my data during executing locally?
Best Regards
Jasper

When I force Prompts at Startup from the application I can see my data.
Is there a way I can specify the Prompt automatically per event? I tried the two methods setFilter and setFilterExt from the data source as an "On Startup"- event. But this has no effect and there is still the hint "no data available".

Similar Messages

  • Error: No data available while executing BEx query

    Hi BI expert,
    Please help me out as I am very new in BI. I am getting error "No data available" after executing query in BEx query designer.
    thanks

    Hi,
    Pl check for the Filter Conditions of the query.Have the same filters data  as that in the Cube/ODS.
    Hw is the Data Flow ???
    A)From ODS to Cube to Query ????
    or
    B)From ODS
    or
    C)From Cube
    1)Check on which Infoprovider the Query is built.
    2)If it is Cube then Check the data in the Cube.Right click Cube ,Display data and Execute.
    3)If data is avaliable in cube then it shud come in Query except for the Filter conditions .
    4)then check for the Filter conditions of the query.
    5)If data is not avaliable in Cube then check in ODS ????
    6))If data is not avaliable in ODS then check in PSA
    7))If data is not avaliable in PFA then check in R/3.
    Also search in SDN as to how the Data flows
    A) both from Flat File and 
    B)R/3 and FULL and DElta Load.
    That will give clear uinderstanding  !!!!!
    Rgds
    SVU123
    Edited by: svu123 on Dec 15, 2008 2:15 PM

  • Cannot get Local Connection, No available resource, Wait-time expired

    Hi Friends,
    Please answer my queries below.
    Thanks and Regards
    Busincess Requirement
    I have to display a particular set of rows in a dashboard or screen, and it is being refreshed every 1 minute, also user can update from that screen displayed values.
    The below program extracts some data from database and passes to the front end through a collection where it is being displayed.
    Code Logic Flow
    1. CockpitAction calls CockpitOraDAO for database results
    2. CockpitOraDAO is a singleton class.
    3. After getting the CockpitOraDAO object, the action will then call the getLabAreaCockpitDetails() method.
    getLabAreaCockpitDetails will
         - Get the Connetion from the OracleConnectionManager class (It is a plain class with getPooledConnection() and releaseConnection() methods).
         - Execute the query and put the result to a collection
         - close the connection
         - return result to the calling action.
    This getLabAreaCockpitDetails() are called around once in every 1 minute
    So, I believe everytime a call is made to action for cockpit display, it will take the existing object of the CockpitOraDAO class and make a call to database. i.e there will be only one object of CockpitOraDAO reside in application server at any particular interval of time.
    My Understandings
    1. Only 1 object of CockpitOraDAO will reside in application server (provided it is not user longer and garbage collected) at a particular instance.
    2. Many objects of Connection will be created and destroyed.(Each time the getLabAreaCockpitDetails() method is called, we will get one connection from connection pool and in finally the Connection will be released to connection pool).
    My Problems
    It is showing the "Cannot get Local Connection, No available resource, Wait-time expired"
    after running around 1 full day.
    My doubts
    1. Can anybody say why I get this error ?
    2. There may be some connections are not closed. But I have checked at finally block, the status of the connection is closed after calling this method.
    3. There may be some problem due to the singleton instane of CockpitOraDAO, Is it affecting performance ?
    4. Is it valid that I have to make CockpitOraDAO as Singleton ?
    public class CockpitOraDAO extends DAOAdaptor //implements BISample
         private static CockpitOraDAO instance=null;
         private static boolean debug = true;
         * The below method will be used to provide the singleton intance of the CockpitOraDAO object.
         public static CockpitOraDAO getInstance()
              if (instance == null)
                   synchronized (CockpitOraDAO.class)
                        if (instance == null)
                             instance = new CockpitOraDAO();
              return instance;
         * The below method will be used to get the cockpit details of the lab area.
         * This will return collecton of sample details for the specific lab.
         public Collection getLabAreaCockpitDetails(Collection prevCockpitDetailList,Collection filterCriteria) throws Exception
         if(debug)
              System.out.println("Inside CockpitOraDAO::getLabAreaCockpitDetails() method");
              Connection conn = null;
              boolean sampleExists = false;
              PreparedStatement pstmt=null;
              ResultSet rs=null;
              String returnStr=null;
              StringBuffer sqlQuery = null;
              String tempComment1=null, tempComment2=null;
              LabCockpitDO labc=null;
              LabCockpitDO labc2=null;
              Collection resultList=null, manCommentList=null, labCommentList=null, labCompCommentList=null;
              ArrayList result1List=null, prevCockpitDetail1List=null,filterList = null;
              OracleConnectionManager manager = null;
              boolean flag = false;
              try
                   labc2 = new LabCockpitDO();
                   prevCockpitDetail1List = (ArrayList) prevCockpitDetailList;
                   sqlQuery = new StringBuffer();
                   sqlQuery.append("select s.sample_sample_no sample_no, s.sample_inspection_lot_no inspection_lot_no,");
                   manager = new OracleConnectionManager();
                   conn = manager.getPooledConnection("myDS");
                   pstmt = conn.prepareStatement(sqlQuery.toString());
                   if(debug)
                   System.out.println("Query********"+sqlQuery.toString());
                   rs = pstmt.executeQuery();
              catch(Exception e)
                   //System.out.println(e);
                   throw e;
              finally
                        try
                             manager.releaseConnection("myDS");
    if(debug)
    System.out.println("Connection Status Closed=true/ Open=false=["+conn.isClosed()+"]");
    if(conn!=null || !conn.isClosed())
    conn.close();
    if(debug)
    System.out.println("Connection Status After Closing Connection Closed=true/ Open=false=["+conn.isClosed()+"]");
                             if(rs != null)
                                  rs.close();
                             if(pstmt != null)
                                  pstmt.close();
                             conn = null;
                             pstmt=null;
                             rs = null;
                             sqlQuery=null;
                             returnStr=null;
                             labc=null;
                             labc2=null;
                             manCommentList=null;
                             labCommentList=null;
                             labCompCommentList=null;
                             tempComment1=null;
                             tempComment2=null;
                             resultList=null;
                             prevCockpitDetailList=null;
                             prevCockpitDetail1List=null;
                        catch(Exception e)
                             //System.out.println("Unable to Release Connection ="+e);
                             throw e;
              //if(debug)     
              //System.out.println(resultList);
              return result1List;
         }

    Hi,
    As you can see from other posts, this is a very common problem. Until now the cause always ends up pointing to a connection not being close.
    I suggest you try to run through a full single cycle of you app, while using the CLI monitoting to check that the connections created/closed matches the expected created/closed connections. Also that the number of free connections at the end is correct.

  • No system load data available in st03

    Dear Guru,
                  When i am executing Tcode ST03 it is showing that "No system load data available"
    when i am executing "RSSTAT83" report then its thriwing "LOGDB_SSCR_NOT_FOUND" dump.
    statndard job getting cancelled thats why i hae change the status of all standard btc jobs.
    but system is still too much slow. Right now there is no job running.my patch level is also 14 of both abap & basis.
    What to do......

    Hi Gaurav
    this kind of error belongs to In correct time Zones, OS Time and R/3 Time was different, please set both time zones same in all clients using STZAC Tcode
    again if not slove your problem then fallow this procedure.
    It is possible that the workload collector is not schedule. To schedule the collector, choose, in Expert user mode, Collector -> Perf. Monitor Collector -> Execution Times in the left subscreen. The system displays the Contents of table TCOLL screen. Ensure that the report RSSTAT83 is scheduled hourly.
    if not scheduled hourly, then execute aboue report in SE38
    Regards
    Bandla

  • How to hide the report "No data available" message

    Hi,
    When there are no results from a query execution I would like to hide or at least replace by 0 the "No data available" message.
    I'm working on BI 7 and the query is included in a web template that has a button to export to excel and the objective is that this message doesn't appear in the exported file.
    Do you know if this is possible? If yes please tell me how to do it.
    Regards,
    Ana

    Hi,
    Thanks for your answer.
    I will explain my issue a little bit further.
    I'm working in BI 7 and I create a web template that contains five queries and a button to export all the queries results to an excel file.
    So when executing the query in the portal, depending on the selection criteria inserted some of the queries show the message "No data available" and using the button to export to excel the generated file include that message too. It would be preferable to delete the message in the web and in the excel file, but we need to replace at least in the excel file.
    I don't know if this is possible with some script so if you have some export script example please post it here.   
    If there is some way that when no records exists return zero I think that with a formula I can hide the result but I don't know how to get the 0 value....
    If you can help in some way I would be very grateful.
    Regards,
    Ana

  • RFC PROBLEM:NO DATA AVAILABLE IN ST03N

    Hi experts,
    On the t-code ST03 when i enter lastminute's load and confirm, getting the error RFC Problem:No data available.
    How to go ahead.
    From
    Deepak Keesara.

    Hi Deepak,
    First thing you can check that job SAP_COLLECTOR_FOR_PERFMONITOR    is runningby t-code sm37.
    This job runs in client 000 under user ddic with periodic of one hour.
    If not schedule it in t-code sm36
    Login as user ddic to client 000 ,execute t-code sm36 give the job name SAP_COLLECTOR_FOR_PERFMONITOR, give abap program RSCOLL00 AND GIVE PIRIODIC VALUE ONE HOUR THEN SAVE AND RELEASE.
    Regards
    Ashok
    Edited by: Ashok Dalai on Aug 18, 2008 1:20 PM

  • Lms 4.1 prime psirt/eox no data available in the report

     Hi:
    I´m running LMS 4.1 Prime for Windows.
    I tried an immediate report with PSIRT/EOX Report option: Cisco.com
    The job succeeded, but without any data in the report
    <TABLE style="WIDTH: 100%" border=0 cellSpacing=2 cellPadding=2 align=right mcestyle="width: 100%;">
    No data available in the report. The problem could be any one of the following:
    <TD style="COLOR: #686868" bgColor=#ffffff height=24 vAlign=top align=left mcestyle="color: #686868;">1. No PSIRT data available in the LMS database for the selected device(s).
    2. PSIRT/EOX system job might not have run, or might have failed.
    3. You might have entered the wrong cisco.com credentials.
    Then I tried logging to Cisco.com (with the same user/password as configured in LMS) and download the <SPAN style="FONT-FAMILY: Times-Roman; FONT-SIZE: 10pt" mcestyle="font-family: Times-Roman; font-size: 10pt;"><SPAN style="FONT-FAMILY: Times-Roman; FONT-SIZE: 10pt" mcestyle="font-family: Times-Roman; font-size: 10pt;">PSIRT_EOX_OFFLINE.zip file.
    <SPAN style="FONT-FAMILY: Times-Roman; FONT-SIZE: 10pt" mcestyle="font-family: Times-Roman; font-size: 10pt;"><SPAN style="FONT-FAMILY: Times-Roman; FONT-SIZE: 10pt" mcestyle="font-family: Times-Roman; font-size: 10pt;">I unzipped it and put it in the folder C:/PROGRA~1/CSCOpx/files/rme/jobs/inventory/reports/EOX_PSIRT/local_xml (please read \ instead of /, because it is wrong in the LMS display).
    <SPAN style="FONT-FAMILY: Times-Roman; FONT-SIZE: 10pt" mcestyle="font-family: Times-Roman; font-size: 10pt;"><SPAN style="FONT-FAMILY: Times-Roman; FONT-SIZE: 10pt" mcestyle="font-family: Times-Roman; font-size: 10pt;">I set SIRT/EOX Report option: local
    And again, the job succeeded, but without any data in the report (same message as before)
    What do you think is happening? How could I debug the process?
    Thanks a lot
    Julio
    PD: I`m selecting old devices to be sure that they already had an EOL/EOS.

    Sorry, the copy/paste didn´t work as expected, here it is again:
    Hi:
    I´m running LMS 4.1 Prime for Windows.
    I tried an immediate report with PSIRT/EOX Report option: Cisco.com
    The job succeeded, but without any data in the report
    No data available in the report. The problem could be any one of the following:
    1. No PSIRT data available in the LMS database for the selected device(s).
    2. PSIRT/EOX system job might not have run, or might have failed.
    3. You might have entered the wrong cisco.com credentials.
    Then I tried logging to Cisco.com (with the same user/password as configured in LMS) and download the PSIRT_EOX_OFFLINE.zip file.
    I unzipped it and put it in the folder C:/PROGRA~1/CSCOpx/files/rme/jobs/inventory/reports/EOX_PSIRT/local_xml (please read \ instead of /, because it is wrong in the LMS display).
    I set SIRT/EOX Report option: local
    And again, the job succeeded, but without any data in the report (same message as before)
    What do you think is happening? How could I debug the process?
    Thanks a lot
    Julio
    PD: I`m selecting old devices to be sure that they already had an EOL/EOS.

  • "No data available" in BEx Query

    There seems to be some serious issue. I created a Query but when i execute it, It returns me with an error like "no applicable data found" or 'no data available" or sometimes it is returning some weird data.  The issue here is that i don't have the authorization to execute the transaction RSA1 and check whether the Infocube is "Available for reporting". So I asked someone who was authorized to execute RSA1 and check the Infocube and he found no problems with the Cube.

    Hi Rishi,
    Can you please tell me what you have done to fix this problem.
    I am running into same issue in our production. This was working all these days and suddenly the no applicable data is coming.
    I appreciate if you can send an email to [email protected]
    Thanks a lot for your time.
    Praveen

  • System Landscape Management Overview - no CCMSPING data available!

    Hi All
    We are currently trying to fully configure monitoring for our SAP landscape Java and ABAP so it can be viewed in the Work Center Web page.
    However, on the 'System Landscape Management Overview' we have the message 'no CCMSPING data available' for all of our systems, even though we have CCMS ping setup.
    Does any one know what I can check?
    Thanks
    Phil

    Hi Vital
    I have gone through those setting in RZ20, and RZ21 however we do seem to have a multitude of red and I am note sure where to start getting them set up or actioned. I have the following marked as red:
    Transaction RZ20 "SAP CCMS Technical Expert Monitors -> Selfmonitoring CCMS Agents", the CCMSPING should show green.
    CSMS Selfmonitoring -> Tool Dispatching -> Messages ->
                 Background method dispatching not possible - job does not exist
    CSMS Selfmonitoring -> Central Performance History ->General CPH status information
            Data collection message           No central data collection (hourly values) for system SMP Reorganization message            The CPH reorganization has not been executed for a long time
    MoniInfra_ARMIDALE_SMP_00 -> Tooldispatching (short running tasks)
            Messages             Cannot start tool CCMS_MSS_APP_SLOW_SQL
    STARTUPTOOL_00026    Startup method error: CCMS_MSS_APP_SLOW_SQL (method dispatcher: SAP_CCMS_STARTUP_TOOL_DP, Time: 21.05.2008, 09:24:09, Status: LAUNCHED)
    STARTUPTOOL_00033    Startup method error: CCMS_MSS_PERF_CPU (method dispatcher: SAP_CCMS_STARTUP_TOOL_DP, Time: 21.05.2008, 09:24:09, Status: LAUNCHED)
    STARTUPTOOL_00034    Startup method error: CCMS_MSS_PERF_DATACACHE (method dispatcher: SAP_CCMS_STARTUP_TOOL_DP, Time: 21.05.2008, 09:24:09, Status: LAUNCHED
    STARTUPTOOL_00035    Startup method error: CCMS_MSS_PERF_IOSTATS (method dispatcher: SAP_CCMS_STARTUP_TOOL_DP, Time: 21.05.2008, 09:24:09, Status: LAUNCHED)
    STARTUPTOOL_00036    Startup method error: CCMS_MSS_PERF_PROCACHE (method dispatcher: SAP_CCMS_STARTUP_TOOL_DP, Time: 21.05.2008, 09:24:09, Status: LAUNCHED)
    STARTUPTOOL_00058    Startup method error: WS: SRT_Data_Collector (method dispatcher: SAP_CCMS_STARTUP_TOOL_DP, Time: 21.05.2008, 09:24:09, Status: LAUNCHED)
    SMP\CCMS database self-monitoring\... -> Database self-monitoring
            SQL Server    create_mss_space_mgmt: function call SALI_MT_GET_TID_BY_NAME failed with exception NAME_NOT_FOUND. Affected MTE: ., Red 21.05.2008 , 09:24:09
    I think I will need to get this fixed first - I am just suprised we have all of these errors when we have only installed the CCMSPING service?
    An help or advice would be great
    Thanks
    Phil

  • ODI11G:Network MSaccessfile throgh DSN executing Locally but not with Agent

    Hi,
    We able to access Network MSaccessfile and running fine using loca(No agent) agent from our dev machine but when we configured the MS acess DSN on Agent machine and trying to execute the packageusing agent , it is failing with below error.
    Even when we connect to agent machine and try to execute the package from agent machine locally(no agent) it is working( the same case as mentioned above i.e. able to execute locally from our dev machine) but execution using agent not able to run from our dev/Agent machine. Throwing the below error.
    What could be the problem?? I gueseed this would be a access issue as our customer has given network access on agent machine using some different user and this user might not be having proper access on ODI machine as package is failig for local execution if we execute the package from Agent machine
    While accesing ODBC\Remote file ODI uses which account to access those files ?
    does it needs to create any specific account for that ? or something like that?
    Error on excutinng using Agent-->
    oracle.odi.runtime.agent.invocation.InvocationException: [Microsoft][ODBC Microsoft Access Driver] The Microsoft Access database engine cannot open or write to the file '(unknown)'. It is already opened exclusively by another user, or you need permission to view and write its data.
    at oracle.odi.runtime.agent.invocation.RemoteRuntimeAgentInvoker.invoke(RemoteRuntimeAgentInvoker.java:279)
    at oracle.odi.runtime.agent.invocation.RemoteRuntimeAgentInvoker.invokeTestDataServer(RemoteRuntimeAgentInvoker.java:653)
    at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.remoteTestConn(SnpsDialogTestConnet.java:847)
    at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.remoteConnect(SnpsDialogTestConnet.java:820)
    at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.jButtonTest_ActionPerformed(SnpsDialogTestConnet.java:758)
    at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.connEtoC1(SnpsDialogTestConnet.java:137)
    at com.sunopsis.graphical.dialog.SnpsDialogTestConnet.access$1(SnpsDialogTestConnet.java:133)
    at com.sunopsis.graphical.dialog.SnpsDialogTestConnet$IvjEventHandler.actionPerformed(SnpsDialogTestConnet.java:87)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
    at java.awt.Component.processMouseEvent(Component.java:6267)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6032)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    With Thanks,
    Shilpa
    Edited by: shilpa on Feb 6, 2012 2:00 AM

    Hello Surya,
    As on ODI development machine(BDVMD122) where we configured the MS access DSN for remote file, the package with local Agent(No agent) is executing perfectly. So I dont think its a Topology-context issue.
    Please let me know if my statement is wrong
    Venkat,
    There is a very less possibility of 'file is open somewhere' as it is executing locally perfectly.
    The package execution in PROD is done using Agent(not with Local agent).
    Dev environment-
    Machine-----------------------------DSN-Configuration-----------ODI Execution------------------------------------Status
    BDVMD122- ODIdevMachine-----On BDVMD122-------------on BDVMD122 with Local(No agent)----------Success in execution
    BDVMD122- ODIdevMachine-----On BDVMD122------------- same as above but in UATwithUAT login--- Success
    BDVMD122- ODIdevMachine-----On devAgent - BDVMD100---on BDVMD122 using agent BDVMD100-----Failure with the msg mentioned above
    UAT Environment-after code movement to different repository
    BDVMD122- ODIdevMachine Local(No agent)     on BDVMD122 with Local(No agent) Failure with the msg mentioned above
    Comment on your point
    1> Make sure the file is accessible from the server(where its failing). if possible create an an agent on the server specifying host as your desktop. use this agent to execute the interface.
    <Shilpa> We have created the DSN on ODI agent where we are able to access the network file. As we dont have any thing to check for the exact permission on ODI agent, we are unsure of what type of access we have on ODI agent machine. We raised this as a query to our customer. But when we RDP ODI agent machineand try to execute the ODI package from ODI Agent machinre With Local ( No agent), it is giving the same error.
    Our customer has given remote access to file on ODI agent's machine using some different user and we have created the DSN on ODI agent machine by logging into ODImachine using our dev id's( through RDP). I guess, this could be the permission issue also
    I did not get your point-"if possible create an an agent on the server specifying host as your desktop. use this agent to execute the interface"-
    What does here server means, how to host desktop?
    2> There is another option..use an intermediary system to pile all your source files and load from. however you will have to install odi on this system and create an agent , again.
    <Shilpa>
    We have to access files from remote server only.
    With Thanks,
    Shilpa Dhote
    Edited by: shilpa on Feb 7, 2012 4:52 AM
    Edited by: shilpa on Feb 7, 2012 5:14 AM
    Edited by: shilpa on Feb 7, 2012 5:19 AM
    Edited by: shilpa on Feb 7, 2012 5:19 AM
    Edited by: shilpa on Feb 7, 2012 5:20 AM
    Edited by: shilpa on Feb 7, 2012 5:20 AM
    Edited by: shilpa on Feb 7, 2012 5:20 AM
    Edited by: shilpa on Feb 7, 2012 5:21 AM
    Edited by: shilpa on Feb 7, 2012 5:21 AM
    Edited by: shilpa on Feb 7, 2012 11:12 PM
    Edited by: shilpa on Feb 8, 2012 2:46 AM

  • UDCONNECT - DTP no data available

    Hello Experts,
    I am using UDCONNECT to pull data from SQL Legacy Data Warehouse.  Created
    DTP with date filter for data that I know exists.  The PSA gets populated with data by running INFOPACKAGE.  But when executing the DTP appears not to be pulling any data (status is green with NO DATA AVAILABLE) and therefore no data loaded to DSO.  Need to know if I am missing a setting.
    I am new to SAP, 7.0 and UDCONNECT --- any debugging tips would be greatly appreciated.
    Thanks!
    Edited by: Marissa Baylon on May 14, 2008 2:26 AM

    It is my understanding that if I run the INFOPACKAGE it will populate the PSA.  I ran the INFOPACKAGE by itself and let it run for a while.  Unfortunately, I did not see a way of filtering for the INFOPACKAGE.  I am hitting a SQL table of 28 million records.  I would let the INFOPACKAGE run then stop it after 15 minutes.  Then, I would look at the PSA and it shows me the data.  Might not be the best practice but that is the only one I know to check if the PSA gets populated.
    I would then run the DTP (full load) and let it run with a filter by batch date.  That is when it comes back with NO DATA.
    Thanks,
    Marissa

  • DTP to load master data, gives the message 'No more data available'.

    hi,
    when i execute the DTP to load master data from DSO, it executes and gives the message 'No more data available'. The request is green but no data is transferred from the DSO to master data.
    I want the DSO data to get into master data how do i do it?

    Hi Hardik,
    Since the request is green, there is no error in extraction. But, as they've rightly pointed out, the Update mode of the DTP must be Delta and there must not be any new Master data that you are looking for.
    Compare the data and check if the Delta DTP should bring anything at all i.e. new records. If there are no new records, then the Delta DTP will not bring any more data. Else, change mode to Full and check again.
    Reg,
    Dhaval

  • ST03 No System Load data available

    Hi Experts,
           When am trying to execute ST03, it displaying the alert message like: No System Load Data available, can u plz, tell me why it's happening.
    Regards
    Mark

    hi mark,
    make sure all the default background jobs are running properly, make sure the following profile parameters are set
    stat/as_collect   = 2
    stat/as_level  =   1
    the following specify the maxiimum  number of simultaneously existing dialog step or application statistics before the oldest data is deleted.
    stat/as_max_files
    stat/max_files
    you must also activate the individual components of the application statistics by calling st03n and choosing
    collector & perf. database -> statistics records & file -> application statistics

  • ST03N, No System Load Data Available,  RSSTAT83, LOGDB_SSCR_NOT_FOUND

    Dear SAP Experts
    I am unable to execute "ST03N", the message is "No System Load Data Available".
    System information said that I have to schedule RSSTAT83 hourly in TCOLL table, and I did that.
    (For your information, I also already schedule RSCOLL00 hourly)
    But when the job RSSTAT83 run, it was cancelled.  The ABAP DUMP says "LOGDB_SSCR_NOT_FOUND". Error in SAP Kernel, The current ABAP "RSSTAT83" program had to be terminated because ABAP processor detected an internal system error.  Internal program table SSCR not found. I checked SSCR table through SE11 and the table exists.
    Strangely this only happen in my Production system, my Development running well with ST03N
    And Yes I have been searching through this forum and Google, but not yet found the solution. The only solution I've got is update my kernel.
    Are there any solutions for this problem?
    Regards,
    Kursteilnehmer

    Hi
    Your Database Not supported . Please check background job log.
    Run se38 and execute RSCOLL00 one by obe via debug mode.
    You get the result
    Regards
    Ravi.S

  • ST03N no data available

    Hi gurus
    When I am executing ST03N Tcode and viewed details in Expert Mode it shows data only upto 21st april 2009 i cant able to see the other date days
    Please let me know how i can see the last data after 21st april 2009
    When i am choosing the server in workload its saying that no data available for server after expanding in day tab its showing only upto 21st april 2009
    Thanks and regards
    S.Satyanarayana Raju

    Hello Raju,
    Please check if the SAP standard job background job SAP_COLLECTOR_FOR_PERFMONITOR is scheduled in background of your system in periodically. Seems this job didn't run after 21st April on your system.
    Regards
    Gautam

Maybe you are looking for

  • Oracle Database 10.2.0.1 + Apache 2.0.59 + PHP 5.2.0

    Hi all. Where can i find the changePerm.sh script for Oracle Database 10.2.0.1? I get the error: Warning: ocilogon() [function.ocilogon]: OCIEnvNlsCreate() failed. There is something wrong with your system - please check that ORACLE_HOME is set and p

  • How to install ios on my new hard drive?

    My macbook's hardrive died. I have to change it, I have a spare hard drive at home, but I was never provided with an installation disc. how am i supposed to go ahead with the installation?

  • Safari won't display Google calendar

    When I try to go to my calendar it lets me log in, and then I get a blank page with this heading http://www.google.com/calendar/render?pli=1&auth=DQAAAK0AAAASFliuHACidT51p-j6oWqsyZkmPFbmWYZQn2U7tpdDS_y80ZWGmEA0n5OUI7AHpeWk21xEiX4NEbb8eSrGLMq5TR6 -cTh

  • Not starting on after trying to fix Kernel Panic crash

    hello my macbook pro crash, at first once few days, and now once couple hours. it notified a KERNEL PANIC, asking to restart the computer. i have done it few times, without doing anything else in order to fix it. today i tried to fix the kernel panic

  • SRM7.0-No standard Integration Scenarios & Integration Processes & Msg Map

    Hi, In Integration Repository of PI, for s/w component SRM 7.0, there is no standard 'Integration Scenarios & Integration Processes' & standard 'Message Mapping' in any of the namespaces. But in SRM 5.0, it 'Integration Scenarios & Integration Proces