CU43 and the table settings screen

We are on SAP ECC6.  On production CU43 is fine.  But on dev system and QA system when you use CU43 we have the following issue.
On the "select configurable object" screen if you press the enter(return) key it always pops up the table settings screen.  No matter if you create a variant and save it or not.  If you select the Green check mark it goes to the correct screen for your selection.  Any ideas on how to get prevent this table settings screen from popping up every time you press enter?

That icon you see in the top right-hand corner of a table is known by name Table control.
Use the Table Settings function to change, in the table control, the individual basic table settings that are supplied with the system. This is particularly useful for tables where you do not need all the columns. You can use the mouse to drag & drop column positions and widths, or even make the column disappear.
Save the changed table settings as a variant. The number of different variants you can create per table is not restricted.
The first variant is called the basic setting; the SAP System defines this setting. You cannot delete the basic setting. you can delete the variants you define yourself.

Similar Messages

  • Issue in the table settings of the screen.

    Hi Expert,
    I have an issue because some users are changing the Table Settings of the screen to display the sales orders. So if somebody make a change affect to all the systems so I want to find a way in order to limit the access to this setting.
    Thank you and best regards.

    Dear Alberto
    Check with your basis team who can control this with restriction to selected user ids.
    thanks
    G. Lakshmipathi

  • In itunes 10.6, when I click to burn a cd, it takes 10 minutes for the  "Burn Settings" screen that allows me to choose which cd burner to use to be displayed. I have tried setting the UpperFilters to "GEARAspiWDM" and LowerFilters to null. Any suggestion

    In itunes 10.6, when I click to burn a cd, it takes 10 minutes for the  "Burn Settings" screen that allows me to choose which cd burner to use to be displayed. I have tried setting the UpperFilters to "GEARAspiWDM" and LowerFilters to null. Any suggestions?

    Many thanks for the diagnostics.
    Failed while scanning for CD / DVD drives, error 2380.
    Error while opening iTunes CD driver.  This could be caused by a corrupted iTunes file or a conflict with other older CD burning applications, either currently installed or previously installed and uninstalled incorrectly.
    With that one, I'd start with solution 3 from the following document:
    iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install

  • IPod Nano 5G (16 Gig) has frozen on the Reset Settings Screen

    My iPod Nano 5G (16 Gig) has frozen on the Reset Settings Screen after I tried holding the middle button to re-set. I was doing this as a result of the backlight timer not responding. I'm really worried now, even if I plug into an official Apple external USB outlet or my PC nothing is happening - it's just stuck on that screen. Has been like this for about 4 hours now. And iTunes is saying it doesn't recognise the Nano and its not showing as an external drive on my PC.
    Though this was bought for my from HMV at Xmas would I still be able to take the Nano to the Apple store as a last resort? Any help would be great, thanks.

    Hi I tried this from: Zolved.com +Toggle the Hold switch to on, then back to off (none of the red is showing).+
    +Press and hold down the Menu and Select buttons for 10 seconds (until you see the Apple logo) as shown in the picture.+ And it appears to have worked, so am guessing this is the standard way of re-setting the Nano? Thanks

  • How to display name of the table and the description and the table type

    Hi,
    Can you people tell me how to display the name of the table and the description and the table type (View, structure, etc...) used in the program.
    I want to display in a list.
    Kind Regards

    use this program
    TABLES : TSTC, tstct.
    TABLES : DD03l, DD02l.
    DATA : Program like sy-repid.
    DATA : BEGIN OF I_FINAL OCCURS 0,
    tabname LIKE dd02l-tabname,
    TABCLASS LIKE dd02l-tabCLASS,
    TEXT LIKE DD02T-DDTEXT,
    END OF I_FINAL.
    DATA : BEGIN of ITAB Occurs 0,
    name like dd02l-tabname,
    END OF ITAB.
    DATA : TCD(100) TYPE C.
    DATA : var1 LIKE dd02l-tabname.
    DATA : DESC LIKE TSTCT-TTEXT.
    selection-screen skip.
    SELECTION-SCREEN : BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS : r1 RADIOBUTTON GROUP r DEFAULT 'X'.
    Parameters : Tcode like sy-tcode.
    selection-screen skip.
    PARAMETERS : r2 RADIOBUTTON GROUP r.
    Parameters : Prog like sy-repid.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-001.
    select-options : Type for dd02l-tabclass .
    SELECTION-SCREEN END OF BLOCK B1 .
    at selection-screen.
    if r1 = 'X' and Tcode is initial.
    message e001(00) with 'Enter Transaction Code' .
    elseif r2 = 'X' and Prog is initial.
    message e001(00) with 'Enter Program Name' .
    endif.
    START-OF-SELECTION.
    if r1 = 'X'.
    Prog = ' '.
    select single * from TSTC where tcode = tcode.
    if sy-subrc = 0.
    program = TSTC-PGMNA.
    select single TTEXT from tstct into desc where tcode = tcode and SPRSL = 'E'.
    else.
    Write :/ 'Invalid Transaction Code'.
    exit.
    endif.
    elseif r2 = 'X'.
    Tcode = ' '.
    program = Prog.
    endif.
    CALL FUNCTION 'GET_TABLES'
    EXPORTING
    PROGNAME = Program
    TABLES
    TABLES_TAB = itab.
    if itab is initial.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    ELSE.
    PERFORM : categorize.
    endif.
    END-OF-SELECTION.
    LOOP AT I_FINAL.
    WRITE :/4 I_FINAL-tabname COLOR 2 INTENSIFIED OFF NO-GAP HOTSPOT ON, 35 I_FINAL-TABCLASS COLOR 2 INTENSIFIED OFF NO-GAP,
    50 I_FINAL-TEXT COLOR 2 INTENSIFIED OFF NO-GAP.
    ENDLOOP.
    AT LINE-SELECTION.
    TCD = SY-LISEL.
    var1 = TCD+3(30).
    set parameter id 'DTB' FIELD VAR1.
    call transaction 'SE11' and skip first screen.
    TOP-OF-PAGE.
    WRITE :/45 'TABLE DETAILS RELATED TO THE TRANSACTION CODE' COLOR 7 .
    WRITE :/2 'DATE : ' COLOR 1, SY-DATUM COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TRANSACTION CODE : ' COLOR 1, Tcode COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TCODE DESCRIPTION : ' COLOR 1, desc COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'PROGRAM NAME : ' COLOR 1, PROGRAM COLOR 1 INTENSIFIED OFF NO-GAP.
    SKIP 1.
    WRITE :/1(140) SY-ULINE.
    WRITE :/4 'TABLE NAME' COLOR 5 INTENSIFIED OFF NO-GAP,35 'TABLE TYPE' COLOR 5 INTENSIFIED OFF NO-GAP,
    55 'DESCRIPTION' COLOR 5 INTENSIFIED OFF NO-GAP.
    WRITE :/1(140) SY-ULINE.
    *& Form categorize
    text
    --> p1 text
    <-- p2 text
    FORM categorize .
    SELECT dd02ltabname dd02ltabCLASS DD02T~DDTEXT
    FROM dd02l INNER JOIN DD02T ON dd02ltabname = dd02Ttabname
    INTO TABLE I_FINAL
    FOR ALL ENTRIES IN itab
    WHERE DD02L~TABNAME = ITAB-NAME AND TABCLASS IN TYPE AND DDLANGUAGE = 'E'.
    if sy-subrc <> 0.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    endif.

  • Creating Customized Table and Modify Table Maintenance Screen

    Hi,
    I have already created customized table and generate the table maintenance screen, however i encountered 1 problem which is i cannot add new PAI and PBO module in the flow logic. Every time i wanna add new module, i will be getting error message saying that my user currently editing the screen. Any suggestion ?
    Thanks.
    Jon

    Hi <b>Jonathan</b>,
    Please close all the windows and relogin
    For making PAI and PBO modules, Please activate all the Table and its maintainence view.
    Now first make emptu file with <main filename>_PAI and <main filename>_PBO save and activate them.
    Now put the logic in them and then activate now call these in the main prog.. it should work...
    While activation all the sub program modules should be activated already... i suggest select all the prog and sub progs and activate them all at once...so the system automatically takes care of inner activations first...
    If u have some more quereies... please feel free to contact me...
    Regards,,
    <b>Abhishek</b>

  • HT4623 after the ios 7.0 update my iphone 4s and ipad keep switching in between the home screen and the apple loading screen, can anybody help?

    Can anybody help with the above?
    i.e
    both my iphone 4s and ipad switch in between the home screen and the apple loading screen
    Many thanks

    I would connect each device to a power source, and then reset them by holding the power button and the home button until they turn off.
    If it keeps happening, I would put the devices in recovery mode and restore them with iTunes.
    This article will help with that if needed:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808

  • TS1587 Hello, I downloaded an ntfs systemfile from tuxera and used it to convert a usb stick, my imac froze a while after so I turned it off the on and now I have blue vertical lines on boot up and the a white screen with lots of tine blue symbols, need h

    Hello, I downloaded an ntfs systemfile from tuxera and used it to convert a usb stick so I could put more than the fat32 4gb on, my Imac froze a while after so I turned it off the on and now I have blue vertical lines on boot up and the a white screen with lots of tine blue symbols after, mouse pointer moves but thats about it.
    Have used R and cmd to get a menu up but once I choose one of the four options my mouse is rendered useless and I cant get any further, have downloaded, to another usb stick recovery disk assisstant and am trying to use that in conjunction with the lion option on the previously mentioned screen, computer was responding really slowly and has now frozen on the terms of software license agreement (maybe the last hurdle!) can anyone pleeeeeease help!!!!!??????

    It's likely that the boot drive is failing, or that there's some other hardware fault. Run the Apple Hardware Test.
    Intel-based Macs: Using Apple Hardware Test
    Even if the test is negative, you should make a "Genius" appointment at an Apple Store to have the machine tested more thoroughly.

  • ADF: initialize the VC and the table of a page

    Hello all,
    In HR schema I have an application with a menu with two items (Employees and Countries pages).
    Both pages have View Criteria on the top and a table grid below showing the data.
    When I search in Employees page for a particular employee, and then navigate to Countries page I noticed the following. If I go back to Employees page, the table is still filtered with the criteria I entered before, and the View Criteria panel has not been reset, but shows the criteria I initially entered.
    How can I have the VC initialized every time I enter a page, and the table not filtered???
    I hope there is a simple workaround for that.
    Thanks a lot!

    you will have to clear the viewCrtieria manually when the page is loaded everytime..
    1) have a dummy outputtext with visible = false as the last component
    2) have binding for the outputtext in the maanged bean
    3) in the getter of the outputText have the following code
    public void getoutputTextBinding(){
    DCIteratorBinding dciter;
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    dciter = (DCIteratorBinding) bindings.get("EmpView1Iterator");
    dciter.getViewObject().applyViewCriteria(null);
    dciter.getViewObject().executeQuery();
    }

  • In trying to edit my pics only the slide show pics is editing - not the main pic.  Trying to crop the pic and the whole main screen goes grey

    In trying to edit my pics only the slide show pics is editing - not the main pic.  Trying to crop the pic and the whole main screen goes grey

    Please check your Firefox Installation's version. (can be found by clicking the main menu, either clicking or hovering over the help button, and then clicking about firefox in the sub menu). depending on how long ago you set up sync you may still be using the older sync version. firefox 29 introduced a new (and might i add far less tedious) sync version. see [[How to update to the new Firefox Sync|this Mozilla support article]] for information on upgrading your sync to the new version.

  • Hi I bought macbook Pro Retina 1.3 from India on the 29th March 2014 and currently I am in Norway. And suddenly I can see the inside display screen is broken. Nothing from outside and the main top screen. I got by email from the shop in India, Mumbai

    Hi I bought macbook Pro Retina 1.3 from India on the 29th March 2014 and currently I am in Norway. And suddenly I can see the inside display screen is broken. Nothing from outside and the main top screen. I got by email from the shop in India, Mumbai where I purchased it and I have the photos of the screen where do I upload kindly urgently do let me know. It is under warranty till today and I need your urgent details so that I can upload required datas and I shall go back to India on the 5th April 2015 hence I need to get from you how to go about. Thank you. Uday Kumar Ghosh +47 455 48 953

    Thank you. I did contact Apple Norway and they already raised a case no based on which I shall go and hand over my mac pro retina 13inch. As per Apple Norway, as the case has been registered before the expiry of the warranty, Apple India to accept the warranty  as well and get the set repaired under warranty. Thank you.

  • When I go to Setting icloud, the tap Delete it asks for a password and the email on screen is incorrect.So I cannot delete Account.

    When I go to Setting>icloud, the tap Delete it asks for a password and the email on screen is incorrect.So I cannot delete Account.

    Don't know anything about McAffe Enterprise Server, but if your employer is preventing you from using iCloud backup there's really no way to use it without removing this from your phone.  Unless you can convince the IT guys to make an exception.

  • I tried many times to turn it on, it turns and the same white screen appears and the update starts again and shuts down. Please Help me!

    Hello!
    I have a MacBook Air. I have got a software update notification couple of days ago. I've clicked on it today, and it started installing updates.
    But, I have got a notification telling that not all updates were installed successfully, then I have clicked on "Restart" from the notification box. Then my Mac restarted and the white screen with Apple logo and the update progress appeared (like what always happens during updates).
    The problem that while the update progress reached around half the way, my Mac shutdown. I tried many times to turn it on, it turns and the same white screen appears and the update starts again and shuts down.
    Please Help me!
    MacBook Air (11-inch Mid 2009)

    Welcome to Apple Discussions
    You did not state whether you installed the update while on battery (not mains) power. You are warned not to apply certain updates without being connected to a charger & mains power.
    Also remove any attached peripherals.
    Reboot in Repair mode (command-R at start)  and use Disk Tools-Disk Utility-Disk First AId to repair your disk, and as long as you're there repair permissions. Next quit Disk Tools and reinstall the OS. After completing that successfully reboot, log in and do a combo update.
    You must have more than enough (not just enough) empty (free) disk space for the update.

  • Using Logical Databases and the Tables or Nodes Statement

    I want to start using Logical Databases whenever possible, but it seems that I need to use the Tables or Nodes statement for the Get statement to work.  Is there anyway to avoid Tables/Nodes statement since they are obsolete (and still use LDBs)?
    Message was edited by: Jason DeLuca

    Hi Jason,
    1) table statement is obligatory:
    -> look at abap-docu to GET:
    node is a node in the logical database that is assigned to the report (type 1 program) in the program attributes. <b>You must declare the node in the report using the NODES statement (or the TABLES statement, if the node is of the type "table").</b>
    2) some ldb-selections from the selection screen
       depends on the table-statement too, i remember...
    regards Andreas

  • Add a button on the Table view screen

    Hi ,
    i need to add a button to da table view screen for which i have created a transaction also.How do i go about it?
    please help.
    Thanx and Regards,
    Srestha

    <div><button
    style="float:left;">LEFT</button><button
    style="float:right;">RIGHT</button></div>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "-Michael--" <[email protected]> wrote in
    message
    news:edf6hm$aea$[email protected]..
    > How do i add a button at the top left side of the
    screen, then in the same
    > row
    > add a button to the right side of the screen. (I want
    the buttons to stay
    > left
    > and right nomatter how big the users computer screen is)
    >

Maybe you are looking for

  • New Computer with MSI 925XE Platinum(MSI-7053)

    On Wednesday June 14th after a 10 month delay I picked up a custom built computer built by a fellow worker it has an Intel 775 processor running at 3.0 GHz, 1 GB of Geil 533MHz memory, a 160GB & a 250GB Western Digital HD the 1st is IDE & the 2nd SAT

  • Problem with sql TRIM in PL/SQL package in version 10.1.3.3

    I'm getting invalid token on the trim functions in the following function. The package compiles ok in TOAD, and this package worked fine in the previous version of jdeveloper I was using--10.1.3 FUNCTION stu_pidm ( p_profile_name IN VARCHAR2 RETURN N

  • Desktop icons/Folders - unable to move them

    Sometimes I want to move a folder somewhere on my desktop. When I move the icon/folder it always snaps back to the upper right hand corner of my screen. How can I turn this alignment feature off and on? Thanks...

  • Testing at Query Level

    Hi All, How do you do the testing at the query level in BW? what scenario's or test cases will be used, kindly update me coz i'm new to this. Regards, V V.

  • Pdf turns indesign black to brown

    hello. i have a black background in a book cover that turns to brown when i export it to press quality pdf. i'm stuck. can't figure it out. have tried many things. h e l p ! ! ! CS#m imac with latest OS, 2 gigs ram