Requirement is OB52 should be in display mode only

Dear Experts,
In sap users profile sap_new is required but OB52 should be in come in display mode only on PRD system, How can I provide the t-code OB52 for Disply only.
Regards,
TVS

Hi,
If SAP_NEW given to any one,then we can't change it to display mode.OB52 is purely depend on type of
System.In PROD system it will come in change mode only.Where as in other Boxes like DEV/QAS,OB52 will be accessible depend on Client state(SCC4).
So I guess it is not possible in PROD box after giving SAP_NEW.
Rgds,
Durga.

Similar Messages

  • Depriciation key and useful life periods in asset master should in display mode only

    Hi all
    At the time of creation asset master AS01 we are given the Asset class, company code and similar of asset (1) then we click enter button we will get Create asset: master data screen here in general tab we enter the description and in time dependent tab we enter cost center manually
    But
    When we click on Depreciation tab here the  Depreciation key and use life fields are automatically come with Dep.key(ABC) and use life(15) (Because we maintained in OAYZ)
    Here user have a chance to change the Dep.key(ABC) and use life(15).so my requirement is these two fields are display with only display mode .
    User don’t have chance to modify this.

    Hi Anil,
    The screen layout for Asset and its depreciation tab are different. You have to make these fields as Display only in the screen layout. This can be done using T-Code AO21. Below are the screenshots for the path and screen layout for your reference. This should solve your issue
    Regards
    Pankaj Pareek

  • SD data comning in CRM should be in Display mode

    Hello Frnds,
    My requirment is --- In the CRM system there is some data like dealer name , dealer code, city etc etc comning from SD R/3 system. and some data like date of birh , Address2 and 3 and some use full data.
    I want whenever the SD R/3 data come in the CRM system it should be in display mode so the  user can not change that data or not to modify data.
    Plese guide me any exit or badi or any other option.
    Its really helpfull ..
    Thanks,
    Venu.

    This idea of system of records is guiding principle in designing the data flow through the middleware. This is based on which system owns the master data or the transaction. Based on this principle, you configure the middleware subscriptions and publications. For example if ERP system is considered as the system of records for the Business Partners, then you set the mioddleware in such a way that the BP changes in CRM don't flow back to the ERP system.
    In your case you are probably talking about the BP master data. By default it is all or none - what I am trying to explain is that you can not stop or allow a certain portion of the data. For example, you want to change the address but not the organizational data. Such a selective modification capability with in one entity is not generally available - but can be achieved through little middleware programming.
    Behavior of the UI to enforce this underlying data flow based on system records or middleware filters is not available. You have to create a view variant based on certain roles.

  • All fields should be in Display mode except Plant field in Va02 and VA32

    Respected Guru's,
    I want all the fields in VA02 and VA32( Change t-codes)  to be in display mode, further user should be able to change the Plant value alone in sales tab.
    Is it possible to restrict it with the help of Authorization or does it requires customization.
    Please Help me in this regard.
    Thank tou,
    Daya

    Thanks for your information
    What is the transaction code for that
    ME29N - DISPLAY SCREEN SETTING ALREADY I HAVE DONE
    account assignment category is working only at item overview level, input - k iS IN DISPLAY MODE
    NOT account assignment tab fields
    please give the transaction code information so that it will be helpful for me

  • Price in P.O should be in Display mode while refering contract

    Hi Experts,
    I created a contract with material X and unit price Rs. 10.
    I am creating Purchase order refering the above contract. Now the price adopted from the contract is in changeable mode.
    I want the price should in non changeable mode ( display mode).
    Have you come across any configurations, BADIs and etc??
    Thanks in advance for your time and suggestions
    Kr
    Senthil

    Hi Nazrin,
    Thanks for your quick reply..
    I already tried this option, If we change the field selection as display mode, system marks the price as display but still in item tab PB00 is editable.. If we change PB00, it automatically changes the price. so the later one defeats our purpose.
    I know we can change PB00 condition type as unchangeable in Config but I think its not advisable to change the condition type. Or we need to create a new condition type for this scenerio which is again is headache..
    Is there any other way or exits available? P.O price should in display while refering to a contract.
    Thanks in advance
    Senthil

  • Call Transaction "MIGO" in display mode only

    Hi friends,
    I have changed the standard the SAP standard program MB51 to a Customer Program 'ZMB51' based upon the user requirement.Iam able to get all the values (output)
    Now my requirement is .... iam trying to call transaction "MIGO" when the user clicks on the Material Document Number (MBLNR) (as how in Standard program)
    I ve used "ALV_GRID..." display. and given a callback_user_command also .... iam able to call the trasaction ...... but it is editable and not in the display mode ..........
    Here my code :
    FORM SY_UCOMM_FOR_MBLNR USING R_UCOMM LIKE SY-UCOMM RS_SELFIELD TYPE
    SLIS_SELFIELD.
      IF RS_SELFIELD-FIELDNAME EQ 'MBLNR'.
      IF NOT RS_SELFIELD-VALUE IS INITIAL  AND
             RS_SELFIELD-VALUE NE SY-ULINE.
          CALL TRANSACTION 'MIGO'.
        ENDIF.
        IF R_UCOMM EQ SPACE.
        ENDIF.
      ENDIF.
    ENDFORM.                    " SY_UCOMM_FOR_MBLNR
    So ??????????????????
    What is the remedy ????
    Expecting ur answers....
    Thanks in Advance
    Cheers,
    R.Kripa.

    Hi ... it is solved ...
    I ve changed the code as how it was in MB51 report.
    Here is my code
    FORM SY_UCOMM_FOR_MBLNR USING R_UCOMM LIKE SY-UCOMM RS_SELFIELD TYPE
    SLIS_SELFIELD.
      CASE RS_SELFIELD-TABNAME.
        WHEN 'I_FINAL'.
          READ TABLE I_FINAL INDEX RS_SELFIELD-TABINDEX.
      ENDCASE.
      CHECK SY-SUBRC = 0 .
      IF R_UCOMM = '&IC1'.
        CHECK RS_SELFIELD-TABNAME = 'I_FINAL'.
        CASE RS_SELFIELD-FIELDNAME.
          WHEN 'MBLNR'.
            SET PARAMETER ID 'MBN' FIELD I_FINAL-MBLNR.
            SET PARAMETER ID 'POS' FIELD I_FINAL-ZEILE.
            SET PARAMETER ID 'MJA' FIELD I_FINAL-MJAHR.
        ENDCASE.
        IF SY-SUBRC = 0.
          SELECT SINGLE * FROM MKPF
                    WHERE  MBLNR = I_FINAL-MBLNR
                      AND  MJAHR = I_FINAL-MJAHR.
          IF SY-SUBRC = 0.
    MIGO_DIALOG is a funcion module to set the MIGO transaction
    in Display mode.
            CALL FUNCTION 'MIGO_DIALOG'
              EXPORTING
                I_ACTION            = 'A04'
                I_REFDOC            = 'R02'
                I_NOTREE            = 'X'
                I_NO_AUTH_CHECK     = ' '
                I_DEADEND           = 'X'
                I_SKIP_FIRST_SCREEN = 'X'
                I_OKCODE            = 'OK_GO'
                I_MBLNR             = I_FINAL-MBLNR
                I_MJAHR             = I_FINAL-MJAHR
                I_ZEILE             = I_FINAL-ZEILE.
          ENDIF.
        ENDIF.
      ENDIF.
    But still if anyone knows how to call MIGo transaction i Display mode using 'CALL TRANSACTION 'MIGO''.
    Thanks friends,
    Cheers
    R.Krpia.

  • X200s - 50Hz interlaced display mode only... What a headache!

    Bought X200s (1440x900 resolution) recently.
    Have found it to be very bad for my eyes.
    I've used to work on my aforetime Quanta for hours w/o any problems.
    Now with X200s I do have blearing eyes and headache very soon.
    Investigating the problem I've found that the best (and the only) display resolution possible is 50Hz.
    Moreover, only interlaced display mode is possible, even with native resolution!
    So the best mode we have with the newest X200s is 50Hz interlaced...
    Well, I've seen such LCD monitors when I was young (that was ages ago)...
    But now???
    I wonder if there is any other notebook (either netBook) on the market now with maximum refresh rate less then 60Hz?
    No fear!
    I'm definitely sure that Lenovo should recall this piteous product ASAP.
    Message Edited by gelleal on 03-20-2009 12:25 PM

    @lead_org
    I do not compare CRT to LCD at all.
    To be more clear:
    1. All modern LCD screens (including all laptop screens currently on market) hold at least 60Hz refresh rate/non-interlaced mode.
    2. Whereas cheap laptop LCDs work usually at not more then 60Hz, good screens possess 75Hz and sometimes 90Hz rates.
    3. Only very old LCD screens (10+ years ago) had 50Hz of refresh rate maximum and could work utilising interlaced modes only.
    4. The common notion states that any good LCD (not CRT) screen must render 60Hz refresh rate at least.
    On smaller CRT monitors (~<14 inches) few people notice any discomfort below 60–72 Hz. On larger CRT monitors (~>17 inches) most people would experience mild discomfort unless the refresh is set to a more comfortable 85 Hz or higher. (http://en.wikipedia.org/wiki/Refresh_rate)
    Some major manufactures consider 60Hz to be unsufficient, offering 75Hz-capable laptop screens.
    5. Low refresh rate setting affects the LCD’s performance (see http://support.apple.com/kb/TA22119?viewlocale=en_US etc. etc.).
    So, am I wrong? Or is the market wrong?
    Are there any other laptops with 50Hz (interlaced) maximum refresh rate I'm not aware of?
    I doubt if any.
    Back on topic: with new X200s (1440x900), I have 90Hz (non-interlaced) on external 17" 1280x1024 Sony LCD monitor, and up to 100Hz on external 20" NEC LCD monitor (any resolution).
    Both have a great picture.
    50Hz interlaced is definitely the laptop screen limitation, not of the Intel 4 Series Express graphic adapter.
    I've tried the older X200s (1280x800), which runs at 60Hz non-interlaced and does have a good stable picture.
    Did Lenovo accomplish a product invention, or there is a sales pitch of cheap screens below standards?
    BTW, in some countries LCD screens with refresh rates below 60Hz are prohibited by public health regulations.

  • How to display form in display mode only

    Dear firends...
         My BSP applications's page which is form actually is opend in change mode by default, I want to initialize this page in display mode as default. please help me to know how could carry out this task. Any suggestion, code, article will be great help of mine.
    thanking you,

    I think you mean HTMLB textEdit. Is that right ?
    If it's the case, you have the <i>disabled</i> attribute to set to 'TRUE' in order to prevent any input by the user.
    Here is the example adapted from SBSPEXT_HTMLB, page TextEdit.bsp
    <htmlb:textEdit  id       = "txtEdit"
                     text     = "The quick brown fox jumped over the lazy dog."
                     disabled = "true" />
    Best regards,
    Guillaume

  • I have connected my iPad 2 to an Infocus X1 projector using a 30 pin / VGA connection cord. The iPad displays the slide display mode only and does not permit slide show to be launched?

    I have connected my iPad 2 to an Infocus X1 projector using a 30 pin / VGA connector.  The iPad will not change from slide sorter mode to presentation mode. How do I change the iPad to 'slide show' and get the projector remote to respond to changing slides?

    The new Apogee Duet for iPad and Mac, is compaible with iOS devices and includes a USB Midi input. This sounds like the perfect solution for your workflow.

  • Conditions Tab to be in display mode

    Dear Friends,
    There is a unique requirement I have come across where the Conditions Tab in the Sales Order and the Billing Document should be in display mode only and that too only for 2 scenarios. The reason I cannot go to the Condition Type and make the necessary settings is that, the same Condition Types are commonly used in the Pricing Procedure of other scenarios. So, if I make the changes in one condition Type, it will affect the other Pricing Procedure.
    I cannot copy the Condition Types in Pricing Procedure and replace the existing ones because the BI reports will be afftected.
    Kindly suggest a solution where even in create mode of the Sales Order or Billing Document, the Conditions Tab is in display mode.
    Regards
    Vineet Jain

    Hi Anil,
    Please refer to OSS notes:
    105621 - Authorization check for the condition screen - you can use following user-exit includes for changing the condition tab to display only:
    USEREXIT_FIELD_MODIFICATION
    USEREXIT_PRICING_CHECK
    USEREXIT_FIELD_MODIFIC_LEER
    USEREXIT_FIELD_MODIFIC_KZWI
    USEREXIT_FIELD_MODIFIC_KOPF
    1165078 - Authorization check for conditions or subtotals - from ECC6.0 EHP4 there is a dedicated BAdI for authorization check, however if the user is not aurhorized to change the conditions, the conditions are not visible for the user as well.
    Regards,
    Marcin

  • Baseline date should in display mode

    Hi all,
    Our client wants baseline date should be display mode only. Now users are changing the proposed baseline date so client wants this should be not changeable.
    Please help.
    regards,
    Azeem

    Go to SPRO --> Financial Accounting --> Financial Accounting (New) --> Document --> Rules for changing document --> Document Changes Rules, line item.
    In that go to field name BSEG-ZFBDT for account type D (customers), K (Vendors), etc as required. Double click on that field name and remove the tick "Field can be changed"
    This will solve your problem.

  • Is there a way to use the iMac's display mode with a Mac mini with out logging in first on the Mac mini

    Is there a way to use the iMac's display mode with a Mac mini with out logging in first on the Mac mini (late2014)
    im currently useing my Mac mini as a portable computer, I take it to the university and use the iMacs there as a monitor but before I can do that I have to log in to my Mac mini first which means doing it blind
    is there a way to put the IMacs into display mode with out logging into my Mac mini first
    or is there a portable monitor that I can use that will not require me to login first

    This
    Target Display Mode: Frequently Asked Questions (FAQ) - Apple Support
    says:
    How do I enable TDM?
    Make sure both computers are turned on and awake. 
    Connect a male-to-male Mini DisplayPort or ThunderBolt cable to each computer.
    Press Command-F2 on the keyboard of the iMac being used as a display to enable TDM.
    Note: In Keyboard System Preferences, if the checkbox is enabled for "Use all F1, F2, etc. keys as standard functions keys," the key combination changes to Command-Fn-F2.
    How do I exit TDM?
    To leave TDM, press Command-F2 on the keyboard of the iMac that is in TDM. You can also exit TDM if you shutdown or sleep either computer or detach the cable.
    Can I use a third-party keyboard or older Apple keyboard to enable TDM?
    Some older Apple keyboards and keyboards not made by Apple may not allow Command-F2 to toggle display modes. You should use an aluminum wired or wireless Apple keyboard to toggle TDM on and

  • PO - Service tab gross price field is in display mode

    Dear all,
    My client requires
    Contract relase order with reference to Service contract, the price for the service codes which is adopted from the service contract, it is picking and displaying it contract release PO. But the gross price is in changeable mode. But i need the gross price field is in display mode. it should be in display mode while creating realse orders for contract.
    Expecting your earlier response
    Thanks in advance
    Raman

    Hi Raman,
    If you follow the steps mentioned in the note 30316 you will be able to find why the price in the contract is in changeable mode...and then we will be able to change the price to display mode.
    Note: 30316
    1.  In Transaction SE37, display function module MEX_FELDAUSWAHL and set
        a break point at the first statement.
    2.  Start the program where you suspect a problem with field selection.
        The program should stop at the break point set above. Copy the
        import fields I_AUSWAHL0, I_AUSWAHL1, I_AUSWAHL2, I_AUSWAHL3,
        I_AUSWAHL4, I_AUSWAHL5, and I_AUSWAHL6 to the list of field names.
        The corresponding field contents show the field selection reference
        keys that are composed as follows:
    3.  You can check the field selection reference keys found in
         Customizing. For purchase requisitions, the Transaction code is
         OMF2, for purchase orders it is OMF4, for contracts OMFA, for
         scheduling agreements OMF7, for requests for quotation it is OME8.
        Or
        Tcode: OLME  Contract  Define Screen Layout at Document Level
    4.  All keys from the AUSWAHLn fields are used to determine the field
         selection and their status. They are set according to the following
         matrix.
         See the matrix in the note
    Alternatively, the following can be stated:
         o  Field status 'Hidden' takes highest priority. This means that if
            a reference key has defined the field as 'Hidden', all other
            reference keys are overruled.
         o  Then follow statuses 'Display', 'Mandatory', and finally
            'Optional'. Accordingly, a field is assigned the attribute
            'Optional' only if all reference keys for the field are set to
            'Optional'.
    I hope this information helps you to resolve behaviour.
    Best Regards,
    Gabriela

  • Material PO Text in display mode

    Hi,
    When we create Purchase order with the material Code, then short text is copied from Material Master Also Material PO text is also copied from the same.
    Requirement is if material code is present in PO ( ME21N) then short text of material should be in display mode & Material Po Text( in Text tab) is also to be in display mode
    User should not be allowed to change the same , at present it is allowing the user to change short text of Material & Material PO text also.
    Please suggest
    Thanks In adavnce
    Regards,
    Rajesh

    Hi
    Check it in SPRo- sap img- Material management- Purchasing- Purchase order- Define screen layout at document level.
    Select NBF and then select Basic data item and select short text to display
    It will work
    Regards,
    Raman

  • Time buckets edit/display mode

    Hi
    We have requirement as first two time buckets of the planning book would be in editable mode to the user and from the 3rd bucket onwards the time buckets should be in display mode.
    How can we make the portion of the future time buckets as editable ?
    Thanks & Regards
    KPN Murthy.
    Edited by: p narasimha murthy konidena on Mar 24, 2011 1:59 PM

    KPN
    Look at the SAP help here:
    http://help.sap.com/saphelp_scm70/helpdata/EN/4b/755bee3bf75a18e10000000a421937/frameset.htm
    Look at SAP standard Macros in Macro book 9AEXAMPLES.
    Rishi Menon

Maybe you are looking for

  • Open Purchase Order, Sales Order and WIP Jobs

    Hello, Can some one help me with the query to find all open sales order, open purchase orders and open WIP jobs for an organization. Is there any way i can fetch this information from Oracle forms directly without running any backend query ? If yes,

  • Sent e-mails offline when moving to new Mac

    Hello I recently upgraded to a new MacBook Pro, after my Powerbook started having problems. One of faults it developed was that the Firewire port no longer worked. So, I couldn't use the Migration application. After a lot of messing around, I managed

  • What is synchronous mode

    while doing transport request import option called synchronous and asynchronous,what does it mean,which work process is utilised in what mode

  • Xhtml tags and attributes

    Hi, I was going through some xhtml reference text and found that there are many attributes to xhtml tags that i did not knew of. There were many tags which I never used. For eg., <big></big> and some attributes like <select dir=""></select>. What I w

  • Audio and video not synched up....

    Hello everyone. I am having a problem with my i-movie and was wondering if anyone here might know what I need to do to solve it. The problem is that the audio and video are not synchronized when I capture a movie. Any suggestions?