APO BW datasouce not displaying past data

Hi APO Experts,
we have few data sources in APO system from which we are extracting data into BW.
We are facing a peculiar problem :
If you run the datasource for period 01.2009 to 08.2009, it displays no data.
However, if you give the calmonth period as 01.2009 to 09.2009, it displays data even for past periods that is prior to 09.2009.
This implies that data does exist for period 01.2008 to 08.2009.
Is it a mandatory selection criteria that the higher date range interval should be greater than or equal to current month.
If yes, where is this setting maintained.
Your earliest help will be highly appreicated.
Regards

Hi Nitya,
             It is not mandatory that date interval should be greater than the current date.
You should check the time series that has been initialized or not.
Some times the previous period will be locked automatically based on custom settings.
So you need to check with those settings as well.
But you can process any data at any time.
Regards,
Santosh

Similar Messages

  • View the .rtf file not display the data in BI Publisher Enterprise.

    Hi,
    Platform: OBIEE 10g in NT XPsp2
    View the .rtf file not display the data in BI Publisher Enterprise.
    Step 1, I created Answer-request, create .rtf file with Word and add the request name, Add bar chart and table, preview PDF is working fine with data, Upload this template to Answers, View Template from Answer is working fine with data.
    Step 2, Answers – More Products > BI Publisher > My Folders > Create a new report > Edit > Data Model > New > Type: SQL Query > Data Source: Oracle BI EE > Query Builder > from SupplierSales assign Customer, Periods, Sales Facts (select Region, state, Year, Units Shipped) > Results > Save > Save
    Click Layouts > New > enter Name ….. > Click Layouts > borrows .rtf file in Manage T file > Upload > Save > Click View
    It is showing only the .rtf file without data. Why there is no data?
    Please guide me to solve this issue.
    Thanks,
    Jo

    Thanks for you reply,
    Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
    We dint face this kind of issue while developing other reports.
    So please let us know if you have any idea on why we are facing this issue.
    Regards,
    Maneesh

  • Strange scenario,Oracle can not display the data in mysql correctly

    I use Heterogeneous Service+ODBC to achieve "oracle access mysql"(any other method?),and now i find Oracle can not display the data in mysql correctly:
    -------mysql------------
    mysql> create table tst(id int,name varchar(10));
    Query OK, 0 rows affected (0.00 sec)
    mysql> insert into tst values(1,'a');
    Query OK, 1 row affected (0.00 sec)
    mysql> select * from tst;
    ------------+
    | id | name |
    ------------+
    | 1 | a |
    ------------+
    1 row in set (0.00 sec)
    mysql> show create table tst\G
    *************************** 1. row ***************************
    Table: tst
    Create Table: CREATE TABLE `tst` (
    `id` int(11) DEFAULT NULL,
    `name` varchar(10) DEFAULT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8
    1 row in set (0.00 sec)
    -------------oracle ------------------
    SQL> select count(*) from "tst"@mysql;
    COUNT(*)
    49
    SQL> select * from "tst"@mysql;
    id
    1
    SQL> desc "tst"@mysql;
    Name Null? Type
    id NUMBER(10)

    You can make the following query on the result page:
    "select * from the_table where movietitle = ? and cinema = ?"
    then you set movietitle and cinema to those which the user selected. If the resultset contains more than 0 rows, that means the movie is available.
    Below is the sample code, it assumes you have a connection to the database:
    PreparedStatement stat = myConnection.prepareStatement("select * from the_table where movietitle = ? and cinema = ?");
    stat.setString(1, usersMovieTitleSelection);
    stat.setString(2, usersCinemaSelection);
    ResultSet res = stat.executeQuery();
    if (res.next()) {
    out.print("The movie is available");
    } else {
    out.print("The movie is not available");
    }Now just add that to your JSP page. Enjoy ! =)

  • DataGrid does not display XML data

    Hello, and thanks for reading this...
    I am having a problem displaying XMLList data in a DataGrid.
    The data is coming from a Tree control, which is receiving it
    from a database using HTTPService.
    The data is a list of "Job Orders" from a MySQL database,
    being formatted as XML by a PHP page.
    If it would be helpful to see the actual XML, a sample is
    here:
    http://www.anaheimwib.com/_login/get_all_orders_test2.php
    All is going well until I get to the DataGrid, which doesn't
    display the data, although I know it is there as I can see it in
    debug mode. I've checked the dataField property of the appropriate
    DataGrid column, and it appears correct.
    Following is a summary of the relevant code.
    ...An HTTPService named "get_all_job_orders" retrieves
    records from a MySQL database via PHP...
    ...Results are formatted as E4X:
    HTTPService resultFormat="e4x"
    ...An XMLListCollection's source property is set to the
    returned E4X XML results:
    ...The "order" node is what is being used as the top-level of
    the XML data.
    <mx:XMLListCollection id="jobOrdersReviewXMLList"
    source="{get_all_job_orders.lastResult.order}"/>
    ...The "jobOrdersReviewXMLList" collection is assigned to be
    the dataProvider property of a Tree list, using the @name syntax to
    display the nodes correctly, and a change event function is defined
    to add the records to a DataGrid on a separate Component for
    viewing the XML records:
    <mx:Tree dataProvider="{jobOrdersReviewXMLList}"
    labelField="@name"
    change="jobPosForm.addTreePositionsToDG(event)"/>
    ...Here is the relevant "jobPosForm" code (the Job Positions
    Form, a separate Component based on a Form) :
    ...A variable is declared:
    [Bindable]
    public var positionsArray:XMLList;
    ...The variable is initialized on CreationComplete event of
    the Form:
    positionsArray = new XMLList;
    ...The Tree's change event function is defined within the
    "jobPosForm" Component.
    ...Clicking on a Tree node fires the Change event.
    ...This passes an event object to the function.
    ...This event object contains the XML from the selected Tree
    node.
    ...The Tree node's XML data is passed into the positionsArray
    XMLList.
    ...This array is the dataProvider for the DataGrid, as you
    will see in the following block.
    public function addTreePositionsToDG(event:Event):void{
    this.positionsArray = selectedNode.positions.position;
    ...A datagrid has its dataProvider is bound to
    positionsArray.
    ...(I will only show one column defined here for brevity.)
    ...This column has its dataField property set to "POS_TITLE",
    a field in the returned XML record:
    <mx:DataGrid width="100%" variableRowHeight="true"
    height="75%" id="dgPositions"
    dataProvider="{positionsArray}" editable="false">
    <mx:columns>
    <mx:DataGridColumn width="25" headerText="Position Title"
    dataField="POS_TITLE"/>
    </mx:columns>
    </mx:DataGrid>
    In debug mode, I can examine the datagrid's dataProvider
    property, and see that the correct XML data from the Tree control
    is present. However, The datagrid does not display the data in any
    of its 6 columns.
    Does anyone have any advice?
    Thanks for your time.

    Hello again,
    I came up with a method of populating the DataGrid from the
    selected Item of a Tree Control which displays complex XML data and
    XML attributes. After the user clicks on a Tree branch, I call this
    function:
    public function addTreePositionsToDG(event:Event):void{
    //Retrieve all "position" nodes from tree.
    //Loop thru each Position.
    //Add Position data to the positionsArray Array Collection.
    //The DataGrid dataprovider is bound to this array, and will
    be updated.
    positionsArray = new ArrayCollection();
    var selectedNode:Object=event.target.selectedItem;//Contains
    entire branch.
    for each (var position:XML in
    selectedNode.positions.position){
    var posArray:Array = new Array();
    posArray.PK_POSITIONID = position.@PK_POSITIONID;
    posArray.FK_ORDERID = position.@FK_ORDERID;
    posArray.POS_TITLE = position.@POS_TITLE;
    posArray.NUM_YOUTH = position.@NUM_YOUTH;
    posArray.AGE_1617 = position.@AGE_1617;
    posArray.AGE_1821 = position.@AGE_1821;
    posArray.HOURS_WK = position.@HOURS_WK;
    posArray.WAGE_RANGE_FROM = position.@WAGE_RANGE_FROM;
    posArray.WAGE_RANGE_TO = position.@WAGE_RANGE_TO;
    posArray.JOB_DESCR = position.@JOB_DESCR;
    posArray.DES_SKILLS = position.@DES_SKILLS;
    positionsArray.addItem(posArray);
    So, I just had to manually go through the selected Tree node,
    copy each XML attribute into a simple Array, then ADD this Array to
    an ArrayCollection being used as the DataProvider for the DataGrid.
    It's not elegant, but it works and I don't have to use a Label
    Function, which was getting way too complicated. I still think that
    Flex should have an easier way of doing this. There probably is an
    easier way, but the Flex documentation doesn't provide an easy path
    to it.
    I want to thank you, Tracy, for the all the help. I checked
    out the examples you have at www.cflex.net and they are very
    helpful. I bookmarked the site and will be using it as a resource
    from now on.

  • Product Revenue Bookings and Backlog Dashboard does not display any data

    Product Revenue Bookings and Backlog Dashboard does not display any data even though the load completed successfully.
    They are able to see just the parameters.
    Not sure if the upgrade of the database from 9.2.0.6 to 10.2.0.3 is a factor.
    What can I check?
    Is there some table to verify that the data exists for display in the Product Revenue Bookings and Backlog Dashboard?
    Screenshot is at:
    https://gtcr.oracle.com/gtcr-dir/gtcr_5637/6415786.993/Product_Revenue_Bookings_Backlog_Dashboard.doc
    Support suggested to create a new request set and run the initial load with load all summaries option; but there was no change in the Product Revenue Bookings and Backlog Dashboard.
    Any ideas?

    hi
    We have faced the similar problem after the upgrade to 10G
    What we did was
    Ran the initial load of time dimension, Item setup request set, and the request set of all the dash board in the clear and initial load mode..
    we were able to get the data once the clear and load is completed successfully
    Regards
    Ramesh Kumar S

  • Query not displaying correct data

    hi all
    my query is not displaying correct data.
    in data target secondary sales is showing 1.800 value but in query it is showing
    2.00.my requirement is my query shuld show 1.800 value. i also tried to change decimal points but not changes has happend.plz let me knw what is the problem
    thanks in advance
    shalini gupta

    With which u r reconciling the data.
    With R3 or Cube.
    I think check ur key figure, have u taken the key figure 'with TAX' one or with out tax one??
    Regards,
    Manoj.

  • S_ALR_87013611 is not displaying any data for GL

    Hi,
    THe report S_ALR_87013611 is not displaying any data for GL. How to go about this
    Regards
    SM

    Hi,
    S_alr_87013611 is a report where we can see the  planned and actual costs  in cost elements in cost center wise  for a specific controlling are for a given period.
    Please check if your GL accounts are assigned with the cost elements in FS00.
    If not create them.
    You can assing all cost elements to many GL  at a time using
    OKb2_ Give the range and the cost element for each range eg, expenses range - cost element 1, incomeange _Cost element as 11 etc.
    OKb3 _Create the batch input session
    SM30_ Run the batch input session created
    Also please check if you have given the cost center group costt senter range while you entered the ranges in the selection screen in this report.
    Similarly please check the cost elements and cost elements group also.
    Thanks,
    Shilpa.

  • MI CLIENT(SIMULATOR) IS NOT DISPLAYING ANY DATA AFTER SYNC

    Hi ,
    I am facing a problem in displaying the data in the mobile client(Simulator).
    STEP1: I have created the data objects in the MI7.1 server and then updated the CDS(CDS is having values ) and the created the devices in the Mobile administrator .
    STEP2: Created the client UI (Composite Development) deployed ,no errors and able to view the application.
    STEP3: Device queue i filled up,Tried to sync the client with the DOE (SYNC Successful). checked the C\:....IDE\CE\eclipse\plugins\com.sap.tc.mobile.dt.oca.rt\MI\data\dba this is having the databases for the device.(MINDB and the corresponding tables)
    But when I opened up the client to run the application again then also no data i appearing in the client (Simulator). When i Checked the log file it is giving an java.util.MissingResourceException. trace show like this.
    <?xml version="1.0" encoding="utf-8"?>
    <l>
    <h n="..\log\trace_0.trc" v="1.5" d="2009-03-05" t="18:53:50">
    <f n="BuildVersion" v="71505"/>
    <f n="BuildDate" v="2008-11-11"/>
    <f n="BuildTime" v="02:08:00"/>
    <f n="MI" v="71"/>
    <f n="SP" v="5"/>
    <f n="Patch" v="05"/>
    <f n="DeviceType" v="PDA"/>
    </h>
    <rs>
    <r id="1236259430817" t="18:53:50" d="2009-03-05" s="E" c="000" u="" g="" m="java.util.MissingResourceException: Can&apos;t find resource for bundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle, key START_MOBILE_CLIENT">
    <f n="LocationName" v=" (com.sap.ip.me.api.services.MEResourceBundle:handle get object missing resource exception )"/>
    <f n="ThreadName" v="main"/>
    </r>
    <r id="1236259430989" t="18:53:50" d="2009-03-05" s="I" c="000" u="" g="" m="Logging initialized">
    <f n="LocationName" v=" (com.sap.tc.mobile.logging.impl.FileLogger:)"/>
    <f n="ThreadName" v="main"/>
    </r>
    <r id="1236259430990" t="18:53:50" d="2009-03-05" s="I" c="000" u="" g="" m="Logging initialized">
    <f n="LocationName" v=" (com.sap.tc.mobile.logging.impl.FileLogger:)"/>
    <f n="ThreadName" v="main"/>
    </r>
    <r id="1236259431942" t="18:53:51" d="2009-03-05" s="D" c="000" u="" g="" m="SELECT C_VALUE FROM CFS_COUNTER WHERE C_ID = 0">
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    <r id="1236259432036" t="18:53:52" d="2009-03-05" s="D" c="000" u="" g="" m="UPDATE CFS_COUNTER SET C_VALUE = 591 WHERE C_ID = 0">
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259432051" t="18:53:52" d="2009-03-05" s="D" c="000" u="" g="" m="SELECT * FROM CFS_CONFIGURATION">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    <r id="1236259432208" t="18:53:52" d="2009-03-05" s="I" c="000" u="" g="" m="Database: Embedded MinDB/1.1.08.22 Windows XP (Make-Version: 2007-12-28 16:02)">
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManager:logDatabaseInfo)"/>
    <f n="ThreadName" v="main"/>
    </r>
    <r id="1236259432209" t="18:53:52" d="2009-03-05" s="I" c="000" u="" g="" m="Database driver: Embedded MinDB JDBC Driver, com.sap.sdb.minDB.DriverEmbeddedMinDB/1.1.08.22 Windows XP (Make-Version: 2007-12-28 16:02)">
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManager:logDatabaseInfo)"/>
    <f n="ThreadName" v="main"/>
    </r>
    <r id="1236259432210" t="18:53:52" d="2009-03-05" s="I" c="000" u="" g="" m="set db.name = Embedded MinDB ">
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.conf.Configuration:setConfiguration)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259432489" t="18:53:52" d="2009-03-05" s="D" c="000" u="" g="" m="SELECT * FROM M13AGENT WHERE CFS_STATUS &lt; 16384 AND (AGENT_ID=&apos;CONFIG&apos;)">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManager:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    </r>
    *<r id="1236259447023" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;3440261DA6540CA00000011FD49B5315&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447024" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;353062DE978F9C170000011FD49B5325&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447025" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;353062DE978F9C170000011FD49B5325&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447026" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;463F48C8533E632C0000011FD51502B7&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447027" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;463F48C8533E632C0000011FD51502B7&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447028" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;47E3F9952E4ADDAE0000011FD49B5306&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447029" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;47E3F9952E4ADDAE0000011FD49B5306&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447030" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;57DE1F0E1E4EAA4A0000011FD5A49451&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447031" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;57DE1F0E1E4EAA4A0000011FD5A49451&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447032" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;A79E36195B3ACA7C0000011FD5A49460&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447033" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;A79E36195B3ACA7C0000011FD5A49460&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447034" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;E3FF3F9A3B1F5E6E0000011FD49B5325&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447035" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;E3FF3F9A3B1F5E6E0000011FD49B5325&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447036" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;F8C6E8FDB201E6E10000011FD49B5306&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447037" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;F8C6E8FDB201E6E10000011FD49B5306&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447038" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M1COMPONENT_DEPENDENCIES WHERE CFS_STATUS &lt; 16384 AND (PSYNCKEY=&apos;0B0BE741EA189E100000011FD5A49403&apos;)">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManager:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447039" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M0ARCHIVE WHERE CFS_STATUS &lt; 16384 AND (MCD_NAME=&apos;flight_details&apos; AND MCD_VERSION=&apos;1.0&apos;)">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManager:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447040" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M2DEPLOYMENT_STATUS WHERE DEP_SYNCKEY=&apos;A79E36195B3ACA7C0000011FD5A49460&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447041" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M4PROPERTIES WHERE PSYNCKEY=&apos;A79E36195B3ACA7C0000011FD5A49460&apos;">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManagerImpl:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    *<r id="1236259447042" t="18:54:07" d="2009-03-05" s="D" c="000" u="MNISHAD" g="en" m="SELECT * FROM M1COMPONENT_DEPENDENCIES WHERE CFS_STATUS &lt; 16384 AND (PSYNCKEY=&apos;A79E36195B3ACA7C0000011FD5A49460&apos;)">*
    <f n="LocationName" v=" (com.sap.tc.mobile.cfs.pers.PersistenceManager:execute)"/>
    <f n="ThreadName" v="main"/>
    </r>
    .I do not know what is the exact problem.could anyone help me out.

    Hi Muhammed,
    I've followed every steps you mentioned but the problem persists.
    My JDK version is JDK1.5.0_17.
    I've just tried to use as data object in my application the USERDETAILS standard data object but no data is shown in my table in the application.
    If it could be useful, I'm using NW Mobile 7.1 SP7 but I'm still using eclipse plugins for SP4 because when I tried to update them to SP7 I got several errors in NWDS. I wasn't able to see exisitng components in the mobile prospectives.
    Thanks, Beatrice

  • Not displaying the data in the ALV Microsoft Excel (Ctrl+Shift+F7)..

    Hi All,
    I can able to display the data through the FM REUSE_ALV_GRID_DISPLAY in the out put screen.When I click on the Microsoft Excel (CtrlShiftF7) at the ALV toolbar to view the same data in excel sheet it does open the excel sheet WITHOUT ANY DATA. Please help me how to make the data visible in the excel sheet.
    Can anyone help in this regard.
    Thanks & Regards,
    Seshadri G

    Hi,
    Check whether the tool bar export is disabled in the alv.
    check in the alv->set_table_for_first_display  FM the toolbar exclude export list.
    If that is ok, then try download manually by providing abutton and clicking it. You can download data manually in this way.
    refer the code below.
    DATA: lv_path      TYPE string,
            lv_fullpath  TYPE string,
            lc_c         TYPE string,
            v_fnam       TYPE string,
            lc_date(15)      TYPE c.
      TYPES: BEGIN OF ts_fieldnames,
                field_name(1000),
             END OF ts_fieldnames.
      lc_c =  'C:\'.
      WRITE sy-datum TO lc_date.
      DATA:lt_fieldnames TYPE STANDARD TABLE OF ts_fieldnames,
           ls_fieldnames TYPE ts_fieldnames,
           lt_fieldnames1 TYPE STANDARD TABLE OF ts_fieldnames,
           ls_fieldnames1 TYPE ts_fieldnames,
           lt_fieldnames2 TYPE STANDARD TABLE OF ts_fieldnames,
           ls_fieldnames2 TYPE ts_fieldnames,
           lt_fieldnames3 TYPE STANDARD TABLE OF ts_fieldnames,
           ls_fieldnames3 TYPE ts_fieldnames,
           lt_fieldnames5 TYPE STANDARD TABLE OF ts_fieldnames,
           ls_fieldnames5 TYPE ts_fieldnames.
      CONCATENATE 'ContractAccount'
                  'DocumentNumber'
                  'Reference/InvoiceDocumentNumber'
                  'ClearingDocumentNumber'
                  INTO ls_fieldnames-field_name SEPARATED BY
                  cl_abap_char_utilities=>horizontal_tab.
      APPEND ls_fieldnames TO lt_fieldnames.
      CONCATENATE '' ''
                  INTO ls_fieldnames5-field_name SEPARATED BY
                  cl_abap_char_utilities=>newline.
      APPEND ls_fieldnames5 TO lt_fieldnames5.
      DATA :    ls_str1 TYPE string,
                ls_str2 TYPE string.
      ls_str1 = 'Invoice Clearing Posting'.
      ls_str2 = 'Payment On Account Posting'.
      CONCATENATE ls_str1  ' :: ' lc_date INTO ls_fieldnames2-field_name.
      APPEND ls_fieldnames2 TO lt_fieldnames2.
      CONCATENATE ls_str2 ' :: ' lc_date INTO ls_fieldnames3-field_name.
      APPEND ls_fieldnames3 TO lt_fieldnames3.
      CONCATENATE 'ContractAccount'
                  'Reference/InvoiceDocumentNumber'
                  'PostOnAccountDocumentNumber'
                  INTO ls_fieldnames1-field_name SEPARATED BY
                  cl_abap_char_utilities=>horizontal_tab.
      APPEND ls_fieldnames1 TO lt_fieldnames1.
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          window_title      = 'Select file for download'
          default_extension = '.xls'
          default_file_name = lv_path
          initial_directory = lc_c
        CHANGING
          filename          = lv_path
          path              = lc_c
          fullpath          = lv_fullpath
        EXCEPTIONS
          cntl_error        = 1
          error_no_gui      = 2
          OTHERS            = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        v_fnam = lv_fullpath.
      ENDIF.
      IF v_fnam IS INITIAL.
        RETURN.
      ENDIF.
      IF i_finalclear[] IS NOT INITIAL.
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            filename              = v_fnam
            filetype              = 'DAT'
           HEADER                = header
            append                = 'X'
            write_field_separator = 'X'
          CHANGING
            data_tab              = lt_fieldnames2
          EXCEPTIONS
            OTHERS                = 8.
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            filename              = v_fnam
            filetype              = 'DAT'
           HEADER                = header
            append                = 'X'
            write_field_separator = 'X'
          CHANGING
            data_tab              = lt_fieldnames
          EXCEPTIONS
            OTHERS                = 8.
    REgards
    sheron

  • Not displaying the data in to the table..wht is the issue

    I have problem for the displaying the RFC Model object date in to the table.
    I have created the Table in the view, Then  i have choosed  the "create  binding" option in the outLine window to map the perticular RFC model object to the Table to display. The data is not displaying in the table . But the RFC model object contains data. when i am trying to display with MessageMaganger.reporSuccess(). it is diplaying the data.
    Can any one tell me what is the issue.

    First, in your view layout in NWDS,  look at the tableview,  do you see fieldnames in the columns and rows.  If so, then I believe that you have bound correctly.    Also, in your executeBAPI method,  make sure that it looks something like this.
        public void executeBapi_Gl_Acc_Getlist_Input( )
        //@@begin executeBapi_Gl_Acc_Getlist_Input()
        try{
             wdContext.currentBapi_Gl_Acc_Getlist_InputElement().modelObject().execute();
        catch (Exception ex)
                  ex.printStackTrace();
    <b>    wdContext.nodeOutput().invalidate();</b>
        //@@end
    Regard,
    Rich Heilman

  • Bi Dashboards issue works properly some times and after not display pointers data and give un expected error and throw login window

    HI,
    I have toff situation where  we deployed bi dashboards in our site and it works some time and some times not,
    and some times it keep loading and throw a login window.
    works when
    we restart performance point service  and if not work
    we re create secure store service and generated new key and create new pps service application
    before that we stopped secure store and pps service  using c.a in application server
    we are using ssas for datasource to connect  from dashboard designer
    we have seperate server for ssas dbs
    seperate application server running: pps service and secure store service
    two web front ends:  one of running secure store
    1 Domain controller + central admin service running
    some times after 4 -5 hours bi dashboards works , we dashboards not display data and throw un expected errors,
    also when we try to connect using a dashboard designer from a seperate client machine in same domain ,we have same issue , we unable to connect to ssas datasource server, and if connect some times unable to deploy dashboards.
    we tried every thin icreased server time out values  in ssas server
    :\Program Files\Microsoft SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Config\msmdsrv.ini. in this location
    and in 
    c:\program files\common files\microsoft shared\web server extensions\14\webclients\ppsmonitoringServer\client.config
    maxStringContentLength="2147483647"
    maxNameTableCharCount="2147483647"
    maxBytesPerRead="2147483647"
    maxArrayLength="2147483647"
    maxDepth="2147483647" />
    even we have same issue
    is some thing happening when dashboards working some time and  after some time not 
    is a secure store crashing or its still request pending in IIS and not authenticating to data soruce why 
    below are the logs
    Here are the results of the log analysis :
    server wfe1 
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C PerformancePoint Service PerformancePoint Services 39 Critical A PerformancePoint service application call was aborted by the caller.  This may indicate the HttpRuntime executionTimeout for the Web Application
    is configured to a value smaller than the DataSourceQueryTimeout for the PerformancePoint Service Application. 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C PerformancePoint Service PerformancePoint Services ef8z Critical ‏‏حدث
    استثناء
    أثناء عرض
    عنصر ويب.
    قد تساعد
    معلومات التشخيص
    التالية في
    تحديد سبب
    هذه المشكلة:  Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.  ‏‏رمز
    خطأ "خدمات PerformancePoint"
    هو 20700. 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C SharePoint Foundation Runtime ba3q Medium Redirect to error.aspx?ErrorText=Request%20timed%20out%2E failed. Exception: System.Web.HttpException: The remote host closed the connection. The error code is 0x800704CD.    
    at System.Web.Hosting.IIS7WorkerRequest.RaiseCommunicationError(Int32 result, Boolean throwOnDisconnect)     at System.Web.Hosting.IIS7WorkerRequest.ExplicitFlush()     at System.Web.HttpResponse.Flush(Boolean finalFlush)    
    at System.Web.HttpResponse.End()     at Microsoft.SharePoint.Utilities.SPUtility.Redirect(String url, SPRedirectFlags flags, HttpContext context, String queryString) 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:47:32.69 w3wp.exe (0x2128) 0x2154 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 78c107cd-0d4b-46f5-8e1a-0d9b4ebc7b29
    09/01/2014 15:07:40.74 w3wp.exe (0x2128) 0x209C PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/28_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) abf0263d-7333-4e4f-9cd4-a3a4dcb700c0
    09/01/2014 15:13:25.92 w3wp.exe (0x2128) 0x18DC PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/218_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) b35bf864-54f4-43fa-88a8-44cdf938bfa2
    09/01/2014 15:11:10.87 w3wp.exe (0x2128) 0x1F88 PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Courts/Bic/Lists/PerformancePoint Content/4_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) 7cea0eb6-214f-4d7b-a6e7-97a0fe11c956
    09/01/2014 15:11:40.87 w3wp.exe (0x2128) 0x2150 PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/162_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) 4154222b-6ff0-4b64-81b8-d08501a19278
    server wfe 2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    In the Roiscan logs we get an error in regards to the English Language pack:
    Review Items
    ============
    Error:                       Product {90140000-1015-0409-1000-0000000FF1CE} - Microsoft SharePoint Foundation 2010 1033 Lang Pack:  has unexpected
    file state(s).
    adil

    chinnijagadeesh,
    You suck!
    Signed: The rest of the universe.
    ... and quit crossposting FFS... it really is quite annoying!

  • Text box does not display the date??

    I have a text box <input type="TEXT" name="invoiceDate" readonly></input>. I select the date using datepicker .The date gets displayed in the text box.Then i click on "Show" button which loads the same jsp page again.
    When the page is loaded the text box does not show the date.
    I try to save the date in the text box as
    <% String date1=request.getParameter("invoiceDate");
    <input type="hidden" name="date1" value="<%=date1 %>">
    <%>
    The value is saved in this hidden variable..
    Plz help me what to do next
    Thanks

    Its a hidden field and that's why it isnt displayed.
    Use
    <input type="text" name="date1" value="<%=date1 %>"> ram.

  • CR 2008 not Displaying the Data

    CR 2008 not displaying the well formatted Data when loading the report using ASP.Net 4.0 AJAX.

    hi,
    Could you please elaborate the requirement and post it in the
    SAP Community Network Forums » Business Intelligence (BusinessObjects / Crystal Solutions) » SAP Crystal Reports Design
    Regards,
    Vamsee

  • BEO Calendar not displaying certain dates

    Hello
    I'm trying to set up a calender which includes, amongst other dates, 30 November 2009.  However, because November 2009 spans 6 weeks (1st on week 1, 30th on week 6) the 30th is not displayed.
    Is there any way to overcome this as it will mean that I cannot set the reports to run on that date.
    Thanks
    David

    Try a reset. Nothiong is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • Workflow Not displaying in Data Manager once it is launched ...

    I am experiencing a strange problem in Data Manager Workflow Tab. I am using MDM 5.5 SP6.
    While importing records either Iby using import Manager OR Import server, workflow is triggered and we can see the  workflow in the workflow tab with status 'Unlaunched' and once it is launched it is not displaying any other steps and it disappears after completes the workflow. But all the steps in the workflow completed successfully.  Workflow tab is empty for Status = ALL.
    This was working fine until few days back.
    Anyone experience this issue?
    Edited by: Lamp S on Mar 12, 2010 11:24 PM

    Hi,
    I think it may be because you are using wrong user to check this.
    Try to login into Data manager through Workflow Owner User ID.. it should display All workflow jobs there, even completed ones also. and Status = ALL should work there.
    The workflow owner has special privileges and visibility. The owner of a workflow is the only user who can see in its task queue for every instance of every step that is available to or received by every other user. I think, other users will see tasks only if it is step is available for them or in received status.
    Check and revert with the result.
    Regards,
    Shiv

Maybe you are looking for