Subreport height

Hello, I am using Crtstal Reports ver. 8.5. Many of my reports use subreports simply to calculate extra information & put them into variables to bring back into the main report. Therefore all groups in the subreport are supressed.My problem is that in the main report, the subreport's height(right clicked on the subreport,"object size and position") is always a minimum of 0.040. Any height lower than 0.040 dos not get saved with the report. Therefore when users run the report, they get extra blank lines which is the subreport's line.I can manually reduce the height of these subreports & then print for the user eliminating the blank line that the subreport gives but Crystal does not save the new height. This is very frustrating as more & more reports now have subreports. The users do not have the capability to manually modify the height of the subreports as we only have 1 Crystal Reports license. Is thare any option anywhere in Crystal that would allow me to change the minimum height of a subreport or allow me to save the height change that is less than 0.040.
Thank you

Hi Vinay, I didn' t see a suppress if report blank , I have only have a suppress checkbox in the subreport tab of the format subreports option. The suppress didn't do anything, when I run the report I still get about 10 - 15 blank lines where the subreport is, I believe that these lines correspond to the number of times the subreport is called or the number of records read by the main report.
p.s. In the subreport itself, all groups are suppressed.
Thanks for responding

Similar Messages

  • Get the height of a report to use for setting height of subreport

    I am getting an error:  Invalid Section Height   on one of my subreports
    that I am programmatically inserting into a report.  I have not set the
    subreport height, I thought that it would be automatically set if I didn't
    set it.   I am measuring the width of a section in the report I am using
    for a subreport to use as the Width for the subreport, but not sure how
    to get the height of the report.   It appears this needs to be in pixels.
    I have manually tried setting it to 14400, which I believe is 11" and I ge an invalid section height error.
    How do I get the height for the subreport???  
    I am using VB.Net 2008, Crystal 2008, Vista Buisiness.   - All the latest service packs of everything.
    Thanks,
    Jeff

    Hi Jeff,
    The easiest way to figure this out is to test it in the Crystal Reprot Designer first. Bascially you can't set the subreport higth larger than the report page itself. CR needs to allocate space for the Page header and footer then Group header/footer and detail sections. There are options when designing this in CR Designer which will allow you to span more than one page. The simplest way is to design a template report in Crystal Report Designer so you can see all the options required to make this work. Then you can set the same in code when inserting.
    Remember "If it can't be done in the Report Designer it can't be done in code" The Designer uses the same set of API's as .NET. By using a test report you can then see what settings are being configured when you get the info in code.
    It believe you simply need to set the Can Grow options. Test this in the Designer then update us if you have any more questions.
    Thank you

  • Invalid Section Height when I load the nth subreport

    I am attempting to load multiple sub-reports into a master report document. The process is:
    Use the RAS SDK to obtain a reference to the detail area
    Add a section to the detail area
    Import the subreport into the detail area
    The code is pretty simple as well.
            private ReportDocument AddSubReportToParent(string subReportName, string fileName)
                try
                    CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea detailArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.DetailArea;
                    CrystalDecisions.ReportAppServer.ReportDefModel.Section section = new CrystalDecisions.ReportAppServer.ReportDefModel.Section();
                    string sectionName = "Section" + subReportName.Replace(".", "");
                    section.Name = sectionName;
                    section.Kind = CrystalDecisions.ReportAppServer.ReportDefModel.CrAreaSectionKindEnum.crAreaSectionKindDetail;
                    section.Width = headerArea.Sections[0].Width;
                    _crystalDocument.ReportClientDocument.ReportDefController.ReportSectionController.Add(section, detailArea, -1);
                    _crystalDocument.ReportClientDocument.SubreportController.ImportSubreport(subReportName, _configSettings.InputPath + "\\" + fileName, section);
                    ReportDocument subreport = _crystalDocument.OpenSubreport(subReportName);
                    return subreport;
                catch (Exception ex)
                    Logger.ErrorException(this.GetReportBuilderErrorText(this.GetReportBuilderErrorText(String.Format("Unable to add subreport '{0}' from file {1} to custom Crystal Report", subReportName, fileName))), ex);
                    throw;
    However, when I attempt to load the 41st report (or sometimes greater) the ImportSubreport method throws an exception with the message, "Invalid Section Height". Note that I have one section for each report. This is to make it easier to place the subreport on in the document and on it's own page.
    I cannot seem to determine what is going wrong. Why would the 41+ import fail?
    I am using Crystal Reports Version for Visual Studio .NET, 13.0.8.

    Hi Ryan,
    No need to test, Ludek found this KBA:
    1670453 - RAS Can't Create Objects in Crystal Report Sections Past
    40
    So your only work around is to create a template report with dummy subreports already embedded in it.
    Here's something to get you started:
    btnReportObjects = Text box
    subreportClinetDocument.IsImported is a new API so you may need to upgrade CR for VS.
    btnReportObjects.Text = "";
    flcnt = 0;
    foreach (String resultField in rptClientDoc.SubreportController.GetSubreportNames())
        SubreportController subreportController = rptClientDoc.SubreportController;
        SubreportClientDocument subreportClinetDocument = subreportController.GetSubreport(resultField);
        if (subreportClinetDocument.IsImported)
            textBox1 = "Imported: " + subreportClinetDocument.SubreportLocation.ToString();
            btnReportObjects.Text += textBox1;
            btnReportObjects.AppendText(" 'End' \n");
            ++flcnt;
            btnCount.Text = flcnt.ToString();
        else
            textBox1 = "embedded: " + " " + resultField.ToString();
            btnReportObjects.Text += textBox1;
            btnReportObjects.AppendText(" 'End' \n");
            ++flcnt;
            btnCount.Text = flcnt.ToString();
        CrystalDecisions.CrystalReports.Engine.ReportObjects crReportObjects;
        //set the crSections object to the current report's sections
        CrystalDecisions.CrystalReports.Engine.Sections crSections = rpt.ReportDefinition.Sections;
        if (resultField.ToString() == "World Sales Report.rpt")
            //loop through all the sections to find all the report objects
            foreach (CrystalDecisions.CrystalReports.Engine.Section crSection in crSections)
                crReportObjects = crSection.ReportObjects;
                //loop through all the report objects to find all the subreports
                foreach (CrystalDecisions.CrystalReports.Engine.ReportObject crReportObject in crReportObjects)
                    if (crReportObject.Kind == ReportObjectKind.SubreportObject)
                        CrystalDecisions.ReportAppServer.ReportDefModel.Section rasSection;
                        rasSection = rptClientDoc.ReportDefController.ReportDefinition.FindSectionByName(crSection.Name);
                        CrystalDecisions.ReportAppServer.Controllers.SubreportClientDocument MyNewSub;
                        MyNewSub = rptClientDoc.SubreportController.GetSubreport(resultField.ToString());
                        CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject objSubreport = rptClientDoc.ReportDefController.ReportObjectController.GetAllReportObjects()[crReportObject.Name] as CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject;
                        CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject objSubreport2 = (CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject)objSubreport.Clone(true);
                        rptClientDoc.ReportDefController.ReportObjectController.Remove(objSubreport);
                        CrystalDecisions.ReportAppServer.ReportDefModel.SubreportLinks mySubLinks = rptClientDoc.SubreportController.GetSubreportLinks(objSubreport2.SubreportName.ToString());
                        mySubLinks.RemoveAll();
                        objSubreport2.Left = 10;
                        objSubreport2.Height = 10;
                        objSubreport2.Width = 10;
                        objSubreport2.Name = "sub1";
                        objSubreport2.SubreportName = "sub1";
                        //rptClientDoc.ReportDefController.ReportObjectController.Modify(rptClientDoc.ReportDefController.ReportObjectController.GetAllReportObjects()[crReportObject.Name] as CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject, objSubreport2);
                        rptClientDoc.ReportDefController.ReportObjectController.Add(objSubreport2, rasSection, -1);
    I don't recall now what I was testing but all of the basics are there to replace the dummy subreports with your new ones.
    I DID NOT test this with more than 40 subreport objects either so you may still run into the SDK limit. We may have to ask the Report Designer Resource if this can be handled in the report by using Conditional suppression...
    Don

  • Subreports with variable heights

    How do you get subreports to print one after the other when
    the height of each subreport varies? Each subreport appears on the
    page in an absolute position.

    Found the answer in the help file in the Properties reference
    section:
    Position Type: = Float - The element moves down as elements
    above it expand. It attempts to preserve the distance between it
    and elements above it.

  • Using a subreport to list values from the data in the main report

    Post Author: GarrettFitzgerald
    CA Forum: Crystal Reports
    I have a list of new patients, showing what insurance class they fall under. I'm summarizing the classes into 4 groups using a SQL Expression.I would like to put a subreport in the header showing what insurance classes were used, and how they were coded. I could do this by including the tables and selection criteria over again, but I'd much rather say "show these values that appear in the main data and how they were coded." Is this at all possible? Thanks.

    Firstly have you tried dragging the frame around or minimising it and then re-maximising it, to coerce it into repainting?
    Secondly, drop some System.out.println() lines in: one in the paintComponent() method to output the width and height, and another after the waitForID() call to output String.valueOf(image).
    Thirdly, in your paintComponent() method, where you call rawImage(), change your "null" observer parameter to "this," otherwise the panel won't be notified of when the image is loaded, resulting in (unless, I think, you do coerce the repaint yourself) exactly the behaviour you're seeing.
    If the "null --> this" change doesn't work on its own then let us know the results of your println()s.

  • When 40 subreports are added programmatically to a report the last subreport to be added is shown first while all other reports are in the correct order

    I am loading multiple sub-reports (up to 40) into a master report document using the Crystal SDK. This is accomplished by obtaining a reference to the detail area, adding a section to it, and then importing the subreport into the detail area. The master report does not contain a whereclause and contains no data other than the other sections so it is display only once.
    When I add the section to the master report I give an index of -1 so that it would always appear on the bottom in the report. This works until I print a report containing exactly 40 reports at which time the last section is shown at the top of the report. All other sections (and hence subreports) appear in the correct order. If I print less than 40 reports all sections are in the correct order. If I print more, the export process crashes as documented in Invalid Section Height when I load the nth subreport
    I am using Crystal Reports SDK 13.0.8. Visual Studio 2012. .NET 4.5.2.
    The pertinent bit of code is shown below. What might I be doing incorrectly? Is this a Crystal SDK bug?
    Thanks,
    Ryan
    private ReportDocument AddSubReportToParent(string subReportName, string fileName)
        try
            CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea headerArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.ReportHeaderArea;
            CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea detailArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.DetailArea;
            CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea footerArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.ReportFooterArea;
            CrystalDecisions.ReportAppServer.ReportDefModel.Section section = new CrystalDecisions.ReportAppServer.ReportDefModel.Section();
            // strip dots from name (any character that is not a number or letter causes a name/ID runtime error from the Crystal Reports SDK)
            string sectionName = "Section" + subReportName.Replace(".", "");
            section.Name = sectionName;
            section.Kind = CrystalDecisions.ReportAppServer.ReportDefModel.CrAreaSectionKindEnum.crAreaSectionKindDetail;
            section.Width = headerArea.Sections[0].Width;
           _crystalDocument.ReportClientDocument.ReportDefController.ReportSectionController.Add(section, detailArea, -1);
            _crystalDocument.ReportClientDocument.SubreportController.ImportSubreport(subReportName, _configSettings.InputPath + "\\" + fileName, section);
            ReportDocument subreport = _crystalDocument.OpenSubreport(subReportName);
            return subreport;
        catch (Exception ex)
            Logger.ErrorException(ex);
            throw;

    Hi Ryan
    The search string 'crystal net 40' (search box in top right corner, returns this KBA:
    2105208 - ER - CR .NET SDK has a Section limit set to 104 and subreport limit of 40
    SP 13 for "SAP Crystal Reports, Developer Version for Visual Studio .NET" can be downloaded here:
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • Subreport causing an extra blank space in PDF export of SSRS 2008 report

    Hi All,
    I have a requirement of showing individual report and a Supervisor report.
    In the individual report, I will run the SSRS report for a particular worker. In the supervisor report, I am supposed to show the report for each worker working under the supervisor.
    I have created the individual report and it works fine(even when exported to PDF).
    Now in order to create the supervisor report, I will get the supervisor ID which I broke into various individual ID's of workers working under the supervisor in DataSet and created a subreport which points to the Individual report. I embedded this subreport
    in a Tablix and gave a group by on the ID so that for each ID, the report runs one time.
    The issue that I am facing is that when I export the Supervisor report in PDF, after each page, I get an extra blank page.
    The Supervisor report only contains the Tablix which has only one column containing the sbureport which points to the Individual report and a Header and footer and nothing else.
    Still I am getting this extra page on PDF export. Please help on the same.

    Hi HiddenIdentity,
    According to your description, you have a report to display subreport for each ID and you have set page break between each group instance. Now when you export the report into PDF, it generate an extra blank page between each group instance. Right?
    In Reporting Services, Reports exported using PDF and Image are optimized for a book-like or printed experience where pages are a consistent size. Page breaks are inserted vertically and horizontally at specific locations within the report body. These specific
    locations are determined by the page width and page height settings. Please see the following link:
    Rendering Behaviors (Report Builder and SSRS)
    In this scenario, when you put a sub report in a cell, the whole subreport body will be displayed in this cell. If the total width exceed the page width of a PDF page, the content will goes to the next page. That's it need two pages to render each subreport.
    So please modify the subreport report size to make it as big as the tablix so that it can be rendered within one PDF page.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • How to Avoid Empty Space in Excel Export , while using SubReport.

    We have a sceneraio where we have parent child relationship and we are using the SubReport Concept to map the child data by taking input parameter from Parent Report.
    The RPL/HTMl viewer , PDF works fine, but  when we export data into excel empty rows are comming.
    Could  you please suggest how can we avoid empty space in Excel Export.
    we have kept the cell (width and height ) same as SubReport Width and height.

    Hi SubhadipRoy,
    According to your description, did you use separate subreport to display the data rather than insert subreport in tablix?
    Based on my test, if we are use separate subreport to display the data in the report, when we export to Excel we will get an additional row. We can adjust the minimum gap between tablix and subreport to work around the issue. In SSRS 2012, if we paste tablix
    and subreport without empty space in report design, it will not display the additional row. You can try to put the tablix and subreport in a rectangle to resolve the issue. 
    Reference:
    http://stackoverflow.com/questions/20367960/remove-additional-column-from-exporting-to-excel-from-ssrs
    There is a screenshot for your reference:
    If the issue is persist, please elaborate the issue for further investigation.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Setting fixed height in Crystal Reports sections

    Hi,
    I want to set the height of detail section in crystal report. I want to set the details section such that it must at the most accommodate 10 records in the section.
    If I have only 2 records in the section, it should show 8 empty lines.
    If I have more than 25 records in the section, the remaining 15 records will be placed on the next page.
    After that, the footer will be printed at the end of it.
    Is this possible?
    Thanks.

    Try this:
    1. You can also create a SQL expression field or use a subreport  to read how many records that it returns.
    2. Have 10 detail section; and
    3. In each section, put in all fields; and
    4. Have a running total in each section; and
    5. For each field in the section, you suppress based on the running total; and
    6. Do not suppress blank section; and
    7. Set new page if the running total is more than > 10

  • Subreports always start in a new page

    Hi,
    I have 4 subreports in 1 page, based on the suggestions from this forum, I put them into 4 different GroupHeaderSections so all the data is displayed. The problem I have now is that if a subreport is too big, it will start a new page and leave a big blank on the previous page. How can I make all subreports follow each other and go to a new page only when extra space is needed.
    Thanks.

    Hi John,
    This becomes hard because if Crystal thinks the first page of the subreport is too large to fit on the current page of the main report it will force it onto a new page.  This is the same as how Word handles images and tables. 
    I'd recommend looking at the design of the subreports and possibly minimizing the rows they are returning.  Possibly decreasing the font size and row heights. 
    Good luck,
    Brian

  • Subreport of the jasper report displays blank, how do i solve this??

    i am creating a report which has subreport that is embeded in to the master report.
    When i previee it works fine but when i use it on my code it doesa'nt, it only display balank page.
    I could view the report individualy but not together.
    please guide me
    Thank you
    Master Report
    <subreport isUsingCache="true">
        <reportElement key="testingrpts_subreport1" x="21" y="72" width="517" height="100" isRemoveLineWhenBlank="true" isPrintInFirstWholeBand="true" isPrintWhenDetailOverflows="true"/>
        <connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
        <subreportExpression class="java.lang.String"><![CDATA["C:\\Documents and Settings\\uthays\\My Documents\\NetBeansProjects\\POSYS\\POSYS-war\\web\\testingrpts_subreport1.jasper"]]></subreportExpression>
       </subreport>

    hi i have improved the report but not yet solved it.
    i now got parameters that passes value. i understand the logic but when i try it, it doeant work
    <subreport>
                        <reportElement x="16" y="72" width="525" height="109"/>
                        <subreportParameter name="CURRENT_Order">
                             <subreportParameterExpression><![CDATA[$F{poheader_id}]]></subreportParameterExpression>
                        </subreportParameter>
                        <connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
                        <subreportExpression class="java.lang.String"><![CDATA[$P{SUBREPORT_DIR} + "newsub.jasper"]]></subreportExpression>
                   </subreport>then i am using this in my java
    fillParams.put("pSubReportName", input);
           param.put("CURRENT_Order",new Integer(poheaderDataProvider.getValue("id").toString()));but still i could only list one at a time
    if any1 got any clue let me know please, thank you

  • Export to excel. Subreport blank rows generated.

    Dear Forum
    Hoping you can help with a query.
    I have a report that has 3 subreports all are supressed if blank and not shown during preview or print.
    When i try and export the report to excel the returning result is a series of blank rows in excel.
    I know the subreports are the root cause of the issue as when each of them is supressed my blank row count reduces accordingly.
    Is this a know issue or is there indeed a resolution.
    Thank you forum for your assisatnce as ever
    With Kind Regards
    Paul Marks

    Hi Paul,
    Sorry to be a downer but It has been my experience that the more complex a report is the more problems I have when exporting especially to excel.
    Below is a link to the export limitations of Crystal 10...I haven't found a newer version for XI or 2008.  This document doesn't give an exact explanation for each limitation but sometimes it's enough to know that there is an issue related to exporting your report.  In your case there are limitations related to exporting suppressed items to an excel spreadsheet.
    [Crystal Reports 10 - Export Limitations|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/d0b01060-3a62-2b10-73a1-d03a6c634914]
    I don't know how much data you have but my suggestion is to try exporting your report to a csv file instead because suppression is not as much a problem when exporting to that format.  CSV files can be opened directly by Excel you are just missing any nice formatting.
    If you need a nicely formatted spreadsheet, create a standalone spreadsheet formatted the way you want and either paste in the data from your exported Crystal report or link to the data in the csv file.  I have found this type of conversion takes a little longer to set up but is much easier to maintain. 
    If you do decide to export to csv format i must also suggest that the report be formatted for export (this also helps with data dumps to excel):
    1. Start rows of data at the left most margin and align any subsequent rows with this position.
    2. Make sure the next column (to the right) always starts where the last column ends.  This ensures no blank columns get inserted between your data.  Subsequent rows should have columns aligned in size and count to ensure proper layout.
    3. Make sure all objects in a row have the exact same height and use the "fit to section" command to prevent extra rows from being generated.
    4. Suppress all sections that do not contain any objects needed in your export.
    5. If your data isn't too wide (less than 256 bytes but it can be more if the printer driver used can print at a high dpi setting) consider using a formula to create each row of data i.e. properly padded for space delimited or with the commas where you want them for csv etc).  This also gives you more control on how each data type is formatted.
    Sorry to be so long winded but I hope this helps with your exporting.
    Marshall

  • Spacing issue when importing subreport

    Hi All,
    I'm trying to build a .NET web application that generates the report at the runtime and dilvered via the CrystalReportViewer web control. I have created a 'Main' report to serve as the container and also a number of component reports that to be imported as subreports based on user input.
    A new section is generated for each sub resport and added into the 'Details' section of the main report at runtime.
    It all work fine and well except that there are large amount of empty space exsits on the end of some report pages. I have noticed this happens when the first 'Section' of the next page has a bigger 'Height' than the residue space. It appears that CrystalReportViewer do not want to break up the 'long' section to across 2 pages. Is it possible to modify this behavior and display sections 'continuously' ?
    I'm using the CR4VS2010 release.
    Many thanks.
    Edited by: troytancn on Jan 12, 2011 7:02 AM

    Thanks Ludek.
    All sections in each subreport has 'Keep Together' unchecked and there is no empty space at the bottom of any subreports.
    I've also tried to variate runtime input so the generated report display subreport in different order. It appears that the space gap only related to the space left at the bottom and the height of the next 'subreport' that displayed on the following page.
    Is there a 'Keep Together' attribute, or similar, for imported subreport object? The class type of the subreport is SubreportClientDocument .

  • OIA subreport Issue :

    Hi,
    I have an OIA Custom Report that also includes subreport. I designed them on IReport and it runs fine there.
    However I import them on OIA and I get the error "Report Definition could not be found in Database". I have made a reference to the .jasper file of the child report in the Main report and placed the .jasper file in the Reports folder of the OIA.
    The master report has a reference to the child report as shown below :
    <subreport isUsingCache="true">
                             <reportElement
                                  mode="Opaque"
                                  x="0"
                                  y="140"
                                  width="554"
                                  height="22"
                                  backcolor="#FF9933"
                                  key="subreport-3"/>
                             <subreportParameter name="USERNAME">
                                  <subreportParameterExpression><![CDATA[$F{USERNAME}]]></subreportParameterExpression>
                             </subreportParameter>
                             <connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
                             <subreportExpression class="java.lang.String"><![CDATA[$P{SUBREPORT_DIR} + "subreport1.jasper"]]></subreportExpression>
                        </subreport>
    Could anyone help and let me knwo what else I need to do ? The subreport.jasper is actually the one created while I run it on iReport and both iReport jars and OIA jars are the same, 2.5.0.
    Edited by: 810367 on Jan 24, 2012 2:40 PM

    Closed

  • Adding multiple subreports from the same file to the same report

    I've created a report.  This reports needs to have a number of charts.  Each chart is the same report with different values for parameters. 
    The code works, except all charts reflect the parameter value provided to last call to SetParameterValue. How can I make sure each subreport behaves as a separate instance?
    string chartReportPath = AppSettings.ReportsFolder + "ProgramCountry-Chart.rpt";
                ReportClientDocumentWrapper doc = (ReportClientDocumentWrapper)report.ReportClientDocument;
    string chartName = "Chart" + chartCount++;
    CrystalDecisions.ReportAppServer.ReportDefModel.Section detailSection = doc.ReportDefController.ReportDefinition.DetailArea.Sections[0];
    SubreportClientDocument subReport = doc.SubreportController.ImportSubreportEx(chartName, chartReportPath, detailSection,0,detailSection.Height+10,-1,-1);
                ReportDocument subreportDoc = report.OpenSubreport(chartName);
                    report.SetParameterValue("@MyParam, myValue, chartName);

    Hi Brian,
    The parameter collection is global, so if you set it for one it's going to be set for all. You need to manage the subreport links, which holds the parameters.
    Or when you add the subreport you also need to add a parameter with a new name and set the value accordingly in the Parameter collection.
    Sorry i don't have any sample code for this work flow.
    Don

Maybe you are looking for

  • How to cancel a Timer from inside a TimerTask ?

    I have a web application with this structure: Tomcat starts a servlet and that starts a master thread to run once every 10 minutes, that master thread in turn starts any number of individual tasks to run until completion, the idea being a "shoot and

  • Q: how to connect BH-608 with 2 phone ?

    I don't know how to connect with 2 mobile phone I try to fallow the step in catalog but didn't work with me plz help me ?

  • Asynchronous Coupling with Pools in one Process

    Hi everybody, i try to  call a BPM Pool (POOL_B) by another BPM Pool (POOL_A) within the same process but unfortunately without success. This are my steps: a) for my START Event (Pool_B) i created a new Message Trigger with a Asynchron Service Interf

  • Where are my themes?

    I cannot print from iphoto. I get the message "No themes available: There were no themes located. Until at least one theme has been installed, this feature will be unavailable."

  • Advanced JavaScript Question

    I am using code that was supplied by a client to built an order form. It can be seen at http://www.digidonkey.com/flypmobile/helio-phone-sales-addons.html We have everything workling except for STEP 4 "Add insurance". I have tried various ways to get