With three different objects in one Section with in one report is it possible?

Hi my dear friends,  Good morning
I'm using BO 4.1 sp 6
I needed some help from you could you please .........
here is that table contains ....
Date         Batch NO   Customer account No   amount of check     amount  
01/01/04    5678           123456                         $300                    $ 500
This report contains three different structures based up on user selection Section
system Name , Batch NO, Company code Used in Section
query filters and column are same for all above three structures in query filters all are optional prompts
currently i've created three tabs for three structures but due to optional prompts based upon selection data is fetching for all three tabs ...
is it possible to restrict ?
can i merge these three tabs into one tab ?
query filters are          user selection for System name in Section
class name                     class name :suspense
class type                       Date :
system name :           User selection for Company Code in Section
Date :                              Class Name : Suspense , Class Type : Rejected , System name : Mars , Date :
Company code :          User selection for Batch No In Section
                                 Class Name : Suspense , Class Type : Rejected , System name : Mars , Date :   
End user front end application is Java
Thanks
Ravi Kumar

hi friends,
Hi hesters thanks for your help it is helpful but my requirement is not met with that.
i've got answer
create condition @ universe level
with
'System Name'= @Prompt("Subtotal By','A',{'system Name','Batch No','Company Code'},mono,Persistent,)
need to create for what are the objects we are using in section
and create userresponse @ report level
if(Userresponse("Subtotal By") then [System Name] ......
you will get it...........

Similar Messages

  • How do I use three different Iphones on one computer?

    I have three different iphones being used in one house. So far only one has ever been uploaded and saved to iTunes on the computer itself. I've been scared to do the other two devices in fear that somehow all of our apps will combine or be lost. None of us have the same apps or music. How do I go about adding the other two phones? PLEASE someone help.

    Have a read Here...
    https://discussions.apple.com/message/18409815?ac_cid=ha

  • Save different Objects in one file by two different streams

    Hi all,
    I have a issue to read two Objects from one file if I write those in two different streams.
    I open the ObjectOutputStream and save an Object to the file. Then I close this stream and file. Then I open the new ObjectOutputStream and save the second Object in the same file. It works Ok. Then I open the ObjectInputStream and try to read those two objects and get java.io.StreamCorruptedException.
    This exception happes only when app tryes to read the second Object.
    this is the code example:
    //Write part
    for (int i=0;i<2;i++)
    File file = new File("test.swp");
    FileOutputStream fileOut = new FileOutputStream(file,true);
    ObjectOutputStream objOut = new ObjectOutputStream(fileOut);
    JobObject jobObj = new JobObject();
    jobObj.setID(i);
    objOut.writeObject(jobObj);
    objOut.flush();
    objOut.close();
    fileOut.close();
    //Read part
    FileInputStream fileOut = new FileInputStream("test.swp");
    ObjectInputStream objOut = new ObjectInputStream(fileOut);
    for (int i=0;i<2;i++)
    JobObject jobObj = (JobObject)objOut.readObject();
    objOut.close();
    fileOut.close();
    Thank for any help.

    Maybe try closing the ObjectInputStream (and re-creating it as needed) within your for loop?
    - Saish
    "My karma ran over your dogma." - Anon

  • Difficulty wiring three different arrays to one spreadsheet file

    I am having trouble outputting three different arrays from a case structure and sending them to an Excel file. I have read through several similar Excel threads and not seen anything really similar to my situation. I can't even get my arrays correctly wired to the "write to file" icon. Any suggestions would be great. I also attached my vi for reference.
    Thanks 
    Attachments:
    Read voltage, give current 5-29.vi ‏38 KB

    I cleaned it up a bit and fixed a few problems. It may not do everything that you want but I take no credit for the way the cose is written.
    Tim
    Johnson Controls
    Holland Michigan
    Attachments:
    Read voltage, give current 5-29.vi ‏24 KB

  • Having 2 different documents in one report, different pages per document

    Hi,
    I'm doing an invoice report that has 2 sections head and detail.
    Both header and detail may have more than one page, but between both sections page counts must be restarted.
    I'm using Oracle Reports 6i (no sections available)
    Basically, the objective is to have 2 independent documents in one report.
    I’m using 2 repeating frames one for the Header and one for the Detail, having a page break between both frames.
    So my goal is to reset page number counter at each page break.
    Something like this:
    Header pag. 1 of 2
    Header pag. 2 of 2
    -------- pag. Break --------
    Detail pag. 1 of 3
    Detail pag. 2 of 3
    Detail pag. 3 of 3
    -------- pag. Break --------
    Header pag. 1 of 1
    -------- pag. Break --------
    Detail pag. 1 of 2
    Detail pag. 2 of 2
    Thank’s for the help,
    Anselmo Rodrigues

    I'm sorry but i don't have any reports at hand, so i'm guessing "from the blind":
    If you cannot use a plcaholder-column in the between-pages-trigger, you could try the following:
    Create a Package-Sepc in the program-units-section.
    Create a variable in there with datatype-number and initil value 0
    Try to increase this variable in the between-pages-report.
    As i said, i'm not able to test it at the moment, but give it a try.

  • Different filters in one report

    Is there a way to use different filters in one Answers query?
    For example, I want to place two tables onto Compound layout view. The first table is prepared using one filter, and the second - using another filter.
    PS. I know that I can use two different queries with different filters and then put them to a dashboard. But it's not what I want - I want to put two different tables onto the Compound Layout view.

    The answer your question correctly: no, you can not have multiple filters in one answer request. You can only have one table view in an Answers request. The table view represents the logical SQL of the request, which can only have one filter.
    But there are some workarounds:
    1) you can use the FILTER function to create a column filter.
    2) you can have multiple pivot table views in one Answers request, to get different tables
    Based on 1 single table view, you can have multiple pivot tables which contain different column filtered columns.
    This means that you can have multiple (pivot) tables in one request which hold different data.

  • How to aggregate a number of different objects in one

    Hi guys,
    My problem is the following:
    I am implementing a neural network for which i have a neuron interface. This neuron interface is then implemented by different types of neurons. Now i would like to aggregate these neurons in one object which will make the final decision. New types of neurons are added quite frequently so i would like to have something that it is extensible. e.g an arraylist that i can keep adding new neurons to it. But i cannot do this because each neuron is a different type of object. Any ideas how can i do this? If you need any clarifications please ask. Any idea is welcome, even if it will involve major redesign.
    Kind regards,
    Charalambos

    Charalambos wrote:
    hello tom,
    thanks for your swift reply! now to your questions, my answers are in blue:
    What are the basic characteristics that you want to include about a Neuron?
    {color:#0000ff}Each neuron has 3 types of weights and a train method to which tarining data is passed to sequentially. Train then produces a result (one of possible three) and depending on the result uses the appropriate weight (one of the three). Then, i would like in the agregator neuron to compare the result of the neuron to the actual result and recalculate the specific weight.{color}the weight sounds like an attribute to me. the train method, however, is a good candidate for an interface.
    How do neurons interact?
    {color:#0000ff}Basically the only place they would interact will be in the aggregator object which will get the results and depending on there weights will pick the result with higher overall weight.{color}write a neuron comparator to make things easy for your aggregator.
    Are relationships 1 way (tree structure) or bi-directional (map structure)
    {color:#0000ff}It's a two level tree structure network{color}
    I hope my replies make sense to you.... If you have any ideas or more questions, please let me know...sounds like it could be a good problem. standard neural net stuff?
    %

  • Can I split the screen in Adobe to show more than one ducument at the same time? ie. view three different documents on one screen

    I am trying to look at three Adobe documents at the same time.  Can I split the screen to do this, otherwise I must keep flipping back and forth to read the documents.

    You can arrange the open windows in any way that suits you (assuming you're on Windows - not Touch - or Mac). You can't link the scrolling though.

  • Multiple ALV Objects in one Report

    I have multiple ALV ojbects in one ABAP report (one a grid, and one a tree).  When selecting the choose display layout for either object - it returns the layouts for BOTH objects.  Is there any way of limiting this to only return the layouts for the appropriate object?
    Thanks in advance.

    Hi Heather,
    in methode set_table_for_first_display you can use the parameter is_variant of type DISVARIANT. Use the field HANDLE in this structure to distinguish the two ALV Objects. Fill also field REPORT of the same structure with sy-repid.
    Regards Florian

  • BLOBs from different tables on one report

    Hi,
    I think the declarative BLOB support enhancement in 3.1 is really great. I am running into a problem with a report that joins two tables that both have BLOB columns. I have a Letters table and a Response table. The Response table has a FK linkage to the Letters table with the Letters table being the referenced table. I have a report that joins the Letters & Response tables and provides download links for the BLOBs in both tables. However on the report, only one of the link works at a given point in time. Both the links work fine in isolation (if the other link is commented out in the query).
    I am using the APEX_UTIL.GET_BLOB_FILE_SRC function to download the files. Has anyone tried using this function to download files from two different tables in a single report?
    TIA,
    Ramesh

    Ramesh,
    Is this application on apex.oracle.com by any chance? I just went to test there and am having all sorts of trouble with declarative display of BLOBs in a report but on our dev box, two works fine (except that the link for both is the default rather than what I selected).
    -- Sharon

  • Two different languages in one report

    Hi All ,
    I have a requirement , where i need to show content in Invoice in two language English and Arabic simulataneously.Its not like one invoice in English and other in Arabic.I am fine with numbers being shown in English.
    e.g :
    Name of the Comapny : Acme
    (Name of the company in Arabic) : (Acme in Arabic)
    Can this be done in BI Publisher and if yes then how.
    Thanks in Adavance!!

    use datatemplate
    see the sample here
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e12187/T421739T434255.htm#3547893

  • Data from different systems in one report in Visual Composer

    Hi,
    I want to create a dashboard report in visual composer where in I have a set of 10 tables data to be displayed in one page out of 10 queries I am getting the data for 5 of the reports from Bi system and for other reports we get it from CRM system .Can I place data coming from 2 different reports in one view.If so how is that possible.
    What are the advantages we have in Visual composer apart from WAD .
    Regards,
    Maya

    Hi,
    Two different reports can be placed in one iview, but as far as i know it is not possible to combine two reports data into single table.
    regards,
    Pruthvi R

  • How to report on 2 different dates in one report?

    Hello,
    I need to have Date in a sales report represent both Actual Goods Issue Date and Planned Goods Issue Date depending on the  sales order status (i.e. shipped or still in process).
    The report format is like:
    Date--Sales--
    Orders
    Jan 1                                    $0                         $100
    Jan 2                                    $50                       $150
    Jan 3                                    $100                     $300
    Sales is defined as shipped items. Orders are just all incoming sales orders.
    I need Date for Sales to be Actual GI date, and for Orders to be Planned GI date.
    In a customized DSO we have both these dates available, and currently, Calendar Day, Calendar Week are pointing to Planned GI date.
    Thanks.

    For those who might come across this note, the design issue was solved by incorporating Rule Groups.
    Problem:
    Need to have 2 different Date references for 0calday, based on the key figures. For example for Sales key figure date it would reference to Actual GI Date. But, for Intake key figure I needed the date reference to be Planned GI date.
    Solution-- applied to the transfer rules of the desired cube:
    1. In the starndard rule group delete the transfer rule for the appropriate key figures. in this case (sales key figure)
    2. In the same rule group map all time characteristics from the cube to Planned GI date from DSO
    3. Create a new rule group in the transfer rule between the DSO and the Info Cube
    4. In the new rule group, create a new rule for the appropriate key figure i.e. sales
    5. In the new rule group, Map the date/week/month/fiscal period to Actual GI date
    6. save/activate
    This solution eliminates the need for changing the data model, which makes everything almost transparent to the report users.
    Hope this helps someone.
    Edited by: Babak Shafiei on Dec 12, 2008 5:23 PM
    Edited by: Babak Shafiei on Dec 12, 2008 5:24 PM

  • One report contain two orientation sections

    Hi all,
    Is it possible to have different orientations on one report? My client hopes a letter would be printed at the beginning which is followied by data output in landscape orientation.
    Thank you very much,
    Clara

    Hi Clara,
    We cant do anything for this from Report Designer, it it is not CR 2008 version.
    So better you can go with .net Coding. I am sure it can possible trough code.
    Ttry to take out the page number, based on that Condition set orientation like this,(in C#.net)
    RptDocument.PrintOptions.PaperOrientation = CrystalDecisions.Shared.PaperOrientation.Landscape //RptDocument is report object
    See this link, this something related to your issue.
    Re: How to set the page size and the margins programatically
    From  that link You will get  a Doument file attacked by  Ludek.
    And i beleive You will get better responds ,once you post this thread in '.NET Development-Crystal Reports' forum
    (2008 is 12th version.)
    Regards,
    Salah.

  • Can we use different Databases (Oracle & SQL Server) in one report?

    Post Author: venki5star
    CA Forum: .NET
    Hi there.
    Can we use different databases (Oracle & SQL Server) in a same report?
    If possible how?
    Another question,
    Can we change the Provider Name at runtime of the given report. If so the above question is useless...
    Thanks in Advance.

    I tried this using Oracle Provider for OLEDB (the one that supplied by Oracle Client) and Crystal Reports 9. you can drag the column into designer but the image does not appear in preview.
    I guess it's because CR does not recognized it as image, and there are no information that the blob data is an image at all.

Maybe you are looking for

  • How to delete free goods created in MBN1?

    I dont want the free goods to be automatically populated in ME21N anymore, so which t-code to delete the free goods? Thank you. VT

  • The headphone jack.

    I'm beginning to lose my mind over this. Maybe someone can shine some light on what I can do here. I bought my MacBook Pro on Sunday, the 25th. I enjoyed it greatly. I love everything about the MBP. But no more than 12 hours into it's life, I plugged

  • Update statistics with 640_EX2 kernel

    Hello, I'm no longer able to do UPD_CHECK, UPD_COND and UPD_UNCOND since upgrading to a 640_EX2 kernel. This happens on WebAS 6.20 on Linux IA32 and on WebAS 6.40 on Linux X86_64. Scheduling backups and verifys still works from db13. MaxDB version is

  • Date format in text item-solved

    Two text item with data type date.I insert dates in the text item in the format for ex. 01-jun-07 but the text item takes it as 01-jun-0007. how to correct the format? Message was edited by: user588306

  • FB60 making 'Bus.place/sectn' as Mandatory Filed

    Hii In T-Code FB60, i hav a requirement to make 'Bus.place/sectn' field as Mandatory Field... How can i achieve it ?? will igo for validation or in program itself i hav to change it ? Thanks in Advance Satya