Reporting in 4.6c with report painter and struct. FIMC

hi,
I'm working on an EC-CS project, where I have to make reports for the company following IFRS standards.
the structure to do this, is called FIMC. First I made a library to work with the structure, then I made a report,
When running the report, I get the layout, but there is no data in the report.
The data should come from table ECMCT( there is data in the table).
while debugging, I saw that "all" or "required" data is collected from the table, but in processing the data, the values are not taken along to the reporting end.
has anyone had a similar experience with making reports and do you know how to fix the problem?
thanks for helping me out,
Erik

hi Sridhar,
thanks for the answer,
it seems that there were needed more characteristics for the report
I started with next:  RVERS  RYEAR  RDIMEN  RITCLG  RLDNR   these are mandatory,
and next:RPMAX RBUNIT INICG PERID
all base key figures are equal to key figures, and default checked on,
but there was one missing: RITEM (financial statement item).
with this one checked, I got some results,
thanks for helping me,
Erik

Similar Messages

  • Report to Purchase Orders with Good Receipt and pending for Invioce Receipt

    Hello,
    I'm looking a report bring me Purchase Orders with Goods Receipt and waiting for Invioce Verificacion (MIRO).
    I appreciate any help.
    Regards,
    Hector

    Hi,
    ME2N - In selection screen, enter Selection parameters as
    WE102 i.e. Goods receipt exists and in output screen put a filter on "Still to be invoiced (qty)" and "Still to be invoiced (val.)" as not equal to zero OR greater than Zero.
    OR use RECHNUNG i.e. Open invoices and execute the report
    OR Use MB5S - GR/IR Balances

  • Report for Billing doc with payment status and tax details

    Hi All,
    I want the report for payment due billing documents with following fields and after payment is done( F-28 ) that document should not appear in the report for the said period.
    Billing date, Billing doc no, Net value, Tax Amount
    Thanks and regards,

    Dear,
    Check S_ALR_87012172,S_ALR_87012186,S_ALR_87012168, S_ALR_87012197, S_ALR_87012173, S_ALR_87012174.
    Regards,
    Mahesh Wagh

  • Report Generation Toolkit failure with Win 7 and Labview 2013

    I recently had my computer updated to Windows 7 and am now seeing a problem with the Report Generation toolkit (version 2013) when working with Excel files.  If I try to run the New Report.vi with report type Excel selected I get  error -2146777998.  Doing the same thing with Word selected eventually opens Word, although this takes about ten seconds, but it does not generate an error.  Selecting Standard Report or HTML also run without errors.
    I've researched this error on line but I keep ending up .NET and C# forums where everything goes over my head. Has anybody got any suggestions?
    Solved!
    Go to Solution.

    I found the solution to this particular source of error code -2146777998. There are two template files that reside in C:\Program Files (x86)\National Instruments\LabVIEW 2013\templates\Report  by the name of MSOffice_RGT_Template.dot and MSOffice_RGT_Template.xlt.  The problem came down to that these templates got corrupted somehow during the fresh install. As soon as I replaced them with versions from another machine the problem disappeared.
    Just as a side note, I discovered the problem by kicking off the MS Office Report Express vi and out came a much clearer message that aimed me at the templates. Not quite sure why that message isn't echoed into the individual subvi's on the pallette, but life is a mystery.

  • How do I create a folder or report from a query with a union and parameters

    I have created folders with unions but I am having difficulty coverting a query with a union and parameters.
    The following works great in SQL*Developer without parameters, but I want to change to use parameters for the year and quarter and use it in Discoverer:
    SELECT TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000') FEID,
      AV.FIRM_NAME VENDOR_NAME,
      AV.BIDCLASS CONTRACT_CODES,
      AV.AWAMT AWARD_AMOUNT,
      AV.SOL_MODE FORMAL_INFORMAL,
      AV.CERT BUSINESS_ENTITY,
      AV.ETHNICITY ETHNICTY,
      AV.PO_NUMBER_FORMAT CONTRACT,
      SUM(VP.INVOICE_AMOUNT) AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV,
      CONFIRM.VSTATE_VENDOR_PAYMENTS VP
    WHERE ( ( AV.PO_NUMBER = VP.PO_NUMBER
    AND AV.VENDOR_ID       = VP.VENDOR_ID ) )
    AND (TO_CHAR(VP.PAYMENT_DATE,'Q') = '4')
    AND ( TO_CHAR(VP.PAYMENT_DATE,'YYYY') = '2009' )
    GROUP BY TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000'),
      AV.FIRM_NAME,
      AV.BIDCLASS,
      AV.AWAMT,
      AV.SOL_MODE,
      AV.CERT,
      AV.ETHNICITY,
      AV.PO_NUMBER_FORMAT
      union
    SELECT TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000') FEID,
      AV2.FIRM_NAME VENDOR_NAME,
      AV2.BIDCLASS CONTRACT_CODES,
      AV2.AWAMT AWARD_AMOUNT,
      AV2.SOL_MODE FORMAL_INFORMAL,
      AV2.CERT BUSINESS_ENTITY,
      AV2.ETHNICITY ETHNICTY,
      AV2.PO_NUMBER_FORMAT CONTRACT,
      0 AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV2
    WHERE
    not exists (SELECT 'X'
                  FROM CONFIRM.VSTATE_VENDOR_PAYMENTS VP2
                 WHERE av2.po_number = vp2.po_number
                       AND (TO_CHAR(VP2.PAYMENT_DATE,'Q') = '4')
                       AND ( TO_CHAR(VP2.PAYMENT_DATE,'YYYY') = '2009' ))
    AND (TO_CHAR(AV2.AWDATE,'Q') = '4')
    AND (to_CHAR(AV2.AWDATE,'YYYY') = '2009')
    GROUP BY TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000'),
      AV2.FIRM_NAME,
      AV2.BIDCLASS,
      AV2.AWAMT,
      AV2.SOL_MODE,
      AV2.CERT,
      AV2.ETHNICITY,
      AV2.PO_NUMBER_FORMAT Can someone provide a solution?
    Thank you,
    Robert

    Hi,
    You can take the parameters to the select so that you will be able to create conditions over them.
    Try to use this SQL instead of your and in the discoverer workbook create the conditions and parameters:
    SELECT TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000') FEID,
    AV.FIRM_NAME VENDOR_NAME,
    AV.BIDCLASS CONTRACT_CODES,
    AV.AWAMT AWARD_AMOUNT,
    AV.SOL_MODE FORMAL_INFORMAL,
    AV.CERT BUSINESS_ENTITY,
    AV.ETHNICITY ETHNICTY,
    AV.PO_NUMBER_FORMAT CONTRACT,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    SUM(VP.INVOICE_AMOUNT) AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV,
    CONFIRM.VSTATE_VENDOR_PAYMENTS VP
    WHERE ( ( AV.PO_NUMBER = VP.PO_NUMBER
    AND AV.VENDOR_ID = VP.VENDOR_ID ) )
    --AND (TO_CHAR(VP.PAYMENT_DATE,'Q') = '4')*
    --AND ( TO_CHAR(VP.PAYMENT_DATE,'YYYY') = '2009' )*
    GROUP BY TO_CHAR(NVL(AV.TAX_ID,999999999),'000000000'),
    AV.FIRM_NAME,
    AV.BIDCLASS,
    AV.AWAMT,
    AV.SOL_MODE,
    AV.CERT,
    AV.ETHNICITY,
    AV.PO_NUMBER_FORMAT ,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    union
    SELECT TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000') FEID,
    AV2.FIRM_NAME VENDOR_NAME,
    AV2.BIDCLASS CONTRACT_CODES,
    AV2.AWAMT AWARD_AMOUNT,
    AV2.SOL_MODE FORMAL_INFORMAL,
    AV2.CERT BUSINESS_ENTITY,
    AV2.ETHNICITY ETHNICTY,
    AV2.PO_NUMBER_FORMAT CONTRACT,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    0 AMOUNT_PAID_$
    FROM CONFIRM.VSTATE_PAID_AWARD_VENDORS AV2
    WHERE
    not exists (SELECT 'X'
    FROM CONFIRM.VSTATE_VENDOR_PAYMENTS VP2
    WHERE av2.po_number = vp2.po_number
    AND (TO_CHAR(VP2.PAYMENT_DATE,'Q') = TO_CHAR(VP.PAYMENT_DATE,'Q') )
    AND ( TO_CHAR(VP2.PAYMENT_DATE,'YYYY') = TO_CHAR(VP.PAYMENT_DATE,'YYYY') ))
    --AND (TO_CHAR(AV2.AWDATE,'Q') = '4')*
    --AND (to_CHAR(AV2.AWDATE,'YYYY') = '2009')*
    GROUP BY TO_CHAR(NVL(AV2.TAX_ID,999999999),'000000000'),
    AV2.FIRM_NAME,
    AV2.BIDCLASS,
    AV2.AWAMT,
    AV2.SOL_MODE,
    AV2.CERT,
    AV2.ETHNICITY,
    AV2.PO_NUMBER_FORMAT,
    TO_CHAR(VP.PAYMENT_DATE,'YYYY') P_YEAR,
    TO_CHAR(VP.PAYMENT_DATE,'Q') P_QTR
    Tamir

  • Crystal Reports Version to Work With Vb 6 and VS 2008

    Hi,
    We have some legacy VB 6 applications which are too large to port over to Visual Studio which use Crystal 7.0
    Recently at one site there have been problems with another application which uses a new version of Crystal. Either one or the other will work but not both. This might be solved by ugrading to Crystal XI R2 ( I believe that newer versions can run side by side). However, we also have new projects starting that are to be developed in VS 2008. As I understand it, Crystal XI R2 will not work with VS 2008 and CR 2008 will not work with VB 6.
    We really donlt want to have to buy both versions !!
    Anyone got any ideas ?
    Many Thanks
    Paul

    CR 7 did not support side-by-side installs. Likely what is happening is the your app and the other app is loading crpe32.dll from the \windows\system32 folder. Which obviously will not support each other. This is the only dll that is common among all versions of CR, see below for more info, and that due to it's location can cause issues like this. Newer versions from 8.5 do version checking and athough the dll's have the same name XI R2 will not load other versions, there are exceptions. The exceptions are UFL and some legacy database drivers that will work in any and all versions.
    A few possible work arounds, in your app do version checking when loading crpe32.dll or specifically if crpe32 is residing in a memory space that some other app has loaded it and Windows will share, check the version of the dll and if in your case it's not 11.5.x.x. then pop up a message indicating they must close the other Crystal app before continuing.
    Move all the runtime files into the applications startup folder, what's specified in the Icon on the your desktop or short cut. Moving them there may fix this, we start looking for our runtime where your EXE is located and then in the working Folder, then in the \system32 folder and finally down the PATH statement. We also have hard coded specific location in our load methods. In this case you may have to rename the \windows\crystal folder from the CR 7 install. But I don't recall if this will break the CR 7 app.
    Also if you are moving the version 7 runtime or the other app it may break that application so make note what you did so you can restore it. Also highly suggested to back up everything and test this on a test machine before applying to the production PC's.
    You can use tools like Filemon and modules from our site. You can get filemon from www.sysinternals.com.
    Other than that it will not likely work due to 7 not supporting side-by-side and will load anything it finds. And of course, Don't support or install both versions of software on the same PC.

  • Stuck with the paint and repaint methods

    I am supposed to create a JApplet with a button and a background color. When the button is clicked the first time a word is supposed to appear (I got that part), when the button is clicked the second time the word is supposed to appear again in a different color and in a different location on the Applet (I got that part).
    The problem is that the first name is supposed to disappear when the second word appears. So I know I have to repaint the screen when the button is clicked the second time and draw the first string in the same color as the background color to make it invisible.
    My problem is I am not sure how I can code to apply different settings each time the button is clicked. Can anyone help? Please let me know if my explanation sucks. I will try to explain better. However here is the code I have so far. I added a counter for the button just for testing purposes.
    I just need some hints on what to do and if there is a easier way than using that if statement please let me know. I probably make it harder than it is.
    Thanks in advance and Merry Christmas.
    import javax.swing.*;
       import java.awt.*;
       import java.awt.event.*;
        public class DisplayMyName extends JApplet
        implements ActionListener
          String myName = "DOG";
          String myName1 = "DOG";
          JButton moveButton = new JButton("Move It");
          Font smallFont = new Font("Arial", Font.BOLD, 12);
          Font largeFont = new Font("Lucida Sans", Font.ITALIC, 20);
          int numClicks = 0;
          JLabel label = new JLabel("Number of button clicks:" + numClicks);
           public void init()
             Container con = getContentPane();
             con.setBackground(Color.RED);
             con.setLayout( new FlowLayout() );
             con.add(moveButton);
             con.add(label);
             moveButton.addActionListener(this);
           public void paint(Graphics g)
             numClicks++;
             label.setText("Number of button clicks: " + numClicks);
             if (numClicks == 2)
             { g.setFont(smallFont);
                g.setColor(Color.BLUE);
                g.drawString(myName, 50, 100);
                   else
             if (numClicks == 3)
             { g.setFont(largeFont);
                g.setColor(Color.YELLOW);
                g.drawString(myName, 100, 200);
           public void actionPerformed(ActionEvent move)
             repaint();
       }

    You're putting your program logic in the paint method, something you should not do. For instance, try resizing your applet and see what effect that has on number of button clicks displayed. This is all a side effect of the logic being in the paint method.
    1) Don't override paint, override paintComponent.
    2) Don't draw/paint directly in the JApplet. Do this in a JPanel or JComponent, and then add this to the JApplet. In fact I'd add the button, the and the label to the JPanel and add the label to the JApplet's contentPane (which usually uses BorderLayout, so it should fill the applet).
    3) Logic needs to be outside of paint/paintComponent. the only code in the paintComponent should be the drawing/painting itself. The if statements can remain within the paintComponent method though.
    4) When calling repaint() make sure you do so on the JPanel rather than the applet itself.
    For instance where should numClicks++ go? Where should the code to change the label go? in the paint/paintComponent method? or in the button's actionlistener? which makes more sense?
    Edited by: Encephalopathic on Dec 24, 2008 9:37 AM

  • Report generation toolkit problem with office 2000 and office XP

    Hello, I am having a problem with running my vi after it is compiled with application builder. The dev machine is an XP box and the targer is windows 2000. I included _Excel Dynamic VIs.vi and _Word Dynamic VIs.vi from the office 2000 section of the install cd (for the report toolkit) in the compile but did not include those files for XP. When I run the application on the target machine (2000), the reporting functions call Excel just fine and the program does not come up with any errors. The program however, is not loading the approprate template and inserting the approprate data. Did I leave some neccessary files out of the compile? Thanks in advance!
    Greg
    Gregory Osenbach, CLA
    Fluke

    Hi Acer,
    The recommended procedure in your case is to install Microsoft Office 2000 on the development machine and then reinstall the LabVIEW Report Generation Toolkit. When the toolkit is installed, it will check for the current version of Office and install the corresponding VIs to support it. The VIs include different ActiveX calls according to the version of Office. Therefore it is not enough to change the support manually without having the correct version of Office installed first.
    However, I would recommend that you just try to run your executable on a machine that has Office 2000 installed. The difference in the ActiveX API for Office XP and 2000 is not that significant, so your application might work perfectly on an Office 2000 machine. If you try to run the executable on a machine with Office 97 installed I'm willing to bet my right arm that you will experience errors.
    Good luck Acer!
    - Philip Courtois, Thinkbot Solutions

  • OBIEE: REPORT FROM 2 FACTS WITH ONE SHARED AND ONE UNSHARED DIM; POSSIBLE??

    Hi All,
    We have a typical scenario to build a report from 2 subject areas(ideally from 2 facts)
    Here is the Scenario: Creating a report which based on two facts(2 Subject Area's) and one common dimension and one unshared dimension.
    Example
    ======
    Dimension Date is common between Fact Transaction and Fact Credits.
    Dimension Credit Type is applicable only for Fact Credit.
    We have to build a report with the below mentioned attributes/metrics
    Dim Date. Attribute (*Common Dimension*)
    Fact.Transaction.Metric
    Fact. Credit .Metric
    Dim.Credit Type. Attribute (*Unshared Dimension*)
    Is this is possible in OBIEE..?
    Thanks,
    Govardhana

    Yes, you must use measure levels. Set the column level of each measure from the Transaction Fact to Total for the Credit Type dim.

  • Crystal Reports has stopped working with Windows 7 and demo database

    I'm trying to get back up to speed on Crystal Reports after 10 years away. I'm running Crystal Reports 2008 Standard with the just-released Service Pack 3 (same symptom with SP2).
    So I downloaded the demo database and tried creating a new report. No problems creating a simple customer list. When I add the Orders table and link the CustomerID columns and then add the OrderDate column to the report, everything works fine. But as soon as I add the OrderID or OrderDate column, the application crashes.
    Culprit seems to be MSVCR80.dll. Here's the log:
    Faulting application name: crw32.exe, version: 12.3.0.601, time stamp: 0x4bd05d31
    Faulting module name: MSVCR80.dll, version: 8.0.50727.4927, time stamp: 0x4a2752ff
    Exception code: 0xc000000d
    Fault offset: 0x00008aa0
    Faulting process id: 0x1944
    Faulting application start time: 0x01cb0139cfafeb40
    Faulting application path: C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crw32.exe
    Faulting module path: C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_d08a205e442db5b5\MSVCR80.dll
    Report Id: 3b28c990-6d2d-11df-b9d8-00080d72c9f2
    Suggestions? Thanks in advance.

    Hello,
    It may be that something was "fixed" and our default xml file falls out of the Standards now.
    Are you wanting to connect to SQL or XML?
    Go to Microsoft's site and search for C++ distribution and download and install the recommended one for windows 7. It may be that part is corrupt or our installer thinks it is there. Try doing a Repair install and custom options to select all of the DB drivers and exports types to see if that resolves the issue.
    Thank you
    Don

  • AR Aging Report does not change with Posting, Due, and Document selections

    It appears to me that when you run the AR Aging report with the same date ranges in each of the date selection fields, Posting, Due and Doument, you do not get a different display of aging buckets.  Does this report always display data based on Due Date?

    Hi Bill,
    When you run the AR Aging report change "Age by" option and check aging buckets are changing or not it has to change.
    Thanks,
    Sachin

  • A Report for top spent with Given Sitecode and Year

    Customer Code
    Name
    Spent2011
    xyzaa
    Jon
    700.00
    nmcb
    Stuart
    400.00
    bncx
    Prakash
    300.00
    nmsd
    Srinu
    200.00
    opkls
    Kumar
    90.00
                      Table above as retrieved data For
       Site 01
    Rank the customers by top spent for 2011 or 2012 or 2013 or 2014
    Ex: A Financial year 2011 to be considered between the dates April 1<sup>st</sup> 2011 and Marc 31<sup>st</sup> 2012
    Customer table has the complete details of the customer 
    and with unique customer code
    Order Table has the details of the order placed and the Order Placed Date
    Order Item Table has the Gross   price of each Item.
    Site Table can be joined with Order Table (has a common column)
    A  T-SQL query for  the SSRS report needs to be build with Inputs  site code and Year

    Hi Visakh,
    Please find the below script
    --DECLARE @CustomerId varchar(255) = 'XX03045651';
    DECLARE @STOREID VARCHAR(10) ='XX01'
    SELECT
           OrderNumberStr,
           CustomerCodeStr
    INTO
           #Sales
    FROM
           OrderTable
            lEFT JOIN
     SiteShopTable
           ON
    SiteShopTable.SiteCodeStr=LEFT(Ordertable.OrderNumberStr,4)
    WHERE
           LEFT(Ordertable.OrderNumberStr,4)= @StoreID
                                AND
           LEFT(Ordertable.OrderedAtSiteCodeStr,4)=@StoreID
    SELECT
           #Sales.CustomerCodeStr,
           SUM(OrderItemTable.FinalPriceGrossMoney) AS TotalSpend,
           SUM(OrderItemTable.QuantityOrderedInt) AS NoOfItems
    --INTO
         --  #Spenders
    FROM
           OrderItemTable
           INNER JOIN
           #Sales ON OrderItemTable.OrderNumberStr = #Sales.OrderNumberStr
    GROUP BY
           #Sales.CustomerCodeStr
    ORDER BY      
           TotalSpend DESC
    SELECT
           distinct OrderTable.CustomerCodeStr,  
           '2014'=
           Case
           when year(Ordertable.OrderPlacedDateSdtm) = '2014' THEN sum(isnull(TotalSpend,0))  end,
           '2013'=
           Case when year(Ordertable.OrderPlacedDateSdtm) = '2013' THEN sum(isnull(TotalSpend,0)) end,
           '2012'=
           Case when year(Ordertable.OrderPlacedDateSdtm) = '2012' THEN sum(isnull(TotalSpend,0)) end ,
            'Before2012'=
           Case when year(Ordertable.OrderPlacedDateSdtm) < '2012' THEN sum(isnull(TotalSpend,0)) end
             --SUM(IF(year(Ordertable.OrderPlacedDateSdtm)=2010,orderitemtable.FinalPriceGrossMoney,0)) AS fy_2010
       --  , SUM(IF(fy.year=2011,i.invoiceValue,0)) AS fy_2011
       --  , SUM(IF(fy.year=2012,i.invoiceValue,0)) AS fy_2012
      FROM
    #Spenders
    left join
    OrderTable  
    on #Spenders.customercodestr=OrderTable.CustomerCodeStr
    GROUP BY
            OrderTable.CustomerCodeStr,
           Ordertable.OrderPlacedDateSdtm
    order by
    OrderTable.CustomerCodeStr
    drop table #Sales
    drop table #Spenders

  • Report for wage type with number, amount and amount per unit?

    Hi friends.
    I would like to know if there exits a report for wage type (like the PC00_M99_CWTR) that shows the number (anzhl), amount per unit (betpe) and the amount (betrg) of a person for a specific wage type.
    The standar report PC00_M99_CWTR does not display the amount per unit (betpe).
    Thanks in advance.
    Albio.-
    Edited by: Albio Manuel Vivas on Oct 20, 2011 6:13 PM

    Thanks,
    could you tell me what transaction i'll should use?
    thanks in advance
    Albio.-

  • Setup reports for pdf creation with company logo and printing without

    Hi,
    we want to have 2 different report-layouts.
    The first one is just for printing on company paper. So it doesn't need a logo.
    The second one is for exporting to PDF file. So it needs a logo.
    How can I realise it in SAP BO 2007 without changing the standard layout everytime?

    Meike,
    If sending out pdf's vs printed doc's depends on BP or user, you can play with setting up the default layout for specific users or BP's, otherwise you need to change the default one all the time.
    Regards,
    Nat

  • Reports are not posting with report repository webserver configured for Sin

    Hi Everyone,
    We have configured Single Signon on our Test environment (UADB1) using Sun Authentication Manager. Everything went well, we can login using our LDAP accounts except for one thing. The reports are not posting to the report repository.
    Our setup goes like this. We have used only one webserver for login and for report repository purposes. SSL certificate was configured in the webserver and we are using https in the report node. Both URLs https://dv001.test.com:8450 and http://dv001.test.com:8400 were configured for Single Signon.
    Report Node Definition
    Node Name: uadb1
    URL: https://dv001.test.com:8450/psreports/uadb1
    Connection Information
    https
    URI Port: 8450
    URI Host: dv001.test.com
    URI Resource: SchedulerTransfer/uadb1
    Below is the error I am getting. If I will use another webserver which is not the Single Signon configured as report repository the reports are posting. So, I am thinking this has something to do with the Single Signon setup and SSL. ANy idea? Thanks.
    PSDSTSRV.2093190 (10) [06/13/10 01:05:43 PostReport](3) 1. Process Instance: 9499/Report Id: 8465/Descr: Process Scheduler System Purge
    PSDSTSRV.2093190 (10) [06/13/10 01:05:43 PostReport](3) from directory: /psft/pt849/appserv/prcs/UADB1/log_output/AE_PRCSYSPURGE_9499
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](1) (JNIUTIL): Java exception thrown: java.net.SocketException: Unexpected end of file from server
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](3) HTTP transfer error.
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](3) Post Report Elapsed Time: 0.2300
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](1) =================================Error===============================
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](1) Unable to post report/log file for Process Instance: 9499, Report Id: 8465
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](2) Process Name: PRCSYSPURGE, Type: Application Engine
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](2) Description: Process Scheduler System Purge
    PSDSTSRV.2093190 (10) [06/13/10 01:05:44 PostReport](2) Directory: /psft/pt849/appserv/prcs/UADB1/log_output/AE_PRCSYSPURGE_94

    Duplicated thread : Reports not posting if using Single Signon webserver as report repo
    Nicolas.

Maybe you are looking for

  • "CS3 is still pretty unstable with Leopard"

    That is what macramdirect just told me when I asked them about how to replace my problematic ram...so now I am going to pull their 12gb of suspect chips and see if their ram is the problem as it would be nice to have a stable machine before a new OS

  • Service Manager is Dissable?

    Hi Experts, Install SAP B1 8.8 PL10 in Windows 7 SQL Server 2008 R2 Everything Install with Run as Administrator Everything working fine but Service Manager is Disabled. Any idea about this. Thanks, Srujal Patel

  • Could not connect to remote server

    Hi, I have installed CRM 7.0 and have completed the initial ABAP configuration. My crm_ui_frame service is active, however, when trying to access the Web User Interface using the following command:   http://stuartfb8e:8000/sap/bc/bsp/sap/crm_ui_frame

  • Why is Adobe deliberately Hating Firefox?

    Just Last Night 3/21/2015 Firefox upgraded Browser to 36.0.4 and today I notice Adobe Flash was working on ALL pages by some fluke. Just this evening I had to reboot my pc and when I loaded back up ADOBE FLASH wanted to upgrade...so I did Well Low an

  • Existe-t-il un pack juste InDesign   Photoshop?

    J'ai des vieilles versions de Indesign CS3 et Photoshop CS2 et aimerais moderniser cela avec vos offres ICloud, sans non plus acheter tout ce dont je n'ai pas besoin. Je cherche desesperement a contacter un être humain chez vous. J'habite malheureuse