Remove Multi columns in Detail Section

I'm converting reports from Crystal 8.5 to Crystal 2008.  My old report has a detail section with multiple columns, and I want to remove this formatting.  The check box in the section format window is grey and can't be changed.  What is the magic combination to get the detail section back to no columns?

I'm struggling with the same problem, only I'm currently working with a report in version 8.5.  The report was originally designed years ago using the Label wizard, but now the client wants to change it to a regular report. 
I decided to "peek under the hood" and this is what I found:
The Crystal Report Object has a property "Kind" which will have a value corresponding to the application constant CRReportKind.  The possible values are these: 1 (crColumnarReport), 2 (crLabelReport), or 3 (crMulColumnReport).  Versions 8.5 and 10 are the same.  I'm thinking that this property is what's preventing us from getting to that grayed-out checkbox.  However, it is a read-only property, meaning, obviously, that you can't change it. 
The report I'm working with is a 2 (crLabelReport).  This is the VB6 code I used to find that:
Dim reportname As String
Dim oApp As CRAXDRT.Application
Dim oKind As CRAXDRT.CRReportKind
Dim oRpt As CRAXDRT.Report
Dim oSection As CRAXDRT.Section
Set oApp = CreateObject("CrystalRuntime.Application")
reportname = "(put the complete path and filename of the report here)"
Set oRpt = oApp.OpenReport(reportname, 1)
Debug.Print oRpt.Kind
Set oRpt = Nothing
Set oApp = Nothing
It doesn't look promising.  You will probably have to redo the report, or, it may be possible to recreate the report in VB only setting the Kind property to 1.  If someone else can verify that this is doable, it may be the best solution.
Edited by: marykDBA on Jun 4, 2010 10:59 PM
Edited by: marykDBA on Jun 4, 2010 11:01 PM

Similar Messages

  • Showing headers based on multi column details section

    Hi,
    I have a report which has a subreport listing a simple list of records from a table.
    The list of records is displayed using the "Format with Multiple Columns" option in Section Expert (2 columns). The printing direction is set to "Down then Across".
    How can I set up the report so that it suppresses the header for the 2nd column is there if no data there?
    Thanks

    Hi Santhosh,
    I used formulas in a similar concept to what Abhilash mentioned above (*you will need to know how many rows fit on one page).
    Create a formula to put in the details section (where your headers are) that keeps a track of the page, column and row number (which resets the variables accordingly)..
    shared numbervar rowCount;
    shared numbervar pageNum;
    shared numbervar columnNum;
    if pageNum <> pagenumber then (
    // now a new page so reset everything..
        rowCount := 0;
        columnNum := 1;
        pageNum := pagenumber;
    if rowCount = 30 then (
    // new column so reset the row counter
        rowCount := 0;
        columnNum := columnNum + 1;
    rowcount := rowcount + 1;
    ..now use the rowCount variable to suppress the details header if its > 1.

  • How to force multiple columns in the Details section

    Hello,
    My report has a lot of data in the Details section, but it could fit on one page if I could put it in three columns. Is there a way to do this?
    The Details section has setting: Force the new page after certain number of visible records. This would be perfect for me if instead of multiple pages I could use multiple columns.
    Thank you,
    Peter

    Thank you.
    I think I see now how to format the columns.
    Peter
    Edited by: Peter Afonin on Sep 10, 2010 2:34 PM

  • BPEL Human Task: how to remove task details section from notification email

    This is concerning the human task component of SOA Suite 11g. Upon task assignment, the assignee receives an email notification with an administrator configured text. Below this text the task details are automatically added. How can this be removed? Marking the notification as 'secure' also removes the administrator configured text. But that I'd like to keep. Only the automatically added task details section needs to go. Any hints?

    This configuration is available in the following navigation. Workflow Administrator Web Applications > Oracle Applications Manager > Workflow Manager > Service Components > Workflow Notification Mailer > Edit > Advanced > Message Generation section > Templates. You can refer to the "Oracle Workflow Administrator's Guide" > "Modifying Your Message Templates" for more information.
    Please note that this applies to ALL the outbound notifications, not specific for Purchasing notifications.

  • Changing details layout for a multi column report

    I have a report that contains linked 2 subreports. The report has a details layout width of 2.5 inches which will create a 3 column report (Format groups with multiple columns is checked) . This works fine for my first subreport as it is small enough to fit that width. However that isn't enough room for my second sub report. Ii need to change the details layout width from 2.5 inches to 3.5 for a 2 column report then back again when that section is finished. Is this possible?

    i believe you can depends on where you place you subreports
    insert a 2nd group under the first, place 2nd report in the new details section
    in the section expert next to the details section check off underlay.
    this will lay them out next to each other but grow independetly

  • Crystal reports show rows of a field in detail section in number of columns while exporting in ms excel

    Hi,
    I have a crystal report and a field called source.
    The source field can contain more than one records.
    When I export it to ms excel then source field is shown in three rows in excel.
    Name
    Source
    Batch No
    ABC
    A0001
    K1
    K2
    K3
    But now I want to export to excel in the following format
    Name
    Source
    Batch No
    ABC
    A0001
    K1
    K2
    K3
    The Name and Batch No field are in Group Header and Source in detail section.
    Also the Source field can vary in number i.e. there can be any number of Source.
    And I only want this type of output when exporting to MS Excel.
    Is there any way to do this?
    Please reply.
    Thanks.

    Try this:
    1) Create a formula with this code and place it on the Details Section:
    whileprintingrecords;
    numbervar x := x + 1;
    stringvar col1;
    stringvar col2;
    stringvar col3;
    if x = 1 then col1 = {Source}
    else if x = 2 then col2 = {Source}
    else if x = 3 then col3 = {Source};
    2) Create another formula and place this on the Group Header:
    whileprintingrecords;
    numbervar x := 0;
    stringvar col1 := "";
    stringvar col2 := "";
    stringvar col3 := "";
    3) Create three separate formulae - one each for the three Source columns and place these on the Group Footer:
    E.g. for first Source column:
    whileprintingrecords;
    stringvar col1;
    E.g. for second Source column:
    whileprintingrecords;
    stringvar col2;
    Drag and drop these formulae beside each other on the GF.
    4) Move the 'Name' and 'Batch No.' fields from the Group Header to the Group Footer
    5) Suppress Group Header and the Details Section.
    -Abhilash

  • Display column headers to display on detail section only

    Post Author: Docmidnite
    CA Forum: General Feedback
    I am using Crystal 9.0.
    I am creating reports with 3-5 group drill downs.
    The user only wants the column headers to be seen when they display the detail section.
    any ideas?

    Post Author: krishna.moorthi
    CA Forum: General Feedback
    write suppress condition for headers Like
    DrillDownGroupLevel<>drilldowngroupnumber(Ex : 3 or 4 or 5)

  • Master Detail Form - Update Statement for Column in the Detail Section

    Hello,
    I've posted a demo application to apex.oracle.com
    Application# 49298
    Application Name: Street_Inventory
    Basically, on page 3 I have a Master Detail Form. In the Detail section, I want the value of On_hand to save to table ITEMS. Here's my code below.
    SOURCE
    select
    "CONSUME_DETAIL"."CONSUME_DETAIL_ID",
    "CONSUME_DETAIL"."CONSUME_HEADER_ID",
    "CONSUME_DETAIL"."ITEM_ID",
    "CONSUME_DETAIL"."CONSUMED_QUANTITY",
    ("ITEMS"."ON_HAND" - "CONSUME_DETAIL"."CONSUMED_QUANTITY") as "ON_HAND"
    from "CONSUME_DETAIL",
    "ITEMS"
    where "CONSUME_HEADER_ID" = :P3_CONSUME_HEADER_ID
    and "CONSUME_DETAIL"."ITEM_ID"="ITEMS"."ITEM_ID"
    UPDATE INVENTORY PROCESS
    UPDATE ITEMS
    SET ON_HAND = :P3_ON_HAND - :P3_CONSUMED_QUANTITY
    WHERE ITEM_ID = (select     ITEM_ID
    from     CONSUME_DETAIL
    where CONSUME_DETAIL_ID = :P3_CONSUME_DETAIL_ID);
    My code isn't working. What am I doing wrong?

    WReed,
    The first thing I see "off the bat" is that you don't have items named P3_ON_HAND and P3_CONSUMED_QUANTITY which are referenced in your code. Although it's possible to do what you want with just SQL, I updated your code with a little PL/SQL to make it easier to understand...
    As you'll see the problem now is that the design/db model is not quite right as your getting a too many rows error.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Blank space between Detail section and Page Footer - How to remove it ?

    below is the problem.
    We make  report as followspage header Section details
    Employee Information    
    Report Footer
    Page Footer                   
    Other Information
    whenever we run this crystal report it leaves space in between  after employee information (Detail Section) and before Page Footer.We don't know its a problem  of footer or any other else.
    When i preview and print out the reports
    it showing Detail section 10 Rows (which satisfying condition) and then Blank space and then at the bottom of page shows Page Footer (which contain 2 subreports).
    Let me know if you need aditional information on this.
    pls provide suggestions.

    Try with this
    1. Suppress any unused sections in both sureports and in the mainreport.
    2. Check all the fields fits the sections. Select all the fields in the section and give align top and make all the fields of same height and make it fit to the section.
    Hope this solves your problem.

  • Blank space in the report detail section

    Hi ,
    I have data for ten columns and after that i am getting a blank space, so my report is scrolling to right side without any data.How shall i remove the blank space.Any suggestions.For one more i am getting this only at the second page (Detail section)
    Regards,
    Rajasekar

    Thanks James for the reply,but i am not getting it correctly.
    I have a year column which is the last column in my detail section.If i don't get any value for that year column then i am not getting these blank space at the right side of my report.If i have value for the year column then i am getting blank space double the times to my report detail section.
    Any suggestions
    Regards,
    Rajasekar

  • Multi-Column Report Issue

    I am using the Crystal Reports edition bundled with Visual Studio 2005. I have a problem with a multi-column report. It is a two column member directory with family members. It lists the member name, contact info, spouse, and children. I want each family group to stay together, and not break cross a column or a page. Each group may have from 3 to a dozen or so lines.
    The family groups will not break across a page (which is good), but they will break across a column (bad). I have tried many combinations of settings to make this work without success.
    So I wonder if anyone has seen and resolved this problem, or if perhaps it works better in the full version of Crystal.

    In some sub-sections, I have checked 'Suppress Blank Section' checked. In others, I have a suppression formula.
    Each section has only a single field.
    The record set that the report uses has a single row for each person. The sorting and grouping is arranged so that the first record in each family group is the 'main' member. The report displays this person's name, and also shows the sections which include address and phone number info. Subsequent records are for family members (spouse and/or children). For these records, I display the name, but suppress the address and phone sections.
    There is also a detail sub-section used as a group header. This group breaks when the first letter of the last name changes, so it an display a single letter heading ("A"). I had tried this as a regular group header too, but it didn't help.
    I have tried combining all the sections into a single one with each field on a separate line (which means the section can have some blank space), and also combined into a text box. No luck.
    I also have the group itself set to "Keep Together' in the group expert. Doesn't help/

  • Details section extends to a whole page when multipage field is printed

    Crystal Reports designer in VS 2005 Prof.  C#
    I have a field which sometimes is large, so it is printed on several pages.
    When a field is small, ie. starts and finishes on the same page, then all is OK. I mean, that Details vertical lines and field borders are closed as soon as the last field is fully printed. Report Footer is propely printed after the last Details row.
    But when a field occupies several pages then, on the last page, the Details section is not closed after the last row but extends to a whole page.
    So, as a result of this behavior, the Report Footer is printed over the Detail's vertical lines. This is my problem.
    I tried the following:
    1. Change setting Keep Object Together - does not help.
    2. Inserting an extra Group Section - Group Footer was printed over on Details body - overlapped.
    To show this problem here are 2 pictures. Please pay attention to the column "Odcinki".
    [The view with a small field|http://www.zgadzaj.pl/temp/KIM_Dobry.jpg]
    [The view with Details expanded to a whole page|http://www.zgadzaj.pl/temp/KIM_Usterka.jpg]
    Marek

    Hi Trevor and Ludek,
    At last success -  I found the workaround!
    Before my give up, during the downloading time of the PerpetuumSoftware report generator, I tested the last idea which comes from [Joe's help posted in this thread|http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/77b28835-12aa-4592-bcc8-c2b8dbf49317].
    I removed all vertical lines from the Detail section and the box surrounding the Detail's section row.
    I inserted a new group section which works exactly as the Detail section, so it changes along with Detail section.
    I put the vertical lines starting from the GroupHeader section and expanded it across the Detail section to the middle height somewhere inside the GroupFooter. And now I set the line's bottom = 0. It means that it ends exactly at the top of GroupFooter section.
    Next, I set the height's of GroupHeader and GroupFooter sections = 0.
    The import things are:
    - vertical lines (box'es) cannot start in the PageHeader, they must start at top of GroupHeader
    - vertical lines (box'es) cannot end in the Detail section, they must end at top of GroupFooter
    And now, it works as I expected. Here is the [PDF example|http://www.zgadzaj.pl/temp/KIM_OK.pdf].
    Thanks to your advices and support I was able to investigate this problem,
    so thank you again for the help.
    Regards,
    Marek

  • Unrelated data in master detail sections of a custom BIP  report deployed in R12 EBS

    We have a custom Master Detail BIP report generated by calling XDO APIs from a custom Java concurrent program (common_report_attachment) . This Java concurrent program is called from another custom concurrent program (po_validation) that processes a batch of POs in a single concurrent request.
    PO_Validation Program (processes a batch of POs per request) -> Java Concurrent Program -> BI Publisher Report APIs
    BIP report generates data for master detail sections based on two sql queries (given below) that have 'where' clause based on a common external parameter "P_TRX_HDR_ID".
    NOTE: No explicit data link is used NOR an output column of parent query is used in the where clause of detail query as bind parameter.
    - <dataTemplate name="NAPPB2BPORPT" description="Data Template for B2B PO Report" version="1.0">
    - <properties>
      <property name="xml_tag_case" value="upper" />
      <property name="db_fetch_size" value="200" />
      <property name="scalable_mode" value="on" />
      </properties>
    - <parameters>
      <parameter name="P_TRX_HDR_ID" dataType="number" />
      </parameters>
    - <dataQuery>
    - <sqlStatement name="Q_PO_HDR">
    - <![CDATA[
    SELECT poh.po_number                                     PO_NUMBER
              , poh.quote_number                             QUOTE_NUMBER
              ---- other columns -----
             FROM nappcust.napp_o2i_po_headers poh
                ,napp_aso_quote_headers_v naqv
               WHERE 1=1
               AND naqv.quote_number=poh.quote_number
               AND poh.header_id = :P_TRX_HDR_ID
      ]]>
      </sqlStatement>
    - <sqlStatement name="Q_LINES">
    - <![CDATA[
    SELECT  pol.item                                            ITEM
          , pol.partner_part_number                             PARTNER_PART_NUMBER
          -- other columns --
       FROM napp_o2i_po_lines pol
       , napp_o2i_po_headers poh
       , aso_quote_lines_all aqla
       , mtl_system_items_b msib
    WHERE 1=1
      AND poh.header_id               = pol.header_id
      AND pol.header_id               = :P_TRX_HDR_ID
      AND aqla.quote_header_id        = poh.QUOTE_HEADER_ID
      AND msib.inventory_item_id      = aqla.inventory_item_id
      AND msib.organization_id        = aqla.organization_id
      AND (pol.quote_line_number       = aqla.quote_line_id
           OR pol.quote_line_number    = aqla.quote_line_id||1)
      ]]>
      -- Added for the defect 13954
      </sqlStatement>
      </dataQuery>
    - <dataStructure>
    - <group name="G_PO_HDR" source="Q_PO_HDR">
      <element name="PO_NUMBER" value="PO_NUMBER" />
      <element name="QUOTE_NUMBER" value="QUOTE_NUMBER" />
      --- mappings for other columns of "Q_PO_HDR"
      - <group name="G_LINES" source="Q_LINES">
      <element name="ITEM" value="ITEM" />
      <element name="PARTNER_PART_NUMBER" value="PARTNER_PART_NUMBER" />
        --- mappings for other columns of "Q_LINES"
      </group>
      </group>
      </dataStructure>
      </dataTemplate>
    Issue: Sometimes when the parent concurrent request runs for a batch with multiple POs the report generated for the last PO has inconsistent data in the master and detail sections. To elaborate, the detail section is having correct data pertaining to the PO identified by the parameter "P_TRX_HDR_ID". However, the master section is having data pertaining to the previous PO processed from the same batch.
    This issue is not occurring consistently and is not reproducible at will. I
    'm suspecting this could be because of not having data link between the queries but confirm from someone who has experienced this issue.
    Regards,
    Srinath

    is there any way from the page, can we pass the some values, which can identify the page level data?
    if so pass the parameter to BIP report query.

  • I can't remove my credit card details from Apple ID

    Hey guys
    I can't seem to remove my previous card details from my Apple ID, it keeps requesting me to enter the security code for that previous credit card.
    My card was stolen from me so I have no idea whats the CVS code anymore. But you are not giving me an option to change a new credit card in that section. This is causing my iPhone's App store to keep disabling the Apple ID. This is my 4 password change today trying to fix this problem.

    It happens on Mac App Store & iPhone App store as well.
    So clearly the problem is on my Apple ID..
    I've changed my credit card details on my Apple ID but it doesn't reflect onto my phone when I login after restarting the phone. Even if i sign out.
    When it reaches the part where I would need to verify my phone after entering my password. It just keeps requesting for my password and never shows me anything.
    If I click update apps it'll just disable my account. Even on my Mac App store same thing happening.

  • Export to Excel - Multiple Tables in a single details section

    Hi All,
    I have a set of reports where I am using a single details section to show multiple tables stacked over one another. That is, i have a table with three columns and two rows, followed by some white space and then another table with 4 columns and 1 row, followed by white space and then other tables.
    When I export it to excel, I am getting the data but the ordering is in a reverse pivoted fashion:
    Excel output:
    CR_column1_Heading    CR_Column2_Heading    CR_Column1_Data CR_Column2_Data
    Is there a way to control the sequence of fields displayed in excel while exporting?
    Thanks.
    - Atif.

    @Carl,
    It is printing like this.
    HEADER1   HEADER2    HEADER3     DATA 1     DATA 2     DATA 3
    I am getting all the columns and fields in excel, that is not a problem. However, the problem is whether i can control the order the fields are printed onto Excel.
    Like what Ben is commenting:
    HEADER1   DATA 1     HEADER2    DATA 2     HEADER3     DATA 3
    However, I dont want to reorder the fields on the canvas as the format layout is predefined.
    I tried searching through the Cystal SDK if there is a finer level of control but to no avail.
    A work around under the above constraints would be simply amazing!
    Thanks again and appreciate your response.
    Regards,
    Atif.

Maybe you are looking for

  • How to Open an Indesign file with a missing plugin

    Is there a way to open a file that has a missing plugin? This is the case: We used an outside designer who is on CS5 indesign and teacup barcode software plugin cs5 We received his files saved back to CS4, but it is still telling us there is a missin

  • Text not searching in pdf

    i m not able to search text in pdf, font are using times new roman(embedded subset), when  i m going (ctrl+f) and write some string on it then result come no found, one thing when i m copy the text from that pdf and paste is on find option then comin

  • Using an HDTV

    I have a Panasonic Viera TC-32LX85 42" HDTV that I have been wanting to use with my Mac Pro. I am connecting the desktop to my display with a DVI to HDMI cable from Belkin. The native resolution is 1366 x 768 and in Leopard this resolution was not av

  • "value cannot have more than 0 decimal places" error

    CRM gurus, Whenever I try to create a Counter, I receive the following warning which doesn't allow me to do anything further.. "<b>value cannot have more than 0 decimal places"</b> I first received this when I tried to assign a counter to a product i

  • Emailing Video files

    I need to send a video by email but at the moment it is on a DVD. It has file endings BUP, IFO, and VOB. I attempted to import them into FCP7 but it would only accept the VOB file. Any ideas?