0HR_PT_1 (Employee Planned Times) has incorrect values

Hi BW'ers
I am trying to use the 0HR_PT_1.  The setup is ok as I can extract data.  The problem is that the Planned working hours are incorrect compared to the values in R/3 using Txn PA20, InfoType = 7 (Planned Working Time), and then looking at the work schedule.
For example -
An employee in the R/3 work schedule for August 2007 has 172.5 hours. 
The 0HR_PT_1 extract has 0PLHRS = 195.5 & 0WRHRS = 195.5
There are no public holidays or leave for this person in August.
I would expect that BW would have 172.5 hours for this employee in both 0PLHRS  & 0WRHRS.
Any suggestions / advice would be appreciated.
Kindest regards
Karen

Thank you Robert very much for your response.......
I forgot to deal with the units !!!
So, when you add the hours AND days the number is correct ! 
By extracting the PSA data I found the problem.  The correct data is coming into BW, the Units are not being dealt with when loading the cube......
I appreciate your quick response.
Kindest regards
Karen

Similar Messages

  • VersionMajor has incorrect value

    Recently we have migrated from SAP 4. 7 to ECC6 , After migration the  ABAP proxy interfaces are not working we get an error messages
    "XML tag Main/@versionMajor has incorrect value 002; expected value is 003"
    Any idea where to modify version major?

    Hi,
    refer this link.
    Re: Parser - "Unexpected value" error
    Regards,
    Sharanya.

  • XML tag Main/@versionMajor has incorrect value 002; expected value is 003

    Dear experts!
    I have created a file to proxy scenario. When sent out of XI the following message occurs:
    O, btw, I have tried both XI 2.0 and 3.0 in the comm. channel and a fault message is present.
    What's the matter???
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIProtocol</SAP:Category>
      <SAP:Code area="PARSER">UNEXPECTED_VALUE</SAP:Code>
      <SAP:P1>Main/@versionMajor</SAP:P1>
      <SAP:P2>002</SAP:P2>
      <SAP:P3>003</SAP:P3>
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>XML tag Main/@versionMajor has incorrect value 002; expected value is 003</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Thanks for your suggestions!
    <i>Will reward points if answers are helpful</i>

    Hi.
    Can you copy past your xml input payload...
    Check out this thread...he has same issue...n its resolved..
    XI 3.0 and external Java client/web service
    Use the url:
    http://hostname:port/XISOAPAdapter/MessageServlet?version=3.0&channel=:SOAPRequest:SOAPIn
    Nilesh
    Message was edited by:
            Nilesh Kshirsagar

  • Error "XML tag Main/@versionMinor has incorrect value 001; expected value."

    I'm going to describe our scenario.
    We have created an Abap proxy in a BW system to run a XI interface. The abap proxy in BW is connected to the IE of a XI 3.0 system. That scenario runs without problems with BW 3.5 (basis 6.40). Now, we are migrating the release of BW to 7.30. we have created the Abap proxy in the migrated BW system but when we run the interface the next message is returned:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Integration Server
      -->
    - <SAP:Error SOAP:mustUnderstand="1" xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
      <SAP:Category>XIProtocol</SAP:Category>
      <SAP:Code area="PARSER">UNEXPECTED_VALUE</SAP:Code>
      <SAP:P1>Main/@versionMinor</SAP:P1>
      <SAP:P2>001</SAP:P2>
      <SAP:P3>000</SAP:P3>
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>XML tag Main/@versionMinor has the incorrect value 001. Value 000 expected</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    does anyone know what the problem is? is there a version conflict between BW 7.3 and XI 3.0?
    Thanks very much

    Hi,
    I'm not an expert, but it might be that you would also need to update the XI content to match the new release and then regenerate the proxy.
    It does indeed seem to be a difference in the version of the proxies between BW 3.5 and BW 7.3.
    Regards,
    Horia

  • Parameter has incorrect value

    I have a simple test function that I have tried with both ODP.NET and MS Data Provider for Oracle. The same code (except for the datatype args when adding an OracleParameter) is used in both projects. The MS one works fine. But in the ODP.NET one, the first parameter passed in (In_A) is always 0 (zero) inside the function (I am saving it in a table). Why is it changing from
    the original value (1234567890123456789) to 0?
    Here is the VB.Net code and the function:
    Dim oCon As OracleConnection
    Dim oCmd As OracleCommand
    Dim sSessID As String
    Try
    oCon = New OracleConnection("Data Source=DEV;User ID=XX;Password=XXXX;")
    oCon.Open()
    oCmd = New OracleCommand("SYSVC.CP_PACK.DOTNET_TEST", oCon)
    oCmd.CommandType = CommandType.StoredProcedure
    oCmd.Parameters.Add(New OracleParameter("In_A", OracleDbType.Varchar2, 19, ParameterDirection.Input, False, 0, 0, "", DataRowVersion.Current, "1234567890123456789"))
    oCmd.Parameters.Add(New OracleParameter("Out_B", OracleDbType.Int16, 7, ParameterDirection.Output, True, 0, 0, "", DataRowVersion.Current, Convert.DBNull))
    oCmd.Parameters.Add(New OracleParameter("Out_C", OracleDbType.Varchar2, 19, ParameterDirection.Output, True, 0, 0, "", DataRowVersion.Current, Convert.DBNull))
    oCmd.Parameters.Add(New OracleParameter("DOTNET_TEST", OracleDbType.Varchar2, 19, ParameterDirection.ReturnValue, True, 0, 0, "", DataRowVersion.Current, Convert.DBNull))
    oCmd.ExecuteNonQuery()
    Catch ex As Exception
    Throw New Exception(ex.Message & " -- " & sSessID, ex)
    End Try
    sSessID = oCmd.Parameters("DOTNET_TEST").Value
    oCmd.Dispose()
    oCmd = Nothing
    oCon.Close()
    oCon = Nothing
    Logon = sSessID
    FUNCTION DOTNET_TEST(In_A IN VARCHAR2,
    Out_B OUT NUMBER,
    Out_C OUT VARCHAR2) RETURN VARCHAR2
    IS
    BEGIN
    SELECT h.co_num, h.acct_num
    INTO out_b, out_c
    FROM def_acct_hdr h
    WHERE h.acct_num = in_a AND actv = -1;
    RETURN out_c;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    DECLARE
    errorMessage VarChar2(300) := SQLERRM;
    BEGIN
    errorMessage := In_A || ':' || Out_B || ':' || Out_C;
    INSERT INTO cp_err(cp_cd, acct_num, err_msg, cr8_dt)
    VALUES(NULL, In_A, errorMessage,SYSDATE);
    RETURN 'XXXXXXX';
    END;
    WHEN OTHERS THEN
    DECLARE
    errorCode NUMBER := SQLCODE;
    errorMessage VarChar2(300) := SQLERRM;
    BEGIN
    errorMessage := 'Error in DOTNET_TEST Procedure: ' || TO_CHAR(errorCode) || ': ' || errorMessage;
    Raise_Application_Error(-20001, errorMessage);
    END;
    END DOTNET_TEST;
    Thanks for any help!
    Chris Garland
    Volvo
    [email protected]
    (336) 931-4208

    I still need help with this!
    I'm getting an InvalidCastException; which I think is occuring on this line:
    sSessID = oCmd.Parameters("DOTNET_TEST").Value
    See above code for the declarations.
    How can I get the actual string value from a "OUT" OracleParameter with an OracleString structure type?
    1) I'm writing in VB.NET not c#
    2) sSessID is a .NET String type. I don't want an OracleString structure. I just want the returned value assigned to the .NET String sSessID. The original error is "Cast from type 'OracleString' to type 'String' is not valid."
    How come only a DataReader seems to have an easy way to cast an Oracle string to a .Net string (.ToString)? I would think that if Oracle were providing a tool (ODP.NET) for people developing against an Oracle database in .NET, they would provide simple methods for casting their datatypes into .Net datatypes for all access methods (DataSet, DataReader AND OUT OracleParameters. Why would someone want an OracleString structure in .Net? It's useless. I can see that when a value is passed back to Oracle you would want it passed in a datatype common to Oracle. But why would I want a useless structure after I've retrieved the data on the .Net side?
    Sorry for the[i]Long postings are being truncated to ~1 kB at this time.

  • Approval mail has incorrect value

    Hi Guys,
    I am facing one issue here where the SC was raised for 48 M JPY, however when the approvers received the notification, the amount reflected as 480 K JPY.
    Can anyone tell me what is wrong and how to correct it?
    Regards,
    Sid

    Hi Sidmi
    Is it notification or workitem?
    SAP Note 1117190 -Incorrect shopping cart value in approver's inbox
    You create a shopping cart using currencies without decimals (Ex : JPY,KRW, etc.) When the approver, approves the shopping cart, the total value displayed is in a wrong format.
    SAP Note 981733 - Approver's Inbox : Incorrect SC value
    Shopping Cart is in Approver's Inbox. Before the approver approves the SC,the requisitioner makes changes to the cart and resubmits the SC.
    When checked in Approver's Inbox, the SC total value is incorrect for those currency w/o decimal places. (Ex : JPY..)
    REGARDS
    Muthu

  • EntityFramework retrieve the view and has incorrect values?

    So the story is I have to use EF with Oracle datababse (lot of things go unsupported for 11c too...) Long story short, I have to create view that is a join product of multiple tables. Using distinct on the ID and Count distinct on something else. I have
    something of the following: as a view in the ORACLE database:
    ID     DTG     VALUE
    A       11         2
    B       10         3
    B       10         4
    B       10         5
    but when I use EF context to list it out and attach to database, what EF give me is:
    ID     DTG     VALUE
    A       11         2
    B       10         3
    B       10         3
    B       10         3
    Note, when I tried to use .Take(5) from the context.MY_VIEW.toList().Take(5), I get one of the values from VALUE COLUMN in the Oracle db view, why is that?

    Hello,
    For this issue, I would suggest that you could post it to the Oracle forum:
    https://community.oracle.com/welcome
    There are Oracle experts who help you better.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SAP PI 7.31 / Sender SOAP Channel Issue with XML tag Main/@versionMajor has incorrect value 000; expected value is 003

    Hi PI Experts,
    We are on SAP PI 7.31 SP 10.
    We are in the process of integrating ARIBA P2P solution using SOAP Adapter as sender to connect Ariba with our PI system.
    We have configured all required components in ESR and ID(Most of them are content provided by Ariba).When we try to post a message into PI using SOAP UI we are ending with below error.

    http://<host name> : <port name> /XISOAPAdapter/MessageServlet?channel= <party name> : <service name> : <channel name>
    For the above issue we had configured SOAP Sender channel as above,and the URL we are using to hit PI is as above screenshot.
    We have followed the note on this topic with out any luck.
    1378872
    We are not sure where is problem.As the issue is not reaching to PI not able to see the messages in SXMB_MONI.
    and in the SXMB_ADM PI has been configured as Integration Server.
    I had even tried to change the message protocol as XI3.0 in SOAP sender channel and noluck.
    I have tried to ximessage=true query also in URL and noticed that not working.This is clear that the message we are trying to send from Ariba is not compatible with XI3.0 protocol,Ariba is not having any option to change at their end as it is a cloud application and many customers have been using same with out any issues.
    We have tried maintain the Java System properties in NWA as XPI.Adapter.Version.Major = 3 but no luck.
    Can some one provide us the solution to get rid of this issue?

  • Planning Time Fence Value

    Hi Team,
    I would like to maintain planning time fence value in material master. I do not have any clue that how to determine the value for the planning time fence. Some where i read that the planning time fence value will be the interval time between two MRP runs (ie, if i run MRP four days once, 4 days will be the planning time fence). Is this logic work out? Any guidance to determine the planning time fence for the material?
    Thanks

    Hi Mariano,
    Q1: By implementing Time Fence, you are losing flexibility, so this goes against the service level, so is not going to avoid cutting sales. However, sometimes you still need to use a time fence in order to provide some stability to your supply chain (maximize the use of your production capacity, coordinate the component replenishment with your vendors, etc..).
    Your statement is: "By implementing planning time fence, you are losing flexibility".
    "Losing Flexibility" means, if there is sudden sales requirement (Eg: Emergency sale order), accordingly the manufacturing plan will NOT be smoothened. Do you mean this as "Losing Flexibility"?
    For your information, i am using strategy group 40 for my FERT item. The strategy group 40 will be mainly used to smoothen the manufacturing plan according to the sudden sales requirement. Implementing strategy group 40 & planning time fence together for a material will be AGAINST of each other know?
    Coverage Profile:
    Your statement is:
    Q3: As coverage you can use different methods: coverage profile, safety time, safety stock, etc. The coverage profile is a key that needs to be predefined in advance. I will try to simplify the explanation. Suppose that your coverage profile says that you want to have 10 days of target coverage. If you have a constant forecast of 1000 CS per month and you have 20 working days in a month, this 10 days of target coverage will mean that you want to have 500 CS in excess of your forecast. So the MRP will plan to start the month with 1500 CS (1000 CS of forecast + 500 CS of coverage).
    According to you, the MRP will plan for 1500 CS instead of 1000 CS for the month. But for that particular month additional 100 requirement has come as emergency sale order. How to handle this? My requirement is "How to handle (cater) the emergency sale orders effectively in ECC?" Will "Back order processing in SD" can help to cater these kind of emergency cases?
    Thanks

  • Hyper-V Hypervisor Virtual Processor\\% Guest Run Time occasionally has bad values

    I'm accessing PerfMon data via RegQueryValueExW () calls in a C++ program to collect a variety of metrics. I've noticed that
    Hyper-V Hypervisor Virtual Processor\\% Guest Run Time occasionally contains incorrect values, as shown both in my collected code as well as in PerfMon. (Also % Total Run Time, and possibly all the metrics.)
    My test environment is running 2008 r2 standard, service pack 1, on an Intel Zeon CPU (if it's relevant), and is hosting four guests, none very active (_total = .449, the rest = .030, .513, .185, .194, .341).
    The problem is that occasionally the first, least active, guest will spike well above 100% (as an example, 6300%).
    When walking through my code, the issue seems to coincide with the order of the subscripts being returned from RegQueryValueExW () changing, where the first, least active subscript moving to the second location, and getting an unexpected value. When it returns
    to the first spot in the series on a subsequent call it once again has an expected value. Oddly enough the new "first array element" has the expected value even after the shift.
    Actual returned values for a 30 second collection cycle, values are shifted by 1000:
    GuestRunTime[hyper-vtest_0]; current = 1211813.198, previously = 1211804.192
    GuestRunTime[win2k3EntR2_-_prometheus_3]; current = 18401087.260, previously = 18400964.194
    (interval)
    GuestRunTime[hyper-vtest_0]; current = 1211822.625, previously = 1211813.198
    GuestRunTime[win2k3EntR2_-_prometheus_3]; current = 18401201.918, previously = 18401087.260
    (interval, and then the array order changes)
    GuestRunTime[win2k3EntR2_-_prometheus_3]; current = 18401327.210, previously = 18401201.918
    GuestRunTime[hyper-vtest_0]; current = 601735.139, previously = 1211822.625
    (interval, and then the array order changes back)
    GuestRunTime[hyper-vtest_0]; current = 1211841.390, previously = 601735.139
    GuestRunTime[win2k3EntR2_-_prometheus_3]; current = 18401472.446, previously = 18401327.210
    (interval)
    GuestRunTime[hyper-vtest_0]; current = 1211850.605, previously = 1211841.390
    GuestRunTime[win2k3EntR2_-_prometheus_3]; current = 18401577.243, previously = 18401472.446
    As you can see, the value supplied when the array shifts is rather wonky, but returns to an expected value after the array shifts back: 1211813.198 -> 1211822.625 -> 601735.139 (?) -> 1211841.390 -> 1211850.605.

    Thanks Deepak for your response.
    1) Firewall is turned off
    2) Below is the output from R3trans -d command:
    C:\Windows\system32>r3trans -d
    This is r3trans version 6.24 (release 741 - 04.02.14 - 20:14:02 ).
    unicode enabled version
    2EETW169 no connect possible: "DBMS = SYBASE --- "
    r3trans finished (0012).
    3) The latest dbsl patch that I see on SMP is indeed 35 (Our Kernel is 7.41 64-bit Unicode)

  • Customs Number Guarantor (insurance Comp has an incorrect value()

    Hello,
    I am configuring default data for Guarantor (Insurance Company). After searching I have found that 'Office of Destination' is the same field as Guarantor. ( Kindly correct me if this is not the same fields).
    I have populated insurance company by default data in the US Import document. When i check messages I am getting following error 'Customs Number Guarantor (insurance Comp has an incorrect value()'
    Message: M4010 - Customs Declaration U.S. ABI(EI)
    Appreciate if any help on this.
    Regards
    Pradeep

    Hi Dave,
    Appreciate your quick reply. thank you.
    Can you please elaborate on the possible solution regarding error message. Im not able to figure out the same. I am attaching the screen shot of partner tab with error message.
    Thanks
    Pradeep

  • Ever since I updated my iPhone 5s with the lastest update my time has been incorrect. What can I do to fix this problem?

    Ever since I did the last software update on my iPhone 5s my time has been incorrect. I've found temporary fixes by turning my phone off and then back on but I always have the same problem about an hour later...
    I need to fix this because I use my iPhone 5s as my alarm clock.

    Have you tried manually changing the time? Settings --> General --> Date & Time

  • Daily working hours calculation but Half an hour flexi before start of planned time & shortfall hours calculation

    Dear All,
    I want to calculate daily working hours but Half an hour flexi before start of planned time & shortfall hours calculation if a person didn't completed 9 hours job.
    We have different types of DWS, PWS & WSR for different PS/PSA & EG/ESG groupings.
    We have a requirement for Executives/Officers (E0-E8/ S1-S2) for only one PSA (1100) for only one DWS(GFLX). In this requirement I want to calculate daily working hours but Half an hour flexi before start of planned time & shortfall hours calculation if a person didn't completed 9 hours job.
    Please see the requirement and my configured DWS and PCR's in detail with example and suggest me the solution:-
    Overview
    I want to calculate (Please take the reference from DWS screenshot)
    daily working hours, but starting from first Begin Tolerance Time
    Shortfall of hours if 9 hours not completed, but again starting from first Begin Tolerance Time, although employee has come before Begin Tolerance Time
    I've configured one DWS as below,
    Requirement:-
    The planned shift timings is 9:30 - 18:30. Employees should work and complete 9 hrs in a day, but this 9 hours should be counted only from 9:00 (i.e. Begin tolerance time). It means. In time should not consider before 9:00.
    1. Suppose 1st day employee punch In time is 9:00 then he has to work up to 18:00, then only 9 hours of working will be completed & no shortfall will be calculated.
    In above case, if Out time is 17:00 then shortfall will be calculated 1.0 hours, because his working hours will be counted 8 hrs only.
    2. Suppose 2nd day employee punch In time is 9:45 then he has to work up to 18:45, then only 9 hours of working will be completed & no shortfall will be calculated.
    In above case, if Out time is 18:00 then shortfall will be calculated 0.75 hours, because his working hours will be counted 8.25 hrs only.
    3. Suppose 3rd day employee punch In time is 8:30 then he has to work up to 18:00, then only 9 hours of working will be completed & no shortfall will be calculated. (In between 9:00 - 18:00 ). Here In time is 8:30 but system should consider and count from 9:00.
    In above case, if Out time is 17:30 then shortfall will be calculated 0.5 hours, although he has worked 9 hrs.
    4. Suppose 4th day employee punch In time is 10:11 then he will be marked as Late Come(as per DWS) and then he has to work up to 19:11, then only no shortfall will be calculated, because he completed 9 hours.
    Now the below PCR is calculating Daily Working Hours,
    Now the below PCR is calculating Late Coming Hours,
    Overview
    I know that use of begin tolerance time is different in from my requirement. Please guide me if this DWS configuration will not work.
    As of now system is able to calculate Daily Working Hours (but not from the begin tolerance time), Late coming days and Late coming hours, but shortfall is not getting calculate properly.
    Please give me the idea how to write PCR for these requirement, I know that my ZDHR PCR (Daily Working Hours) needs to change or replace to fulfill this requirements.
    If you want any other details please let me know.
    Best Regards,
    Deepak

    Hi Sankarsan,
    After changing the function PTIP and I used GEN in PAR2, because in PAR3 error was coming.
    After the changes PCR is processing as below for three different IN time :
    1. when IN time is 8:45
    and in this case, ZES table No Time type is showing which is wrong because he worked from 8:45 to 18:30 it means 9:30 hours (calculation should start from 9:00 am).
    2. when IN time is 9:15
    and in this case, ZES table Time type 9002 is showing 9.25 hours which is correct because he worked 9.25 hours.
    3. when IN time is 10:30
    and in this case, ZES table Time type 9003 is showing 9.00 hours which is wrong because he worked only 8 hours.
    Pls suggest.
    Best Regards,
    Deepak

  • Oracle.apps.xdo.XDOException: Group G_EMP has incorrect  Query Source : Q1

    All,
    I am trying to create some reports using XML data Template in BI publisher. But when I just create a simple data template, I keep getting the error message as mentioned below.
    [111907_101025922][][STATEMENT] Template parsing completed...
    [111907_101026625][][STATEMENT] Start process Data
    [111907_101026625][][STATEMENT] Process Data ...
    [111907_101026625][][STATEMENT] Writing Data ...
    [111907_101026625][][EVENT] Data Generation Completed...
    [111907_101026625][][EVENT] Total Data Generation Time 1.0 seconds
    [111907_102628031][][STATEMENT] Setting data definition:Sample_Data_Template type:oracle.apps.xdo.servlet.data.bind.AdvancedQueryBoundValue11
    [111907_102629516][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [111907_102629516][][STATEMENT] Logger.init(): LogDir=C:\Program Files\Java\jdk1.5.0_13\xmldebug
    [111907_102629516][][STATEMENT] Template parsing started...
    [111907_102629516][][STATEMENT] Data Template ......
    [111907_102629516][][STATEMENT] oracle.xml.parser.v2.XMLDocument@1ab4586
    [111907_102629516][][STATEMENT] Inside dataQueryParser...
    [111907_102629516][][STATEMENT] Inside dataStructureParser...
    [111907_102629516][][STATEMENT] Group ...report
    [111907_102629516][][EXCEPTION] oracle.apps.xdo.XDOException: Group G_EMP has incorrect Query Source : Q1
         at oracle.apps.xdo.dataengine.DataTemplateParser.groupParser(Unknown Source)
         at oracle.apps.xdo.dataengine.DataTemplateParser.groupParser(Unknown Source)
         at oracle.apps.xdo.dataengine.DataTemplateParser.dataStructureParser(Unknown Source)
         at oracle.apps.xdo.dataengine.DataTemplateParser.templateParser(Unknown Source)
         at oracle.apps.xdo.dataengine.XMLPGEN.setDataTemplate(Unknown Source)
         at oracle.apps.xdo.dataengine.DataProcessor.setDataTemplate(Unknown Source)
         at oracle.apps.xdo.servlet.data.bind.AdvancedQueryBoundValue11.callDataProcessor(AdvancedQueryBoundValue11.java:117)
         at oracle.apps.xdo.servlet.data.bind.AdvancedQueryBoundValue11.getValue(AdvancedQueryBoundValue11.java:101)
         at oracle.apps.xdo.servlet.ReportContextImplV11.getReportXMLData(ReportContextImplV11.java:389)
         at oracle.apps.xdo.servlet.CoreProcessor.process(CoreProcessor.java:132)
         at oracle.apps.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.java:62)
         at oracle.apps.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:638)
         at oracle.apps.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.java:237)
         at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:279)
         at oracle.apps.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:266)
         at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:199)
         at oracle.apps.xdo.servlet.XDOServlet.doPost(XDOServlet.java:222)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:65)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Could any one of you please help me out :)
    Thanks,

    Hi King,
    Find below the data template I am using. I have defined a Q1 in my data template. Let me know where I am going wrong.
    Thanks,
    Ram
    <dataTemplate name="Emp" dataSourceRef="EBS">
         <dataQuery>
              <sqlstatment name="Q1" dataSourceRef="EBS">
                   <![CDATA[ SELECT empno, empname FROM APPS.EMP ]]>
              </sqlstatment>
         </dataQuery>
         <dataStructure>
              <group name="G_EMP" source="Q1">
                   <element name="empno" value="empno"/>
                   <element name="empname" value="empname"/>
              </group>
         </dataStructure>
    </dataTemplate>

  • F5119 - Line item has incorrect Dr/Cr indicator for remaining amount

    Hi Guys,
    I am trying to execute F-30 transaction and for some cases I got the below message:
    Message no. F5119: "Line item has incorrect Dr/Cr indicator for remaining amount"
    All the posting I am posting some value on the residual items.
    But this situation is so strange because occurs just some times. The account that I am posting the residual is the same.
    The situation is the same, but for same cases this error happens.
    Let me know if you have any idea.
    Thanks

    Hi Guys,
    I could see that there is any relationship with the value once when I change this one the error don't ocurr.
    Is there any configuration related to that? residual? % of residual?
    Thanks

Maybe you are looking for

  • Hyperlinks don't work in PDF using Print Save as PDF

    I am unable to figure out how to get hyperlinks within Numbers 09 to work after I use Print > Save as PDF. Please help.

  • I accidentally deleted my quicken files today.  how do i get them back?

    I accidentally deleted quicken today! Is there a way i can recover the files? all my financial data was in it

  • Export to PDF and Paper size

    Hi, I am using Crystal reports 10 and am exporting the report to pdf. I have set PrintOptions.PaperSize = PaperSize.PaperLegal in the asp.net code. The exported pdf looks good according to the paper size set but when I print the pdf it is printing in

  • Jsf pluggable pages?

    I have jsf application, written using facelets. I want it to be extedable with custom modules. Module is simple jar with faces-context.xml in it. I can place it in /WEB-INF/lib directory, register somehow in my app, for example by specifying main cla

  • Run time error when executing J2IU

    On execution of the report its showing the following dump. Runtime Errors PERFORM_CONFLICT_UC_STRUCT Except. CX_SY_DYN_CALL_ILLEGAL_TYPE Date and Time 28.05.2011 13:26:24 Short text Structure-type conflict when calling a FORM What happened? Error in