Default display option in MB51

Hi Folks,
Can anyone help me in setting up a user specific default DISPLAY OPTION in transaction MB51.
Expecting an early reply.
T H A N K S,
Sugopa

Hi,
below link might help you
http://help.sap.com/saphelp_erp2004/helpdata/en/b5/2f2671d6f511d3b7f30000e82de955/frameset.htm
what is your requirement.
is this what you want when a user executes MB51 then the options should be default one if so
enter tcode MB51
go to system-user profile-set data and execute.
when ever you execute MB51 all the time the same data will be there.
is this your requirement if not getback......
if it helps and solves your problem reward points and close the thread
regards,
venu.

Similar Messages

  • How to set the default display date of Calender prompt of SMPortal???

    Good Day!!
    As for as my knowledge, the default date Visible in all Calender prompt will be the
    Starting Date in the Specified date range either "RelativeDateRange" or "AbosoluteDateRange".
    But we have a requirement to set the default date to a date in the middle of the specified range, I don't find any option to specify in Request Offering Wizard or MP's xml file.
    Our scenario is as follows,
        We are trying to customize the CSPP's request offer "Request Virtual Machine", which has a user promt to select Decommission Date for the New VM. We have configured the date prompt as Relative Date range and set the
    Start date as "1 day next to user's current time" and Maximum date to "90 days after relative date".  So the user will get option to select Decomm date from (1-90) days with the defalut date as 1st day next to his current
    time. But our requirement is to set the default available date as 90th date in the above mentioned Relative Date Range.  
         I couldn't find any option in Request offering Wizard as attached below,
          Also I couldn't even find any tag to specify the default display date in the MP's XML file as attached below. Is there any other <tag> can be included inside <Details> tag to accomplish this ??
        Is there any other way to accomplish this???
        Please advise
    Thanks,
    Narayanababu
    Thanks and Regards, Narayana Babu

    This is probably a link editor parameter, see the linker and loader guide.
    Another thing you can do is write your own sbrk() that will log whenever it's called, so you can at least see how many times it's called and with what values. If you really need in-depth instrumentation, write your own heap routines and give them the same names as the CRTL routines. The linker should find yours first and route all memory operations through them. At least, that's the way it worked for me on SunOS 4.1....

  • New mac user needs help with default display

    hi, i am a new mac user and i accidentally changed the default display. I want to change it back to the default display but it doesnt seem like any of the options in "system preferences" - "display" change it back to the default out of the box display. please point me in the right direction. thank you!

    im talking about the screen resolution. I went under "system preferences" then clicked on "display" and somehow the mouse clicked on another resolution which stretched everything out. so I went threw all of the difference resolutions and nothing seems to be like the default one. am i missing something? thanks

  • NO-DISPLAY option for Radio buttons

    Hi All,
    I want to hide the 2 radio buttons on the selection screen using the NO-DISPLAY option. when i worked with that its giving an error like 'no-display and radio button group can be specified together'.
    my question was is it possible to use NO-DISPLAY option with radio buttons?
    Thanks
    Kumar.

    See this sample code
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-h01.
    *Radio button for Process PO invoice
    PARAMETERS :   rb_po   RADIOBUTTON GROUP inv USER-COMMAND rad.
    " PO Invoice
    *Radio button for FI Invoice
    PARAMETERS :   rb_fi   RADIOBUTTON GROUP inv.
    " FI Invoice
    *Radio button for Process PO & FI Invoice
    PARAMETERS :     rb_pofi   RADIOBUTTON GROUP inv.
    " PO & FI Invoice
    SELECTION-SCREEN END OF BLOCK b3.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    SELECT-OPTIONS:
                    s_bukrs   FOR  rbkp-bukrs,       "Company Code
                    s_ekorg   FOR  ekko-ekorg NO INTERVALS MODIF ID md2,
                                                 "Purchasing Org.
                s_ekgrp   FOR  ekko-ekgrp NO INTERVALS MODIF ID md2,
                                                     "Purchasing Group
                s_werks   FOR  rseg-werks NO INTERVALS MODIF ID md2,
                                           "Plant
                    s_lifnr   FOR  rbkp-lifnr NO INTERVALS,
                                                     "Vendor
                s_matkl   FOR  ekpo-matkl NO INTERVALS
                                              MODIF ID md1,
                                                     "Material Group
                s_belnr   FOR  rbkp-belnr NO INTERVALS,
                                                     "Invoice Number
                    s_ebeln   FOR  rseg-ebeln NO INTERVALS MODIF ID md2,
                                                     "Purchasing Document No
                    s_gjahr   FOR  rbkp-gjahr NO INTERVALS,
                                                    "Fiscal year
                s_budat   FOR  rbkp-budat NO INTERVALS,
                                                    "Posting date
                    s_blart   FOR  bkpf-blart NO INTERVALS,
                                                    " Document Type
                    s_bldat   FOR  bkpf-bldat NO INTERVALS,
                                                    " Invoice Date
                s_usnam   FOR  rbkp-usnam NO INTERVALS.
    "User
    *Report type
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    SELECTION-SCREEN BEGIN OF LINE.
    *Radio button for User Report
    PARAMETERS :     rb_user  RADIOBUTTON GROUP za DEFAULT 'X' <b>USER-COMMAND rad MODIF ID md2.</b>"User report
    SELECTION-SCREEN COMMENT 3(20) text-003 FOR FIELD rb_user MODIF ID md2.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    *Radio button for Managing Report
    PARAMETERS :     rb_man   RADIOBUTTON GROUP za
                                          <b>MODIF ID md2.</b>
    "Management Report
    SELECTION-SCREEN COMMENT 3(20) text-004 FOR FIELD rb_man
                                            MODIF ID md2.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END  OF BLOCK b2.
    SELECTION-SCREEN END  OF BLOCK b1.
    AT SELECTION-SCREEN OUTPUT.
    * Checking Radiobuttons and modifing Material Group field  .
      PERFORM f13000_check_radio.
    FORM f13000_check_radio.
    * When the FI button is selected hide the fields under group md1 and MD2
      LOOP AT SCREEN.
        IF screen-group1 = 'MD2'
        OR screen-group1 = 'MD1'.
          IF rb_fi  = c_x
          OR rb_pofi = c_x.
            screen-active = 0.
          ELSE.
            screen-active = 1.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    * If the user output radiobutton is checked then make the screen
    * input of Material Group off
    <b>  LOOP AT SCREEN.
        IF screen-group1 = 'MD1'.
          IF rb_user = 'X'.
            screen-active = 0.
          ELSE.
            screen-active = 1.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.</b>
      IF rb_user = 'X'.
    *   When display for material group is off
    *   then refresh the select option for material
    *   group
        REFRESH s_matkl.
      ENDIF.
    ENDFORM.      " f13000_check_radio
    hope this helps.

  • ERROR ITMS-9000: "Unable to parse apple display options file: com.apple.ibooks.display-options.xml" at Book (MZItmspBookPackage)

    Hi, I'm En32, now trying to publish my first iBooks (epub).
    The package I created is always rejected to deliver with following error.
    Does anyone who can provide me a solution ?
    === error ===
    Package Summary:
    1 package(s) were not uploaded because they had problems:
              /Users/En32/Music/iTunes Producer/Playlists/10000448204.itmsp - Error Messages:
                        Apple's web service operation was not successful
                        Unable to authenticate the package: 10000448204.itmsp
                        ERROR ITMS-9000: "Unable to parse apple display options file: com.apple.ibooks.display-options.xml" at Book (MZItmspBookPackage)
    ===
    $ cat META-INF/com.apple.ibooks.display-options.xml
    <?xml version=”1.0″ encoding=”UTF-8″?>
    <display_options>
    <platform name=”*”>
    <option name=”fixed-layout”>true</option>
    </platform>
    </display_options>
    ===
    Actually, I'd like to use fixed layout so I use com.apple.ibooks.display-options.xml.
    This ePub file looks good because I can open it with my iPad - iBooks, however iTunes publisher always rejects this.
    Any solutions ?

    I was getting that error when I used OSX's default compress feature. I found a little utility called ePub Zip and used it to compress (zip) my ePubs and that did the trick. They then passed the validation. I got it here:
    http://www.mobileread.com/forums/showthread.php?t=55681

  • When i am on the 4 step in Search Result Display options, i get errors after 2 radio buttons

    I am using Oracle portal 9.0.2 version
    When i am on the 4 step in Search Result Display options, i get errors after 2 radio buttons
    Default Search Results Page
    This Search Portlet
    An unexpected error has occurred (WWS-32100)
    User-Defined Exception (WWS-11230)
    Unknown Exception (WWC-45131)
    ORA-20101:
    ORA-06512: at &quot;PORTAL.WWSBR_STDERR&quot;, line 437
    ORA-06512: at &quot;PORTAL.WWPOB_API_PAGE&quot;, line 3369
    ORA-01403: no data found
    ORA-01403: no data found (WWC-11230)
    No data found (WWS-32101)
    ORA-1403: ORA-01403: no data found
    ORA-01403: no data found (WWC-36000)
    Error: An unexpected error occurred: User-Defined Exception (WWC-43000)
    Please help me with this one
    P.S I tried to run inctxgrn.sql, but it did not solve the problem

    i solved the problem by runing 2 scripts as a portal user
    You can refer to bug - 2418089. This was fixed in 9.0.2.3
    begin
    wwpre_api_value.set_value_as_number
    p_path => 'oracle.portal.search',
    p_name => 'searchresultpageid',
    p_level_type => wwpre_api_value.SYSTEM_LEVEL_TYPE,
    p_level_name => null,
    p_value => 6,
    p_commit => true
    commit;
    end;
    begin
    wwpre_api_value.set_value_as_number
    p_path => 'oracle.portal.search',
    p_name => 'searchresultpagesiteid',
    p_level_type => wwpre_api_value.SYSTEM_LEVEL_TYPE,
    p_level_name => null,
    p_value => 6,
    p_commit => true
    commit;
    end;
    NOTE - The difference is the value of 'p_name' attribute. If u see carefully it is 'searchresultpagesiteid'. The first time u run this the value is 'searchresultpageid'.

  • Will migration assistant change the default display settings on my new Mac?

    I just set up a new iMac and used Migration Assistant to load from my Time Machine. But now the display looks muted and not as bright. Would Migration Assistant change the default display settings on my new Mac?

    Migration Assistant may not be the cause. But you should reset the NVRAM and see it that fixes the issue.
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the third time.
    Release the keys.

  • Diffrence between Codec C40 Premium Resolution Option & Multisite MS Option & Dual Display Option

    What is the difference between
    Codec C40 Premium Resolution Option
    LIC-C40-PR
    Codec C40 Multisite MS Option
    LIC-C40-MS
    Codec C40 Dual Display Option
    LIC-C40-DD

    Hi patilaniket
      Codec C40 Premium Resolution Option is option key which affects the resolution you can transmit during a video conference.
    It should be required for:
    1920 × 1080@60 fps (1080p60)
    1920 × 1080@30 fps (1080p30)
    1440 × 900@30 fps (WXGA+)
    1472 × 1080@30 fps (SXGA+)
    1680 × 1050@30 fps (WSXGA+)
    1600 × 1200@30 fps (UXGA)
    512 × 288@60 fps (w288p60)
    768 × 448@60 fps (w448p60)
    1024 × 576@60 fps (w576p60)
    1280 × 720@60 fps (720p60)
     Codec C40 Multisite MS Option  is the option key on an endpoint that enables that endpoint to support a multipoint call w/o MCU. For example with this option you can create conference call with max. 4 members w/o MCU. For more participants you need MCU.
     Codec C40 Dual Display Option is the option key that enables you to show 2 different contents. For example:
    Video ouptuts on the C40 are enabled by default. W/o the Dual Display option, you'll get the same content on both screens. With this option you can have video call on one screen and shared content on the second screen.
    Michal.

  • Fn+F5 not displaying options - Satellite A60

    Two days ago when I used Fn+F5 I could scroll through the options and choose the different display options. Yesterday when I did the same thing the options were not available. Both times I was connecting to a projector. Rebooting does not help.
    Is there a way to reset the defaults? Perhaps I hit a key and changed them? Has this happened to anyone else? Just looking for a solution.
    I am running XP, on Satellite A60.
    Thanks to anyone who can help.
    Jenn

    Hi
    Looks like the Toshiba Hotkey Utility and Hotkey Utilitys for Display Devices stop working.
    Go to the Toshiba driver page, download the utilities and reinstall it!
    PS; I would recommend firstly removing the old tools from the OS. Then reboot the notebook and install Hotkey Utility, reboot again and follow the installation with Hotkey Utilitys for Display Devices.
    Good luck and greetings

  • How to setting WBS display options in CJ40 or CJ30

    Hi,
        I hope default using description when I maintain cost plan in CJ40, WBS element display is description .
        Thanks!

    hi,
    I know you say that indicator in CJ20N, but i hope to see using description display WBS when i enter in cj40 or cj30.
    you know ,as you enter in CJ40 or Cj30,then select 'setting'----->display options -->
    using description. I hope default display  using description.
    Thanks!

  • CS6 InDesign - Default display is high-quality. Four placed images are Illustrator files. Three images look the way they should - high-quality. One image looks pixelated. Why?

    InDesign CS6 - Default display is high-quality. All four placed images are Illustrator files. Three images look the way they should - high-quality. One image looks pixelated. Why?

    Not sure if this will help, but what is your inDesign file's "Transparency Blend Space" set to? It's under the edit menu.
    Also, when you are placing your images, are you selecting "Show Import Options" and making any selections there?

  • Presenter Display Options Are Missing in Keynote 6?

    I upgraded to Mavericks / Keynote 6 yesterday.
    I have a dual monitor setup on my iMac27, and today when I'm trying to play a keynote presentation, it displays on the wrong monitor.
    I seem to be unable to switch it to my primary monitor, because the "Presenter Display Options" tab (under preferences) that was present in the previous version is alltogether missing.
    Anyone else have this issue, and a work-around?
    Where are the "Presenter Display Options"?
    Thanks, JB

    Hi, everyone. 
    I, too, have encountered the same problem the first time I fired up Keynote to an external projector.  After trying out all the suggestions posted here, I stumbled upon a simple remedy.
    1.  Ensure that the "Enable Presenter Display" checkbox is ticked under the "Slideshow" preferences tab of Keynote.  I believe this is enabled by default.
    2.  Then right click the "Keynote" icon at the dock, and under "Options," assign to "None" or "All Desktops."
    I found that this enabled Keynote to present my slides in the exact same way as the previous Keynote version did.  Whether assigning it to "None" or "All Desktops" makes any difference or not, I cannot tell, but both options work. I hope this helps. 

  • ACCOUNTING FLEXFIELD에서 DISPLAY OPTION의 사용불가

    제품 : FIN_GL
    작성날짜 : 2003-03-31
    ACCOUNTING FLEXFIELD에서 DISPLAY OPTION의 사용불가
    ===========================================
    문제점
    Accounting Key Flexfield를 만들 때, 또는 유지보수시에
    특정 segment의 값을 default값으로 항상 넣게하고 화면상에는 보이게
    하고 싶지않을 경우. Display option을 uncheck을 하지만
    반영되지않는 상황
    Navigation path:
    General Ledger Responsibility
    -> Setup, Financials, Flexfields, Key, Segments
    -> 'Displayed' checkbox.
    Form name : FNDFFMIS
    Explanation
    Accounting Key Flexfield를 만들 때, 또는 유지보수시에
    Display Option은 지원되지않는다.
    다른 key flexfield에서는 물론 지원된다.
    the Oracle Applications Flexfields Guide를 살펴보면 아래와 같다.
    'If you are defining the Accounting Flexfield, you MUST
    display ALL segments. Hiding segments will adversely affect
    your application features, such as Mass Allocations'.
    그래서 지원가능한 해결책은 accounting key flexfield의 모든
    segment들을 display=yes로 해야한다.
    Reference Documents
    Note 106367.1
    Note 1047964.6

  • Change hyperlink display option settings

    Hello,
    I'm using Robohelp HTML 9. We have just decided that all our hyperlinks to pdfs need to open in a new window. However, previously this was not a standard, so not all of our hyperlinks open in a new window.
    Is there a way to change the default settings for display options of all hyperlinks within a project to "New Window."?
    I know the slow method is to go through each topic, and change hyperlink properties for each and every external link.
    Thanks in advance for your help.
    Tas

    Yes unless you have a developer who can write a regular expression to do it. If you do, back up first.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Regarding Parameter with NO-DISPLAY option

    Hi,
    I want to create a check box with NO-DISPLAY option how can i declare it.
    Means i need to create a check box with default value 'X' and it should not be displayed in selection screen.
    How can i do it!
    Thanks in advance.
    Thanks,
    Deep.

    SORRY ,i forgot to see the check box..
    please write following code it wil work - 
    parameters: p_cbox as checkbox MODIF ID ABC USER-COMMAND CH DEFAULT 'X'.
    Check sy-ucomm = 'CH'.
    AT SELECTION-SCREEN OUTPUT.
    loop at screen.
    if p_CBOX = 'X'.
       if screen-group1 = 'ABC'.
          SCREEN-ACTIVE = '0'.
          MODIFY SCREEN.
       ENDIF.
    ENDIF.
    endloop.
    **award points****
    amit

Maybe you are looking for