Can I have different "details" formatting based on a value in the Group?

Post Author: pcdelozi2
CA Forum: General
Greetings!  I'm using Crystal Reports 11.0 and have the need to generate 3 different "formats" in the DETAILS section, based on what I am grouping on.  Can this be done?  For example, If what I am grouping on has 3 different values (AREA, LINE, POINT), then for each of those, I would like to branch to a different formating section.  Any advice would be appreciated!
Thanks!

Post Author: V361
CA Forum: General
I have CR XI:   go to section expert, look for the x/2 button to the right of Suppress (No-Drill Down)  click on the button, create a formula for example 
{Customer.Contact First Name} = "Alejandra"
In this case, this section will suppress every time the {Customer.Contact First Name} = "Alejandra"

Similar Messages

  • Can you have different face time accounts when two iPads use the same iTunes account?

    I use one iTunes account for all apple products but want to use face time. Can I set it up so when we are not together we can face time each other.

    Yes. In settings, FaceTime, just add an email. Email acts as a phone number. When you place a call to the other ipad, just make sure it's to that email.

  • Can you have two detail lists from the basic list at the same time?

    Hi
    Can you have two detail lists from the basic list at the same time?
    If yes how and if no why?
    Thanks
    Venkat

    No   ... it is not   possible   of   2 detail  list at   one time   from the basic  list ...
    you can  increament   the SY-LSIND  .... But you can not   display  both the windows   at single time  ...
    it is  possible  to  display  2 Detail list  in ALV   ......  from one  basic  list   using  the  Blocked  list  concept    .
    Sample Program on BLOCK LISTS
    Report   zblock_list
    * Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:slis.
    DATA:x_layout TYPE slis_layout_alv,
    t_field TYPE slis_t_fieldcat_alv,
    *--field catalog
    x_fldcat LIKE LINE OF t_field,
    *--to hold all the events
    t_events TYPE slis_t_event,
    x_events TYPE slis_alv_event,
    t_sort TYPE slis_t_sortinfo_alv,
    x_sort LIKE LINE OF t_sort ,
    *--Print Layout
    x_print_layout TYPE slis_print_alv.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE add_catalog.
    clear x_fldcat.
    x_fldcat-fieldname = &1.
    x_fldcat-seltext_m = &2.
    x_fldcat-outputlen = &3.
    x_fldcat-tech = &4.
    x_fldcat-col_pos = &5.
    x_fldcat-no_zero = 'X'.
    x_fldcat-ddictxt = 'M'.
    x_fldcat-datatype = &6.
    x_fldcat-ddic_outputlen = &7.
    if &6 = 'N'.
    x_fldcat-lzero = 'X'.
    endif.
    *--build field catalog
    append x_fldcat to t_field.
    END-OF-DEFINITION.
    *----- data declerations.
    data: v_repid like sy-repid.
    data: begin of itab occurs 0,
    matnr like mara-matnr,
    ernam like mara-ernam,
    meins like mara-meins,
    end of itab.
    data: begin of jtab occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of jtab.
    select matnr ernam meins
    up to 20 rows
    from mara
    into table itab.
    select matnr maktx
    up to 20 rows
    from makt
    into table jtab.
    v_repid = sy-repid.
    *DISPLAY alv
    * Initialize Block
    call function 'REUSE_ALV_BLOCK_LIST_INIT'
    exporting
    i_callback_program = v_repid.
    *Block 1:
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST1'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'ITAB'
    it_events = t_events
    it_sort = t_sort
    tables
    t_outtab = itab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST2'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    * Append table block.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'JTAB'
    it_events = t_events
    tables
    t_outtab = jtab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    call function 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * exporting
    * is_print = x_print_layout
    exceptions
    program_error = 1
    others = 2.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    form top_of_list1.
    skip 1.
    write: 10 'List 1',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    form top_of_list2.
    skip 1.
    write: 10 'List 2',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    reward  points if it is  usefull ....
    Girish

  • Can you have different accounts (meaning different passwords, different countries/store) with the same apple ID (only one e-mail address)?

    can you have different accounts (meaning different passwords, different countries/store) with the same apple ID (only one e-mail address)?

    thank you for your reply, it is not very fair from apple, since for not using your credit card, you need to create a new account and if you do not have multiple e-mail  working , you are stuck! thanks anyway

  • Can you have different passwords for mail account and ICloud?

    Can you have different passwords for mail account and ICloud?

    Yes - you want to go under Notifications, Mail.   Set each acct the way you want.

  • Can we have different output types for same document?

    Hi,
    Can we have different output types for same doucument.if yes plz describe the steps to perform it
    Thanks

    Hi,
    Generally you can use same out put type for the different document types of PO. You can create different out put types for the same PO, in case you need different layouts that is different forms like MEDRUCK. Please refer below link to create out types . If you want that PO as fax or e-mail can use same out put type .Thanking you.
    http://www.sap-img.com/materials/purchasing-tips.htm

  • If i have more than one e-mail account, can i have different sound alerts per account?

    If I have more than one e-mail account, can I have different sound alets per account?

    No, sorry.

  • HT204053 I have an iphone, ipod and ipad - can i have different icloud accounts?

    My daughter has an iphone, my other one has an ipod and I have an ipad.  How can we have different icloud accounts?

    Welcome to the Apple community.
    Yes you can all have different iCloud accounts, indeed it is something that I would recommend.
    To create a new Apple ID (account) navigate to settings >iCloud and tap the "create Apple ID" button.
    Note: if you are already logged into another iCloud account, you will need to scroll down and delete that account, before you can create a new one.

  • Can you have different I cloud accounts on different devices. Like 4 phones with different numbers while keeping them all on the same I tunes account?

    Can you have different I cloud accounts on different devices. Like 4 phones with different numbers while keeping them all on the same I tunes account? My family shares one I tunes account but it would be nice to be able to have a different I cloud for family member. Is there a way to do this. Because the I cloud part on the setting on the phone and I pad are greyed out on the phones so you can't change the user.

    If they are greyed out then usually this means that the account is not validated on that device.  The Delete Account button at the bottom should still work and allow you to remove the current account form the iCloud Section of Settings.
    To answer your question, yes.  There are four places you can use an Apple ID on an iOS device:
    Settings > iCloud
    Settings > Messages
    Settings > FaceTime
    Settings > iTunes & App Stores
    The iTunes & App Stores is the only one you want to use a shared (family) Apple ID account.  The other three you will want a unique Apple ID for that person to prevent info merging or messages getting shared, etc.
    Using Different Apple IDs for iCloud and iTunes

  • Do we have one corresponding tax company code to one company code or can we have different or any number of tax company codes?

    do we have one corresponding tax company code to one company code or can we have different or any number of tax company codes?

    Hi Arveen,
    Check calculation procedure using T.code OBYZ(IMG > Financial Accounting> Financial Accounting Global Settings--> Tax on Sales/Purchases --> Basic Settings -
    > Assign Country to Calculation Procedure.)
    Select new entries--Enter tax procedure for India TAXINN-TAx procedure INdia
    Save.
    Use T.code OBBG....select position...enter IN....against that assign the tax procedure created above and save.
    Hope this resolves.Let me know if you still encounter problem.
    Thanks
    Aravind

  • Want to just have phone numbers on phone can you have different groups with and email group as well

    Want to just have phone numbers on phone can you have different groups with and email group as well

    The iPhone remembers information about previous contacts.
    Complelely independently, you have a Contacts app with a contacts list.  It sounds like your contacts list has 3 names on it.  You need to add a few names.

  • I have 3 i phones.  Can I have multiple accounts on one computer where it keeps the contacta and calendar for each?

    I have 3 i phones.  Can I have multiple accounts on one computer where it keeps the contacta and calendar for each?

    My daughter and I both have iphones. I created an account (not separate itunes) for her on my computer so she could sync her phone/itunes but not have it interfere with mine since we have WAY different taste in music. Creating a different computer profile should work if you have separate itunes accounts, too.
    If you all use the same itunes account, you can turn on Home Sharing. That way you can all download the same content without having to pay for it again. Not sure how or if that works with separate itunes accounts.
    Hope that helps!

  • How can u have lock rotation off and mute feature off at the same time

    How can u have lock rotation off and mute feature off at the same time

    Maybe this will help. The link at the bottom is the same one that was posted above.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • How can I set up an SMS group so that all group members can dial a group number and have a text sent out to all members of the group

    How can I set up an SMS group so that all group members can dial a group number and have a text sent out to all members of the group
    This would be an SMS group similar to an email listserv but running on the SMS network
    I have seen private individuals offering this service
    It seems strange to me that no internet site like Apple, Yahoo or Google offers this as a free service much as the email group services are free services.
    Steve

    I think the app GroupMe might do what you want. You might also try contacting your carrier. My carrier offered some fancy group texting service for a while but they never really advertised it so, unless you asked, you never would have known. But, GroupMe is available in the app store. There are lots of other apps that also do group texting but it seems to be the one that gets recommended the most.

  • Can I have an ATT account and a O2 account on the same Iphone?

    Can I have an ATT account and a O2 account on the same Iphone? So that when I am in the UK I use the O2 sim card and in the states use my ATT sim card? I would basically have two valid authorized accounts on one Iphone.
    Allan

    I don't believe that the phone would recognize the other sim card as legit. The US iPhone is locked to ATT and the UK iPhone is locked to O2.

Maybe you are looking for

  • JRockIt Deleting JAR files - Error loading class

    Hi there, Customer is facing a very weird issue. Their application has an application that contains some EJBs and Web applications that, apparently for no reason, it starts to unload classes and delete JAR files and WAR files from the Weblogic's "ext

  • Hyperion Analyzer 7.5.5

    We are upgrading the Hyperion analyzer version to 7.5.5. We are planning to use JRE 1.4.2_12 with this release. Problem we are facing is that if the user has got higher version of JRE than this, it doesn't use the 1.4.2_12 JRE version but the higher

  • XSL-FO Stylesheets (Oracle XSLT processor via command line)

    How does one go about editing BIP XSL-FO stylesheets converted from the MSWord plug in by using external tools? The converted files have many, many calls to Oracle functions that are unrecognized by the editing tools. We are using Stylus Studio and a

  • Controlling multiple relays on PXI 2569 simultaneously using LabVIEW

    Hi, Can anyone please tell me how do I control multiple relays in the PXI 2569 general-purpose raley module? I can't find the example for it. At the moment, the example I have is for controlling individual relay which is only for open/close one relay

  • Server I5SAP did not accept login request as admin on port 50718

    Hi, We have BI 7.0 running on ISeries on a dual stack. When we are trying to apply Support Stack through JSPM we are getting an error. The JSPM is able to connect to server and when the password is supplied it does not take it. I have tested the pass