Sorting buttons in transaction lt10

hi everybody,
I have an issue. In transactin LT10 there are no sorting buttons on the screen. Can we add these buttons? Is there any solution for that.

Thank you guys for the suggestions.
I did make sure that there was stock available in the bin, no movements tied to the stock and also there was no inventory document active for it
The part I forgot to mentioned in the question previously was my testing is on the picking side with handheld devices (a 3rd party system that we are interfacing with SAP for automatic data collection)
Would it be possible that the locks are happening from log on sessions from this 3rd party system
Please suggest
Thank you

Similar Messages

  • Add buttons to transaction LT10

    Hi ))
    I don't see and use 'sort' buttons on the screen in transaction LT10 ((
    Can I add these buttons  ?
    Help me, please.....

    i don't think so because of these function:
    "Stock transfer view"
    - Quant
    - Storage unit
    - Storage bin
    if you can sort the table - SAP will not mangage the flags.

  • Sort buttons in LT10 transaction.

    hi everybody,
    I have an issue. In transactin LT10 there are no sorting buttons on the screen. Can we add these buttons? Is there any solution for that? It has gui status ALVSTAND and the buttons are included but are not visible on the screen.

    probably they may be excluded.
    u have to change the standard means u need to go for exits. probably menu exits

  • ALV .  How to remove the sort buttons on toolbar in ALV report?

    Hi,experts
      As you know, in default case , the alv report will display two sort buttons(ascending ,descending) on its toolbar , So How to remove the sort buttons on toolbar in ALV report?
      Thanks for your help .

    Hi guixin,
    1. Before calling REUSE_ALV_LIST_DISPLAY
    2. Write this code :
    data : excl type SLIS_T_EXTAB.
    data : exclwa type SLIS_EXTAB.
    exclwa = '&OUP'.
    append exclwa to excl.
    exclwa = '&ODN'.
    append exclwa to excl.
    3. Then while calling the FM,
       pass this parameter also .
    IT_EXCLUDING     = excl
    It will work fantastic.
    regards,
    amit m.

  • How can I disable POST GOODS RECEIPT button in transactions VL31N/VL32N via Authorization or Role Level.

    How can I disable POST GOODS RECEIPT button in transactions VL31N/VL32N via Authorization or Role Level, There is a requirement from my client  and i propose two methode
    1- Creation of Ztcode ZVL32N and do changes ABAP program level
    2- Disablement via Authorization/Role level - but how can i find the auth object/ Authorization corresponds to POST GOODS RECEIPT button in VL32N

    I think you can make use of SHD0 - Transaction variant to achieve this. You can make it as grayed out while recording steps in SHD0.

  • Search Button in Transaction SM30

    Good Morning,
    I want to know if it's possible to activate de search button in transaction SM30.
    What i mean is, when you call transaction SM30 and you choose to modify some data from a table, the search button (binoculars) is deactivated.
    It looks to me like this is SAP standard for that Status GUI in particular...
    Will the button be activated in any circumstances? If yes, in which circumstances will it be activated?
    If no, is it possible to do so by my own? If yes, how can i do it?
    Thanks and Best Regards,
    Pedro Gaspar

    Hi Pedro,
    If the table is created by you, then do not define the field by referring to the dataelement or domain, but declare it as a flat data type.
    for example do not have matnr referring to matnr data element. Instead declare it as matnr of char18 type.
    Regards,
    Ravi

  • Table header sort buttons not displaying correctly.

    HI All,
    I'm having a problem with data table headers that seems to have appeared out of nowhere but is probably something simple I'm overlooking. To be sure it wasn't something deep in my app, I've created a simple project and recreated the problem.
    I created a simple web project and dropped a table onto the main page. I then bound the table to a full select of a myqsql table and then compiled. Simple enough, everything looks okay, until I opened the page in my browser.
    The table displays without borders and the sort buttons in the headings are not displayed but described such as this example
    " Button to sort column Date as the primary sort column."
    Any ideas?
    I'm not sure if this is a Creator error/setting or something else but I thought I'd start with Creator.
    Thanks
    Barry

    Some additional info
    The sort "buttons" have been replaced by links, that don't do anything. I even enabled all the multiple-select, pagination, etc features for the table and rather than be displayed as buttons, links have appeared for these functions as well.
    Thanks

  • Avoiding Blind query from executing while clicking sort button on table.

    Hi All,
    I am using jdev11.1.1.6
    I made a simple ADF search page with few mandatory search criteria's.
    The result table can be sortable and filterable by the user.
    The page is working fine as expected with the search criterai's, but i found a problem in the page.
    Once my page got loaded, before entering any search criteria, if i scroll down to the result table and clicked on the "sort" button on any column, my base page query is getting executed
    without any search criteria i.e a blind query is getting executed. i need to restrict this. This is not expected.
    Is there any inbuilt properties for restricting this or this has to be done manaully.
    please help me with this issue.
    Regards
    Siva
    Edited by: Minion on Oct 18, 2012 11:13 AM

    Hi Pandu,
    Thanks for the response,
    I am having more than 80 columns in the table, this means, i need to set the sort property for each and every column separately?
    Do we have any table level property to restrict it.
    First of all is this an intended behavior of ADF ?
    I have implemented few security to access my page, such that only few user can able view all data by restricting few search criteria's result.
    But due to the above mentioned problem my works on implementing security is not working. regardless of the type of user if i just click the sort button its giving all the data for all users.
    Please guide me a best method for restricting this
    Regards
    Siva

  • How to hide sort buttons in BEx Web?

    Hi,
    I've got an input-ready query with hierarchy on lead column and key figures on data columns. I'd like to hide sort buttons in column headers to decrease the space required and make the screen simpler. Any possibilities to get rid of these, in this case useless, arrows?
    Thanks!
    Aki

    Hi,
    Create a new GUI Status for your program.. put whatever button you require for it..
    In the AT SELECTION-SCREEN OUTPUT event..
    SET pf-status xxx.
    Regards,
    Anand

  • URGENT can anyone let me know how to include sort buttons in table maintian

    hi
    can anyone let me know how to include sort buttons in table maintianence
    as generally table maintianec done have sort buttons i need to include the sort buttons kindly let me know on that asap
    or can we use module pool in between table maintianece screen
    if yes how touse and how to cod for that
    regards
    Arora

    You can change the coding of Table Maintenance.
    >> Goto SM30, give table name and goto Display/Maintain mode and copy all the GUI status from standard program into your function group. Add sort button in the GUI Status of Maintain & Display mode.
    >> Goto to tablemaintenance screen generated using SE51.
    >> Select change mode.
    >> After PROCESS BEFORE OUTPUT, create one module to assign your function group program name to " X_HEADER-GUI_PROG = "
    >> In PROCESS AFTER INPUT, add another module at the end to perform the action.
    -Alpesh.Saparia

  • Hiding the save button in transactions

    Hi all,
    Can anyone please tell me how I can hide the post button button in transactions FB60, FB65, FV60, FV65, FB70, FB75, FV70 & FV75.
    My client would want all transactions to be parked and authorised via workflow.
    Thanks for your help in advance

    Once you're in transaction SHD0, you should get to a point where there is a pop up box titled "Confirm Screen Entries".  Select Basic Data and then click the button for Menu Functions.  Open the Menu Bar and then Document.  You will see the SAVE command in here.  Click once on the SAVE and then select the Deactivate button next to the green checkmark.  That line will turn yellow, select the green checkmark or hit the enter key to return to the "Confirm Screen Entries" pop up box.  If this is the only change you would like to make, you can select the Exit and Save button.  Don't forget to Activate it as your Standard Variant.
    I hope this helps!

  • Adding a Sort Button in SM30

    Hello Everyone,
            I have a Z table which I am maintaining it through SM30 which has got 5 fields (ZREFERENCE, Profit Center, GL Account, Posting date and amount), currently the data is getting sorted on the basis of ZREFERENCE field. The requirement is after clicking a sort button the data should get sorted on the basis of the field that I have selected. I have created a button on application tollbar.  Need further help in displaying the data in required sorted format...
    Thanks & Regards,
    Viraj

    You can try creating your own PAI module in which u can mention code something like below:
    DATA: fld(30),
          lin TYPE i,
          off TYPE i.
    GET CURSOR FIELD fld LINE lin OFFSET off.
    fld gives you the fild name on which u put the cursor. Based on that u can try sorting. Dunno if this works or not, but u can give it a try.

  • Why is my sort button gone

    I opened a spreadsheet that was made a few weeks ago and added more data. I tried to sort all of the data together but my sort button was missing!!!!

    Hi Gretchengracie,
    Your profile shows iOS. This forum is for Numbers on a Mac running OS X. You will get a quicker and better answer here in iWork for iOS :
    https://discussions.apple.com/community/app_store/iwork_for_ios?view=discussions
    Regards,
    Ian.

  • Missing sort button on Spotify iPad.

    As stated on the subject, where is the the sort button gone? i noticed this after the 30oct auto update on my iPad Appstore. There are no issues on previous Spotify app (at-least for me) yet this new released remove one of the neat feature that you guys having a hard time to implant on iPhone.
    So again, where is the sort button on IPad ?

    Best bet is to suggest it be re-added over on the Ideas Exchange:
    http://community.spotify.com/t5/Spotify-Ideas/idb-p/ideaexchange
    This feature wasn't implemented on iPhone and it looks like in the new "design" iPad app, it is using the same views as iPhone.

  • Disabling sort button on the alv list display

    Hi,
       how to disable sort button on alv list display
    thanks

    Fill an itab
    1- Create an itab type SLIS_T_EXTAB.
    2- Populate it with the Function codes you want to exclude ('&OUP', '&ODN').
    3- Pass it as parameter to IT_EXCLUDING
    Regards
    Edited by: Jordi Escoda Ruiz on Apr 24, 2008 10:39 AM

Maybe you are looking for