No aggragation when combining reports

Hello all,
I combined 2 reports with each other in answers.
The first one is a dim with 2 different fact values from 2 different fact tables
and the second one is the dimension with a 2 columns with null values
Now I got something like:
A -1 - 1
A - NULL - NULL
B - NULL - NULL
C - 2 - 2
C - NULL - NULL
I did this because I always want to see all the dimension values. I tried to solve this problem by using a left outer join with the dimension as driving but for some reason this doesn't work, when I use a full outer join then everything becomes deadly slow.
So now I want to solve it like this, however I want to aggregate the result, but this doesn't work as well
(so I want to see:
A -1 - 1
B - NULL - NULL
C - 2 - 2
Can anyone help me out?

We didn't set any levels in the repository. I thought there is no need for because you only have to do that when the fact is on a lower level then you want to see.
But I don't think you can't aggregate because answers only know the data is from the same type.
But this report was to build a publisher report and we managed to make this report by regrouping the the answers report in publisher!

Similar Messages

  • Combined reports: activities and contact person related accounts

    Hello,
    I created a combined report that should show following things:
    Appointment data, all Related Users, all Related Contact Persons and the companies which are assigned to the Contact Persons (not the Appointment-related-Company!)
    I combined it by Activities and shared activities area. To get the account information I combined it also with contact person area.
    Now I have following problems:
    1. The accounts are not displayed in the same line as the rest of the informations. They are only under the Activity Informations and I don't know how to link these informations.
    2. One row is user and the second row is contact. If I have an activity with more contacts and more users, I get every contact shown for every user (some kind of douplicates). How can I solve this Problem?
    3. I need this report as a Pivot-Table, grouped by day. When I do this and put contact and user into the measures area I have no possibility to see more than one Contact/user per activity. Is there any way to measure text?

    Can anyone please help in solving this issue..

  • Combine report list for SAP-PP module

    Respected SAP GURU,s
    Can any body give me the combined report list of SAP-PP modules or give some direction to search it.
    SFC route is not required...
    pl reply urgently
    Rewards point will be given.
    VEDANT

    Hi,
    These are the few reports
    1. KanBan Analysis1 Plant          
    Txn Code: MCQ.
    This report gives information of KanBan usage. This can be used only when KanBan Component is used. 
    2 KanBan Analysis 2
    KanBan Board Demand Source Overview 
    Txn Code: 
    PK11
    PK12
    PK13
    PK18
    This report gives information of KanBan usage. This can be used only when KanBan Component is used.
    3 Material Usage Analysis Plant        
    Txn Code:  MCRE
    This report can be used for analyzing the actual material usage against plan in manufacturing process.
    4 Product Cost Analysis Selection Plant        
    Txn Code: MCRI
    This report can be used for finding out planned cost vs. actual cost in the manufacturing process
    5 Missing Parts Info System
    Txn Code: CO24
    Missing Part List Check

  • Ordering messed up when generating Report as Delimited on Server

    Hi folks,
    Not sure if anyone else might have observed or faced this issue but thought I'd give it a try. I have an Oracle Report (Version 6i) and the output generated should be a tab delimited text file so the user can view the output in Excel. The Report output is sorted by Name. When I run the Report locally (Client) by doing File -> Generate to File -> Delimited (Delimiter Option: Tab), the Report works fine. The ordering is correct. However, when I am running it off the server (Using the option DELIMITED for the DESFORMAT), the ordering seems messed up. The ordering is maintained for quite a few rows and then a Name (out of order appears). Note that this record also appears in the correct place as well as above the place where its expected to be ... Here is an example:
    Name                     ID     BIRTH DATE
    ==========================================
    ALLAN, BRIAN             1001   1970/12/31
    ALLAN, SUSAN             2001   1968/01/01
    FRANCIS, JOHN            5001   1965/02/01
    BROWN, EDWARD            3001   1978/01/02
    BROWN, JENNY             4001   1976/04/01
    FRANCIS, JOHN            5001   1965/02/01
    GRAHAM, DALE             6001   1980/10/10As you can see that FRANCIS, JOHN is appearing out of order and in order (Twice). This is not happening when I run it on the Client. Any ideas what may be causing this? I realize I don't have much information out here as I myself am at my wits end.
    Thanks
    Edited by: Roxyrollers on Jan 4, 2013 2:15 PM

    Hello,
    I you have access to Metalink (http://metalink.oracle.com), you can take a look to the notes:
    Note.278044.1 How to Debug REP-1401 when executing Reports with Barcode java code
    Note.382952.1 RDF to Debug REP-1401 when using Oraclebarcode.jar
    Note 252691.1 REP-1401: 'CF_1Formula ': Fatal PL/SQL error occurred - ORA-
    06502: PL/SQL: numeric or value error when running the example "Building a Report with a Barcode"
    Note 271807.1 Report With Barcode Bean Is Causing REP-69, REP-57054, REP-1401 and ORA-39565:
    Regards

  • Getting the variant name when the report program is run in background

    Hi All,
    How to get the variant name for the report program when run in background? My requirement is to create an email attachement with the name 'variant.XLS', where variant = selection screen variant, when the report program is run in background. The system field SY-SLSET holds the variant name only when run online.
    Any pointers to this will be highly appreciated.
    Thanks and regards,
    Nilesh.

    Hello Nilesh,
    Please find the algo:
    1. Call the FM: GET_JOB_RUNTIME_INFO to get the background job details.
    2. Select data from TBTCP using these details:
    DATA:
    FP_EVENTID   TYPE BTCEVENTID
    FP_EVTPARM   TYPE BTCEVTPARM
    FP_ACTIVE    TYPE BTCXPGFLAG
    FP_JOBCNT    TYPE BTCJOBCNT
    FP_JOBNM     TYPE BTCJOB
    FP_STEPCNT   TYPE BTCSTEPCNT.
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
        IMPORTING
          EVENTID                 = FP_EVENTID
          EVENTPARM               = FP_EVTPARM
          EXTERNAL_PROGRAM_ACTIVE = FP_ACTIVE
          JOBCOUNT                = FP_JOBCNT
          JOBNAME                 = FP_JOBNM
          STEPCOUNT               = FP_STEPCNT
        EXCEPTIONS
          NO_RUNTIME_INFO         = 1
          OTHERS                  = 2.
      IF SY-SUBRC <> 0.
    *   Error calling FM: GET_JOB_RUNTIME_INFO
      ENDIF.
    DATA: FP_VARIANT TYPE BTCVARIANT.
      SELECT JOBNAME JOBCOUNT STEPCOUNT VARIANT
      FROM   TBTCP
      INTO TABLE L_IT_TBTCP
      WHERE  JOBNAME   = FP_JOBNM
      AND    JOBCOUNT  = FP_JOBCNT
      AND    STEPCOUNT = FP_STEPCNT.
      IF SY-SUBRC = 0.
        SORT L_IT_TBTCP BY JOBNM JOBCNT STEPCNT.
        READ TABLE L_IT_TBTCP INTO L_WA_TBTCP INDEX 1.
        IF SY-SUBRC = 0.
          FP_VARIANT = L_WA_TBTCP-VARIANT.
        ENDIF.
      ENDIF.
    Hope this helps.
    BR,
    Suhas

  • FBL3N & FBL1N combination report

    We downloading data from FBL3N (GL line items) & FBL1N (Vendor line items). We then merge these two reports and based on the data of FBL3N (cost center/ order), we manually get Department, Location, Region & Order type. This entire exercise for every GL takes 4-5 man days. Hence we want to create one combined report in system, where we get all this data from system itself

    Hi,
    For a similar requirement, i created SQ01 query based on infoset (join of GLPCA and LFA1) that gives information of FBL3N and FBL1N by cost center/order. In GLPCA, you have Vendor(LIFNR) and Cost center/Order information. You can further add IO table AUFK and cost center master data table CSKS to get additional information that would now add manually.
    Thanks
    Venkata Ganesh Perumalla

  • Sending an email when the report is being refreshed

    Hi All,
    Is it possible, in Answers, to send an email automatically when a report is being refreshed ?
    Thanks in advance,
    Lau

    You can do this multiple ways, As you mentioned using conditional ibot also. You should have flag or indicator in your database saying that ETL load was done. Then based on conditional request run a ibot. But the trick is after completing this ibot you need to turn of the flag.
    Other easiest way is Create a report which runs ibot, Make sure you checked Oracle BI Server Cache feed check box, save the ibot. At the end of ETL execute a command which runs the ibot job for you. There is a command mode application available in Oracle BI called SASchInvoke.exe. This application will run the ibot for you.
    here is the blog which explains more about it.
    http://oraclebizint.wordpress.com/2008/03/06/oracle-bi-ee-101332-integrating-schedulerdelivers-into-other-applications/
    - Madan

  • Error when sending report output to printer from Forms 10g

    Hi,
    I have a simple report that I am running from a form using run_report_object built-in. I can successfully send the report output to a file but when I send the report output to a printer my report is
    terminated with report status of 'TERMINATED_WITH_ERROR'. I am using the default forms service and reports server that comes with the forms builder. How do I specify the reports server to user my default network printer ?Following is the code that runs my report.
    Thanks,
    Anna
    PROCEDURE SEND_TO_PRINTER IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(50);
    rep_server system_variables.reports_server%type;
    alldone          exception;
    BEGIN
         select reports_server
         into rep_server
         from system_variables;
         if rep_server is null then
              msg_alert('Error getting the reports server name', 'I', FALSE);                
              raise alldone;
         end if;
         :ctrl.run_report_errors := 'N';                    
         repid := find_report_object('REP_OBJ1');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,rep_server);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
         IF :ctrl.rg_print = 'P' THEN
              --Send the output to printer.
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,PRINTER);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'dflt');
         ELSIF :ctrl.rg_print = 'R' THEN
              --Rich Text Format
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'rtf');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,:ctrl.filename);
         END IF;
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := REPORT_OBJECT_STATUS(v_rep);
         WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
         LOOP
              rep_status := report_object_status(v_rep);
         END LOOP;
         IF rep_status = 'FINISHED' THEN
              null;
         ELSE
              :ctrl.run_report_errors := 'Y';
              msg_alert('Error when running report.' || rep_status, 'I', FALSE);           
         END IF;
    EXCEPTION
         when no_data_found then
              msg_alert('Error getting the reports server name', 'I', FALSE);      
         when alldone then
              null;     
    END;

    If you use Windows the user that runs the reports server is usually LocalSystem. Check this in the Windows Services panel.
    LocalSystem has no printer access. To be able to print, you have to use a real domain user that has access to the printer. So, change the Log on properties in the Services panel.

  • How do you identify when a report has finished?

    Hi all,
    I've got a big report that is taking a while to run (approx 1min) and the problem I'm having is that my users are getting bored of waiting and starting to click around my web application and re-running the report because they think it has failed. The re-running of the report is causing more load on the system and the reports to run even slower. What I would like to do is stop them re-runnning the report maybe by somehow locking the web page until BI publisher has finished but I don't know how to get a message back from BI publisher.
    Currently I'm running the BI publisher report by having a button push which redirects the users web browser to a url such as:
    'http://'||:BI_PATH||'/xmlpserver'||:BI_DIRECTORY||'/Custom Reports/'||:p180_report||'/'||:p180_report||'.xdo?_xpf=&_xpt=1&_xdo='||:BI_DIRECTORY||'%2FCustom%20Reports%2F'||:p180_report||'%2F'||:p180_report||'.xdo&_xt='||:p90_template||'&_xf=rtf&_xmode=4'
    And then as I'm returning an rtf doc the familiar save, open or cancel popup comes up. The problem is that before the popup appears they can re-click the run report button.
    One way round it I've thought of is to have the report generate to a file system and redirect the user to a waiting page that checks periodically for the files existance and then when it does exist forward the user to a page with a view report button. This sounds like a lot of effort, does anybody know of a better way?
    I've also wondered if running the report using webservices would be an option, is there a way of getting BI publisher to run a web service when a report has finished? This could then interact with my back end server and the web page could act on that, or am I totally barking up the wrong tree?
    Any help would be greatly appreciated!
    Thanks,
    Darren.

    Hi Darren
    couple of ideas
    1. Rather than 'run' the report, get it to run through the scheduler immediately. Once its running through the scheduler you could then poll the scheduler tables to see when it completes. You could either redirect the users to a wait page or show an egg timer until the document has been created. this would require the document to be delivered to somewhere for you to poll as the URL will not return a job id.
    2. Bit more involved but probably better is to hook into BIPs web services. So rather than the button issue an http request it calls a servlet to issue a web service call to BIP to schedule a report. The WS will return the job id to the caller, you can then poll the scheduler via a ws to check the progress of the job. Once complete you can then retrieve the result form the scheduler tables via another call.
    Food for thought I hope
    Tim

  • Garbage text when viewing reports

    Post Author: icecroft
    CA Forum: General
    Hello everyone!
    Is there anyone here who has encountered this error? When running any Crystal Report, our client gets garbage text as a report output. The weird thing is, when this report is exported to PDF, the output is perfectly fine. They are currently running on Windows XP and uses Crystal Report 10.
    If it helps, here's a screenshot of the report with garbage text:
    I would really appreciate it if anyone could help me with this.
    Thanks a lot!!!

    The basic flow is this, for the situation in which I'm seeing this issue.
    This is a desktop application using an Access database as its data store, with a button that allows the user to view a Crystal Report containing all of the data that's in the screen.
    When the user clicks on the button to view the report, the application does the following:
    - Builds up a DataRow containing all of the data representing the current 'item' being viewed in the application
    - Inserts the row into the Access database using the DataSet / TableAdapter (creates a new database connection each time)
    - Creates a new instance of the Crystal Report class to be viewed
    - set the database connection info in the report to the access database being used by the application
    - create a new form containing a CrystalReportViewer control
    - set the ReportSource of the control to the instance of the Crystal Report created above
    - show the form / CrystalReportViewer control.
    That what you were looking for?

  • Unable to open the document when combining files.

    We have a user that gets an error when combining files. It says
    Unable to open the document:
    <Filename and path>
    Please check to see if you have read permission for the above file.
    Retry and cancel buttons.
    We get this error on every subsequent file, it works on the first one after the computer starts.
    This computer has Windows Vista Business with SP2, Adobe Acrobat X with the latest patches.
    It doesn't matter if the files are local or on a network drive, the same always occurs. I have cleared
    all user and system temporary files, re-installed, verified the Acrobat Add-In for Word 2010 is active,
    verifed the PDF printer is working fine. It only happens when trying to combine files. I have given the
    user local administrator privilidges, tried with my account that has domain admin priviledges, no luck.
    I really need some suggestions...
    Thanks,
    Tom

    I have found out from Adobe technical support that this is a known issue with Office 2010 SP1 installed.
    This is an FYI for anyone else experiencing this issue, remove SP1 and it will work ok.
    They said an update to correct this issue will be coming within the next quarter.
    TP

  • Stop Oracle Apllication -  when installing Reports 6i on Windows XP

    Hi everybody
    I Have Windows XP
    I Have database 9i
    I have Forms 6i
    I have a problem when installing Reports 6i on Windows Xp
    Message appeared and said :-
    Title :Stop Oracle Applications
    Message :You Must stop all Oracle Services and Applications using Net8 for the Net8 installation to be successful
    Press Ok to continue the installation once the services and applications have been stopped, or press Cancel to abort the installation.
    --- End of message
    I stoped all services and pressed Ok but the message never stop asking me until I pressed Cancel .
    Can anyone help me to install the Reports 6i

    Try this, it may help...
    1. Shut down the DB, and make sure it won't automatically restart.
    2. Right click on my computer, go to manage.
    3. in manage, expand the services 'menu' (on right window).
    4. Press on services. That should bring up a list of all the services, running or
    not. Scroll down till you find the Oracle services, Highlight them and press stop.
    (You can also check the services from HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services)
    Run regedit (Start > Run > Enter "regedit", click "Ok"), find and check the following keys:
    HKEY_LOCAL_MACHINE
    \SOFTWARE
    \ORACLE
    HKEY_LOCAL_MACHINE
    \SYSTEM
    \CurrentControlSet
    \Services
    \EventLog
    \Application
    \Oracle.oracle
    Also check in HKEY_CURRENT_USER\SOFTWARE\ORACLE
    5. If that doesn't work, then try to find a different solution
    Uninstall Oracle and then Re-install
    Hassan

  • How to retain numerical order (Of file names) when combining files in Acrobat (9) Standard

    How to retain numerical order (Of file names) when combining files in Acrobat (9) Standard, please see the attached screenshot for a clearer explanation.
    I understand that if we prefix all files with leading zero's this will probably resolve the issue but I just wondered if anyone new the answer. The ironic situation is that version 6 has no problem.
    I have spent over an hour with techincal support who were unable to provide me with an answer

    It is not clear how you are trying to do the order. Have you tried to select a set of files and then use the arrow buttons to move them in the list? If you select the heading, that will typically reorder the files by that heading and undo everything you had done before.
    You should be able to select groups of files and move them up and down in the list. All of those options appear on your view, so what is the real question?

  • How do I change the pdf version when combining files

    I am using Acrobat 9 Standard and need to change the default pdf version when combining multiple files, it actually save in 1.6 but would need to lower to 1.4 to be compatible with a client. So far, I changed the .joboptions with no luck. Any idea?
    Thanks

    Thanks, we already do this but I would like to set it and forget it... Theres always someone that will forget the extra step

  • "In Adobe Standard, when combining files into one pdf, how do I keep the original date"?

    I converted multiple emails into a pdf file.  After opening the pdf file, I wanted to combine the files into one pdf however once combining the files, the date modified of the files changes to the current date.  How do I preserve the original dates of the emails when combining the files?

    Hi Softball ,
    Thank You for posting on the forums. Apparently there is no such feature that would help you to achieve this.
    Thanks,
    Vikrantt Singh

Maybe you are looking for