LSO Personalize search using settings - where are settings saved?

Hi,
One of our users have lost his settings link that you can see after having done a course search in LSO. I think he lost it because he ticked "Include Settings in Search" in the settings / personalization dialog.
I now need to find the backend table where theese settings are stored for the individual user but I'm having some trouble locating it. Can anyone help?
Br Jan

I found the table myself - it is called lsotptadds_c
Unfortunately it has no maintenance view

Similar Messages

  • PDF Optimizer Settings: Where Are They Saved?

    PDF Optimizer Settings: Where Are They Saved?
    That is, the ones that you create and then Save.
    Also the default one which came along Acrobat Pro (i.e. Standard etc)
    Thanks

    They are stored in the Acrobat User Preferences Area.  The same location is used for Pro, Standard, and Reader.  But the exact location is OS dependant.
    Open up the JavaScript Console window and run this line of code. (instructions at the links below)
    app.getPath("user","preferences");
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • Fx Printer Settings - where are settings stored in Fx?

    Hello
    I like to print a web page when using FX (I always want print selection only + ignore scaling, so the words dont cut off).
    Where are these settings saved in Fx?
    (I would like to know for migration purpose)
    thankyou

    Firefox saves 'print' settings as print.* prefs in the prefs.js file in the Firefox profile folder.
    You can inspect and possibly modify prefs on the <b>about:config</b> page.
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile

  • Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.

    Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can;t see a symbol for address book.

    Where are addresses kept on MAIL?  I don;t like the new format at all. Frances
    Begin forwarded message:
    From: Frances Topping <[email protected]>
    Subject: Re: - Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.
    Date: August 25, 2014 at 9:46:01 AM EDT
    To: discussions-replies <[email protected]>
    Old Entourage is POP and new Mavericks MAIL  is IMAP I believe. I don;t know how to export in the forms you mention. Frances

  • TS2755 i have no messages in my phone but my storage is 90% full and in my usage it says i have 12MG in messages (saved) but i dont have any messages in my phone - where are they saved ? how can i delete them? please help

    i have no messages in my phone but my storage is 90% full and in my usage it says i have 12MG in messages (saved) but i dont have any messages in my phone - where are they saved ? how can i delete them? please help

        pamalushka54,
    We want to make sure that we get your phone up and running. Can you look to see where you have the most stuff stored at. Settings>General>Usage>Storage.
    This will tell you what exactly is using everything. Then you can delete things from there.
    RobinD_VZWSupport
    Follow us on twitter @VZWSupport

  • Where are contacts saved?

    Hi there,
    This started off as a loss of all contacts from the address book, which has now turned into a curiosity of where exactly do the contacts get saved?
    I have removed the folder ~/Library/Applications Support/Address Book/
    I have actually deleted this folder, logged out, logged back in again and found the address book restored with all contacts. From doing searches on the net everything points to this folder being the place where contacts are saved but obviously it is not. I have no sync service operating nor changed any defaults as this has all been done with a clean account.
    So, where are contacts saved to?

    It is probably being restored from the copy kept in SyncServices (in your Library/Application Support folder). Look in Local folder, and in the various folders there look at ClientName.txt. You will likely find that one of them is com.apple.AddressBook. Beyond that, I do not know the organisation of the various files within the Local folder, except that there is enough data there to restore a missing set of contacts.
    AK

  • Where are renditions saved?

    Hi!
    Where are renditions saved?
    Do we create completely new folios (and all the articles in each folio) or are the different renditions of a folio and all the articles in them saved in the save folder?
    Thanks!
    CJ

    But only for the DPS Professional or Enterprise level customers, according to Andrew.
    Is that correct?
    If this is the case, then, the rest of us will have to know ahead of time what device a client is using and share (via the Folio Producer: Organizer or via the Folio Panel in InDesign) the specific "rendition" with the client.
    Even, if a client wants to access the same folio on various devices, they will need, then, to make sure and download the right rendition invitation on the right device.
    This is complicated. Hope it doesn't last too long…
    Thanks!
    CJ

  • Where are auto saved excel filed stored on a MacBook Pro?

    Where are auto saved excel filed stored on a MacBook Pro?

    Go to http://support.apple.com/kb/HT4946
    and check:
    Where iTunes backups are stored on your computer

  • Where are settings saved for WCF Service Applications?

    Default Settings for a WCF Service Application are stored in the web.config file and are Read Only because only Application settings are allowed i.e. you cannot change the Scope from "Application" to "User" in the settings designer like
    with other components.  So, in order to save changes to settings the WCF Service Application will need to create a setting property at runtime like this:
    System.Configuration.SettingsProperty newProperty;
    newProperty = new System.Configuration.SettingsProperty("NewSetting");
    newProperty.IsReadOnly = false;
    newProperty.DefaultValue = "New Setting";
    Properties.Settings.Default.Properties.Add(newProperty);
    Properties.Settings.Default.Save();
    OK...this works, but I've looked everywhere and I can't find where the new setting property is being saved.  I have already looked in the C:\Users\[username]\AppData\[Local or Roaming]\[Company Name]\[AppName...etc.]\[version]\user.config and although
    a user.config file was created it does not contain the new property.  Anyone have a clue?
    Actually, this doesn't work...the settings are not saved to the file system.  I located some other posts and modified my code as follows, but the settings are still not saved to the file system.
    System.Configuration.SettingsProperty newProperty;
    newProperty = new System.Configuration.SettingsProperty("NewSetting");
    newProperty.Provider = Properties.Settings.Default.Providers["LocalFileSettingsProvider"];
    newProperty.Attributes.Add(typeof(System.Configuration.UserScopedSettingAttribute), new System.Configuration.UserScopedSettingAttribute());
    newProperty.PropertyType = typeof(string);
    newProperty.IsReadOnly = false;
    newProperty.DefaultValue = "New Setting";
    try
    Properties.Settings.Default.Properties.Add(newProperty);
    catch
    //Just ignore it for now.
    Properties.Settings.Default.Save();
    The new setting appears to be saved only in memory.  If I close Visual Studio then the setting is lost.  Also, I deleted the C:\Users\[username]\AppData\[Local or Roaming]\[Company Name]\[AppName...etc.]\[version]\user.config files and the file
    is no longer being created.
    Looks like I will need to explicitly load/save a text file or use the registry to persist changes to settings.

    Hello Steven,
    >>The new setting appears to be saved only in memory. 
    It seems that the Save() method only saves these runtime added in memory, I suggest you could check the Save method source code since now the .NET is source opened:http://referencesource.microsoft.com/#System/sys/system/configuration/ApplicationSettingsBase.cs,9664b0111a35af52
    >>Looks like I will need to explicitly load/save a text file or use the registry to persist changes to settings.
    Someone provides an implementation about this approach, you could check it:
    http://stackoverflow.com/a/1075318
    Or you could set it in a register entry:
    http://stackoverflow.com/a/26518724
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Save for web and devices preferences settings - where are they?

    where are the preferences for "save for web and devices" to be found? I am using CS4, PC Windows Professional XP

    The actual save for web preferences file for photoshop cs4 should be in
    C:\Documents and Settings\user name\Application Data\Adobe\Save for Web\11.0
    You should also in photoshop cs4 be able to reset the save for web preferences by holding down the Alt+Ctrl keys while selecting Save for Web & Devices from the File menu in photoshop cs4.

  • Where are settings stored (foldeer/ini file/Registry)? Backup settings poss

    Where are the settings of SQL Developer stored?
    Is this a folder, an *.ini file or the Registry?
    If it is a folder: Can I change the location of the folder?
    If yes: Where exactly?
    How can I otherwise export/save settings otherwise?
    Peter

    In your home directory will be created a path like ...\SQL Developer\system1.5.4.59.40
    There SQL developer stores the local data.
    You can change this path (here ...my_options/system) with th following line in the sqldeveloper.conf, located in path ...\sqldeveloper\sqldeveloper\bin:
    # This is to enforce storing of configuration information in the "/my_options/system"
    # subfolder I have created in the SQL-Developer installation directory (instead
    # of in the "C:\Documents and Settings\<user>\Application Data\SQL Developer"),
    # so that SQL-Developer installation directory can be just copied to another
    # location (e.g. a stick) and along with the configuration information.
    AddVMOption -Dide.user.dir=../../my_options/system
    Thanks to Juri W. for this solution!
    Before changing the path you should save your connection and custom report - settings via right click -> export in the connection and custom report view, I had to reimport these settings after movimg my directory.
    Gerhard

  • Where are settings and POV saved?

    In version 7, Essbase options where saved as named constants in excel. Does anybody know where they are saved with SmartView? I am curious where the options are saved, but also the POV. If a workSHEET is copied, the POV doesn't go with it. If a wordBOOK is copied, they do. That leads me to believe that they are still saved in the excel file (workBOOK), but not inside the workSHEET.
    Thanks in advance!

    You can copy the POV from a previous sheet by using the "Import Metadata" option.
    -Copy a sheet that has your POV already to a new sheet in the workbook.
    -Select Hyperion->Import Metadata->Select your book and sheet with the POV you want to copy
    -Refresh and the POV should come over
    This works for sheets within a single workbook, I don't believe this works between multiple workbooks.
    DQ

  • Recently Used Fonts: Where are they?

    Acclaimed feature of Illustrator CC... but I can't find it.  Where are they hiding?
    And how do I make this font preview box longer?

    What an awful way to do that...and then it shows fonts the program recently used and not the document you have open?
    Corel has it right when it comes to type (but not much else...)... select a type group and when you look through the font list a flyout with a sample comes up... is there a way to do this in Illustrator? because as of right now Illustrators font list setup is just awful...

  • Using Apps - Where are they all? Customize main screen?

    Ok so I got the 2.0 update and everything just finish installing/restoring/backing-up and all is working perfectly fine.
    My question concerns actual usage of new Apps. On my Touch's main screen only the first 3 apps I had downloaded are showing up after syncing. Where are my other applications? Also, is it possible to say, get rid of the Stocks button if I wanted to? I don't use some of the functions it comes with and I'd rather keep some other apps handy on the main screen.
    Thanks in advance!
    EDIT: Its not actually just the first 3 apps showing.. Its just 3 random ones out of the 12 I had downloaded from iTunes.
    Message was edited by: bellatina

    Press one of the icons until they all 'wiggle' and you can then drag icons to wherever you want, including to the second page.
    If there is more than one page of icons you will see a row of dots at the bottom of the screen and the highlighted one is the page of icons you are on. That function was always there.

  • What dll do I use and where are the .h include files?

    I recently downloaded the wavetek 271 drivers and have found that when imported (Lab View 6.0) that they need to be linked to a dll. But which one? And the includes call for the glib.h and other libraries where are they at. Are they compressed?
    thanks

    Hello-
    There are two versions of this driver one for LabVIEW (NI's graphical language) and one for LabWindows-CVI (NI's text-based language). Be sure to download the proper type of driver.
    In LabVIEW, the driver should be placed in LabVIEW\instr.lib.
    In LabWindows-CVI, it's necessary to Load the driver from the Instrument>>Load... menu. The files should be placed in cvi\instr.
    Randy Solomonson
    Applications Engineer
    National Instruments

Maybe you are looking for

  • UIGetScreenImage in an *.mm file

    Hello. I have gotten the UIGetScreenImage API to work just fine as long as it's in a .h/.m file. The code I'm writing requires objective-c++. Easy enough... change the *.m file to *.mm file and go. Nope, there is a problem afterall. Once the name is

  • WCS Image Path In Server

    Hi all I have a wcs installed with Every thing functioning properly.I am trying to see the path on which the floor plan get stored in the server. I would like to know that "is it possible to take the floorplan from the server" or "where is the image

  • Increasing font size when resizing JFrame

    Hello, I am writing a calculator program, and therefore have a JLabel to display the numbers and multiple buttons. The JLabel and JButton components are added to a panel with a GridBagLayout, which is then added to the content pane of a JFrame. When

  • Process svchost consuming high cpu 99 %

    Hi, We have installed iis 6 in windows server 2003 and the process 832 svchost consuming the high cpu and causing the slow response of the applications, hence please advise the possible work around for the same  please find below the dump analysis  A

  • Command to see backup item of OSB  tape library disk

    Dear Friends , Using OSB enterprise manager , I take oracle dump backup into tape library . Now it is very difficult for me to see the backup contents of the library using OEM . I want to know , is there any command available on OSB (like ls ..)  to