[OKP1]Change the sequence of CO objects on the screen

Dear everyone,
Could anyone tell me how to change the sequence of CO objects on the screen in OKP1?
Or it is just another mission impossible?
Pls offer me some tips, I appreciate your help in advance.
Regards,
SCW

Hi...
how about a custom screen (have your abap developer involved) that will have the OKP1 transactions in the order you like and a custom SAVE button that when pressed will make a batch input to associated OKP1 transactions?
cheers
pan

Similar Messages

  • How to change the screen element of a single field in a table control

    Hi Gurus,
    I want to change the screen element of a single field (or the whole row) in a table control according to a condition.
    I have 2 columns in the table control. One is an input column and one output only. When user enters values into the input column, they need to be compared against the values in the other column, and if there is a discrepancy, the row where the discrepancy is needs to be highlighted.
    I have tried the following code which highlights the whole column ...
    CONTROLS: TC_ZVOYG_BINS TYPE TABLEVIEW USING SCREEN 0500.
    DATA: wa_tc_zvoyg_col LIKE LINE OF TC_ZVOYG_BINS-cols.
      LOOP AT G_TC_ZVOYG_BINS_ITAB
               INTO G_TC_ZVOYG_BINS_WA.
        if G_TC_ZVOYG_BINS_WA-zdelivery_bin ne G_TC_ZVOYG_BINS_WA-zactual_bin.
          loop at screen.
            IF screen-name = 'ZVOYG_BINS-ZACTUAL_BIN'.
              wa_tc_zvoyg_col-screen-intensified = 1.
              MODIFY tc_zvoyg_bins-cols FROM wa_tc_zvoyg_col TRANSPORTING
              screen-intensified WHERE screen-name = screen-name.
            endif.
          endloop.
        endif.
      endloop.
    And also the following code which makes no change ...
      LOOP AT G_TC_ZVOYG_BINS_ITAB
               INTO G_TC_ZVOYG_BINS_WA.
        if G_TC_ZVOYG_BINS_WA-zdelivery_bin ne G_TC_ZVOYG_BINS_WA-zactual_bin.
          loop at screen.
            IF screen-name = 'ZVOYG_BINS-ZACTUAL_BIN'.
              screen-intensified = '1'.
              modify screen.
            endif.
          endloop.
        endif.
      endloop.
    Thanks in advance.

    Hi,
    The modification of a screen element attribute (LOOP AT SCREEN...MODIFY SCREEN) must always be done in the PBO (for a dynpro, it will be in a PBO module, i.e. declared by MODULE ... OUTPUT)
    About the loop at the internal table, it is done automatically by the system, also during the PBO, you'll find something like LOOP [AT itab] ... WITH CONTROL ...  in the PBO part of the screen flow logic (note: you may have to complete with a supplementary READ TABLE if you don't use AT itab). So you don't need an additional loop.
    Best regards
    Sandra

  • Do I have to back up the data of my macbook white unibody if I am changing the screen because of the crack problem at the the back of the screen?

    Do I have to back up the data of my macbook white unibody if I am changing the screen because of the crack problem at the the back of the screen?
    They told me to bring it to the genius at the apple store. They will change it for free but I don't have any physical place to back up my computer, they said it will take a coupe of days. I am not really sure if I have to back it up.
    Thank you.

    gmedina172 wrote:
    Should I use time machine? ...
    Mac 101  Time Machine  >  http://support.apple.com/kb/HT1427
    Time Machine Tutorial  >  Time Machine Tutorial
    Video on Restore From Time Machine
    http://support.apple.com/kb/VI29

  • How do I change the screen size to standard in iMovie 10?

    I can't seem to find where to change the screen to standard size - in previous imovies it gave the option when creating the new project but this version doesn't seem to.

    Star with:
    Menu > File > New from Template Chooser > Sidebar > Page Layout > Blank > Blank Canvas
    If you need to have two cards on one page then just set up one using text boxes and images to the 4 x 6 (inches?), group them and option shift drag a second copy down the page so you then have 2 and alter the copy as you need.
    Change the text and images to placeholders, capture those as a Layout and then save that as a template.
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&highlight=labels &mforum=iworktipsntrick
    1. To make the individual card follow the instructions for Labels & Business cards but use your size:
    2. To make the placeholders see Double folded Greeting Card.
    3. To make the template follow Letterhead and follower sets ignoring the irrelevant bits, and only capturing one page, before saving as a template.
    Peter

  • Is there any way to change the screen resolution in Front Row?

    Hi all,
    I've got a Mac Mini plugged in to my TV, and I want to be able to change the screen resolution depending on the content I'm watching (as some content is in 4:3 aspect ratio, some is in 16:9, and I'd prefer to have the picture filling the screen completely). Unfortunately, the TV doesn't have a "stretch" mode for making an 4:3 picture fit a 16:9 aspect ratio. If I know what I want to watch in advance, I can set the resolution accordingly using system prefs on the mac, but if I'm just sitting back choosing what to watch with the Apple Remote, it's annoying to have to leave front row, walk over to the computer and change resolution once I've decided what to watch, open system prefs, change resolution, re-launch Front Row and find what I wanted to watch again.
    So I was wondering if anyone had figured a way to allow the screen resolution to be switched from within the FrontRow UI. I've seen that people have written python based plug-ins such as PyeTV and Understudy that allow different types of content to be added to FrontRow, but I've not found any utility plug-ins such as what I'm looking for on the net (nor could I find SDK documentation on this API in the stuff that comes with XCode).
    I guess the other approach might be quick keys: has anyone had any success hooking up quick keys macros alongside front row in response to apple remote events? (seems too few events to be able to choose from, but I've never tried it, so I won't assume!) Or how about is there a way to trigger an AppleScript from within Front Row? And, of course, I'm very open to any other ideas you might have!
    Thanks very much in advance for any ideas on this.
    Andy
    Message was edited by: Andy__D

    Safe Boot from the HD, (holding Shift key down at bootup), set a good rez there.

  • How to change the screen resolution

    Dear All,
    Could someone please help and tell me how I can change the screen resolution (i.e. the dimensions of the monitor) in Solaris 10 using CDE?
    Regards and thanks a lot for your reply

    This site has some instructions on how to do this: http://solaris-x86.org/documents/tutorials/cde.mhtml

  • How to change the screen field text in runtime

    Hi ,
      I want to change the screen button text in runtime IN ABAP dynpro screens. if anybody know this please post some helpful answer
    Regards,
    Anil kumar G

    Hi Anil..
    We can change the Text of a Pushbutton dynamically.
    For this:
    1. Declare a Global variable with the Same name as the Button in TOP include
      Eg:   Data: Button1(30).
    2. In the PBO module of the Screen assign the Text to this variable:
       Eg:
        Module set_text OUTPUT.
            Button1 = 'This is the text'.
        ENDMODULE.
    <b>REWARD IF HELPFUL.</b>

  • I dropped my iphone vertically on the ground. The screen is normal when it is locked. but when unlocked, it is broken down from the clock. Can it be fixed and is it under the warranty conditions? If not how much is the price to change the screen?Thanks

    I dropped my iphone vertically on the ground.The screen works when it is locked.When unlocked, it's broken down from the clock.Can it be fixed and is it under warranty conditions?If not how much is the price to change the screen?Thanks

    User damage is not covered by warranty unless you have Applecare +
    assuming you do not,  the out of warranty exchange price for an iPhone 4 is $149,exchange at an Apple Store genius bar
    iPhone 4 are not repaired they are exchanged

  • How to change the screen settings in my laptop

    Hello. I have a Satellite Toshiba laptop and as my daughter started pressing some buttons she changed the settings on the screen. When I go to my email or to some web pages the page and the letters look bigger and maybe of a different style, although my screen zoom level remains at 100% and then they are too small if I put the zoom at 75%. I tried to change the screen settings through the control panel but couldn't find something useful and then when I tried to restore the system to an older restore point so I can go back to my old settings it wasn't able to do it, even though I' ve tried different restore points (lovely windows!). Anyone has any ideas of what else I can do?
    Thank you in advance!
    Sandra

    Probably one of these, Sandra.
    Satellite A200-1J0 (PSAE6E-04R034AR)
    Satellite A200-1J0 (PSAE6E-04R039HU)
    Satellite A200-1J0 (PSAE6E-04R03DRU)
    The best resolution of that screen is 1280 x 800.
    This site is for models made in the USA. You'll find your drivers and utilities here.
    -Jerry

  • My phone changed the screen to the apple logo and kind of 'reboot it self' by it self

    So I was on my phone on Safari and all of a sudden , the screen freezes. I tapped it a couple times and nothing happened. Then, in a matter of a couple seconds, my iPhone 4 changes the screen to the apple logo(the black background and the apple logo in the middle, kinda like it was rebooting itself by itself. This isnt the only time this has happened , about three times total... I have iOS7  so I dont know i thats the problem or what..:/ please help thank you. ALso, i have ios 7.0.4 do I have to update it in order for it to stop?

    It can take a few minutes to reinitialize, but if it stays on the Apple logo for as much as 10 minutes there is something seriously wrong. Try restoring again, and set up as a new phone rather than installing your backup. If this fixes it you have a corrupt backup. If this doesn't fix it the phone is broken. Or possibly jailbroken.

  • How to Change the Screen Saver Settings to Mystify in Windows 7 using vbscript?

    HI All,
    How to Change the  Screen Saver Settings to Mystify in Windows 7 using vbscript?
    Thanks
    Divakar

    First: What is a GPO?
    Second: jrv, that was not too helpful in general. someone should do some actual code.
    Bob Blork - Mark as answer if it helped!
    This is a forum for technicians and not for home users.  GPO is what technical people use to manage Windows. THe script to do this is in the link I posted - how is that not helpful?
    I know this is all over your head.  I am curious as to why you would respond in a technical forum to a question you do not understand.
    We do not provide free scripts.  We also will point users at correct answers.
    This is not a forum for homw users or for simple support questions.  It is also a thread that has been  answered for a long time.  Perhaps you should start a new thread if you have an actual question about scripting.
    ¯\_(ツ)_/¯

  • How to change the screen brightness on a macbook?

    How to change the screen brightness on a macbook?
    My Macbook is a May 2010 model in white
    I am looking how to change the brightness using the keyboard, because I know how to change it using System Pres

    The F1 and F2 keys control brightness.  Depending on how you have your function keys set up, you may have to also hold down the fn key to activate.

  • How to change the screen resolution in the Mobile Emulator

    so far we tried the Mobile Emulator in the netbeans, it is alway 240*320, but many real device is WVGA(480*800)
    whether does that mean the JavaFX Mobile only support the 240*320?
    if not, how can I change the screen resolution of the mobile Emulator, thank you

    I'd like to know how to do this, too. I tried fiddling with the "ScreenGraphics.bean" in the JavaFX\javafx-sdk1.2\emulator\toolkit-lib\devices\QwertyFxPhone directory, but without success.
    If anyone knows, please just drop a quick line here!

  • How to change the screen time on 2330c.....

    is there any option to change the screen time from center to a top end.....?
    Solved!
    Go to Solution.

    Date and timeSelect Menu > Settings > Date and time.To set the date and time, select Date and time settings.To set the formats for date and time, select Date and time format settings.To set the phone to update the time and date automatically according to the current
    time zone, select Auto-update of date & time (network service). 
    here is online guide which may contain more info
    http://nds1.nokia.com/phones/files/guides/Nokia_2330_classic_en.pdf
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • How to change the screen element to be ineditable in Dynpro POV

    Hi Experts,  any one has experience on how to change the screen element to be ineditable in Dynpro POV?

    Write this piece of code in the PROCESS ON VALUE-REQUEST..
    PROCESS ON VALUE-REQUEST.
    FIELD MARA-MATNR MODULE matnr_mod.
    MODULE matnr_mod input.
    LOOP at Screen.
    if screen-name=<field_name>.
      screen-input = 0.
      modify screen.
    endif.
    ENDLOOP.
    ENDMODULE.
    Thanks
    Venkat.O

  • Hay. i change the screen LCD in IPAD 2 3G but i don't know what happen. She was working and every thing it's ok. One time i turn off the ipad and turn on more time, i don't see good in LCD the  brightness is to low and i can see any thing

    Hay. i change the screen LCD in IPAD 2 3G but i don't know what happen. She was working and every thing it's ok. One time i turn off the ipad and turn on more time, i don't see good in LCD the  brightness is to low and i can see any thing!! and i want to know why is happen

    Assuming you mean that you performed the repair yourself, it would seem that you either obtained a defective screen or you did some sort of damage when you replaced the screen. You can try asking for assistance on ifixit.com, a site dedicate to those attempting their own repairs, or you can take the iPad to a shop and pay them to try to correct the problem for you. Apple will no longer touch your iPad now that you've attempted your own repairs.
    Regards.

Maybe you are looking for

  • How can I copy my iPhoto library from my MacBook Pro to my IMac

    I use my 13" MBP in my van for business and store my job photos on it using iPhoto. I would like to keep a copy of my entire MBP iPhoto library on my iMac also. I do have a 2tb time capsule that I use to back up both computers. Is there a way to conn

  • Create a multi-company portal

    Hi all I´m currently inmersed in the design of a new SharePoint portal for multiple companies (SharePoint 2013 Enterprise). The main idea is to have the same structure for all companies (lists, librarys, public views, ...) but separate the contents (

  • Signs instead of letters?

    I have a feeling I have touched a "wrong" button on my display. Suddenly, I only type various signs instead of letters - so this text is written from another computer, as my MacBook is suddenly impossible to use. Does anyone know how to solve this pr

  • Part Payment in ML81N

    I had only one service line item for construction of a building for 12 lakhs. For that my payment conditions are on pro-rata basis. then how can i confirm for the part payment for this single line item. the service line item i had taken is constructi

  • Crystal Report as a Hosting Service

    Post Author: Shahoo CA Forum: General Hi friends. I have not much info about crystal report. Our company is a web hosting one, and a few of the clients of our windows hosting have requested us to include crystal report in our offered services. I like