About use of methods set/get of BindingContext

Hi,
I need to store some information related to a Data Page "history". I'd like to use the resources that ADF gives (I could just use a session attribute instead) so I tried to use the HashMap included in the BindingContext:
actionContext.getBindingContext().put("value", value);
I've cheched that this attribute is stored in a "transient" HashMap in the BindingContext object. Does this mean that I can't rely on this map to store the values that I want to be "session-persistent"? Is there a better way to do this without directly using session attributes? (Remember that I'd like to use at maximum the resources that ADF gives).
Thanks.
Luis Serrano.

set it up as shown below, for your sample use 4 vairables, one for the Region, one for the language and two for the the text items. 2 regions, 3 sets of languages each, yields 6 Datasets.
keskifo wrote:
It seems that the formatting such as bold, italic and so on is not exported into the data set which is quite embarrassing.
the Data Set is just that...data. Format your text holder as desired, it won't change when you change data sets.

Similar Messages

  • Using variants to set/get container variables?

    I am trying to determine if there is a way to retreive TestStand container variables into CVI using variants.  The goal is to not have to get each member of the container separately.  I am not seeing a way to do this - if it can please done can you please provide an example?  Thanks.

    Hi Snood1,
    There are several ways to pass containers to and from code modules, one
    of which is the same method you are currently employing.
    I've found an old discussion forum that still is relevant to your question - you can find it here:
    http://forums.ni.com/ni/board/message?board.id=270&message.id=1001&requireLogin=False
    Hope this helps! If you have more questions feel free to let us know.
    Have a good one Snood1,
    Dan Weiland

  • How do I go about using my phone to get .Mac mail

    My Sprint phone apparently has the ability to access Yahoo and Hotmail email accounts, but I don't know how to use it to access my .Mac account. Does anyone happen to know how to do this? If you do, would you mind detailing those things that I would need to do to get that function up and running?
    Thank you!!!!!
    J

    Not sure. Did you try googling for the info? A search for the term "Mac .Mac Sprint" comes up with tons of hits. If all else fails, contact Sprint to see what they recommend.

  • Is there anyone using Java Methods interface of IREP in his application

    Hello everyone,
    Are you using Java Methods interface of IREP in your application?
    Nowadays I am trying to using Java Methods in my application. But I'm puzzled how to get the interface jar files that the Java Methods would import. It seems that Oracle doesn't provide such interface jar files for all Java Methods shipped in IREP. How do you do with this?
    If you have some experience about using Java Methods in application, hope to hear your voice. Thanks in advance.

    Hi friend,
    Thanks for you update.
    I'm referring to Java Methods that can be called directly by applications not Java Service Interface. These are two different kinds of IREP interfaces. In Oracle Integration Repository User's Guide, there aren't much guidance about how to use Java Methods.
    I appreciate you can help me further.

  • Let me know how to use a method..

    Hi.
    I want to use a method for getting a screen size in user's pc registry.
    But, it is so difficult that it's usage.
    Please, tell me how to use it, if you know how to get a screen size.
    what is root, key, value?
    CALL method CL_GUI_FRONTEND_SERVICES=>REGISTRY_GET_VALUE
       EXPORTING
            ROOT =
            KEY  =
            VALUE =
       IMPORTING
            REG_VALUE =
    Best regards,
    kil-nam.

    Hi.
    I programmed that it uses docking containers.
    Because a docking container has an absoluted value, 1024X768 size and others is different shape.
    So, I want to change absoluted value as user's pc size,
    Thank you..
    Best Regards,
    kil-nam.

  • How to use  Aggregations Method generated by WIZARD

    Hi All,
              I used ABAP wizard to develop I report.
    This wizard generated one class and method as below
      zcl_bt_alv_template=>factory(
                     exporting  im_syrepid = sy-repid
                                im_lheader = gv_title
                                im_allowls = abap_true  " Allow layout save
                     importing  ex_alvo    = r_alv_template
                     changing   ch_datatab = it_efficiency ).
    Inside this Factory Method there is one method for aggregations.
      ex_alvo->r_aggregations = ex_alvo->r_table->get_aggregations( ).
    How to use this Method for getting aggregations for some fields.
    Thanks,
    Prasad.

    Hi Patel,
                   I am getting DUMP for this.
    Its saying Access via 'NULL' object reference not possible.
    Patel when I am double clicking the 
    aggregation = if_salv_c_aggregation=>total
    This if_salv_c_aggregation is not having any methods.
    So may be the dump is coming.
    The dump is
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "R_AGGREGATIONS").
    Thanks,
    Prasad.
    Edited by: Dheeru Prasad on Aug 6, 2009 3:36 PM
    Edited by: Dheeru Prasad on Aug 6, 2009 3:39 PM
    Edited by: Dheeru Prasad on Aug 6, 2009 3:40 PM

  • Problem with using read() method of BufferedInputStream

    Hi,
    I m using BufferedInputStream for reading from a socket and I m using read() method for getting data character by character from it . It runs successfully for sometime and then blocks indefinitely and hangs the application. Maybe , when it does not find any data to be read from socket or the LAN connection is broken, it keeps on trying and blocks further processing.
    Is there any way to solve this problem so that it does not hangs the application and comes out gracefully ?
    Thanx and regards,
    Aartee Goyal

    Most read-methods are blocking, if there is nothing to read.
    If you don't want, that your application is blocking, too, the read method has to run in a thread.
    The second possibility is, to ask, whether there is something to read
    BufferedInputStream bis = ...
    if (bis.available() > 0) {
       int b = bis.read();
    else {
       // sleep or break or ???
    }

  • Using SET GET parameters in ITS

    Hi All,
    Is it possible to use set get parameters in ITS. We want to set some parameters in a BADI and read the value in ITS Template .
    Or is there any other method to do this?
    Thanks,
    Anubhav

    Sure. In your abap program use the following code
    *  ITS macros
    INCLUDE avwrtcxm.
    GET PARAMETER ID 'YOUR_PARAMETER' FIELD SAVE_PARAMETER.
    field-set u2018~YOUR_PARAMETERu2019 1 SAVE_PARAMETER.
    field-transport.
    in the template you can now use ~YOUR_PARAMETER.
    regards,
    Klaus
    Edited by: Klaus Layer on Feb 3, 2009 5:05 PM

  • Is it better to use Invoke nodes or property nodes to set/get control values?

    I have a series of VI's that run in parallel, each to manage different functions- pumping, sensing, a fluid flow model, an experiment generator/runner.
    These need to exchange data, which I am currently doing using invoke nodes (that are all in subVIs), using methods "Set control value" and "Get control value". I find that every now and then (perhaps 1% of the time) the data isn't exchanged correctly and therefore the system doesn't work. I can imagine how "set" could go wrong if they happen simultaneously, and can devise ways of preventing this. However, the "Get" method suffers from the same problem. This is a major problem, because I want to leave it running for several hours.
    I could in
    principle achieve the same thing using property nodes and find myself wondering if this might be more reliable. But I don't want to change over only to find it makes no difference!
    Can anyone advise?

    You can use some kind of syncronization such as queues, occurances, or notifiers but I think the easiest way would be to create and action engine. This was only one action can execute at a time avoiding a "race condition". Possibly a write action and a read action might help. You also can add queues or notifiers into this concept. hope this helps.
    BJD1613
    Lead Test Tools Development Engineer
    Philips Respironics
    Certified LV Architect / Instructor

  • On my iphone, icloud is set to an apple id that i no longer use and i keep getting asked to enter a password. Cannot remember the password. When i try to re-set the password, it sends a email to a address no longer used. Will not accept any dob i enter

    I have icloud on my phone with an apple id that I no longer use. I keep getting asked to enter the password for this ID. However I can't remember the password.
    When I try to re-set the password, a e-mail will be send to an address I no longer use and can't access.
    I then try to answer the security questions, but the date of births I enter are not accepted
    Any ideas?
    Paul

    Welcome to the Apple community.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID, verify the changes, enter the password as requested on your device and then turn off "find my phone".
    You should then change your Apple ID back to its current state, verify it once again, delete the iCloud account from your device and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.

  • New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer run

    New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer running windows 8.1  Please help, Mainly use to share pictures.  Thanks!

    One thing puzzles me:
    RedClayFarmer wrote:
    I then found one suggestion that the problem might involve permissions. The suggestion was to right click PhotoshopElementsOrganizer.exe in its installation folder (which on my computer is at at D:\Photo\Elements 11 Organizer) and run Organizer as an administrator. This also failed.
    I don't understand why running the exe from the installation folder would have worked.
    I would have simply tried to run that exe from its real location :
    Sorry, I can't help you more about permissions...

  • Getting error while using TRIM method in collections

    Hi Experts,
    While using TRIM method I am getting below error. Am I doing any mistake here ?
    DB : Oracle 11g
    SQL> declare
      2
      3    type emp_tab is table of employees%rowtype index by binary_integer;
      4    l_emp_tab emp_tab;
      5
      6  begin
      7
      8   select * bulk collect into l_emp_tab from employees;
      9   l_emp_tab.trim(5);
    10   dbms_output.put_line(l_emp_tab.count);
    11
    12  end;
    13  /
    l_emp_tab.trim(5);
    ERROR at line 9:
    ORA-06550: line 9, column 2:
    PLS-00306: wrong number or types of arguments in call to 'TRIM'
    ORA-06550: line 9, column 2:
    PL/SQL: Statement ignored
    Thanks in advance for all your help.
    Cheers,
    Suri

    Gerard, and to Unkonwn epxpert ;-)
    Thanks for the reply. I am aware about extend method. But not sure about TRIM. Once again thanks for your help.
    Cheers,
    Suri

  • Manager in mate becasue all method get  and not method set???

    In mate they use this technology what I do not still have clear is that because always in the managers methods go only get and not set????? Because??
    [Bindable (event="sqPhotoDBCountChanged")]
            public function get sqPhotoDBCount():uint {
                //trace("PhotoManager.sqPhotoDBCount(), 'sqPhotoDBCount' event response, sqPhotoDBCount = "+_sqPhotoDBCount);
                return _sqPhotoDBCount;
    And not this method set because????????

    In your servlet, you have written doget() method but it should be doGet().

  • HT5312 My rescue email address is no longer used, I can't get any emails from apple about my security questions. What shall I do?

    My rescue email address is no longer used, I can't get any emails from apple about my security questions. What shall I do?

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (104597)

  • Calculated attribute setter & getter methods

    Hi,
    i want more information on Calculated Attribute setter method & Calculated Attribute getter method.
    i have a value attribute, to which properties of  CalculatedAttributeGetter &  CalculatedAttributeSetter values are given with the method names.
    Is it like whenever we try to set a value for that attribute the setter is called and getter is called whever tries to get value.?
    Please give more info on this.
    Attribute: Emp
    Setter: setEmp
    getter: getEmp
    Thanks
    Hussain

    hi,
        hope this link will help you.
    If we create a value attribute then there will be a property called "calculated",set that property as true then we get two methods called "getter" and "setter".This is to be used for setting some values to our variables and getting that.In java .
    ( used for Encapsulation purpose.)
    [http://help.sap.com/saphelp_nw70/helpdata/en/7f/a0384162316532e10000000a1550b0/frameset.htm]

Maybe you are looking for

  • Error Running Reports (REP-0081 &  REP-0124)

    Please help. I am having the following error when running a report on the web: (from the Reports Queue Manager) Terminated with Error : REP-0081: Error during file I/O operation. REP-0124: Unable to write to the temporary file. scafa 3 thanks for a r

  • Is it possible to automate the running of a java program multiple times?

    For example, i have a java program which constantly writes the word "hello world" to a text file and ends the program. Instead of compiling & running this multiple times is there a way to automate it and it will run it many times as you want?

  • Ipod Nano turns automatically on and off

    Hi there, I have the following problem. My Ipod Nano 4GB turns always on and off. The result is, that my windows pc can't recognise it. I have tried everything to restore the ipod, but this doesn't work as well. As soon as I push the Menu the Select

  • Oracle 9i version for Windows ME

    Hi, Can you please tell me what is the most appropriate version for Oracle 9i personal edition to run on Windows ME. Thanks.

  • Changing template of document that gets attached to blanket purchase order

    Hi, When a blanket purchase agreement is saved. A pdf document gets attached that blanket purchase agreement. I can see that in Inquire -> View document. How does that gets attached, through which program, how can I change the template of that pdf do