ALV Settings (e.g. SORT): How can I reload a view that contains settings

Hi,
I have saved ALV Settings in a view. After I read out the (editable) ALV, I goto backend and then update ALV by BIND_TABLE. After this ALV update, my ALV settings are lost. Therefore I am looking for a possiblity to reload / restore the ALV settings during runtime that I have saved while using the ALV. Hence, I am looking for something like GET_CURRENT_SETTINGS and SET_CURRENT_SETTINGS.
Does anyone know?
Many thanks

Hi,
I am not shure whether there is a misunderstanding. I try to explain again:
- I use edatable ALV
- I run my WD Application and use my ALV
- I use the Settings Link of ALV and define some SORT rules for the ALV
- I SAVE this rules under a view name (this view is like a variant, but this view is
not an WD view in SE80 !)
- After I call backend, this ALV rules (like SORT) are lost because we are refeshing th ALV
=> How can I store the ALV settings and restore it?
If I save & restore this ALV settings to the context, I would like to know with which methods I can read out these ALV settings.

Similar Messages

  • How can I reload previous purchases that are lost of iPod

    How can I reload itunes purchases that are lost of both my ipod and my computer?

    Use the form on this page to request a free redownload, or use the Transfer Purchases feature if applicable. If neither of these works, you will need to purchase the content again to get them back; Apple needs to pay the copyright holders for each download from the iTunes Store other than podcasts, album artwork, and iPod touch/iPhone applications.
    (38729)

  • How can I list all folders that contain files with a specific file extension? I want a list that shows the parent folders of all files with a .nef extension.

    not the total path to the folder containing the files but rather just a parent folder one level up of the files.
    So file.nef that's in folder 1 that's in folder 2 that's in folder 3... I just want to list folder 1, not 2 or 3 (unless they contain files themselves in their level)

    find $HOME -iname '*.nef' 2>/dev/null | awk -F '/'   'seen[$(NF-1)]++ == 0 { print $(NF-1) }'
    This will print just one occurrence of directory
    The 'find' command files ALL *.nef files under your home directory (aka Folder)
    The 2>/dev/null throws away any error messages from things like "permissions denied" on a protected file or directory
    The 'awk' command extracts the parent directory and keeps track of whether it has displayed that directory before
    -F '/' tells awk to split fields using the / character
    NF is an awk variable that contains the number of fields in the current record
    NF-1 specifies the parent directory field, as in the last field is the file name and minus one if the parent directory
    $(NF-1) extracts the parent directory
    seen[] is a context addressable array variable (I choose the name 'seen'). That means I can use text strings as lookup keys.  The array is dynamic, so the first time I reference an element, if it doesn't exist, it is created with a nul value.
    seen[$(NF-1)] accesses the array element associated with the parent directory.
    seen[$(NF-1)]++ The ++ increments the element stored in the array associated with the parent directory key AFTER the value has been fetched for processing.  That is to say the original value is preserved (short term) and the value in the array is incremented by 1 for the next time it is accessed.
    the == 0 compares the fetched value (which occurred before it was incremented) against 0.  The first time a unique parent directory is used to access the array, a new element will be created and its value will be returned as 0 for the seen[$(NF-1)] == 0 comparison.
    On the first usage of a unique parent directory the comparison will be TRUE, so the { print $(NF-1) } action will be performed.
    After the first use of a unique parent directory name, the seen[$(NF-1)] access will return a value greater than 0, so the comparison will be FALSE and thus the { print $(NF-1)] } action will NOT be performed.
    Thus we get just one unique parent directory name no matter how many *.nef files are found.  Of course you get only one unique name, even if there are several same named sub-directories but in different paths
    You could put this into an Automator workflow using the "Run Shell Script" actions.

  • How can I make one slide that contains multiple slides?

    Hi, I want to make slideshow for presentation. And I want to know how can I make this slide.
    For example in this picture, have 1 main slide and 6 sub slides. I want to make slide like this, and all slides should be in one slide. And I want to zoom in to sub slide when I click and then zoom out when I click one more. And then second slide should be zoom in when I click and zoom out when I click again. And then slide 3 etc.
    I want to know how can I do this.

    There are two ways to do this.
    1. Duplicate the main or first slide numerous times - as many as you'll need for the show, which looks like 6 including the first "overview slide".
    2. You know have two choices - either use the Magic Move transition between the first slide and the next, which has the main box centre screen and enlarged proportionally.
    3. Or enlarge the slides so that the main point is central, but use hyperlinks to move between the slides. This also gives you the liberty of changing the order spontaneously should the situation demand. Using the main first slide, place an invisible box around each element and use a link to move to that slide which is enlarged. Then you have to decide if you will come back each time to slide 1 (the overview) by having the whole slide hyperlinked to slide 1, or the whole slide linked to the next slide. That way you don't have to go looking for the hyperlink area.
    The Magic Move effect will give your presentation a "Prezi" like effect, while the hyperlinked version I've described will just use gentle dissolves between each slide.
    I will sometimes use 3 because I want to encourage audience participation and let them choose where to go next... e.g., the various elements of a 747 wing assembly, or the interior of a large cruise ship, showing state rooms, dining, pool area, ballroom, etc.
    Les

  • How can I reference the symbol that contains the code.

    I am trying to create a circle that is dynamically added to the stage.
    Iwant to add all of the programatic animations in the symbol's stage but I can't figure out how to reference teh symbol itself with something I use to do in AS3 using the keyword this
    For example:
    - I create a symbol called Light, with a png inside
    - I open it and place a series of code lines
    var myW = this.width(); // how to reference the symbol from itself?
    var myH = this.height();
    funciton init()
         this.getSymbolElement().css("left", Math.random() * 1024);
         this.getSymbolElement().css("top", Math.random() * 768);
         this.getSymbolElement().css("scale", 1); // how to reset the scale?
         TweenMax.to(this, 2 + Math.random()*4,{opacity:0, scale:4, delay:Math.random()*10, onComplete:init});
    init();
    So each time the TweenMax completes the action, the symbol changes its position and resets the scale (how to reset it is another question)
    After that I create the symbols with a for loop and scatter them over the stage randomly.
    A

    Thank Cindy it was dummy code typed here.
    This worked perfectly! So here is how I did my PARTICLE SYSTEM:
    var root = sym.getSymbolElement();
    root.css("position", "absolute");
    var myW = root.width();
    var myH = root.height();
    function init()
              var lightX = 40 + Math.random() * (1036 - 80);
              var lightY = 30 + Math.random() * 170;
              root.css("opacity", 1);
              root.css("transform","scale(0)").css("-moz-transform","scale(0)").css("-webkit-trans form","scale(0)");
              root.css("left", lightX);
              root.css("top", lightY);
              TweenMax.to(root, 0.5 + Math.random() * 1.5, {opacity:0, scale:3, delay:Math.random()*2, onComplete:init});
    init();

  • Kismac worked on 10.6 and not on 10.7, how can i reload the driver that works, the whole reason i have a Mac is for corporate network security testing?

    With the upgrade to Lion Kismac has stopped working. The application worked fine with Snow Leopard, is there a driver patch to correct this behavior or revert the driver to one that worked?
    Thank you

    "The very frst step in upgrading to a new major OS version is checking with the developers of all your essential software to make sure they've updated it for full compatibility with the new OS version. Did you do that?" by eww.
    Yes OS X was updated. Now you need to make sure you have a version of the software tha'll work with it. Check with the vendor, follow QuickTimeKirks' link.

  • How can I make a calendar that anyone can import

    Hi,
    I'm the director of an event that takes place over one week in October. I made a calendar in my iCal that showed all common public events. I exported it and saved the calendar as am ics file, but my friends, who all use windows, who tried it got strange results. Two got only one of the events on Google Calendar. One tried importing it into Outlook, and was told something about changeling from Gregorian to Lunar, so he just backed out.
    About a year ago I received a link to just such a calendar and it worked like a charm. So,
    1] how can I create a calendar that contains all the week's events and can be imported into other calendars.
    2] is there a way I can make it updatebale  (this is secondary.)
    I have mountain lion, and fwiw, when I imported it into my computer it worked fine, and  ended up with a duplicate of the originally exported calendar.
    Cheers,
    Michael

    Thanks Tony for Your quick answer,
    but this is not what i ment.
    I want something that looks like this:
    |M| T| W| T| F| S| S| M| T|W |T |F |S |S ||M |
    |1 | 2| 3 | 4| 5| 6| 7| 8| 9 |10|11|12|13|14|15....
    Tony|- |ill |ho| x|- | - |M| - | - |Me| - |ill |out|- | ...
    Bill |ho|- | |ho| x|- | - |M| - | - |Me| - |ill |out|- | ...
    John |- |ill |ho| x|- | - |M| - | - |Me| - |ill |out|- | ...
    Ok it is just a scetch, what i want to saz is, the Collums ar the dazs of the whole month and in the row, there are the names and the activity for the day.
    So this is a kind of overfiew for the "chef" what who is doing what in this month.
    Hope this explains mz problem better.
    Thanks

  • How can i transfer the one that i check in a alv in the table

    hi i just want to ask how can i transfer the one that i check in a alv in the table.
    here is the scenario.
    ive created a alv with a checkbox, and if i click on some of the checkbox in the alv.
    then i need it to display in a table as x.

    sel TYPE char1.
    wa_fieldcat-checkbox   = 'X'.
    wa_layout-box_fieldname     = 'SEL'.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            e_grid = ref_grid.
      IF NOT ref_grid IS INITIAL.
        CALL METHOD ref_grid->check_changed_data.
      ENDIF.
    Here u get data changed into an internal table u created with SEL as a field and SEL filled with X if line selected.
    U can modify the table u want from this internal table.
    Awrd Points if Useful
    Bhupal

  • I've installed the Adobe Reader Plug In. Yet every time I click to see a PDF, it opens another browser and it is blank. The Browser reads about:blank. How can I fix this so that PDF's open in the browser?

    I've installed the Adobe Reader Plug In. Yet every time I click to see a PDF, it opens another browser and it is blank. The Browser reads about:blank. How can I fix this so that PDF's open in the browser?

    Check your settings in Options > Applications: https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox#w_check-firefox-settings
    Also see:
    *https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox
    *http://kb.mozillazine.org/File_types_and_download_actions
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]

  • How can I get my books that I download from the Library that are WMA files into my I tunes so I can listen to them

    How can I get my books that I download from the Library that are WMA files into my I tunes so I can listen to them. They have a ton of books but I can only listen to them from my windows media player and I wouldlove to download to my I pod but I have tried everything I can think of it they won't go over.  Someone said all I had to do was copy them over and they would convert but I can't even get them to copy.  Thanks.

    Well it started happening AGAIN with my 2nd IPod. No matter what I did, it Itunes would NOT restore it!
    I finally installed Itunes on my hubby's PC at work and managed to get it restored there.
    Apparently, there must be some sort of compatibility issue with the windows version of Itunes and some other piece of software on my pc.
    And one more important thing! I had to follow the instructions in the other thread that talks about how to correctly uninstall itunes and quicktime, in order to completely eliminate ALL traces of my "first" ipod's existence so it wouldn't demand that I restore it.
    I think the software got "confused" and thought when I connected my 2nd ipod, that it was the 1st and that it still needed to be restored.
    Basically, this is just POORLY written and POORLY tested software!

  • How can I delete a download that is hung up.

    How can I delete a download that is hanging up?

    If there are multiple apps trying to download at once, only one can download at a time and the rest say "Waiting" until it is then their turn. Try this. Double tap the icon of the Waiting app, and it should resume the download.
    How to Solve the Problem of An iPad App Download Stuck on “Waiting”
    http://ipadacademy.com/2012/06/how-to-solve-the-problem-of-an-ipad-app-download- stuck-on-waitinghttp://ipadacademy.com/2012/06/how-to-solve-the-problem-of-an-ipad-app-download- stuck-on-waiting
    How To Get Rid Of Your iPad App Download Frozen Problem
    http://www.sidelineapple.com/how-to-get-rid-of-your-ipad-app-download-frozen-pro blem-and-not-lose-years-of-your-life-video/http://www.sidelineapple.com/how-to-get-rid-of-your-ipad-app-download-frozen-pro blem-and-not-lose-years-of-your-life-video/
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/ht1725http://support.apple.com/kb/ht1725
    Another thing to try - Turn the iPad Off & then back ON.
    If that doesn't work:
    •  Log out of your iTunes store account.  Go to Settings > Store > Sign Out Then press the Home button.
    • Then press and hold the Home and Sleep buttons simultaneously and don't release them when it brings up the Turn Off screen; keep holding them until the Apple logo appears.
    • After restart, the Waiting should be gone.
     Cheers, Tom

  • How can I get rid of that irritating contact/favorites across the top of the home screen?

    How can I get rid of that irritating contact/favorites across the top of the home screen?

    Actually, that's not on the Home screen, it is on the multitasking or App Switcher view so only shows up when you enter that mode (so I'm not to clear as to why it is so "irritating", but whatever).
    Settings app > Mail,Contacts,Calendars > scroll down to CONTACTS section] > Show in App Switcher

  • How can i make it so that on messages i can see who is online wihtout having to search their name?

    how can i make it so that on messages i can see who is online without having to search their name? When i had ichat i didnt have to search their name... i culd see who was online autimatically.

    Firefox, the web browser, doesn't make any decisions about what mail should be considered spam or what senders should be blocked. What email software or webmail site are you using that is rejecting the messages?
    If it's a common site like Yahoo! mail, Gmail, Windows Live Hotmail/Outlook.com, then perhaps a volunteer familiar with their specific settings can help.
    If it's Thunderbird, the support site is over here: [https://support.mozillamessaging.com/].
    If your security/privacy software filters your mail, you will want to check its settings as well.

  • How can I delete the podcasts that I have not downloaded but show up as being in the cloud

    How can I delete the podcasts that show up as being in the cloud when viewing them in the List mode? Most of these are past episode that I previously downloaded and then deleted. I know that I can  look at my podcasts in Unplayed mode which removes those in the cloud but then I can't sort them first by podcast title and then by episode date the way I can in List mode.   This was not a problem before iTunes 11.1 when I could simply delete those in the cloud.

    That is discouraging.  However I do notice that if I view my podcasts in My Podcasts mode they are grouped and sorted better than in Unplayed mode and the ones in the cloud are not shown. However although I prefer the one window view of List mode to the two windows My Podcast mode, My Podcast mode does at least indicate how many unplayed episodes I have from each podcast.  This would almost be acceptable except that partially listened to podcasts, while still there, can only be identified by highlighting the podcast title on the lefthand sidebar, (although the number of completely unplayed episodes are listed on the left hand sidebar).  As someone who often listens to a podcast over two or more days I fear I could forget which ones I have only partially listened to and would have to go down the entire left hand sidebar list highlighting each podcast to remind myself.  I really find the List mode the most informative and easiest way to view my podcasts and really wish Apple had not messed with it

  • How can you find an ipod that has been lost

    how can you find an ipod that has been lost and the icloud is not turned on

    lost/stolen                                      
    No app is required.                                               
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

Maybe you are looking for