Data Missing in Reports

Hi,
I am assigned an issue where the data is not reflecting in the BI reports.
Scenario:
A new vendor number was assigned to an existing customer in September 2010. After this month, data for this customer is not appearing in the reports.
Analysis:
I checked for the multiprovider for the available data. The vendor number for this customer is the old one and not the new one.
I checked the transaction fk03 for vendor details, there the new vendor number is assigned for this customer.
I checked the query based on the mp, the characteristic value assigned for this vendor is the old one.
I am not able to connect these things altogether and carry forward. Please help.
Thanks ,
Saurav

Hi Saurav
have you reloaded customer master data to BW after this change?
if no please do that.
Also master data loaded prior to this change will continue to have link with older vendor unless you dont reload this.
this happens because transaction data loaded prior to change will still have SID of older vendor only.
Also make sure you run Attribute change run after you reload master data.
hope this helps.
Regards
Sudeep
Edited by: Sudeep Paranjape on Mar 29, 2011 6:04 PM

Similar Messages

  • T.code KKRS - target data missing in reports - t.code KKSB

    Hi Gurus,
    when i am extracting the product hierarchy reports using the t.code KKRS.
    I am unable to see target data in year 2012 report only. But for year 2011, i am able to see both the target data and actual data.
    In 2012 i am able to see only actual data.
    What might be the reason of missing the target data in year 2012? What i should do?
    Thanks a lot,
    Gustavo

    Dear Gustavo
    please check note 87010
    br, Guido

  • Data missing from report

    Hi
    I have a data set in a BIDS report and when I select the RUN ! option in Query Designer i get the following sample data
    When I look at Preview View in the report the rows relating to ra_tncy_no 202519 are missing. All other data is showing in the report as expected.
    Can anyone assist with why the data is not showing in the report view
    Thanks
    John

    Hi John,
    According to your description, when you preview the report, displayed data is not corresponding to the query results within the query designer.
    In your scenario, the issue could cause by that you have specified the visibility expression for ra_tncy_no field within group properties. Please go to Row Groups pane, click the first drop down button then select Group Properties. On Visibility page, please
    check if you have selected the display option like below and the expression is specified which value in ra_tncy_no field should hide or display. If so, please change the display option to Show.
    Besides, the issue could also cause by that you have add a filter condition within Group Properties. Please check the Filters page, if it looks below and the condition is used for filtering ra_tncy_no field , please delete the condition.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Data missing in report

    Hi all,
    I am working on Purchasing, in that i have 0vendor which have navigational attribute Preferred Supplier.
    In my report i kept preferred supplier in filter with value not assigned.
    after i run the report 4 records r missing, when i campare this with the same report in other dev server.
    i identified more values in preferred supplier in the other dev box, than in which server i developed. is it problem of that,
    What r those values i mean is it masterdata?
    Values: i was talking abt in navigation block, under dimensions.
    Regards,
    Madhu.

    If 0vendor has navigational attribute Preferred Supplier then Preferred Supplier will reflect values from master data table for corresponding valus of 0vendor.
    You are comparing too diff boxes all togather...are they being loaded from the same source..
    compare the records in cube and master data in the both the servers

  • Data missing in reporting views

    Hi,
    As you can see below in the query, I am trying to report on hourly data (say 9:00 am, 10:00 am, 11:am , 12 pm) of current date time...I am finding data only in the CURRENT and DAILY views (whereas the DETAILS and HOURLY views are empty).
    Where do I get the hourly information (not just current hour but for a window of 5-6 hrs from current time) ?
    --25 hour period value for Read and write (Disk I/O)
    --Details view
    SELECT DISTINCT
      A.TARGET_NAME,
      A.TARGET_TYPE,
      A.COLLECTION_TIMESTAMP,
      sum(A.VALUE) AS READ_VALUE,
      sum(B.VALUE) AS WRITE_VALUE
      --A.KEY_VALUE 
    FROM
      OEM_COPY.MGMT$METRIC_DETAILS A,
      OEM_COPY.MGMT$METRIC_DETAILS B 
    WHERE
           A.TARGET_TYPE = B.TARGET_TYPE
       AND A.TARGET_NAME = B.TARGET_NAME
       AND A.TARGET_GUID = B.TARGET_GUID
       AND A.METRIC_LABEL = B.METRIC_LABEL
       AND TO_CHAR(A.collection_timestamp,'MM/DD/YYYY HH24') = TO_CHAR(B.collection_timestamp,'MM/DD/YYYY HH24')
       AND A.KEY_VALUE = B.KEY_VALUE
       AND A.METRIC_LABEL  In  ( 'Database Files'  )
       AND A.METRIC_COLUMN  In  ( 'write_cs'  )
       AND B.METRIC_COLUMN  In  ( 'read_cs'  )
       AND A.TARGET_TYPE  In  ( 'oracle_database'  )
       AND A.TARGET_NAME IN ('phadmdv')  
    GROUP BY
      A.TARGET_NAME,
      A.TARGET_TYPE,
      A.COLLECTION_TIMESTAMP
    ORDER BY
      A.TARGET_NAME,
      A.TARGET_TYPE,
      A.COLLECTION_TIMESTAMP
    --Current value for Read and write (Disk I/O)
    --From hourly table (empty)
    SELECT DISTINCT
      C.TARGET_NAME,
      C.TARGET_TYPE,
      C.ROLLUP_TIMESTAMP,
      sum(C.KEY_VALUE) AS READ_VALUE,
      sum(B.KEY_VALUE) AS WRITE_VALUE
      --A.KEY_VALUE 
    FROM
      OEM_COPY.MGMT$METRIC_HOURLY C,
      OEM_COPY.MGMT$METRIC_HOURLY B 
    WHERE
           C.TARGET_TYPE = B.TARGET_TYPE
       AND C.TARGET_NAME = B.TARGET_NAME
       AND C.TARGET_GUID = B.TARGET_GUID
       AND C.METRIC_LABEL = B.METRIC_LABEL
       AND TO_CHAR(C.ROLLUP_TIMESTAMP,'MM/DD/YYYY HH24') = TO_CHAR(B.ROLLUP_TIMESTAMP,'MM/DD/YYYY HH24')
       AND C.KEY_VALUE = B.KEY_VALUE
       AND C.METRIC_LABEL  In  ( 'Database Files'  )
       AND C.METRIC_COLUMN  In  ( 'write_cs'  )
       AND B.METRIC_COLUMN  In  ( 'read_cs'  )
       AND C.TARGET_TYPE  In  ( 'oracle_database'  )
       AND C.TARGET_NAME IN ('phadmdv')
    GROUP BY
      C.TARGET_NAME,
      C.TARGET_TYPE,
      C.ROLLUP_TIMESTAMP
    ORDER BY
      C.TARGET_NAME,
      C.TARGET_TYPE,
      C.ROLLUP_TIMESTAMP
    --Current value for Read and write (Disk I/O)
    --From daily table (ONLY Daily averages)
    SELECT DISTINCT
      C.TARGET_NAME,
      C.TARGET_TYPE,
      C.ROLLUP_TIMESTAMP,
      sum(C.AVERAGE) AS READ_VALUE,
      sum(B.AVERAGE) AS WRITE_VALUE
      --A.KEY_VALUE 
    FROM
      OEM_COPY.MGMT$METRIC_DAILY C,
      OEM_COPY.MGMT$METRIC_DAILY B 
    WHERE
           C.TARGET_TYPE = B.TARGET_TYPE
       AND C.TARGET_NAME = B.TARGET_NAME
       AND C.TARGET_GUID = B.TARGET_GUID
       AND C.METRIC_LABEL = B.METRIC_LABEL
       AND TO_CHAR(C.ROLLUP_TIMESTAMP,'MM/DD/YYYY HH24') = TO_CHAR(B.ROLLUP_TIMESTAMP,'MM/DD/YYYY HH24')
       AND C.KEY_VALUE = B.KEY_VALUE
       AND C.METRIC_LABEL  In  ( 'Database Files'  )
       AND C.METRIC_COLUMN  In  ( 'write_cs'  )
       AND B.METRIC_COLUMN  In  ( 'read_cs'  )
       AND C.TARGET_TYPE  In  ( 'oracle_database'  )
       AND C.TARGET_NAME IN ('phadmdv')
    GROUP BY
      C.TARGET_NAME,
      C.TARGET_TYPE,
      C.ROLLUP_TIMESTAMP
    ORDER BY
      C.TARGET_NAME,
      C.TARGET_TYPE,
      C.ROLLUP_TIMESTAMPThank you

    I dont understand. what you say
    you say that these query not returns rows and you need to know in what mgmt table is stored the mentioned information

  • Data missing in report--HELP Emergency

    Hello All:
    I've a multiprovider on Cube1 and cube2. Cube 1 has data at day level while cube 2 has monthly level data. The user enters a date suppose 04/30/2007, it brings data from cube1 without any problem, what happens with cube 2. I've written a customer exit to get month from given date for second cube but the key figures are showing blank when I run this report. Calday in the default view (rows) of the report. Please help me with this.
    Thanks in advance,
    Manasa.

    Hi Manasa,
    I guess following check would help you
    Solution 1 : In the multiprovider check keyfigure assignement whether you have checked Cal.day or Cal.month for your second cube .
    Solution 2 : you can restrict cube for your keyfigure by using RKF .If that particular Keyfigures gets data from cube 2.
    you check  the data by using LISTCUBE T.code.for multiproviders.
    Cheers
    Sreedhar

  • We have missing CRM survey data on our report. .

    Hi,
    We have missing CRM survey data on our report. .(BI report)
    After further investigations, we have found out that the data is not being extracted by our CRM BI extractor
    0SVY_DATA_1 (CRM Survey Results).
    Is there is any problem related to CRM configuration.
    The survey is a valid survey .
    Please mention your inputs.wat can be the problem here, or anybody suggest any solution
    Thanks & Regards
    Prajith P
    Edited by: Prajith Prabhakara on Sep 28, 2011 12:39 PM

    Hi,
    I am closing the issue.
    Thanks
    Prajith P

  • No data found on Report based on a collection

    Hi all,
    I got a page with this 'after-header' process :
    begin
      if(apex_collection.collection_exists(p_collection_name => 'users')) then
        apex_collection.delete_collection(p_collection_name => 'users');
      end if;
      apex_collection.create_collection_from_query(
        p_collection_name => 'users',
        p_query => 'select user_name from demo_users');
    end;And then, I try to display the collection data in a report, like with this SQL statement.
    select *
    from apex_collections
    where collection_name='users'I got a 'No data found' for this report... I try this very basic example to understand collections, and I don't know what I'm missing...
    Thanks a lot
    Dovik

    Hi,
    No problem
    Check collection naming
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/advnc.htm#CIHHCGGD
    Have nice day
    Br,Jari

  • Error while creating Data Form Definition report from Planning

    Hi All,
    Working on Planning 11.1.2 (x64)
    I tried to generate a Data Form Definition report from Planning and found that I get an error if I select the option "Include member selection list". By going a bit deeper, I realised that it errors for some forms while works fine for others.
    I have tried to find any differences in setting or selection between the forms but haven't been able to see anything that struck me as a reason for error.
    Help please.
    Thanks,
    Abhishek

    The Planning sysout log says:
    [120910_091125126][oracle.apps.xdo.common.xml.XSLTWrapper][EXCEPTION] XSL error:
    <Line 1, Column 1068>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 1068>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 1075>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 1075>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 1082>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 1082>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 1089>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 1089>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    <Line 1, Column 1096>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 1096>: XML-20250: (Fatal Error) Missing entity 'Year5'.
    <Line 1, Column 4586>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 4586>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 4593>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 4593>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 4600>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 4600>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 4607>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 4607>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    <Line 1, Column 4614>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 4614>: XML-20250: (Fatal Error) Missing entity 'Year5'.
    <Line 1, Column 12215>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 12215>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 12222>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 12222>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 12229>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 12229>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 12236>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 12236>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    <Line 1, Column 12243>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 12243>: XML-20250: (Fatal Error) Missing entity 'Year5'.
    <Line 1, Column 18528>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 18528>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 18535>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 18535>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 18542>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 18542>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 18549>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 18549>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    <Line 1, Column 18556>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 18556>: XML-20250: (Fatal Error) Missing entity 'Year5'.
    <Line 1, Column 39824>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 39824>: XML-20250: (Fatal Error) Missing entity 'Scenario'.
    <Line 1, Column 39905>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 39905>: XML-20250: (Fatal Error) Missing entity 'PriorYear'.
    <Line 1, Column 39985>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 39985>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 39992>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 39992>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 39999>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 39999>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 40006>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 40006>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    <Line 1, Column 40013>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 40013>: XML-20250: (Fatal Error) Missing entity 'Year5'.
    <Line 1, Column 41613>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41613>: XML-20250: (Fatal Error) Missing entity 'CommentYearTarget'.
    <Line 1, Column 41702>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41702>: XML-20250: (Fatal Error) Missing entity 'CommentYearTarget'.
    <Line 1, Column 41791>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41791>: XML-20250: (Fatal Error) Missing entity 'CommentYearTarget'.
    <Line 1, Column 41880>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41880>: XML-20250: (Fatal Error) Missing entity 'CommentYearTarget'.
    <Line 1, Column 41960>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41960>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 41967>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41967>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 41974>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41974>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 41981>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41981>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    <Line 1, Column 41988>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 41988>: XML-20250: (Fatal Error) Missing entity 'Year5'.
    <Line 1, Column 46124>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 46124>: XML-20250: (Fatal Error) Missing entity 'CostCentre'.
    <Line 1, Column 47563>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 47563>: XML-20250: (Fatal Error) Missing entity 'Scenario'.
    <Line 1, Column 47644>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 47644>: XML-20250: (Fatal Error) Missing entity 'PriorYear'.
    <Line 1, Column 47724>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 47724>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 47731>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 47731>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 47738>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 47738>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 47745>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 47745>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    <Line 1, Column 47752>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 47752>: XML-20250: (Fatal Error) Missing entity 'Year5'.
    <Line 1, Column 49431>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 49431>: XML-20250: (Fatal Error) Missing entity 'Scenario'.
    <Line 1, Column 49512>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 49512>: XML-20250: (Fatal Error) Missing entity 'PriorYear'.
    <Line 1, Column 49592>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 49592>: XML-20250: (Fatal Error) Missing entity 'ThisYear'.
    <Line 1, Column 49599>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 49599>: XML-20250: (Fatal Error) Missing entity 'Year2'.
    <Line 1, Column 49606>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 49606>: XML-20250: (Fatal Error) Missing entity 'Year3'.
    <Line 1, Column 49613>: XML-20100: (Fatal Error) Expected ';'.
    <Line 1, Column 49613>: XML-20250: (Fatal Error) Missing entity 'Year4'.
    Most of these are Substitution Variables. I dont know why it is showing a few lines for "Scenario" as well.
    The Planning syserr log says
    java.net.SocketException: socket write error: Connection reset by peer.
         at jrockit.net.SocketNativeIO.writeBytesPinned(Native Method)
         at jrockit.net.SocketNativeIO.socketWrite(SocketNativeIO.java:73)
         at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
         at weblogic.utils.io.ChunkedOutputStream.writeTo(ChunkedOutputStream.java:193)
         at weblogic.servlet.internal.ResponseHeaders.writeHeaders(ResponseHeaders.java:443)
         at weblogic.servlet.internal.ServletResponseImpl.writeHeaders(ServletResponseImpl.java:1291)
         at weblogic.servlet.internal.ServletOutputStreamImpl.sendHeaders(ServletOutputStreamImpl.java:260)
         at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:108)
         at weblogic.servlet.internal.ServletResponseImpl.sendRedirect(ServletResponseImpl.java:907)
         at HspValidatingHttpResponse.sendRedirect(Unknown Source)
         at jsp_servlet.__planninglogoff._jspService(__planninglogoff.java:1411)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:35)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at HspValidationFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    oracle.xml.parser.v2.XMLParseException: Expected ';'.
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:323)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:335)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:318)
         at oracle.apps.xdo.common.xml.XSLTClassic.transform(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
         at HspReportingServlet.Handle(Unknown Source)
         at HspHttpServlet.initialize(Unknown Source)
         at HspHttpServlet.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at HspValidationFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Would be great if you could interpret these log and let me know how I can resolve this.
    Cheers

  • Date data from Crystal Report one day less than Date from Source

    Hi,
    I am creating a Crystal Report 4.0 for Enterprise Users (Client Version only) based on a BEx query. I have a field called 'Date' that I am bringing over from the BEx query. It has a format of MM/DD/YYYY. When I view the 'Date' in Crystal Reports, it is displaying as 1 day less from the actual data. For example, in the BEx Query, 'Date' = 11/01/2011.  In Crystal Reports, it is showing up as 10/31/2011, which is one day behind.  I'm not sure what's going on.
    Please help!

    Well, this is as weird as it gets!
    Here are the observations on SP02:
    1) The Date Characteristic is a day off in the report while the 'Key' shows correct date
    2) It displays in the '30.01.2011' (DD.MM.YYYY)format
    3) When you right-click this field to change the date format, the date option is missing
    4) You create a formula to see if this is a date and it returns True. The formula you can try is :
    isdate(). It returns False for any other function like isnumeric() etc
    5) So, this is a date filed, or CR4E thinks this is a date field, however doesn't let us change the format
    6) You cannot use this field with date functions like cdate(); weird!
    7) The only way you can show it the way you want is to write this formula:
    *mid(,4,2)&"/"&left(,2)&"/"&Right(,4)*
    This is still a string field, however displays as MM/DD/YYYY.
    In Crystal Reports 2011, however, the following formula on the same date field returns a date value, meaning you can further right-click this formula field to change the date format like a normal date field:
    cdate(tonumber(Right(,4)),tonumber(mid(,4,2)),tonumber(left(,2)))*
    The same formula, however, throws a 'String is non-numeric error in CR4E and I found that it doesn't like this:
    *tonumber(Right(,4)) ; same error
    I've tried a lot of combinations to make this a date field in CR4E, however none works!
    So, the only option is to use the formula that I mentioned above.
    P.S: If you install Patch 2.10, you'll notice that the Characteristic value shows the correct date. For some reason though, it is in the same format as the 'Key' and if we wish to change the date format, the only possible workaround is to extract the numbers and join like I suggested above.
    Hope this helps!
    -Abhilash

  • WARNING - Attempting to resync due to missed delta reports (sp return code = 7)

    Hello,
    I have investigated and found out that there are more than 150 machines which are not reporting their H/W inventory.
    When checking on some of the machines, there are following entries in dataldr.log
    Processing Inventory for Machine: ABC   Version 44.2  Generated: 12/05/2014 11:42:15
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Begin transaction: Machine=ABC(GUID:############)
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    WARNING - Attempting to resync due to missed delta reports (sp return code = 7)
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Rollback transaction: Machine=ABC(GUID:#############)
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    SQL MESSAGE: spAddInventoryLog - Inventory Log for machine:ABC,Server:1.10,Client:44.2,Message:Missing Delta. Resync,Detail:
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Remote client hardware inventory resync generated for client GUID:#############; update/insert result = 1
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Send resync command to local site for machine GUID:#############.
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    STATMSG: ID=2722 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_INVENTORY_DATA_LOADER" SYS=<primary server> SITE=SiteCode PID=19068 TID=15432 GMTDATE=Fri Dec 05 10:43:09.184 2014 ISTR0="ABC" ISTR1="" ISTR2=""
    ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Cannot process MIF XHAOPNXZQ.MIF, moving it to C:\Program Files\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\DeltaMismatch\1ub4cajr.MIF
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)

    Hey Garth,
    I have forced the full inventory already but here are the results.
    Inventoryagent.log - Before the full inventory
    Inventory: *********************** Start of message processing. ***********************
    InventoryAgent 12/6/2014 6:23:14 PM
    5776 (0x1690)
    Inventory: Message type is InventoryAction InventoryAgent
    12/6/2014 6:23:15 PM 5776 (0x1690)
    Inventory: Temp directory = C:\Windows\CCM\Inventory\Temp\
    InventoryAgent 12/6/2014 6:23:15 PM
    5776 (0x1690)
    Inventory: Clearing old collected files. InventoryAgent
    12/6/2014 6:23:15 PM 5776 (0x1690)
    Inventory: Opening store for action {00000000-0000-0000-0000-000000000001} ...
    InventoryAgent 12/6/2014 6:23:15 PM
    5776 (0x1690)
    Inventory: Action=Hardware, ReportType=Delta, MajorVersion=48, MinorVersion=1
    InventoryAgent 12/6/2014 6:24:09 PM
    5776 (0x1690)
    Inventory: Initialization completed in 54.553 seconds
    InventoryAgent 12/6/2014 6:24:09 PM
    5776 (0x1690)
    Inventoryagent.log - Full Inventory
    Inventory: *********************** Start of message processing. ***********************
    InventoryAgent 12/6/2014 6:31:11 PM
    5668 (0x1624)
    Inventory: Message type is InventoryAction InventoryAgent
    12/6/2014 6:31:11 PM 5668 (0x1624)
    Inventory: Temp directory = C:\Windows\CCM\Inventory\Temp\
    InventoryAgent 12/6/2014 6:31:11 PM
    5668 (0x1624)
    Inventory: Clearing old collected files. InventoryAgent
    12/6/2014 6:31:11 PM 5668 (0x1624)
    Inventory: Opening store for action {00000000-0000-0000-0000-000000000001} ...
    InventoryAgent 12/6/2014 6:31:11 PM
    5668 (0x1624)
    CInvState::VerifyInventoryVersionNumber: Mismatch found for '{00000000-0000-0000-0000-000000000001}': 48.1 vs. 0.0
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    Inventory: Version number mismatch; will do a Full report.
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    Inventory: Action=Hardware, ReportType=ReSync, MajorVersion=49, MinorVersion=0
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    Inventory: Initialization completed in 53.212 seconds
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    *+*+*++*+*+*+
    *+*+*+*+*+*+
    Collection: 57/69 inventory data items successfully inventoried.
    InventoryAgent 12/6/2014 6:32:29 PM
    6596 (0x19C4)
    Inventory: Collection Task completed in 23.993 seconds
    InventoryAgent 12/6/2014 6:32:29 PM
    6596 (0x19C4)
    Inventory: 12 Collection Task(s) failed. InventoryAgent
    12/6/2014 6:32:29 PM 6596 (0x19C4)
    Inventory: Temp report = C:\Windows\CCM\Inventory\Temp\d3d81696-58c0-4313-a108-258996a0a75f.xml
    InventoryAgent 12/6/2014 6:32:29 PM
    6596 (0x19C4)
    dataldr.log
    *** [22001][8152][Microsoft][SQL Server Native Client 11.0][SQL Server]String or binary data would be truncated. : pINSTALLED_SOFTWARE_DATA
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    ERROR - SQL Error in SMS_INVENTORY_DATA_LOADER
    12/6/2014 3:03:16 PM 11696 (0x2DB0)
    ERROR - is NOT retyrable. SMS_INVENTORY_DATA_LOADER
    12/6/2014 3:03:16 PM 11696 (0x2DB0)
    Rollback transaction: Machine=ABC(GUID:EE4DB508-7271-4568-9A6D-0C4A64569AE4)
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    Cannot process MIF XHFR7KJDQ.MIF, moving it to C:\Program Files\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4\hnue114o.MIF
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    STATMSG: ID=2703 SEV=W LEV=M SOURCE="SMS Server" COMP="SMS_INVENTORY_DATA_LOADER" SYS=PRIMARY SERVER SITE=SITECODE PID=12272 TID=11696 GMTDATE=Sat Dec 06 09:33:16.513 2014 ISTR0="XHFR7KJDQ.MIF" ISTR1="C:\Program Files\Microsoft
    Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4\hnue114o.MIF" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    The error here is C:\Program Files\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4, but it is different for other machines where i tried the full inventory.

  • InfoObject is missing in report after upgrade

    Hi,
    My InfoObject Statistical ID is missing in Report after Upgrading from 3.5 to 7.0.
    I did comparison of report before and after upgrade and found this issue.
    the data content is the same but only this infoObject cannot be seen in the report
    how do I correct this issue.
    thanks
    Edited by: Bhat Vaidya on Aug 6, 2008 12:24 PM

    This not fixed. SAP couldn't explain why

  • Data miss match

    HI sdn Gurus,can anybody share with me some real time issues related to data miss match in support project.i am in need of it.i just want to know that what are the issue did comes related to data miss match in production & support environment.

    Hi
    Data mismatch means,The data in BW and data in R/3 are different...
    This is due to Some load failures,selection criteria is different from R/3 to BW..
    Need to look each and every step of data extraction..need to look at RSA3..How data is extracting..How data is appear at PSA..How data is populated from transfer rules and update rules..How data is loaded into Infoproviders..Some times data is correct in data providers and not correct in report result,because of selection conditions are different..You need to look at all these...
    Hope it helps
    Thanks
    Teja

  • Plan data missing in KE30

    Dear all,
    I have problem.
    I complete planning the copa planning via tcode KEPM, record type B. Posting has number document and exist as table CE2XXXX.
    I continues creating COPA report make comparison between actual and plan. I create starting with form and assigned to report. However, report contained no data for plan column. I can identified the problem because version can not work in form. If i generate the report without form (basic type), plan report could be generated.
    Please any advice, why plan data with form could be missing in report KE30.
    Thanks in advance,
    DEwi

    Hi,
    if the same plan data can be seen in "basic report" but not in a report based on a form, its definitely the form that causes the problem. Check the form, or ask somebody who is able to do so, maybe there is a mistake in the definition that you are not able to view...
    Best regards, Christian

  • Product  hierachy  traget data missing

    Hi,
    where we can see the  product hierarchy reports are missing the ‘Target’ data on the report summaries
    please provirde all the Tcodes and 
    why and what is the reason  inproductherachy missing the target data .
    Subhash.

    Hi Gurus,
    when i am extracting the product hierarchy reports using the t.code kkrs .
    I am unable to see  target data in feb 08 report only.  For Jan month i am able to see both the target data and actual data.
    In feb month i am able to see only actual data. In  t.codes kp 26 and kp06 planning 
    was done properly. what might be the reason of missing the target data in feb month in particlar plant .
    i have  to check any plant wise settings .  this is very urgent .. please help me
    subhash

Maybe you are looking for

  • SBO 2007 C# Matrix ObjType = 13 = A/R Invoice

    Dear to Whom This Concern, I have built a Matrix with document number 13, but I like to display the text "A/R Invoice". Any suggestion? Thank you, Rune

  • Planned Order message

    Hi ,            Can any one tell me is there a way to bring up an error/warning message after I enter the data and hit/save the enter button in PLANNED ORDER??. Looked for user exits and found nothing. Appreciate your feedback Regards Vina

  • Error installing 2.4.13 with db-4.7.25

    I get the following error, which seems to show the configure script getting a goofed-up value for DB version: "4.6\n4.7": sh buildall.sh enable-java with-tcl=/path/to/x86-64-linux/tcl/lib with-junit=/path/to/x86-64-linux/lib/junit-4.4.jar enable-perl

  • @relative acting strange in business rule

    We have a planning form that is supposed to run a business rule when we hit 'save'. we have the following code inside the business rule: FIX (&ThisYear, "Forecast", [<GV1>], @RELATIVE([<GV2>],0) GV1 and GV2 are global variables referring to dimension

  • Will not quit .MOV

    QuickTime will not quit .MOV