Old APP-F110 Runs List should be hidden from the Identification List

Hi,
In Automatic Payment Program (F110 Transaction code), when i select drop down button (F4) from Identification, I have more than 500 Payment runs. I know that it is not possible to delete them since all actual payment Runs was processed in the system.
Atleast i want to HIDE them from the Identification list. Is there any way to hide all Executed Payment Run Ids from the List? Kindly help me on this....
Thanks
Kishore
Edited by: Emergys Corp on Feb 15, 2010 5:32 PM

Archive them if you can.  Tables: REGUH and REGUP.  We have more 5 million in our system.  Why bother yourself hiding them?
Regards,
Elias
Edited by: Elias Akorli on Feb 15, 2010 6:06 PM

Similar Messages

  • Can you have two detail lists from the basic list at the same time?

    Hi
    Can you have two detail lists from the basic list at the same time?
    If yes how and if no why?
    Thanks
    Venkat

    No   ... it is not   possible   of   2 detail  list at   one time   from the basic  list ...
    you can  increament   the SY-LSIND  .... But you can not   display  both the windows   at single time  ...
    it is  possible  to  display  2 Detail list  in ALV   ......  from one  basic  list   using  the  Blocked  list  concept    .
    Sample Program on BLOCK LISTS
    Report   zblock_list
    * Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:slis.
    DATA:x_layout TYPE slis_layout_alv,
    t_field TYPE slis_t_fieldcat_alv,
    *--field catalog
    x_fldcat LIKE LINE OF t_field,
    *--to hold all the events
    t_events TYPE slis_t_event,
    x_events TYPE slis_alv_event,
    t_sort TYPE slis_t_sortinfo_alv,
    x_sort LIKE LINE OF t_sort ,
    *--Print Layout
    x_print_layout TYPE slis_print_alv.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE add_catalog.
    clear x_fldcat.
    x_fldcat-fieldname = &1.
    x_fldcat-seltext_m = &2.
    x_fldcat-outputlen = &3.
    x_fldcat-tech = &4.
    x_fldcat-col_pos = &5.
    x_fldcat-no_zero = 'X'.
    x_fldcat-ddictxt = 'M'.
    x_fldcat-datatype = &6.
    x_fldcat-ddic_outputlen = &7.
    if &6 = 'N'.
    x_fldcat-lzero = 'X'.
    endif.
    *--build field catalog
    append x_fldcat to t_field.
    END-OF-DEFINITION.
    *----- data declerations.
    data: v_repid like sy-repid.
    data: begin of itab occurs 0,
    matnr like mara-matnr,
    ernam like mara-ernam,
    meins like mara-meins,
    end of itab.
    data: begin of jtab occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of jtab.
    select matnr ernam meins
    up to 20 rows
    from mara
    into table itab.
    select matnr maktx
    up to 20 rows
    from makt
    into table jtab.
    v_repid = sy-repid.
    *DISPLAY alv
    * Initialize Block
    call function 'REUSE_ALV_BLOCK_LIST_INIT'
    exporting
    i_callback_program = v_repid.
    *Block 1:
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST1'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'ITAB'
    it_events = t_events
    it_sort = t_sort
    tables
    t_outtab = itab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST2'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    * Append table block.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'JTAB'
    it_events = t_events
    tables
    t_outtab = jtab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    call function 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * exporting
    * is_print = x_print_layout
    exceptions
    program_error = 1
    others = 2.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    form top_of_list1.
    skip 1.
    write: 10 'List 1',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    form top_of_list2.
    skip 1.
    write: 10 'List 2',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    reward  points if it is  usefull ....
    Girish

  • How do I remove an app from the update list that is under someone else's apple id?

    How do I remove an app from the update list that is under someone else's apple id? So this way the update always fails because it asks for someone else's password. I don't have the app on my mac, it only appears in the update list. It's just annoying, because the update keeps appearing, and the reminder keeps reminding me that I should install a new update.

    You installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store alert. For example, the App Store may prompt you to update "Angry Birds" or "Twitter," but the hacked app may be something else entirely. Don't make any assumptions about which app you're looking for. To find it, you must carry out a systematic search with Spotlight.
    1. Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    2. In the Finder, press command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu of search criteria, initially showing Kind. From that menu, select
    Other...
    A sheet will drop down. In that sheet, select
    Raw Query
    as the criterion, then click OK or press return.
    Now there will be a text box to the right of the menu of search criteria. That's where you enter the raw search query. Click in that box and paste the text you copied earlier by pressing command-V.
    4. The search window will now show all the App Store products that are installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the apps in the Spotlight search results is not among your purchases in the App Store. Move each such item to the Trash, after quitting it if it's running. You may be prompted for your administrator password. Empty the Trash.
    Quit and relaunch the App Store. Test.
    If you find these instructions confusing, ask for an alternative method.

  • Ipad mini cannot delete unwanted app from the purchase list

    Ipad mini cannot delete unwanted app from the puchase list . too many app there

    You can't permanently delete any items from your purchase history, but you should be able to hide them via your computer's iTunes : http://support.apple.com/kb/HT4919 - if your iPad is on iOS 7, then after hiding them on your computer you may need to log out of your account on your iPad by tapping on your id in Settings > iTunes & App Store and then log back in for them to be hidden in the Purchased tab in the App Store app on it (the last time I hid an app I needed to do that).

  • I bought a brand new mac and follow through setting up process with my apple id but when I open App Store I don't see lion into the purchases list. why?

    I bought a brand new mac and follow through setting up process with my apple id but when I open App Store I don't see lion into the purchases list. why?

    Updates come through Software Update not the App Store. If you have to reinstall Lion that is done via Internet Recovery.
    OS X Lion- About Lion Recovery
    OS X Lion- Run Software Update to use Lion Internet Recovery
    Lion maintenance and recovery operate via the Recovery HD. It's possible to create a separate recovery disk on a flash drive using OS X Lion: About Lion Recovery Disk Assistant.
    To boot into the Recovery HD:
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.

  • I downloaded itunessetup but when i open it it asks what program to run it with. but none of the programs listed would be a program to run a .exe program?

    so i downloaded itunessetup but when i open it it asks what program to run it with. but none of the programs listed would be a program to run a .exe program? what should i do?

    Maybe it didn't get the EXE extension.  If it does not have the extension, put one on it and see if that helps.
    If it has a DMG extension, it is the Mac version of the software.

  • I have an old app in my updates but no longer have the app on iTunes and iPhone 4s. How can i remove it?

    I have an old app in my updates but no longer have the app on iTunes and iPhone 4s. How can i remove it? It is beyond annoying, as it constantly has the badge noticfication but can't update the app as it is no longer avaliable. Help!!!

    Unfortunately the app isn't avaliable in the Australian store only avaliable to download in the UK store, very confussing as it is definitely not in my iTunes or on my iPhone. I don't understand how or why it managed to get to updates. I just want to delete it or at least get rid of the notification badge for it. 

  • I just connected my Mac Mini running OS 10.6.8 to a IG 32' monitor. What resolution should I select from the menu?

    I just connected my wife's Mac Mini running OS 10.6.8 to an IG 32' monitor. What resolution should I select from the menu in order to provide maximum screen appearance? My wife has AMD and a visual acuity of 20/400 with central scotonata.

    In System Preferences:Displays you have an option to show
    Displays Prefs in the title bar above the screen - where she can
    iteratively adjust to her liking. Higher screen resolutions, ironically,
    result in smaller characters so adjust to suit. Below, Displays is
    4th from L.
    All best, Tom

  • Of clans but due to shortage of space i want to delete it for some days.If i delete the app and then reinstall it after a month should i start from the beginning or cont. from where i left

    i use ipad mini with retina display 16gb i love playing clash of clans but due to shortage of space i want to delete it for some days.If i delete the app and then reinstall it after a month should i start from the beginning or cont. from where i left

    However, I originally had the kindle app on there and when he is reinstalling it comes up with my kindle account. How do we change this?
    OPen teh Kindle app.
    Tap the i at bottom right then Settings > Deregister this device.
    -> http://www.amazon.com/gp/help/customer/display.html?nodeId=200375710&#managedevi ces
    He does not have an actual kindle so I am not sure if he would be able to create one anyways.
    The Kindle app is so you do not have to use a Kindle. Yes, he can have a Kindle account and not own an actual Kindle hardware device.

  • Where is the App icon for HD 1080p Video? From the online photos it should be separate from the camera App.

    Where is the App icon for HD 1080p Video? From the online photos it should be separate from the camera App.
    It's supposed to have a blue background with 1080p in white, while inside there is a white camera with the letters HD in blue.
    I cannot find this App icon. Where is it located? It was supposed to be preinstalled.
    Thanks.

    There is no app.
    It is the camera.  Just take video with the camera.
    iPhone User Guide (For iOS 5.1 Software)

  • WHEN I CONNECT, THROUGH USB CABLE, MY IPHONE TO THE MAC BOOK PRO, THE ITUNES APP STOP RUNNING AND I CAN NOT SYNCRONIZE THE IPHONE

    I have an iphone 4, iOS 7.1.2
    Mac book pro 13in Mid 2012, with OS X VERSION 10.9.4, Processor speed 2.9 Ghz, Memory 8GB 1600MHz DDR3, Intel core i7, Storage capacity 750 GB, 650 GB available.
    WHEN I CONNECT, THROUGH USB CABLE, MY IPHONE TO THE MAC BOOK PRO, THE ITUNES APP STOP RUNNING AND I CAN NOT SYNCRONIZE THE IPHONE.

    Hello skkmmayer,
    That is probably a lot of stuff you do not want on your iPhone. So this can be handled a few different was. For you current situation, you can delete the apps directly on your iPhone by holding on the app until it starts to jiggle and then tap on the X of all the apps that you do not want. The second thing you can do is before you sync with iTunes, look at the app section on your iPhone to know what gets transfer to it and you can deselect items that you do not want. Lastly, if you download content on your iPad and it is a universal app, you can actually download it directly to your iPhone by looking at your past purchases and download it directly from the App Store. Check out the articles below for more information if need further assistance. 
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store
    http://support.apple.com/kb/HT5772
    iTunes 11 for Mac: Sync and organize iOS apps
    http://support.apple.com/kb/PH12115
    Download past purchases
    http://support.apple.com/kb/HT2519
    Regards,
    -Norm G. 

  • "Firefox.app" is an application which was downloaded from the Internet...

    This is a topic that has been posted before but I'm creating a new one because the previous discussion is closed and none of the answers solved my problem.
    Each and every time I launch Firefox, I receive the following warning, - “Firefox.app” is an application which was downloaded from the Internet. Are you sure you want to open it?"
    For the record, I have tried the following fixes with no success:
    - Removed the Firefox folder from user/library/application support both as a user and as an admin.
    - I logged in to the Mac as an admin. and launched Firefox. The message continues to pop up after doing this, while still logged in as admin.
    - I logged in to the Mac as an admin, went to Terminal and listed the attributes. The "com.apple.quarantine" attribute does exist, however, when I tried removing it with (xattr -d com.apple.quarantine <FILE NAME>), I am told that the attribute DOESN'T exist. Huh?
    I am trying to avoid completely removing Firefox and doing a fresh install but it may come down to this. Any help would be greatly appreciated.
    Thanks!

    I had a similar problem with another application. I downloaded an update to an application from the developer, and then got this message every time I ran the program. There's a script to disable this behavior entirely on MacWorld's macosxhints site.
    I didn't want to disable this behavior for good, just for this one program. I realized that I had downloaded it as one user, but the first use (of the update) was as a different user. I logged in under the user ID that I used when I downloaded the application and ran the program. After that, the warning went away.
    My guess is that you did something similar. Log in as the user ID you used when you first downloaded the updated FireFox and run the program. The warning should go away.
    If you can't remember which user ID you used, try the brute force approach - log in as each of your user IDs and run FireFox.
    Good luck!

  • HOWTO remove an entry from the node list...

    Hi all,
    does anybody know, howto remove an entry from the node list TAB ?
    I recentyl updated my system to 11.5.10.2 including enabling autoconfig.
    Now, concurrent processes won't start, because of two entries in the node list tab (yes, it's a single node installation!). There are two entries, one with the IP-address and one with the hostname.
    Can somebody tell me howto remove this obsolete entry?
    Thanks.

    1) Login as APPS user to SQL*Plus
    2) Issue the following:
    SQL> EXEC FND_CONC_CLONE.SETUP_CLEAN;
    SQL> COMMIT;3) Run AutoConfig
    For more details, please refer to:
    Note: 260887.1 - Steps to Clean Nonexistent Nodes or IP Addresses from FND_NODES
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=260887.1

  • How do I transfer videos / music from the Purchased List

    I have recently got a new iPOD Touch 64GB and by all accounts it seems pretty good.
    However, I have purchased a couple of things from iTunes (a movie and a TV show) and I cannot seem to get them transferred (if that is the correct word of course) from the "Puchased" list in iTunes to the "Video" selection.
    Without transferring them, this will mean that although I've purchased these items, in order to watch them, I'll need to be connected to a WiFi location - which defeats the purpose of purchasing!
    What am I doing wrong?
    Thanks.

    Vorksholk is right. Plug in your iPod to your computer, open iTunes, and select it on the left-hand side. You will see several different tabs on the top (music, tv shows, apps, etc...). Select "tv shows" or "movies" and you'll see your purchases there with checkboxes to their left. Check them and then click apply at the very bottom. Oh, you should also open the TV shows or Movies playlists on iTunes, and check if your purchases are there. If not, drag them in.

  • HT202152 I have tried updating my apps and software but it says my startup disk or hard disk is full. I deleted a lot of files and apps but they won't be erased from the trash. Please help

    I have tried updating my apps and software but it says my startup disk or hard disk is full. I deleted a lot of files and apps but they won't be erased from the trash. Please help.

    For information about the Other category in the Storage display, see this support article. If the display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
              iPhoto ▹ Empty Trash
    In Photos:
              File ▹ Show Recently Deleted ▹ Delete All
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation—not the mythical 10%, 15%, or any other percentage. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside a photo or iTunes library will corrupt the library. Changes to such a library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install the app in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C.
    For ODS:
    security execute-with-privileges /A*/OmniDiskSweeper.app/*/M*/* 2>&-
    For GP:
    security execute-with-privileges /A*/GrandPerspective.app/*/M*/* 2>&-
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password.
    The application window will open behind other open windows. When you scan a volume, the window will eventually show all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

Maybe you are looking for

  • Safari issue: Multiple browser pages from the past are resident!

    Having an issue with safari. When i open up the app, there are 7 previous pages that were accessed in the past that are open. I have tried to delete cookies, history, hard reset, etc. I can close out all of the previous open pages but the next time t

  • HT1688 2 ios6 contacts with 2 mobile numbers.

    Have personal and business iPhone as does my better half. When we send an iMessage it just says the contact name no matter which mobile number you select so after a few messages you have no clue which you used. Can type the phone number but it will a

  • Audigy 2ZS 5.1 speaker settings won't h

    I've had a problem numerous times. It involves my Audigy 2ZS (Creative) sound card. What happens is that I'll install the most recent software update (driver and Audio Console) for the card and go through the process of making sure the Creative Audio

  • Why don't I have reduce motion option with iOS 7.0.2 upgrade?

    Why don't I have reduce motion option with iOS 7.0.2 upgrade?  It is making me really dizzy and sick to my stomach similar to reading in the car (can't do that either).  I read to go into general settings, accessibility and click reduce motion....I d

  • How do I access Captivate 6 variables from a playbar?

    I need to access Captivate 6 variables from a playbar. Does anybody know how? I know the parent/child relationship has changed from previous versions.