Creating a Subreport inside a Subreport

Post Author: Robin
CA Forum: General
Hi,
I have created a report (R1) with Crystal Reports XI with two subreports inside. Now I want to create another report (R2) where i insert the first report as a subreport. Now, the subreports in R1 are deleted automatically. There is no error during the import of R1, but the subreports are still missing. I see no other way to avoid the need of subreports in subreports. Does anyone know a solution for this problem?
Regards
Robin

Post Author: synapsevampire
CA Forum: General
You're not avoiding nested subreports this way, when you insert a report with subreports, it is still using nested subreports, and Crystal doesn't support this. One level deep only for subreports.
Try to avoid subreports in general by using advanced SQL.
-kai

Similar Messages

  • Error while importing WSDL file created in JDeveloper inside BS

    Hi All,
    I am facing error while importing WSDL of the DBAdapter service created using JDeveloper inside my business service in OSB.
    The error in OSB is 'The Resource Mapped Does not exist'

    Which version of OSB are you using? You need to upload schema (.xsd) files as well. WSDL has references to that schema(s) but they are not uploaded hence this error. On sbconsole, if you click on a WSDL name to see it, a button comes with name "Edit References". Click that to point to the xsd's you uploaded.
    Regards,
    Anuj

  • Creating a PDF inside of Word

      When I create a PDF inside of Word Doc and save it to my desktop it looks just like another Word Doc so what am I doing wrong?
      It should look like a PDF Cion not a Word Doc right?

    Icons don't matter. What actually is it? Can you open it with Adobe Reader? (Don't double click! That's a timesaver, but not a test).

  • How to create a table inside a table in the dictionary

    I need to create a table in the dictionary that one of the components has to be a table.
    Someone known how to do it.
    Thanks.

    Hi
    U cannot create a table inside another table.
    The data storage is not supported in that manner.
    If you need multiple fileds based on a single line entry then , first figure out the relationships between these tables.
    Then create a second table with a part of the primary key as the first and a unquie primary key to be defined for adding all the rest of the entries in the second table.
    Also maintain the foreign key relationships between these tables.
    This is the way to have multiple entries for a single line of a table entry.
    Regards,
    Radhika.

  • How to create Table Popins inside a table using Java Webdynpro

    Hi All,
    I am working on a Java Webdynpro project and one of our requirements is to create Table popins inside the Table. I need to popin data beneath the row based on a value selected from the DropDown Box which is one of the  column in the Table.
    Also, I need to display vertical scrollbar instead of  Table Footer to scroll thru the table rows. Any ideas.........
    I would appreciate if you can let me know how can I do this. I am working on the 7.0 version of Java Webdynpro.
    Thanks for your time and consideration!
    Regards,
    Madhavi

    Hi,
    Please refer the following link:
    Re: Table popins
    step by step procudure to create table popin on lead select.
    thanks & regards,
    Manoj
    Edited by: Manoj Kumar on Apr 1, 2008 10:17 AM

  • Creating a method inside a constructor

    Can we create a method inside a Constructor??

    Encephalopathic wrote:
    uj_ wrote:
    Pascal doesn't have classes so it has no constructors either.Its latest incarnation, object pascal / Delphi did. I was working with that in the early '90s.Isn't the relation between Pascal and Object Pascal like that of C to C++?
    C didn't become C++. It stays C. And Pascal didn't become Object Pascal. It stays Pascal.
    So Pascal doesn't have classes or constructors. A company driven Pascal derivate called Object Pascal has.

  • Can we create a procedure inside a procedure

    DB version:11g
    hi ,
    Just wanted to ask you guys like can we create a procedure inside a procedure...if not is there any alternative??
    in db2 it is allowed so do oracle support this????
    thanks

    You probably would have been able to tell quicker if you'd just given it a go yourself.
    As Justin showed it's perfectly possible, though I don't personally subscribe to Justin's view that it's rarely appropriate. I go on the principle that if the functionality of a procedure/function is to be used in more than one place then it should be declared independently, but if it's a case of writing a procedure that has to perform a lots of functionality, some of which may be re-used several time within that procedure, then breaking that down into nested procedures for modularity and re-use within it is good practice and makes for more readable and maintainable code.
    So, I would say it's more a case of "it depends" and good design will dictate whether procedures should be nested or seperate.

  • Plz help! how to create a LinkedList inside each element of ArrayList

    how do i create a LinkedList inside each element of ArrayList

    how do i create a LinkedList inside each element of
    ArrayListYou really should read the API documentation and if you would you would see that you can construct a new ArrayList like this:
    ArrayList list = new ArrayList();and you can add to it like this
    list.add(new LinkedList());and now your list contains a new LinkedList at position 0 wich of course would be a LinkedList with some purpose not just a new empty one like in the example above. You could do something like this:
    ArrayList list = new ArrayList();
    LinkedList linkedList1=new LinkedList();
    // add something to linkedList1
    list.add(linked);
    LinkedList linkedList2=new LinkedList();
    // add something to linkedList2
    list.add(linked);
    LinkedList linkedList3=new LinkedList();
    // add something to linkedList3
    list.add(linked);and so one..
    bopen, hope this helps

  • LR4 catalog:createKeyword creates a keyword inside another keyword and 4th parameter is nil

    LR4 catalog:createKeyword creates a keyword inside another keyword even though the 4th parameter (parent) in the call is nil. LR3 API doc says .. 'nil to create at the top level' and thats how it worked. Looking forward to LR4 SDK documentation.

    Hmm, I just tested my plugin in LR 4 and it successfully creates a top-level keyword when the fourth parameter is nil. 
    It would be better to repost and continue the discussion in the SDK forum:
    http://forums.adobe.com/community/lightroom/lightroom_sdk

  • How to create a subreport link programmaticly using java RAS sdk

    Hi,
    I want to create subreport link for couple of main report parameters programmaticly using RAS sdk.
    Main report has Param1 and Param2. I need to link these parameters to sub-report which doesn't have any parameters, so I can pass the parameters value just once when running the report and consume it's value in the sub-report.
    Below is the code I tried but I get "Invalid field name"error when I try to save the main report.
    ISubreportClientDocument subReportDoc = subReportCntrl
                      .getSubreport(subReports.getString(i));
    SubreportLinks srLinks = subReportCntrl.getSubreportLinks(subReports.getString(i));
    SubreportLink subRptLink1 = new SubreportLink();
    Fields paramFields = reportClientDoc.getDataDefinition().getParameterFields();
    subRptLink1.setMainReportFieldName(paramFields.get(0).toString());
    subRptLink1.setSubreportFieldName(paramFields.get(0).toString());
    SubreportLink subRptLink2 = new SubreportLink();
    subRptLink2.setMainReportFieldName(paramFields.get(1).toString());
    subRptLink2.setSubreportFieldName(paramFields.get(1).toString());
    srLinks.add(subRptLink1);
    srLinks.add(subRptLink2);
    subReportCntrl.setSubreportLinks(subReports.getString(i), srLinks);
    Thanks,

    Hi,
    I want to create subreport link for couple of main report parameters programmaticly using RAS sdk.
    Main report has Param1 and Param2. I need to link these parameters to sub-report which doesn't have any parameters, so I can pass the parameters value just once when running the report and consume it's value in the sub-report.
    Below is the code I tried but I get "Invalid field name"error when I try to save the main report.
    ISubreportClientDocument subReportDoc = subReportCntrl
                      .getSubreport(subReports.getString(i));
    SubreportLinks srLinks = subReportCntrl.getSubreportLinks(subReports.getString(i));
    SubreportLink subRptLink1 = new SubreportLink();
    Fields paramFields = reportClientDoc.getDataDefinition().getParameterFields();
    subRptLink1.setMainReportFieldName(paramFields.get(0).toString());
    subRptLink1.setSubreportFieldName(paramFields.get(0).toString());
    SubreportLink subRptLink2 = new SubreportLink();
    subRptLink2.setMainReportFieldName(paramFields.get(1).toString());
    subRptLink2.setSubreportFieldName(paramFields.get(1).toString());
    srLinks.add(subRptLink1);
    srLinks.add(subRptLink2);
    subReportCntrl.setSubreportLinks(subReports.getString(i), srLinks);
    Thanks,

  • How to create a condition inside a flow to execute or not a mapping

    Hi everybody, I'm quite new on OWB and I don't know how to build a flow to do the following things:
    Scenario
    1. the flow (three mappings in series) has to run every day, but ONLY the first two has to run every day, while the third (used for the fact partitioning) has to run ONLY on the last day of the month (practically 12 times a year), to capture the last fact's image and put all the data inside a backup table.
    So, only when the flow runs on the last day of each month, the third mapping is executed. If we are not at the end of the month, the third mapping has to be bypassed and the flow has to stop.
    To do this, I need a condition that compares two values
    a) select RUN_DATE
    from DW_CONTROL_TABLE
    where PROCEDURE_NAME = 'OTE_DW_LAST_RUN' --> that retrieve the date when the flow runs (every day I have the current sysdate)
    b) select TRUNC(LAST_DAY(sysdate)) from dual --> that retrieve the last day of each month
    ONLY when these two dates are the same, the third mapping has to run
    I tried to use the WHILE_LOOP activity, combined with the ASSIGN but It doesn't work properly......
    How can I achieve this result ?? Which activities I need to create this flow ?
    I repeat..I'm a very beginner, so if somebody can give some hint or example, I'll appreciate it very much.
    Thanks in advance
    Alessandro

    although you did not say if these mappings are to run in parallel or not try something like this:
    -- create procedure that determines whether or not to the mapping should run.
    -- bind output of procedure to variable run_map
    -- use fork operator and an OR operator and put in connection directly to OR operator and one to mapping and then to OR operator.
    -- use conditional access test in the two connections from fork
    -- one that says run_map = 'Y' and connects to mapping, mapping connects to OR operator
    -- leave the other condition open, meaning all other conditions will pass tru this one and connect to OR operator directly
    this should work
    Edited by: MichaelR64 on 22-mrt-2011 8:40

  • Can you create an assertion inside the current UI map you have already created and how?

    Hi all
    I have been following the best practice guideline of creating multiple UI maps. The problem is now when using the Code UI builder to create Assertions for my test methods, as soon as you create an assertion it creates and places it into a default UI map.
    I want it inside the UI map I created for that particular test. I could copy the code out of the designer into the UI map I have for the test but I fear this will create problems now and further down the line or not work.
    Is there a process for this?
    Cheers
    Rob

    Use the context (right-click) menu in solution explorer on the UI Map (ie on the ".uitest" file) where you want the assertions, then select "Edit with Coded UI test builder".
    When using multiple UI maps DO NOT right click in the source files and select the "Generate code for Coded UI test". If you do then, as you have found, the code will be added to the default "UImap.uitest" file, creating one if needed
    and with no warning that it is doing so. (See also
    http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/3378897-choosing-the-uimap-when-recording-tests )
    Regards
    Adrian

  • How to create a table inside JSON View

    Hi All,
    I am trying to create a UI5 app inside which i want to fetch the data using SAP gateway service which i want to embed into JSON view to be displayed inside a table. I am totally new to JSON & UI5 so please let me know where i am incorrect:
    Index.html code:
    <!DOCTYPE HTML>
    <html>
      <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <script src="resources/sap-ui-core.js"
      id="sap-ui-bootstrap"
      data-sap-ui-libs="sap.ui.commons,sap.ui.table"
      data-sap-ui-theme="sap_bluecrystal">
      </script>
      <script>
      sap.ui.localResources("ui5trial");
      var view = sap.ui.view({id:"idSalesOrder1", viewName:"ui5trial.SalesOrder", type:sap.ui.core.mvc.ViewType.JSON});
      view.placeAt("content");
      </script>
      </head>
      <body class="sapUiBody" role="application">
      <div id="content"></div>
      </body>
    </html>
    JSON view file code:
      "Type":"sap.ui.core.mvc.JSONView",
      "controllerName":"ui5trial.SalesOrder"
    var oTable = new sap.ui.table.Table({
      title: "Sales Order Table Details",
      id: this.createId("MyTable1"),
      selectionMode:sap.ui.table.Table.SelectionMode.Single });
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Sales Order No."}),
       template: new sap.ui.commons.TextField().bindProperty("value","OrderId"));
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Document Type"}),
       template: new sap.ui.commons.TextField().bindProperty("value","DocumentType"));
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Document Date"}),
       template: new sap.ui.commons.TextField().bindProperty("value","DocumentDate"));
    oTable.addColumn( new label: new sap.ui.commons.Label({text: "Customer Id"}),
       template: new sap.ui.commons.TextField().bindProperty("value","CustomerId"));
    Controller file code:
    jQuery.sap.require("util.Func");
    sap.ui.controller("ui5trial.SalesOrder", {
    * Called when a controller is instantiated and its View controls (if available) are already created.
    * Can be used to modify the View before it is displayed, to bind event handlers and do other one-time initialization.
    * @memberOf ui5trial.SalesOrder
      onInit: function() {
      var oModel = new sap.ui.model.json.JSONModel(serviceUrl);
      var oData = oModel.getJSON();
      oTable.setModel(oModel);
      oTable.bindRows(oData);
    Func.js file code:
    jQuery.sap.declare("util.Func");
    function getUrl(sUrl){
      if (sUrl == ""){
      return sUrl;
      if (window.location.hostname == "localhost"
      || window.location.hostname == "https://sapes1.sapdevcenter.com"){
      return 'proxy' + sUrl;
    //Service Root URL
    // "https://sapes1.sapdevcenter.com:443/sap/opu/odata/sap/ZGWSAMPLE_SRV/?sap-client=520";
    //Extract the relative URL to use this application for deployment on any Web Server
    var serviceUrl = getUrl("/sap/opu/odata/sap/SALESORDERXX/?sap-client=520");

    Hi,
    If SAPUI5 / Javascript is completely new to you, I *strongly* suggest you train yourself in Javascript first. Without prior knowledge of Javascript it really makes no sense learning SAPUI5, since it involves quite a bit of Javascript programming.
    (The reason I'm mentioning this: You started out with a JSONView, but the code you provided is Javascript. Either create a JSONView and construct your table in a JSONView manner, or create a JSView with Javascript code to build your table. On a sidenote, I have never seen anyone using JSONViews anyway, so if you have the choice, use XMLViews (recommended) or Javascript Views)
    If you're already familiar with Javascript, I strongly advise to try some simple exercises first before deep-diving into OData connectivity. Just try and understand the basics of SAPUI5 (The MVC concept, databinding, etc)
    But if you really want to, have a look at this excellent blog : Consume NetWeaver Gateway services via SAPUI5 - Part 1

  • How to create an acitivty inside a Case

    Dear All,
    Sorry to bother. We are using CRM 7.0 SAP GUI for Case Management and Activity Management. Use t-code SCASE to enter Case Management, to create a new case, save it. Now we are trying to create a new activity inside that case. How can we do that? Or if we have an existing activity, how do we link that to an existing case?
    Your input is much appreciated!
    Leon

    Hi Leon,
    In order to link an existing activity to the case, choose the button 'Linked Objects'.
    Choose the link Business transaction inorder to link and create an activity.
    Wish this helps.
    Regards,
    Shalini Chauhan

  • Creating a region inside another region

    Hi,
    I have created a region with a report. Inside that region, I want to create another region with a report. How do I do this?
    Thanks.

    bp21 wrote:
    Hi Denes,Please DO NOT post follow-ups to closed/ancient threads.
    Posting follow-ups to ancient threads/departed users is NOT an effective way of getting help:
    <li>Other users may ignore the thread if it is closed.
    <li>Your assumption that the questions are related may be incorrect, leading to confusion about the nature of the problem and potential solutions.
    <li>Watches on the thread will have expired, so the original participants are totally unaware of the new post. They may no longer be active on the forum.
    <li>You have no ability to mark posts as helpful or correct.
    <li>As in this case, features and techniques discussed in old threads may no longer be relevant in the version you are using.
    Post your requirements as a new thread, including at least the following information:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Links to related posts and threads (using the methods in the FAQ)
    I have exactly the same requirement i.e. I want to display two reports within a single region. I am using Apex 4.1.In APEX 4.1 this is best achieved using the built-in subregion feature.

Maybe you are looking for

  • Not  Deploy Identity Manager error SessionFactory.getLocaleInfo

    I need deploy IM (db oracle) with Appplication server 8 error: java.lang.NullPointerException      com.waveset.session.SessionFactory.getLocaleInfo(SessionFactory.java:947)      com.waveset.ui.PageInformation.getLanguageFlags(PageInformation.java:295

  • Problem in  FI_ITEMS_MASS_CHANGE

    Hello Experts, I have to change 2 fields in BSEG table i.e.EBELN AND ZUONR. I am using FM  FI_ITEMS_MASS_CHANGE for the same. I have goggled it and many of them used the same FM. but its not working for me i have send all the data to FM but its not w

  • Silent installation and adobe air message

    Hi all, i hope anybody can help me here. I have create a cs4 silnet package. The silent installation is running well only the adobe air message appears a view times during the installation and i have allways to klick to "ok" Adobe AIR This applicatio

  • Institution Provider Page works well when I click the "Preview in iTunes" but not in "Preview on iPad."  What seems to be the problem?

    Institution Provider Page works well when I click the "Preview in iTunes" but not in "Preview on iPad". What seems to be the problem?

  • LabVIEW RTE 8.2

    Yesterday I installed LabVIEW RTE 8.2 in a PC to make some tests of the new functionalities. Now I want to uninstall it from the computer, which already has LV RTE 7.1, and I can not find it in "Control Panel">>"Add/Remove Programs">> "National Instr