Selecting group of parameters with one parameter

Post Author: ME55ENGER
CA Forum: Formula
Hi, I'm a little new to Crystal (first report), so please bear with me.  I am trying to create a parameter for users to choose from different status types.  These status types are OPEN, CLOSED, COMPLETED, MONITORING, ESCALATED, and FLAGGED FOR QA.  The issue I am having is that I want the user to be able to select from all of these, as well as an OPEN - ALL and a CLOSED - ALL.  OPEN - ALL would include OPEN, MONITORING, ESCALATED, and FLAGGED FOR QA.  CLOSED - ALL would include CLOSED and COMPLETED.  I cannot figure out a formula to use in the select expert that will allow me to do this.  I have an option for ALL, which I used an IF-Then statement to implement (IF {?my param} = 'ALL' then {table.column} like '*' else {table.column} = {?my param}).  I cannot figure out how to accomplish selecting a certain group of these options with an IF-THEN.  Please Help!!!  Thanks.

Post Author: V361
CA Forum: Formula
I stole this from the sample reports in CR XI, hope it will give you some ideas.
if {?Country} = '...All' then  {Orders.Employee ID}={?Employee}else if {?Region} = '...All' then  {Orders.Employee ID}={?Employee} and  {Customer.Country} = {?Country}else if {?City} = '...All' then  {Orders.Employee ID}={?Employee} and  {Customer.Country} = {?Country} and  {Customer.Region} = {?Region}else  {Orders.Employee ID}={?Employee} and  {Customer.Country} = {?Country} and  {Customer.Region} = {?Region} and  {Customer.City} = {?City}

Similar Messages

  • [svn] 4804: Bugs: LCDS-548: add code to deal with contentType="application/ xml" with one parameter (avoid

    Revision: 4804
    Author: [email protected]
    Date: 2009-02-02 17:56:22 -0800 (Mon, 02 Feb 2009)
    Log Message:
    Bugs: LCDS-548: add code to deal with contentType="application/xml" with one parameter (avoid
    name/value encoding in that case)
    LCDS-405: baseURL on HTTPMultiService should accept URLs which start with "/"
    Added convertParametersHandler and convertResultsHandler function hooks to RemoteObject
    to support framework code which wants to modify the service behavior.
    Moved "properties" from rpc/http/AbstractOperation to rpc/AbstractOperation so we can use
    it for customizing the handling of remote object results
    Couple of minor ASDoc fixes and one tab -> spaces change
    Doc: minor asdoc edits
    QE: LCDS QE will verify the bugs in this one
    Reviewers: Mete, Pete, Seth, Ed reviewed different parts of this checkin
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-548
    http://bugs.adobe.com/jira/browse/LCDS-405
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractInvoker.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/AbstractOperation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/AbstractOperation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/HTTPMultiService.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/http/Operation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/remoting/RemoteObject.as

    Hello,
    How about this as an alternative:
    Use a functional global which has 3 cases:
    1. open config file - it opens the config file and reads the contents into a string (which is the functional global data), and you only do this one time at the beginning of the program.
    2. edit config data - it edits the string, which are really the contents of the file, but doesn't worry about writing to the file.  you could even get fancy here, and allow an array of tags and an array of values as input, and it would go update/edit all the tags to have the corresponding values.
    3.  close config file - it writes the current string data (the functional global data) to the file and closes it.
    Using the functions in the string palette, I think you'll find most of the code for that module/functional global will be easy to write.
    I hope this helps!
    Best Regards,
    JLS
    Best,
    JLS
    Sixclear

  • Regarding showing of some text with one parameter.

    Hi
    I want to know that is there any funtion module by the help of which I can display some text information about one parameter. This will be displayed as the icon just after the selection field. On clicking on it the text information will be displayed.

    Here is an example of handling it manually in your program.  You still need to create the data element and the documentation of the data elment, in this example, it is ZTEST. 
    report zrich_0001.
    type-pools: icon.
    selection-screen begin of line.
    parameters: p_test type ztest.
    selection-screen pushbutton (4) help user-command help.
    selection-screen end of line.
    at selection-screen output.
      write icon_information to help.
    at selection-screen.
      case sy-ucomm.
        when 'HELP'.
          data: links type table of  tline.
          call function 'HELP_OBJECT_SHOW'
               exporting
                    dokclass = 'DE'
                    dokname  = 'ZTEST'
               tables
                    links    = links.
      endcase.
    Regards,
    Rich Heilman

  • Output parameters with one name

    With regard to Dialog Programming, I need to replicate an existing transaction.  The transaction has multiple ouput parameters that have one common name.  I'm having trouble manipulating these output parameters. 
    Do i assign these specific output parameters to one internal table with same name? Can you guys provide a sample code with regard to manipulation of these types of output parameters? 
    <b><REMOVED BY MODERATOR></b> Thanks in advance.
    Best Regards.
    Brando
    Message was edited by:
            Alvaro Tejada Galindo

    Hi Brando Braganza,
    a transaction does not have output parameters - by definition.
    The best you can do is write down what you are doing. And please give the names and types of all objects involved.
    Then qualified help will come!
    Regards,
    Clemens

  • Create a Behavior for Calendar in a WPF UserControl to Select and Unselect dates with one click

    Hi to everyone,
    I am developing an application with a WPF Client. This Client use the MVVM pattern.
    In an UserControl the application must show some Calendars, so the user can select one or multiple dates.
    For that use, I should implement some behavior that allows the user click once in a date and that date is selected (what already exists in .NET Framework) and with another click in the same date, that date is now unselected.
    I've already made some searches and can't find anything useful.
    This kind of behavior it is possible to implement in the Calendar Control? How exactly I do this?
    Thanks for reading/helping
    Rafael Duarte

    You should be able to accomplish this by modifying the default template of the CalendarDayButtonStyle of the Calendar and handling the PreviewMouseLeftButtonDown of the Grid in the default template. Here is an example:
    <Window.Resources>
    <Style x:Key="CalendarDayButtonStyle1" TargetType="{x:Type CalendarDayButton}">
    <Setter Property="MinWidth" Value="5"/>
    <Setter Property="MinHeight" Value="5"/>
    <Setter Property="FontSize" Value="10"/>
    <Setter Property="HorizontalContentAlignment" Value="Center"/>
    <Setter Property="VerticalContentAlignment" Value="Center"/>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type CalendarDayButton}">
    <Grid Background="Transparent" PreviewMouseLeftButtonDown="Grid_PreviewMouseLeftButtonDown">
    <VisualStateManager.VisualStateGroups>
    <VisualStateGroup x:Name="CommonStates">
    <VisualStateGroup.Transitions>
    <VisualTransition GeneratedDuration="0:0:0.1"/>
    </VisualStateGroup.Transitions>
    <VisualState x:Name="Normal"/>
    <VisualState x:Name="MouseOver">
    <Storyboard>
    <DoubleAnimation Duration="0" To="0.5" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="HighlightBackground"/>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Pressed">
    <Storyboard>
    <DoubleAnimation Duration="0" To="0.5" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="HighlightBackground"/>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Disabled">
    <Storyboard>
    <DoubleAnimation Duration="0" To="0" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="HighlightBackground"/>
    <DoubleAnimation Duration="0" To=".35" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="NormalText"/>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="SelectionStates">
    <VisualStateGroup.Transitions>
    <VisualTransition GeneratedDuration="0"/>
    </VisualStateGroup.Transitions>
    <VisualState x:Name="Unselected"/>
    <VisualState x:Name="Selected">
    <Storyboard>
    <DoubleAnimation Duration="0" To=".75" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="SelectedBackground"/>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="CalendarButtonFocusStates">
    <VisualStateGroup.Transitions>
    <VisualTransition GeneratedDuration="0"/>
    </VisualStateGroup.Transitions>
    <!--<VisualState x:Name="CalendarButtonFocused">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Visibility" Storyboard.TargetName="DayButtonFocusVisual">
    <DiscreteObjectKeyFrame KeyTime="0">
    <DiscreteObjectKeyFrame.Value>
    <Visibility>Visible</Visibility>
    </DiscreteObjectKeyFrame.Value>
    </DiscreteObjectKeyFrame>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>-->
    <!-- <VisualState x:Name="CalendarButtonUnfocused">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Visibility" Storyboard.TargetName="DayButtonFocusVisual">
    <DiscreteObjectKeyFrame KeyTime="0">
    <DiscreteObjectKeyFrame.Value>
    <Visibility>Collapsed</Visibility>
    </DiscreteObjectKeyFrame.Value>
    </DiscreteObjectKeyFrame>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>-->
    </VisualStateGroup>
    <VisualStateGroup x:Name="ActiveStates">
    <VisualStateGroup.Transitions>
    <VisualTransition GeneratedDuration="0"/>
    </VisualStateGroup.Transitions>
    <VisualState x:Name="Active"/>
    <VisualState x:Name="Inactive">
    <Storyboard>
    <ColorAnimation Duration="0" To="#FF777777" Storyboard.TargetProperty="(TextElement.Foreground).(SolidColorBrush.Color)" Storyboard.TargetName="NormalText"/>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="DayStates">
    <VisualStateGroup.Transitions>
    <VisualTransition GeneratedDuration="0"/>
    </VisualStateGroup.Transitions>
    <VisualState x:Name="RegularDay"/>
    <VisualState x:Name="Today">
    <Storyboard>
    <DoubleAnimation Duration="0" To="1" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="TodayBackground"/>
    <ColorAnimation Duration="0" To="#FFFFFFFF" Storyboard.TargetProperty="(TextElement.Foreground).(SolidColorBrush.Color)" Storyboard.TargetName="NormalText"/>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="BlackoutDayStates">
    <VisualStateGroup.Transitions>
    <VisualTransition GeneratedDuration="0"/>
    </VisualStateGroup.Transitions>
    <VisualState x:Name="NormalDay"/>
    <VisualState x:Name="BlackoutDay">
    <Storyboard>
    <DoubleAnimation Duration="0" To=".2" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="Blackout"/>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    <Rectangle x:Name="TodayBackground" Fill="#FFAAAAAA" Opacity="0" RadiusY="1" RadiusX="1"/>
    <Rectangle x:Name="SelectedBackground" Fill="#FFBADDE9" Opacity="0" RadiusY="1" RadiusX="1"/>
    <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}"/>
    <Rectangle x:Name="HighlightBackground" Fill="#FFBADDE9" Opacity="0" RadiusY="1" RadiusX="1"/>
    <ContentPresenter x:Name="NormalText" TextElement.Foreground="#FF333333" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="5,1,5,1" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
    <Path x:Name="Blackout" Data="M8.1772461,11.029181 L10.433105,11.029181 L11.700684,12.801641 L12.973633,11.029181 L15.191895,11.029181 L12.844727,13.999395 L15.21875,17.060919 L12.962891,17.060919 L11.673828,15.256231 L10.352539,17.060919 L8.1396484,17.060919 L10.519043,14.042364 z" Fill="#FF000000" HorizontalAlignment="Stretch" Margin="3" Opacity="0" RenderTransformOrigin="0.5,0.5" Stretch="Fill" VerticalAlignment="Stretch"/>
    <Rectangle x:Name="DayButtonFocusVisual" IsHitTestVisible="false" RadiusY="1" RadiusX="1" Stroke="#FF45D6FA" Visibility="Collapsed"/>
    </Grid>
    <ControlTemplate.Triggers>
    <MultiTrigger>
    <MultiTrigger.Conditions>
    <Condition Property="IsSelected" Value="True"/>
    <Condition Property="IsFocused" Value="True"/>
    </MultiTrigger.Conditions>
    <Setter Property="Visibility" TargetName="DayButtonFocusVisual" Value="Visible"/>
    </MultiTrigger>
    </ControlTemplate.Triggers>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    </Window.Resources>
    <Calendar x:Name="cal" CalendarDayButtonStyle="{DynamicResource CalendarDayButtonStyle1}" />
    private void Grid_PreviewMouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e) {
    Grid grid = sender as Grid;
    CalendarDayButton button = FindParent<CalendarDayButton>(grid);
    if (button.IsSelected) {
    Calendar cal = FindParent<Calendar>(button);
    if (cal.SelectedDate.HasValue) {
    cal.SelectedDates.Remove(cal.SelectedDate.Value);
    e.Handled = true;
    Hope that helps.
    Please remember to mark helpful posts as answer and/or helpful.

  • Read aloud EPUB. Group two spans with one id.

    I want two words, each on its own span (each has a different style. That's why it has to be two spans) to light up at the same time.
    I tried grouping them on one span, or div with the same smil id. But it only lights up the first word.
    Any idea how to make this work?
    Thanks a bunch!

    Hi Jeremy,
    The access point only supports to have one BVI1 interfaced configured with an IP address since it is a basic layer 2 device.
    Since it is IOS based you can try to configure an Ip address to more then one BVI1 but this will not work since the AP only supports an IP address configured on the BVI1 interface for managment of the unit.
    Know the access point allows us to configure VLANs and for VLANS to work we need to link each VLAN to an specifc bridge group leaving always the bridge group one that is linked to the BVI1 for the VLAN the access point has an IP address of and set as native VLAN.
    Here is the link that explains how VLANs work on the access points.
    http://www.cisco.com/en/US/products/hw/wireless/ps4570/products_configuration_example09186a00801d0815.shtml
    If you work with VLANs you can have different subnets or VLANs linked to each SSID and each SSID with an specifc security method.

  • Grouping of bins withing one storage section per Material Number

    HI,
    We have requirement of placing materials into fix group of bins. e.g One material in 4 bins, second material in 8 bins, third Material in 10 bins, Fourth Material in 2 bins and so on. We have approximately 8500 numbers of different material in store.
    Material Master has only One bin defined in WM view 2.
    How can we keep one material into Group of Fix bin within one section.
    Could you please help me to get above requirement.
    Regards,
    Manish

    Hi ,
    It means this is only way we can group bins togeather. I may be having more then 100 sections in the warehouse.
    I mentioned in my earlier communication that we have lot of materials.
    Its a very big storage area , and each material has fixed number of bins. So within one storage type there will be approximately 300 sections.
    As per your advice I should go for Sections for grouping of bins.
    Is there any other way we can do it, as asked by me in my query, i.e.  within one section, gouping of bins.
    Regards,
    Manish

  • "Selecting All" while dealing with one album

    I have a question. When I am in the newest display mode in iTunes 10 (where the album/album art is on left side of the screen followed by name of the tracks on the right. I have to hold Ctrl + click each individual track because I want to select certain tracks to paste my album art. What I really want to do is to click and drag the mouse cursor simply over the tracks I want to add album art. Is there a easier way to select things other that having to click individual tracks?

    First, go to View > as List.
    Then use the search bar to your advantage. Type the name of the artist for the album at the top right. This will only show the songs pertaining to that artist/album. Then just Ctrl + A and edit multiple items and go from there
    Hope that helps.

  • Select with One-to-Many and Many-to-One without repeating

    Hi
    I have a customer who needs a report two sides left and right, but allowing for One-to-Many and Many-to-One relationships in the one report.
    A little background:-
    This has do do with listings on land and buildings.
    One building can be built on a few pieces of land.
    Similarly, there can be several buildings on one piece of land.
    What is required is a listing of buildings on the left, land on the right, but without repeating the "single line entries" either left or right.
    For example Building1 is on Land1 and Land2, and Building2 and Building3 are built on Land3.
    We need:-
    Building1 Land1
    ________Land2
    Building2 Land3
    Building3______
    The ___ just used for spacing so you get the idea ;)
    Essentially - a "break by" on columns on the left and right.
    The Buildings and Land are in different tables, with a link table - one row for each link.
    Any ideas?
    Thanks
    Mike

    To jitu.jk - first, this is not in SQL*Plus - its a report in APEX - second, I see no way to break on the left and the right in the same select.
    Maybe there is a way.
    To Etbin
    This is a very inovative solution - I've tried it out and the result is:-
    BUILDING LAND
    _____Land 4
    _____Land 3
    _____Land 5
    Building 2 Land 4
    Building 3 Land 1
    _____Land 4
    Building 4 Land 4
    Building 5 Land 3
    _____Land 4
    (The underscores I put in for spacing - not perfect but you get the idea - hard whe you write the reply in a fixed space font and it's displayed in the forum in variable space font!! ;)
    9 rows selected.
    This is not quite the desired result - in your list of associations, we have Building1 associated with Land 3,4, and 5.
    So for Building 1 we should have:-
    Building 1 Land 3
    ________Land 4
    ________Land 5..........
    But your result doesn't include Building 1 at all.
    The other requirement is that no building or land is ever repeated - so I came up with the concept of "groups".
    Starting with one building - I find all pieces of land that are associated - listing them on the right (without repeating the building.
    I then find any other buildings asociated with any of the land records that the first building was associated with.
    These are listed on the left - without repeating the land records on the right.
    This group is given a unique identifier of the minimum association ID (my associations have ID's).
    This all done, I use the unique ID as a break column ans summarise additional columns (area, value etc) below each group.
    Because of the summaries - adding area and value etc, I can't have any building or land duplicated as I would then "double count" the area, value etc.
    Maybe you method can be made to work with some tweaking.
    Very clever indeed - forums need great answers like this - it keeps us going.
    Thanks again
    Mike

  • How to show two seperate pivot tables with one select column

    Hi All
    My client wishes to have two pivot tables, one showing positive results and the other showing negative results.
    For Example:
    DIMENSION
    BUSINESS A          1000
    BUSINESS B          500
    BUSINESS C          100
    DIMENSION
    BUSINESS A          -1000
    BUSINESS B          -500
    BUSINESS C          -100
    Is it possible to then select the different DIMENSION with one select column for both?
    Thanks

    Not sure I got it right try this
    for Number column pull twice and set col*-1
    use 2 pivot table for each number type
    cool as ~ http://cool-bi.com

  • Parameters with radiobutton

    Hi,
    I want to use only one radiobutton on the selection screen.
    I have declared the parameters statement like this.
    PARAMETERS: p_screen RADIOBUTTON GROUP rad1.
    When I try to execute the program it is giving error as
    'The radiobutton group "RAD1" contains only one PARAMETER'.Can anyone tell me what would be the reason for this.
    Regards,
    Hema

    It is meaning less to use single Radio Button in
    selection Screen. In this case we should have use
    Check Box.
    We can create  single radio Button in selection screen but don't use it. 
            The following way we can create it.  Here we  can create 2 Radio Button but we used single
    and other is Disable mode.
    SELECTION-SCREEN BEGIN OF...............
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT  2(20) text.....
    PARAMETERS: p_rad1   RADIOBUTTON GROUP rad1 .
    PARAMETERS: p_rad2   RADIOBUTTON GROUP rad1 .
    SELECTION-SCREEN..........
    SELECTION-SCREEN END OF..............
    DISABLE ONE RADIO BUTTION   **
    AT SELECTION-SCREEN OUTPUT.
            LOOP AT SCREEN.
              IF screen-name = 'P_RAD2'.
                screen-invisible = '1'.
                MODIFY SCREEN.
              ENDIF.
            ENDLOOP.
    [ Don't Use it ]
    If helpfull...Rewards point
    Regards,
    Sk     Kamruzzaman

  • Problem with page Parameter

    Hi,
    My requirement is I am passing a url to page with one parameter which I am assigning it to a calndar which has one one parameter. I mapped page parameter to the calendar parameter.
    In the p/sql code before displaying footer section of the calendar I am using
    get_value('pageparamter') But i am getting null value........................
    How should I retrieve that value......... If Iam using bind variable(calendar parameter) in the display before footer section I am getting error........
    Pls tell me the solution as early as possible...........
    Regards,
    radha

    Hi Radha,
    Sorry, I couldn't reply to your email about the same problem you were asking. Here is the code to get the value of the page parameter:
    declare
    l_val varchar2(10);
    begin
    l_val := portal30.wwpro_api_parameters.get_value
    (p_name => 'v_dt_on_mon',
    p_reference_path => p_reference_path);
    end;
    where 'v_dt_on_mon' is the name of the parameter , so you can replace it with your parameter name.
    Thanks
    -Krishnamurthy

  • Help with "greyed out" option for Publishing a group of Parameters in Motion 5!

    How do you group published parameters in Motion 5, so that you don't have one giant list of published options for Final Cut Pro X?
    My main goal is To publish a compound parameter (a parameter with nested subparameters)
    Looking through Motion Help, it should be as easy as clicking the little disclosure triangle on the right of the inspector, but the word "Publish" is greyed out...

    I know I've looked at rigging, but based off the Motion Help Online Manual, It should be as simple as clicking on the option for publish and have nested subparameters...
    Rigging is excellent, but more steps would be needed to do the same thing i believe...

  • Having problems passing more than one parameter with html:link tag

    Hi guys,
    for my web application I�m using Struts. I�ve got a database with user details. I would like to get users list and link to the details of each user. I wrote the code and everything is working fine only the users list is repeating as many times as users in the list.
    For ex: I have in the database User1, User2 and User3. I would like to have a result like:
    User1
    User2
    User3
    Instead of it I have the result like:
    User1
    User2
    User3
    User1
    User2
    User3
    User1
    User2
    User3
    What I�m doing wrong? Could somebody help me please?
    Thank you in advance
    There is a snippet of the code, which I�m using in jsp:
    <code>
    <logic:iterate id="root" name="user">               
                   <%
                        java.util.HashMap users = new java.util.HashMap();
                        params.put("user",root);
                        pageContext.setAttribute("usersName", users);
                   %>
                   <html:link name=" usersName " scope="page" page="/name.do">
                        <logic:iterate id="folder" name="user">
                             <bean:write name="folder" /><br>
                        </logic:iterate>
                   </html:link><br>
                   </logic:iterate>
    </code>

    Suggestion: next time you post code use the "CODE" button to put code tags around it. It formats much nicer that way :-)
    You have a nested loop structure here.
    <logic:iterate id="root" name="user">
      <%
        java.util.HashMap users = new java.util.HashMap();
        params.put("user",root);
        pageContext.setAttribute("usersName", users);
      %>
      <html:link name=" usersName " scope="page" page="/name.do">
        <logic:iterate id="folder" name="user">
          <bean:write name="folder" /><br>
        </logic:iterate>
      </html:link><br>
    </logic:iterate>Both loops iterate over your "user".
    Your first loop loops over each user.
    Then your second loop also loops over each user - hence you get number of users * number of users = 3 groups of 3.
    If you have 4 users, you would have 4 groups of 4.
    I only see you setting one parameter: "usersName" What other parameters do you need to pass?
    At a guess, the inner loop is unnecessary, and you want to write the users name as the text for the link, and also use it as a link parameter.
    <logic:iterate id="root" name="user">
      <%
        java.util.HashMap users = new java.util.HashMap();
        params.put("user",root);
        pageContext.setAttribute("usersName", users);
      %>
      <html:link name="usersName" scope="page" page="/name.do">
          <bean:write name="user" /><br>
      </html:link><br>
    </logic:iterate>

  • How does schedule with RESTful API a Webi report for a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    SAB BO 4.1 SP1
    Does it have an RESTful API to schedule a Webi report with the parameter to specify a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    Hello Ricardo,
    have you try a call like this one ?
        <schedule>
          <name>"test"</name>"
          <format type=\"webi\"/>
          <destination>
            <inbox>
             <to>userId1,userId2,userId3,groupId1,groupId12</to>
            </inbox>
          </destination>
        </schedule>
    Regards
    Stephane

Maybe you are looking for

  • Why my iMac can't sleep on it's own...

    Hey Folks, SMC reset, PRAM reset, unplugged all externals went back to a hardwired mouse, checked in safe mode. My 27 core i7 still won't sleep. So I resort to manually or scheduled sleep. Which isn't cool, since I want it to 'naturally' fall asleep.

  • My new Nano is no tbeing recognized by my PC?

    I bought  new ipod Nano and when I plug it in to my PC via the USB....it's not even recognized??

  • Destination Link from PDF to another PDF not working in Browser

    I'm linking PDFs by using destination links to get to a specific page of the destination PDF, which works just fine. Now I'm displaying all PDFs in a browser. My links are now opening the destination PDF, but instead of opening on the destination pag

  • How can I debug webdynpro java application?

    hi, How can I debug webdynpro java application? Thanks

  • Property Inspector Problem.

    I am trying to change a button from text to image.  I want to view the other buttons in the folder but I can not see the open folder.  As you can see in the picture it is cut off and I cannot expand it.  Can anyone help me with this? Thank you, Chris