Displaying the user selection in Header for HFR

Hello Experts,
I have a prompt on a dimension in my report. The user can enter more than one values. I need to display the names of all the members selected by the user for the dimension in the header of the report. Can anyone plz throw some light on this.
Thanks,
Ravi B

Hi Ravi,
In text box it seems to be impossible to display the prompt members.
Only feasible option seems to be display those selected members via another grid.
But the problem here is that you cant put a grid into the header. So if your reports contain only one page then only this option might be helpful to you.
but if you have some limit on the number of members selected in the prompts then you can do it in text box also by hard coding. and nobody should select 100 memers at one go in prompts as i think. I really dont know what type of requirements you have.
Let see if your problem get solved.
Regards,
Rahul

Similar Messages

  • Is that possible to display the user selection data in the printable page?

    Hi All,
    I'm going to add a printablepage button on my page.
    Here comes a questions.
    Is that possible to display the user selection data in the printable page?
    For example,
    I have a table in the page,with 10 records.User select 5 of them.Can I display these 5 records in the printable page?
    Please help.

    Hi Yannick,
    Thanks a lot for the information. It worked.
    The portlet data can be accessible using bindings, but parameter name can be different.
    Meanwhile I have got one more scenario, where the Portlet and Task Flow placed in different pages of WCP Application. On change of data in the Portlet the application should navigate to another page where the Task Flow placed and displays selected data.
    Basically I can not use any button for navigation. The navigation should happen once I do some action in Portlet.
    Is this possible? If yes can you please let me know the steps?
    Thanks in advance!
    Somnath
    Edited by: Somnath Basak on Dec 20, 2011 9:41 AM

  • If i have a form with check boxes. Can I add a button that will display the boxes that the user selected on a new page?

    For example, there are 10 check boxes and the user selects 5 of those boxes. Then they click a submit button. Just the information from those boxes would be displayed so they can print it. Is this possible? Any help pointing me in the right direction would be appreciated.

    That is definitely possible.
    Option 1: checkboxes are all named differently.
    In the click event for the submit button, add some code like this...
    if (cbChoice1 == "1") p2.tfChoice1.presence = "visible";
    else p2.tfChoice1.presence = "hidden"; //can use "invisible" if preferred
    if (cbChoice2 == "1")...
    Option 2: checkboxes are named the same
    In the click event for the submit button, add code like this...
    var checkboxes = xfa.resolveNodes("cbChoice[*]");
    var textfields = xfa.resolveNodes("p2.tfChoice[*]");
    for (i=0; i<checkboxes.length; i++){
        if( checkboxes.item(i).rawValue == "1") textfields.item(i).presence = "visible";
        else textfields.item(i).presence = "hidden";

  • How to adjust mouse or trackpad parameters for the user selection screen?

    This is not critical, but annoying.  I can change the mouse or trackpad parameters by user, so anyone can use their own mouse or trackpad adjustment.  However I can not locate how to change this parameters for the welcome or user selection screen.  In my case I have two users, both of us use the trackpad with the one touch for click function, so no one press physically the trackpad for a click.  However, as the default parameter is the touch function deactivated we have to actually click the trackpad in that exclusive screen.
    Another example with mouse, normally we use the mouse with almost double of the default acceleration, but when in the user selection screen the mouse assumes default configuration and feels super SLOWWWWWWW.
    Again, this is not critical, but would be very nice to be able to modify this parameters in the welcome screen.
    Tyrone Carrion

    For the login screen, you are not associated with a normal user, but the system defaults...try logging in to the Admn account and change the behavior there...those settings should then apply to the login screen.

  • Limiting rows displayed from user-selection on dashboard prompt

    Hi,
    I'm looking for a way to limit the number of rows displayed after a user has made a selection using a dashboard prompt. Here is my scenario:
    User selects 24 periods of data using an 'In Between' dashboard prompt (i.e. Jan05-Dec06). 24 rows are returned by the query but I only want to show the last 12 rows (Jan06-Dec06).
    Motivation is that I'm using the MSUM function to display a 12-month moving sum total and I don't want to display the first 12 rows as they do not contain a complete moving sum total.
    I've looked at using a variable to store the user selection at the dashboard prompt, but the 'In Between' dashboard prompt does not allow one to store a result in a variable.
    Any suggestions are welcome!
    Thanks!

    Hi Som,
    Thanks again for your feedback. I've thought about using dynamic repository variables, but found them not to be the answer. Although the moving sum would always be a 12 month total, the user needs to be able to vary the range of periods using the dashboard prompt. Today he might only want to look back 12 months, tomorrow he may need a 5 year overview. Using dynamic repository variables would mean I'd have to create variables for the entire history i.e. CM until CM - 240 (20 years * 12 months). If a user then would like to report on a specific period, he would need to pick the correct dynamic variables, which would not be user friendly/acceptable.
    I think I may need to resolve this problem in my datamart by calculating & storing a 12 month total (the only 'fixed' requirement of the report) in my fact table. This would also remove the need for the user to select 12 months more that he would see in his report (a drawback of my original scenario above).
    Thanks again for your input!
    Regards,
    Dutch

  • To display the content selected in multiselect control in a report..

    Hi,
    I have one requirement to display the content selected in multiselect.I explained my requirement below.
    I have 5 multiselect boxes.they are locality,designation,connection1,connection2,connection3.
    The corresponding designations will be displayed for the locality and the corresponding connection1 will be displayed for the designation and the corresponding connection2 will be displayed for the connection1 and the corresponding connection3 will be displayed for the connection2.everything is displayed correctly in the multiselect.
    My requirement here is till connection1 i'll select mandatorily. and if i select connection1 and click GO button without selecting connection2 and connection3 then the connection1 only should be displayed in the report not the connection2 and connection3.likewise if i stop till connection2 and click go then connection2 only has to be displayed in the report not the connection1 and connection3..How can i do this?
    i tried using dropdown and presentation variables but not all the values are displayed in dropdown and there is a limit in dropdown.so i'm going for multiselect..
    Can anyone help me..

    HI,
    Sai Kumar Potluri
    I tried in IDES it working.
    Here is the code.
    REPORT  ZPRA_TC_D.
    TABLES : SCARR.
    CONTROLS TC TYPE TABLEVIEW USING SCREEN 1.
    DATA : SELLINE TYPE I,
           SELINDEX TYPE I.
    DATA : ACT LIKE SCARR-CARRID,
           ANT LIKE SCARR-CARRNAME.
    DATA : ITAB LIKE SCARR OCCURS 0 WITH HEADER LINE.
    CALL SCREEN 1.
    *&      Module  STATUS_0001  OUTPUT
    *       text
    MODULE STATUS_0001 OUTPUT.
      SET PF-STATUS 'ME'.
    *  SET TITLEBAR 'xxx'.
    SELECT * FROM SCARR INTO TABLE ITAB.
    ENDMODULE.                 " STATUS_0001  OUTPUT
    *&      Module  MOV  OUTPUT
    *       text
    MODULE MOV OUTPUT.
      MOVE-CORRESPONDING ITAB TO SCARR.
    ENDMODULE.                 " MOV  OUTPUT
    *&      Module  USER_COMMAND_0001  INPUT
    *       text
    MODULE USER_COMMAND_0001 INPUT.
    CASE SY-UCOMM.
    WHEN 'BACK' OR 'UP' OR 'EXIT'.
      LEAVE PROGRAM.
    WHEN 'SEL'.
      GET CURSOR FIELD SCARR-CARRID LINE SELLINE.
      SELINDEX = TC-TOP_LINE + SELLINE - 1.
      READ TABLE ITAB INDEX SELINDEX.
      ACT = ITAB-CARRID.
      ANT = ITAB-CARRNAME.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0001  INPUT
    In Flow Logic.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0001.
    LOOP AT ITAB WITH CONTROL TC.
      MODULE MOV.
    ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP AT ITAB.
    ENDLOOP.
    MODULE USER_COMMAND_0001.

  • Print parameters as per the user selection in ALV

    Hi All,
    We have a requriment for getting the print parametrs to print dialog as per the user selection in ALV list display.
    When the user click on 'Print' button In ALV list output screen, we need to capture the print parameters from a Z table and put those on the print parameters dialog box.
    I tried this , by calling the function GET_PRINT_PARAMETERS and SET_PRINT_PARAMETERS before the alv function is called. Unforutnately this is not working. Same code works for the simple list display.
    Have anyone worked with this kind of requriment ?
    Regards,
    Mithun

    What kind of ALV are you using, FM or OO?
    Regards,
    Rich Heilman

  • How to avoid the user selecting a different path in my installer

    Hello again all you helpful forum-goers!
    I have an application and a corresponding installer, and then I have a separate installer putting some support files in the same directory.  My problem is that if the user selects a different path to which to install my primary application, the secondary installer will not put the required support files in the same spot.
    Now, I think I've figured out how to get the user-selected path from the "Run executable at the end of installation" option in the Advanced pane of the LabVIEW installer configuration, and I can pass that in to my secondary installer, and that should fix the problem.  However, what I'd really like to do is just not give the user the option to install my primary application in a different directory to begin with.  I've looked, but cannot find any way to do that.
    Does anyone know of any way to not present the option to install an application in a different directory when using the LabVIEW installer?
    Thanks in advance for any suggestions,
    -Joe

    Ben64,
    That's great!  Thank you so much for your quick reply.  The only reason I haven't already accepted that as my solution is that it requires a manual post-compile change to a text file.  Ideally I'd prefer not to have to remember to do that every time I rebuild my installer.  Is there any way that you know of to automate the process?
    If not, I'm happy to have a good solution even if it takes an extra step each time to implement.
    -Joe

  • How to display the User Name in Transaction MM04's output

    Hi Experts,
    My requirement is that in the Transaction MM04's output, along with all the fields displayed, I also want the User Name to be displayed.
    Here User Name must be the Person's Name and not the ID of the Person.
    Is there a way by which I can achieve it?
    Useful answers will definitely be rewarded.
    Thanks in advance.
    Regards,
    Himanshu

    Hi,
    Thanks a lot for your quick replies.
    But my requirement is to integrate the User Name Field with the MM04's output.
    So, I need either an Exit or any other way by which I can display the User Name in the Standard Transaction MM04's output.
    Regards,
    Himanshu

  • "File Dialog" Express VI returns the wrong path when the user selects the desktop

    In labview 8.0.1 with Windows
    XP, the File Dialog Express VI seems to return something other than the path
    selected by the user when configured to browse for folders (or files and
    folders) and the user selects the desktop.
    I can't determine exactly when it works and when it fails, but it always seems
    to fail if the user selects the desktop from the places bar (the shortcuts on
    the left side of the dialog) or from the drop-down menu at the top of the
    dialog and then clicks the "Current Folder" button to dismiss the
    dialog.  In this case it always returns whatever path is wired to the
    "Start Path" terminal.
    If the user navigates to the desktop with the "Up One Level" button
    or by selecting the actual desktop directory under Documents and Settings, the
    correct path is returned.
    If the user selects a file before clicking the desktop icon, then clicks
    "Current Folder" the correct path is returned.
    If the user clicks the desktop icon, clicks open, then clicks "Current
    Folder" the correct path is returned.
    It's possible to work around this bug in most cases by setting the start path
    to the desktop.
    Has anyone seen this behavior before?
    Can anybody verify this behavior by running the attached VI?
    In the past, when I've reported issues like this I've received responses from
    NI engineers that basically said "Thanks, but we already knew
    that".  Is there anywhere that users can search the list of known
    bugs and avoid wasting time tracking down issues that are already understood by
    NI?
    Thanks,
    Adam Brewster
    Attachments:
    File Dialog Test.vi ‏39 KB

    I'm on 8.2 and I can't get it to fail no matter how I select the desktop. I haven't tried it in 8.0, but I imagine that if this really is a bug, they did know about it and fixed it with 8.2. If this causes a real problem for you, I would suggest upgrading if you can.

  • Display variable values selected as header in WAD

    Hi All Gurus,
    I need to display the variable values entered for running the report as a header to the report being displayed.
    I'm using NW2004s BI and standard template 0analysis_pattern. Is there a way I can display the variable values as header info.
    Thanks in Advance
    Sid

    Hi Sid,
    You may need to make a copy of this template, or create your own and use the Information Field web item:
    http://help.sap.com/saphelp_nw70/helpdata/en/47/96784226d1d242e10000000a1550b0/content.htm
    You can set this to display the Variables  (VARIABLES_VISIBLE)
    Hope this helps...

  • Can I somehow let the user select multiple images from device?

    Is there any way to let the user select multiple images from the device media gallery?
    The CameraRoll only selects one image. And the FileRefernceList doesn't show thumbnails (so you have no idea what you are selecting).
    Is there a way, or maybe some sort of workaround, for this? Is there a way to maybe "read" the users gallery on the SD-card and output your own gallery that the user can select from?
    I'm developing towards both Android and iOS so cross-plattform is a must.
    Thank you guys

    +1 to this question. I'm looking to do the same thing but haven't had any luck yet.

  • Can iBooks Author hide sections of a book to be revealed only after the user selects a correct choice?

    Can iBooks Author hide sections of a book to be revealed only after the user selects a correct choice?

    K T wrote:
    'downside'....really?
    Well, yes, in the sense that simplicity has a price: it comes at the cost of reduced functionality. (If all the functionality were still there, things wouldn't be as simple; it's an inevitable trade-off.) It looks like IBA was designed with the iWeb philosophy: make simple things really simple, and leave out the stuff that's too complex to control for non-experts. The upside of course is that non-experts can use the tool really easily.
    K T wrote:
    No pain - no gain. You didn't come up with the content for your books without putting in fair time
    Sure. But almost all that effort went towards creation of the content, not towards laying it out with IBA (which was remarkably easy). So, in that sense, IBA more than met my expectations. The things it does do, it by and large does really well, and without much expertise needed on my part. The only thing that was complex was the HTML widget, which took some programming. But that's entirely my own fault, not IBA's
    Michi.

  • I want to change my apple id on my macbook pro in the user info. it ask for a password...i am typing in my password to the apple id but it will not accept it....how to solve it ?

    i want to change my apple id on my macbook pro in the user info. it ask for a password...i am typing in my password to the apple id but it will not accept it....how to solve it ?

    I'm afraid that you may be confusing two different 'passwords' - there's your Apple ID (the user name and password that you used to get into these forums) and then there's your computer user name and password - usually two seperate user names and passwords.
    If you want to change your password for your user account on your computer, go to System Preferences>Users & Groups and unlock the preference pane. Then you can select your user name and change your password there. Changing a user name is a bit complex and I don't think you want to try that!
    Clinton

  • Displaying the User's Role in the Information Channel

    I would appreciate some assistance with displaying the user's Role in the UserInformation Channel.
    I have modified content.html in the iwtuserInfoProvider directory to display tag:iwtUser-role but it will only display the role for AdminRole users, not for any other role (which is null).
    Why is iPS V3 (SP4) only enumerating iwtUser-role for admin users?
    Here is the code snippet:
    <tr><td>
    <FONT FACE="[tag:iwtDesktop-fontFace1]" SIZE="-1">
    <SCRIPT LANGUAGE="JavaScript">
    var iwtUser = "[tag:iwtUser-role]";
    document.writeln( "User Role: " + iwtUser);
    </script>
    </font>
    </td></tr>

    This is probably a permissions problem.
    Have a look at the iwtUser component in the profile. By default, only ADMIN has read permission on iwtUser-role. You need to add a read permission for OWNER.
    Stephen

Maybe you are looking for

  • Provisão de Serviço

    Boa noite a todos! Não estou conseguindo configurar um cenário de provisão de serviço em MM. Configurei o esquema de cálculo de serviço inserindo numa condição de provisão que criei a chave de operação BO1. Na transação OBYC informei para a operação

  • No option to reformat during Windows XP installation under Boot Camp

    Ok, I just purchased Windows XP Professional SP2 to install on my Macbook Pro via Boot Camp. I first attempted to install it last night, and ran into a variety of issues. I went into Boot Camp Assistant, printed out the instructions, and read them ca

  • HTTP response contains status code 403 with the description Forbidden

    Hello all, I have configured a simple scenario like this: File ftp Adapter -> XI -> File ftp Adapter I activate the communication channel to start the message processing. Then I am able to see my messages in transaction SXMB_MONI in the XI Integratio

  • HDF example

    Hello I will create a word file from my java application. I found the POI project and there i found also the HDF API. But this section is still in development... Anyway, I don't have time to read the source for using the HDF API. So I'm looking for a

  • PowerPC question when loading a digital copy of a movie

    I attempted to upload a digital copy of Monsters, Inc and I get an error reading showing the application PowerPc is not supported.  Is there anything else I can do?