How can I have user specific filters for information display on portlet?

Hello Everyone !!!!!
I am new to the Portlet World
My query is..
How can I have filters on a portlet screen ?
I want to display certain information on a portlet which must be filtered and ordered.
Example:
In Internet Banking , I want to display transfers which had happened in the last month. So I ( as a user ) will keep this predefined somewhere may be in portletData.
Whenever that user logs in for the next time, he will be able to view account transfers taken place in the lastest month only.
This must be user specific. As another user can keep the setting in a different way. That is he/she might want to view account transfers for the last week only.
When user clicks on a button a new screen( filter screen ) is loaded where he need to enter the dates of From and To .....
The user saves this.....( may be in portletdata)
So that when he logs in .. next time screen loads with the defined settings in filter....
Any idea ? How can this be achieived ?
Thanks in advance.... :-)
Wating for a reply
Message was edited by:
dev2007

Hey !!!
Can anybody give me some idea regarding this ?

Similar Messages

  • How can I have sms message delivery for IPhone

    How can I have sms message delivery for IPhone

    Check to see if there is a 3rd party app that provides it. Also, check with your carrier. If you are in the US, this is not an important thing, and most of the carriers do not provide delivery for SMS. If your from outside the US, see if the carrier supports it and what needs to be done to get it.

  • How can I have the articles listed for all of the asssortments?

    How can I have the articles listed for all of the asssortments without any condition? Is there any customization for this?

    Can you make some explanation? Is it OK if I choose "02 - Listing without qualification" as listing procedure?

  • How can i get a specific tone for my vip email alert.  all tones are in my ringtones, but only some show up in the alerts for email.

    i cannot get my all my ringtones to transfer to my vip email alerts.  there is a specific tone I need for one vip email alert, but that one doesn't transfer, however it IS in my ringtones and textones.  how can I get that particular tone for my vip email?

    Only Apple Account Security could help at this point. You can try calling Apple Support in Canada - you'll have to find one of the several ways, such as Skype, to call an 800 number from outside of the relevant country - and ask for Account Security and see if they can help. Or you can find a friend who speaks Chinese and ask them to help you talk to Apple Support in China. There are really no other options that I know of.
    Note, by the way, that these are user-to-user support forums. You aren't speaking with Apple when you post here.
    Regards.

  • How can I have users change textures in acrobat 3d and Reader question tia sal2

    I'm trying to have users in Acrobat reader change textures of a box which I made in acrobat 3d
    how can I do this?
    Example
    I made three textures for a box and I would like the user to have the ability to change the textures if they choose. How can I do this? Any examples?
    Can I have a user select the textures or the layers from a photoshop file in Acrobat 3d?
    Tia sal2

    Yo ratboy,
    You can do this. In order to map the images, they must be attached as a 3D resource. (There is a free plugin for this; search the forum for "Attach3DResource.api"). Once the images are attached, you can use the 3D Javascript API to map them to the meshes you desire.
    For one doc, I attached 25 images in this manner. I then used the script below to create a bunch of empty meshes, and then apply the images to said meshes.
    Hope this helps!
    //3D javascript ========================================
    //create 25 procedural meshes ======
    var leftEdge = -180;
    var horizontalOffset = leftEdge;
    var verticalOffset = 0;
    var myMesh = new Array();
    var myVector = new Array();
    for ( i=0; i<25; i++ ) { myMesh[i] = scene.createSquareMesh(64, 48, "myMesh" + i); myVector[i] = new Vector3( horizontalOffset, verticalOffset, 0 ); myMesh[i].transform.translateInPlace(myVector[i]); horizontalOffset += 74; if ( horizontalOffset > 180 )
    horizontalOffset = leftEdge;
    verticalOffset += 58;
    //create image array and resource objs ============
    var myImageResources = new Array();
    var myImageFiles = new Array("8d91.jpg",
    "ad2e.jpg",
    "barnpond.jpg",
    "Beach01.jpg",
    "Beach04.jpg",
    "Beach05.jpg",
    "Beach06.jpg",
    "Beach13.jpg",
    "bike trailer.jpg",
    "cobra.jpg",
    "cr80xr200.jpg",
    "craigs_place.jpg",
    "Dandrea.jpg",
    "dirtbike.jpg",
    "e027.jpg",
    "f5b5.jpg",
    "f613.jpg",
    "halfdome.jpg",
    "Iceberg.jpg",
    "island.jpg",
    "kx100_gb.jpg",
    "maui_horanhero.jpg",
    "norcal_ocean.jpg",
    "sierraLake.jpg",
    "Smokey Light.jpg",
    "test.txt");
    //create resource objs
    for ( i=0; i<25; i++ ) { myImageResources[i] = new Resource("pdf://" + myImageFiles[i]); }
    //load images on meshes with handler ============
    var myImageObjs = new Array();
    var myImageMats = new Array();
    myRenderer = new RenderEventHandler();
    myRenderer.onEvent = function(renderEvent)
    for ( i=0; i<25; i++ ) { //create image from resource myImageObjs[i] = new Image(myImageResources[i]); console.println("Image = " + i);
    //add image to model
    myImageMats[i] = myMesh[i].material;
    myImageMats[i].diffuseTexture.setImage(myImageObjs[i]);
    //remove handler
    runtime.removeEventHandler(myRenderer);
    runtime.addEventHandler(myRenderer);
    //cause a recalculation of the scenegraph.
    scene.update();
    console.println("Call scene.update()");
    console.println("Created 25 Square meshes: (64, 48, 'myMeshN')");

  • How can I have proxy settings stay for multiple users on an educational network?

    Hi,
    I want to be able to have mutlple users log onto machines and haave proxy settings already set in preferences. I have tried by copying the Mozilla folder in to the All users location and does not help.
    Each user logs onto a computer with a mandatory or Roaming account depending on account security. Settings for firefox are picked up from their Documents and settings folder when they log on (It is created when they log on for the first time)
    Is there a way to pull across proxy settings for a new user? Ussually it would be a case of just sticking it in All Users.
    Thanks

    A possibility is to create a file user.js and place that file in the default template location (defaults\pref) in the Firefox program folder.
    If you don't want users to change the proxy (connection) settings then you can also lock the prefs or set a different default value.
    See http://kb.mozillazine.org/Locking_preferences
    You can use these calls in mozilla.cfg to set or lock a pref:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes
    lockPref(); // lock pref, disallow changes
    http://kb.mozillazine.org/network.proxy.type
    http://kb.mozillazine.org/network.proxy.%28protocol%29
    http://kb.mozillazine.org/network.proxy.%28protocol%29_port

  • How can I have a VMWare repository for add-ons

    I have a virtual environment and need to be able to put add-ons/extensions in one shared directory so all my clients can access them. I do not want the users to have to install them. Is there anyway to do this?

    You're welcome. Could you mark the problem as solved, that along with the comment you already made helps other users with similar problems find aspects of Firefox and try things out for themselves, Thanks.

  • How can i set a specific time for a transaction code to be run?

    I want to know if a certain Transaction Code (not only the customized tcodes) could only be run on a specific time (ie. 4pm to 6am only)

    There are two ways to achieve the purpose you wanted:
    1. If the work to be done by this Tcode can be processed automatically without any interactive session (dialog user) then I would suggest it to process as Batch Job in the time period you specified. And make sure that none of the users are not having corresponding authorization to execute the same task in foreground.
    2. If you need the Tcode to be executed only when you can monitor then the best way is to monitor the users containing the Tcode through SM20 audit log as a Mitigating control.
    No such facility is currently available to protect a Tcode for a particular time interval in a day. You may write a message to SAP for suggestion.
    regards,
    Dipanjan

  • How can I have a background image for reference ?

    HI,
    I need to register align horizontally and vertically) about 100 images to the first. I don't want to stack or merge them. An ideal way to accomplish this would be to be able to set the first image as a background reference image for all images in the group. There would be left/right buttons so I could advance through the stack, a slider to adjust the visibility of the foreground image, and up/down & right/left arrows so I could move the upper image a pixel at a time in any direction. In this case I don't need to rotate the image, but this would also be something a person might want to control. Then I would move through the group of images, stopping on each one to align the image to the first. One at a time, or after I am done, it would save all the aligned images to a new filename and folder, without changing the transparency of the image or in any way using the background reference image. Without rotating the images, every pixel in the new image would be the same as in the original, except moved. I would start by resizing the canvas of all the images so they have a border area. This way I can move the image around and not lose any of it.
    Of course I could put the reference image in the background layer and the image to be adjusted above it on another layer. Then i can use the background as a reference by making the upper image somewhat transparent. Finially I could delete the background layer and save the image with just the adjusted layer. But this would be tedius with 100 images, even worse if there were 1000..
    Is there a reference background image capability in Photoshop CC ? Is there a better or different way to do this ? Or can Bridge do it ?

    When I first posted this I had selected Photoshop as the community. After it had posted I saw it had changed and again changed it back to Photoshop. it again reset it to Premier Pro. I don't know why. Also, I had selected Refrence image as a tag and that keeps dissappearing. Even worse, there are no replies. What's the deal ?

  • How can I get User's Manal for Ultiboard in Russian language?

    I need to presrent tthis product at conference in my university, but i couldnt find russian version of user's manual or getting started for ultiboard does it exist?

    Sorry but Ultiboard is only localized in German, Japanese and English. We do not have any Russian translation or localization available. There could maybe be a unofficial translation in the web if you use search engines, but from NI's side we do not have it.
    Nestor
    National Instruments

  • How can I have several arrange tracks for one instrument mute independently

    hi... if i create several arrange tracks with the 'New with same channel strip/instrument' command i cant mute them in the arrange window independently it seems ? For example i want 10 arrange tracks all playing the same Battery Kit/instance but be able to mute them independently through automation for example. For the moment when i mute one of the tracks the whole instrument gets muted.
    i'm a bit confused since i'm new to logic from cubase ... can i not just use 'midi tracks and parts' like in cubase ?

    chindustronik wrote:
    hi... if i create several arrange tracks with the 'New with same channel strip/instrument' command i cant mute them in the arrange window independently it seems ?
    My first though was to suggest that you check Preferences>Audio>General, and make sure "Track Mute/Solo" is set to "CPU Saving (Slow response). This will allow you to mute and solo each track copy individually.
    However, this will not help you in this situation, because the mute button will be muting the actual channel strip, like a mixer, so you will always be muting the whole thing.
    It's easiest to simply make cuts right on the MIDI regions, and mute the regions themselves, in the spots of the song you want them muted. Either that, or mute the MIDI on/off events themselves, within the Piano Roll window.

  • How can i specify a specific certificate for client authentication

    hi all,
    i'm currently using a pkcs11 smartcard device to authenticate aigainst a directory server from java.
    everything works perfectly when using cards with the authentication certificate as the first in the keystore.
    unfortunately the cards i need to handle can have both auth or sign as first certificate.
    is there a way to select explicitely which certificate to present during the ssl handshake ?
    thanks a lot in advance

    Look into the following:
    -- page protect property of the repeating frame
    -- Maximum number of records per page property

  • How can I set a specific value for a field, according to the option selected in a previous drop-down menu?

    Eg.: I have a drop down menu with the following options: "1,2,3,4,5". What I want to do is the followin: If the option selected is "1" the field "Color" must be filled with "Green", if "2" the field color must be filled with "Red", etc

    You can use something like this as the custom calculation script of the color field:
    var v = this.getField("Dropdown1").valueAsString;
    if (v=="1") event.value = "Green";
    else if (v=="2") event.value = "Red";
    // etc.
    else event.value = "";

  • How can I have different access control for the guest network (different than the main network)?

    I am trying to control my main wireless network with access control via mac id with no password. I wanted a separate guest network with password access and no access control. However, the only way that the guest network works is if I specify unlimited access as the default. Is what I am trying to do possible.

    I am trying to control my main wireless network with access control via mac id with no password.
    Definitely not a recommended method for security. MAC addresses are easily cloned by anyone who wants to do so with free tools available on the Internet. An unwanted guest will be on your network in less than a minute if they want to be.
    Strongly recommend that you use WPA2 Personal security with a non-dictionary password to protect your network.
    I wanted a separate guest network with password access and no access control. However, the only way that the guest network works is if I specify unlimited access as the default. Is what I am trying to do possible.
    Unfortunately, Apple does not allow separate Access Control for the "main" and "guest" networks. It's all or nothing, I am afraid.
    Likely, the  "best" way to set up Access Control is change the default rule to No Access, Then you will need to enter in the details for every device that you want to allow to connect for both the "main" and "guest" networks with the time limits for each device.

  • Can I have a specific page for new tabs?

    What the ''heck''. I download a NEW version of this slow browser and then you ''guys'' change the way a new tab opens.
    Any thoughts on ''fixing'' this code?
    ''Edited by a moderator due to language. See the [http://support.mozilla.com/kb/Forum+and+chat+rules+and+guidelines Rules & Guidelines] .''

    Go to [http://kb.mozillazine.org/About:config about:config] , find '''browser.newtab.url''' , then '''right-click''' on it select '''modify '''and put your homepage or another page you want.
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

Maybe you are looking for

  • My iPhoto photo library disappeared after I used a SanDisk Cruzer Fit USB Flash Drive

    Hi! Not sure if these 2 things are connected, but I bought a SanDisk Cruzer 32GB USB Flash Drive. I dragged my documents over and copied them on to the flash drive. I didn't have iPhoto open. I didn't drag any applications, photo library folders, or

  • Std t -code for input VAT Register

    Hi All Can any one tell me what is the t- Code  for input VAT Register(Standard t-code). Regards M S k

  • Pass values from badi to a  z report

    hi  expets, i am using badi  'ME_REQ_POSTED  ' for some requirement but i need to capture the doc no posted in this badi  and store it in a variable and use it for further processing in  a bdc , can anybody help me out for this , i am new to abap obj

  • Assigning a datasource for a TREX index

    I'm trying to create an index to search an internal web site at my company. I've created a web crawler, a web repository and other necessary items. Following the instructions I have to create the index, I need to set the data source of the index to t

  • SAP ECC, SRM and SNC integraton

    Hi everyone, I want to know if we can integrate ECC, SRM and SNC. We don't want to use SUS, we want to use SNC. Is it possible to have this implementation? If yes, what is the correct technical scenario for SRM (Classic or Extended Classic)? Thanks,