Need help saving user information

I was just asked to start looking into how we will save user information from a Flex application.  We will need to store information for each user such as the following:
1) sort settings for all objects for grids.
2) which page/window user was in.
3) possilbe field data that user last entered (instead of starting over).
I was just wondering if anybody had to do something similar and how they went about it.  I worry that this could be come pretty messy and was hoping someone figured out a logical approach to it.
Thanks,
Larry

Then make a settings class , and create an instance during runtime if one doesn't exist in your db.  When a setting changes , record the change on your object and serialize it out to an AMF-capable backend.  There you shove the settings object into your db through an ORM layer.   When the user starts up the app again , send out their settings object and go from there.
Sincerely ,
  Ubu

Similar Messages

  • Need help for user exit mereq001

    Hi,
    I need help for user exit mereq001. I think I messed up with include table CI_EBANDB and CI_EBANMEM. And When I tried to check the syntax . It gives me error like : <b>Class IF_PURCHASE_REQUISITION. Inconsistency in the dictionary for the structure mereq_item_s_cust_data.</b> Anyone had experience for this exit? I just need to extract costcenter information of the each item from the requisition and block the requisiton if the costcenter are differents from each other before the requisition is saved. Any one has idea about it?
    Thanks.

    biao,
    Have you checked this struture consistency from SE11. Also check the activation log.
    If there are any errors and you are not able to rectify the same use RSDDCHECK program, give your table name and run the report.
    This will list down the error structures releated this table and also prompts for you to activate it.
    Regds
    Manohar

  • Need Help, put together information, summary to print

    Hello,
    I need help.
    I want to make a e-learning for school children of the 5th class.
    I have a lot of excersises like a fill-in-text or drag and drop and so on. Now my question is, can I put the information the children puts in together like a summary at the end of the lesson, so the children can print it like a worksheet at the end?

    Happy to provide more detail, but on what, exactly?
    Do you need more detail on how to create the PDF? If so, that's a bit beyond the scope of what we usually do here in the Captivate forums. There are many different ways to create a PDF.
    As for linking the PDF, I already advised. But you may need more detail here. When you insert a Click Box or a Button object in Captivate, you assign an action that occurs when the user clicks the object. The assignment occurs in the properties panel on the right. The typical action is "Go to next slide", but it's a drop-down you may change. I suggested changing it to assign "Open URL or File". Once you do that, you will see a field where you may type the URL or the file name.
    Cheers... Rick

  • Need help identifying controller information in hyperdraw

    Hello,
    Sorry if this is a dumb questions, but I'm in the middle of a project and need help ASAP. In one of my tracks (Real Guitar) there is some form of controller information present at the start of the track and I have no clue what it is! Is there a preference/key command that shows all data in hyperdraw, and then lets you select it (similar to the way the matrix editor works if you double click in the background, and then click on a specific note?)
    Thanks in advance for any help you can provide!

    Jonathan,
    I use the method that Jim suggested. I have the "H" key programmed for autodefine. (I've also got another two keys programmed to simply turn hyperdraw on and off for the selected region(s)). Autodefine is very cool. If there are, say, 4 different controllers in the track, hitting H the first time will show you the lowest-numbered controller; hit it again and it shows you the next higher number controller, and so on. The controller number is displayed in the lower LH area of the hyperdraw display for each region.
    If a track contains controller information for multiple channels, you'll see two numeric values in the lower LH corner -- the controller number and MIDI channel for that controller, separated by a comma.

  • Need help saving a rendered video in Premiere Elements 13...

    I have a rendered video that I am ready to save to my computer.  The last Premiere Elements program I had was 1.0 lol.  In 1.0, I would select to export the video as .avi and use that to burn to a dvd.  In Premiere Elements 13, "export" is grayed out.  What it looks like I need to do now is Publish the rendered video, but I don't know what to select to save it to my computer for future burning to a Blue Ray Disc.  I plan on using Nero to burn the video to BD.  Any help would be appreciated. 

    AndyD74
    File Menu/Export/Movie is last seen in Premiere Elements 7. Now File Menu/Export/Title remains.
    Your export opportunities for Premiere Elements 13/13.1 are in the Publish+Share area of the program. Have you updated 13 to 13.1 yet using an opened project's Help Menu/Updates? If not, consider doing so.
    What are the properties of your source media on the Timeline that is destined for Nero for your burn to Blu-ray disc format on Blu-ray disc?
    Have you considered taking your Timeline directly to Blu-ray disc format on Blu-ray disc in Premiere Elements 13/13.1 using Publish+Share/Disc/Blu-ray?
    Depending on your reply to the above, you could explore for your file....
    Publish+Share
    Computer
    AVCHD
    with Presets = MP4 - H.264 1920 x 1080p___
    Publish+Share
    Computer
    AVCHD
    with Presets = M2T - H.264 1920 x 1080i or p____
    Please review and consider, and supply more information so that we can fine tune the reply.
    Thank you.
    ATR

  • Need help saving image to SQL as BLOB, then sending as email attachment

    Hi folks,
    These forums have gotten me most of the way through this particular project, but I'm finally stumped...
    First, I'll describe exactly what I'm trying to do: the user chooses an image file client side and the server-side code then converts it to binary data and saves it to SQL. Then as a separate step, an email will be sent out with that image file loaded from the DB as an attachment.
    So I've actually got most of this working. I'm using the O'Reilly MultipartParser class to pull the file input stream from the Request and insert it into SQL BLOB column ("image" datatype). I can successfully send Text attachments by simply converting the binary data back to a string and then using a subclass of DataSource (ByteArrayDataSource) to feed it to the mail object.
    After getting the text documents to work, I then moved on to trying to send images.
    I tried to send images using essentially the same technique as sending text. The image file gets saved to SQL the same way and I then convert the binary data back to a string an attach it. The only difference is that I set the content-type to "image/gif".
    I didn't really expect this to work, however, I am able to "Preview" very simple Gifs (in XP) that I've attached. I cannot "Open" them, though, and I cannot even "Preview" more complicated Gifs.
    So on to my real questions. I didn't really expect that you could simply output binary image data into Text format and simply slap on a ".gif" and expect it to work. Am I right about that? XP's "preview" option seems to read it okay, but I really need to be able to "open" these files.
    So basically I need to know what to DO with that binary data in SQL in order to successfully attach it as a true image file. Is this an encoding issue? MIME type?
    I didn't want to paste all the code but I'll paste the snippet that deals with the attachment section. If you'd like to see any other parts, please just let me know...
    MyBlobObject v_blob = new MyBlobObject(m_cp);  // the getBlobStr() method of this object simply grabs the data from SQL as a String
    DataSource source = new ByteArrayDataSource(v_blob.getBlobStr(),"application/octet-stream");
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setHeader("content-type","image/gif");
    messageBodyPart.setFileName(v_fileName);
    ...Another interesting thing I'm seeing is that when I view the small Gif as text, I see this:
    GIF89a � !� , D ;
    While the file I'm getting from SQL as an attachment looks like this:
    GIF89a ? !? , D ;
    Obviously, the question marks are unknown, but I'm not quite sure why. I outputted the char values as integers and found that the first question mark is 65408 and the second one's value is 65529. Obviously something is getting changed somewhere in the process, but I'm not quite sure how and where.
    anyway, thanks in advance for any advice!

    Nevermind! Of course, I figured it all out after writing that long post.
    I had tried using a byte array instead of the String in the ByteArrayDataSource and it hadn't worked. However once I cleaned up the code a bit I got it working.
    This links has it all...
    http://www.magelang.com/faq/view.jsp?EID=498439
    thanks anyway!

  • Need help saving video.

    I have used imovie in the past before updating to the new mavericks.  I believe I had an older version of imovie as well. I used to use imovie for editing the lighting of the video and then saving it on my desktop where then I would just email it to myself and download it from my phone. Now I don't know how to just export the video to my download folder while keeping the compatiblity to where it plays on ipods and iphones. Any help? I can keep the compatibily if I share using itunes but I'm not wanting that. I want to save it to my downloads folder first then email it.

    AndyD74
    File Menu/Export/Movie is last seen in Premiere Elements 7. Now File Menu/Export/Title remains.
    Your export opportunities for Premiere Elements 13/13.1 are in the Publish+Share area of the program. Have you updated 13 to 13.1 yet using an opened project's Help Menu/Updates? If not, consider doing so.
    What are the properties of your source media on the Timeline that is destined for Nero for your burn to Blu-ray disc format on Blu-ray disc?
    Have you considered taking your Timeline directly to Blu-ray disc format on Blu-ray disc in Premiere Elements 13/13.1 using Publish+Share/Disc/Blu-ray?
    Depending on your reply to the above, you could explore for your file....
    Publish+Share
    Computer
    AVCHD
    with Presets = MP4 - H.264 1920 x 1080p___
    Publish+Share
    Computer
    AVCHD
    with Presets = M2T - H.264 1920 x 1080i or p____
    Please review and consider, and supply more information so that we can fine tune the reply.
    Thank you.
    ATR

  • Noob Need Help on User Priviledge issue

    Hi, I am using 9i, I am using user DMD, created 2 new tables in addtion to 18 existing tables in DMD schema, I am able to edit/vew contents using Oracle Enterprise Manager on all tables of DMD schema as user DMD. I created a new user using Oracle Enterprise Manager, with connect, dba, resource, select catalog, executive catalog, and when I right click on two new tables and select view/edit contents, It says "table doesn't exisit". The new user is able to view/edit content of old 18 tables. Then, I logged in as DMD, grant the new user select insert update priviledges. Now my new user can select, insert, update. But in Oracle Enterprise Manager, I still get Table or View doesn't exist. What do I need to do? Can somebody help me?

    I have no immediate access to a 9i database to test this, but it works on 10g.
    Could you grant SELECT ANY DICTIONARY to newuser; Then try again.

  • Need help saving battery

    Hi, I'm using i phone 4 and recently after updating the software 6.1.3, my battery is draining fast. It is almost 20% in one hour. I've tried all the suggestion, clearing the calendars, clearing the mail account. None seems to be useful. Please help....

    Morning victorian1234,
    For more information on this, take a look at this article:
    http://www.apple.com/batteries/iphone.html
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Battery life seems short
    Click ( www.apple.com/batteries/iphone.html) for tips on how to prolong iPhone's battery life.
    Try turning iPhone off and then on again.
    Connect iPhone to iTunes and restore iPhone.
    If the screen shows a low-battery image, the battery is low on power and needs to charge for up to ten minutes before you can use it.
    Hope this helps,
    Mario

  • Needed Help: SAP User cannot Post in any of the transactions

    Hi Experts,
    I have a problem on our QAS system, I have tried to post a lot of documents in transaction MIGO, in creating RFQ through ME41, in Posting Accounting Document in FB50. But all of them failed with the Express Document appearing at the end of the "Document Number Created" message.
    Express Documents range from:
    I. "MESSAGE_TYPE_X" when creating RFQ of One Time Vendors:
    +Short text of error message:
    Database error changing table ADRC
    Long text of error message:
    Technical information about the message:
    Message class....... "AM"
    Number.............. 842
    Variable 1.......... "ADRC"
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    Information on where terminated
    Termination occurred in the ABAP program "SAPLSZA0" - in "ADDR_SAVE_INTERN".
    The main program was "RSM13000 ".
    In the source code you have the termination point in line 553
    of the (Include) program "LSZA0U47".
    The program "SAPLSZA0" was started in the update system.+
    II. SAPSQL_ARRAY_INSERT_DUPREC, Post Goods Receipt in MIGO
    +An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
    in
    procedure "INSERT_TABLES" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    If you use an ABAP/4 Open SQL array insert to insert a record in
    the database and that record already exists with the same key,
    this results in a termination.
    (With an ABAP/4 Open SQL single record insert in the same error
    situation, processing does not terminate, but SY-SUBRC is set to 4.)+
    III. SAPSQL_ARRAY_INSERT_DUPREC, Posting through FB50
    +An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
    in procedure "INSERT_TABLES" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    If you use an ABAP/4 Open SQL array insert to insert a record in
    the database and that record already exists with the same key,
    this results in a termination.
    (With an ABAP/4 Open SQL single record insert in the same error
    situation, processing does not terminate, but SY-SUBRC is set to 4.)+
    Please provide direct solution for the system problem. And please tell me also what are the usual causes of these problems (Configuration-wise or ABAP)

    Hi Experts,
    I already investigated this in the system and this issue still occurs I already changed the current number in transaction code OMBT, still error occurs in Posting any Account Documents. When I change the current number manually, then post a document in MIGO, the document number will be displayed in the status bar. But once you tried any function/push any button, an express document will be displayed with the error DUPREC.
    I checked in OMBT the current number range and it's incrementing to 10 example if last current doc number is 5000000510, the new current doc number will be 5000000520.
    Do we have any confoguration that will correct this increment on the number range interval for Accounting Documents? Curerntly only Accounting Documents cannot post, other than these documents like Sales Order, PO, PR, etc. they can be created.
    There are no changes in the user exits affecting the transaction as it was running smoothly last month.
    Please help. Thanks a lot!

  • Need help with user defined function

    Hello SDN,
    I need some help with a user-defined function. My source message contains multiple
    generic records (1000 char string), and my target message is 1 header record,
    then multiple generic records.  See description of source and target messages below:
    Source:
      GenericRecordTable 1..unbounded
        Row (1000 char string)
    Target:
      Field1 (char5)
      Field2 (char5)
      Field3 (char5)
      IT_Data
        GenericRecordTable 1..unbounded
          Row (1000 char string)
    Basically, what I need to do in my user defined funtion is to map the first record
    in my source record to the 3 header fields, then map all of the rest of the records
    (starting from line 2) into the GenericRecordTable.
    Can someone please help me with the code for the user defined function(s) for this
    mapping?
    Thank you.

    hi,
    Activities
    1. To create a new user-defined function, in the data-flow editor, choose Create New Function (This
    graphic is explained in the accompanying text), which is located on the lower left-hand side of the
    screen. In the menu, choose Simple Function or Advanced Function.
    2. In the window that appears, specify the attributes of the new function:
    Name
    Technical name of the function. The name is displayed in the function chooser and on the data-flow
    object.
    Description
    Description of how the function is used.
    Cache
    Function type (see above)
    Argument Count
    In this table, you specify the number of input values the function can process, and name them. All
    functions are of type String.
    3. In the window that appears, you can create Java source code:
    a. You can import Java packages to your methods from the Imports input field, by specifying them
    separated by a comma or semi-colon:
    You do not need to import the packages java.lang., java.util., java.io., and java.lang.reflect. since
    all message mappings require these packages and therefore import them. You should be able to
    access standard JDK and J2EE packages of the SAP Web Application Server by simply specifying the
    package under Import. In other words, you do not have to import it as an archive into the Integration
    Repository. You can also access classes of the SAP XML Toolkit, the SAP Java Connector, and the
    SAP Logging Service (see also: Runtime Environment (Java-Mappings)).
    In addition to the standard packages, you can also specify Java packages that you have imported as
    archives and that are located in the same, or in an underlying software component version as the
    message mapping.
    b. Create your Java source text in the editor window or copy source text from another editor.
    4. Confirm with Save and Close.
    5. User-defined functions are limited to the message mapping in which you created the function. To
    save the new function, save the message mapping.
    6. To test the function, use the test environment.
    The new function is now visible in the User-Defined function category. When you select this category,
    a corresponding button is displayed in the function chooser pushbutton bar. To edit, delete, or add the
    function to the data-flow editor, choose the arrow next to the button and select from the list box
    displayed.
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/718e40496f6f1de10000000a1550b0/content.htm
    http://java.sun.com/j2se/1.5.0/docs/api/
    /people/krishna.moorthyp/blog/2006/07/29/documentation-html-editor-in-xi
    /people/sap.user72/blog/2006/02/06/xi-mapping-tool-exports
    http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/content.htm
    UDF -
    http://help.sap.com/saphelp_nw04/helpdata/en/22/e127f28b572243b4324879c6bf05a0/content.htm
    Regards

  • Need help in getting information/training material for SAP CRM (Functional)

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya
    <<Moderator Message: Sorry, can't do. Search!>>
    Message was edited by: kishan P

    Hi Chaitanya,
    Since You are already a SD Consultant, We assume you are very much familliar with SAP and for you CRM will also be not a big Deal.
    Customer Relationships Management (CRM) is a model for managing any Organization's interaction with current and future customers. It involves technology to organize, automate and synchronize SALES, SERVICES(postsales) AND MARKETING(presales).
    First of all you need to get SAP CRM installed in your system and then you need to get command over Account and Contact Management (Business Partner). The same can be learned using WebUI or GUI. From GUI the transaction launcher is WUI then web page opens up enter your credentials and select Role - Salespro. Open the Account and Contact section and do some R&D and you can learn. But in GUI you need to go to SPRO -> IMG -> Cross Application Components -> SAP Business Partner -> Business Partner -> Basic Settings -> Number Ranges & Groupings -> Define Number Ranges. Here you have defined number range then you need to assign to some group created from SPRO same way. And Finally maintain Business Partner using Tcode - BP.
    Then You Learn Organizational Management which allows us to map our marketing, sales, service structure maintaining company's structure including the position and Employees in an Application and assign specific attributes to the otganizational units.
    Path: SPRO -> IMG -> CRM -> Master Data -> Organizational Management -> Organizational Model -> Create Org Model/Change org model.
    Just Go ahead and with some more R&D in the system and taking of F1 Help of SAP Documentation I think you can easily learn SAP CRM.
    Regards,
    Piyush

  • Need Help to extract information from Windows Security Event log

    Hi Everyone,
    My challenge is to create a script that queries the Security event log for event id 4624 , logon type 2 and 10, then export the result to file, hopefully tab limited.
    I need the time - date - User Account - Workstation - IP address - Logon Type.
    I have had a go, checking out other advice from other questions, but i'm just not getting what I want.
    Kind regards,
    Andrew

    A good point to start is get-eventlog with where clauses.
    For example:
    get-eventlog -log security  | where {$_.eventID -eq 4624}
    So you want to get the entire security log, and then filter it client side? (Some of these logs can be massive).
    I would recommend Get-WinEvent with -FilterHashTable (Filter on the left) which will filter against the log directly.
    http://blogs.technet.com/b/heyscriptingguy/archive/2011/01/24/use-powershell-cmdlet-to-filter-event-log-for-easy-parsing.aspx
    You might have admin rights issues accessing the security logs.
    You're right - my answer was only a first step to try "get-command *event" and eventually get-help.....

  • Need help to crypt information in database

    Hi,
    I need to crypt different data before inserting them in the database and, of course, to be able to retrieve and uncrypt them.
    I don't know how to do it and even how to start.
    I found different help about crypting passwords and testing the crypted password but nothing about crypting long or string values, strore them and uncrypt them.
    please, help.

    http://java.sun.com/j2se/1.4.2/docs/api/javax/crypto/package-summary.html
    http://java.sun.com/j2se/1.4.2/docs/api/javax/crypto/interfaces/package-summary.html
    http://java.sun.com/j2se/1.4.2/docs/api/javax/crypto/spec/package-summary.html
    Read especially the dcumentation for the javax.crypto package (see the first link), it refers to yet more information.

  • Need help saving iPhoto library from damaged hard drive

    Trying to help my wife, she has the following:
    MacBook Pro running OS X Lion version 10.7.3
    iPhoto 11 version 9.2.2
    Her hard drive failed last week and she had a ton of photos on it, of course not backed up.
    We took her machine to the local Apple Store, they confirmed they couldn't recover the data and they installed a new hard drive in the MacBook.  We took the old hard drive to my local PC supplier who's very clever, he worked on the hard drive and was able to copy all my wife's documents to another storage device.....but, he couldn't copy the iPhoto library and is requesting some help.....he doesn't know much about Macs, nor how iPhoto works.
    I've read a lot of the posts on this forum and am learning about how the iPhoto library works....and how it requires a Mac based back up hard drive in order to copy it.  Okay, here are my questions:
    1.  My PC troubleshooting guy can see the iPhoto library icon on the damaged hard drive, he says its a huge file.  It appears we would need to supply him with a Mac formated back up hard drive, then he could just move that iPhoto library icon (which contains all photos) to the new back up drive.  Is this correct?
    2.  Once we have this old iPhoto library on the new back up hard drive, we could bring it home of course, but then I need to get it into the new hard drive on my wife's MacBook Pro.  I'm assuming I can plug this back up drive into my wife's machine, then import the old library into her machine.  How do I do this properly?
    3.  If I bring the old library into the new MacBook Pro hard drive, will it erase the existing iPhoto library on her new hard MacBook Pro hard drive, or will it combine them somehow?  She has added of course some pics to the new iPhoto library already, but if we have to delete them it won't kill us.  The old stuff that got recovered from the damaged drive is more important.
    Thanks ahead.....now to the experts?

    Thanks Terence.....
    regarding this point:
    3. use the paid version ($20) of  iPhoto Library Manager to merge the Libraries. that way you won't lose anything.
    I have another access to her new photos, whereby I could reload them onto her MacBook if we lose the new library.....so I'll save the $20 and just reload them.....two more questions:
    1.  So, if I drag the iPhoto library folder from the new back up hard drive to the Pictures Folder in Finder, will that overwrite the existing library folder on her MacBook?
    2.  After I drag this folder into finder, will iPhoto recognize everything?  I assume yes....just checking.
    thanks ahead!

Maybe you are looking for

  • What index types do you suggest when you have...

    If you have tables A, B, C and they are all partitioned range by created_date where that is a timestamp If nearly all queries can only specify created_date on C only because the B's that belong to A and the C's that belong to B can all be in differen

  • Macbook display problem

    I have MacBook (white) from early 2011. Few days ago the display started to show streaks of colors that are quite unnatural. When tried to use the color correction from the display menu it makes it even worse. There is a bluish and pinkish tinge to t

  • Can Trash be too big to empty in iMovie 4?

    I have an iMovie 4 project, consisting of 8 .dv clips, for a slideshow with narration & music. My Trash shows 87 MB. When I go to empty the Trash, the window says over 3 GB must be moved, etc. I click on the OK, but iM4 quits "unexpectedly." I've alr

  • Can't tell what's in TOC in RH7

    In RH5, when you viewed the topic list, the icon for any file that was in the TOC was colored blue. In RH7, they're not colored blue. Is there a way to enable this as an option? We really depend upon this feature and need it back!! Thanks.

  • Opening a new form using a different connect string

    Hi All I have the following requirement. I want to open an new form (when button pressed) using a different connect string. I am planning to use open form so that the new form has its own session. But I donot want the new form to connect to the same