Grayed out field, but there is no screen variant in SHD0

I am in the middle of a configuration of sales order using Third Party.
In VOV6 for the incompletion Procedure (V_TVEP-FEHGR) the field is grayed out and wont allow an input.
How can I find out where is the code to make this happen, I already look on SHD0 and there are no variants for that program/screen.
Regards,
Carlos

HI,
Switch on the debugger(/h) before calling the tcode.
Now oen tcode..in debugger, place breakpoint at statement - MODIFY.
Now keep pressing F8 and look for MODIFY SCREEN, which will be there after graying out the field.
Regards,
Harsh Bansal

Similar Messages

  • How to grayed out fields in Pop screen in FBL1n while doing mass change

    Dear All,
    I want encorporate user specific screen with some edit fileds  with validations and some grayed out fields in pop screen
    in FBL1N Transaction while mass change option.
    Can you tell how can achive if any BADI or enhance pont or BTE or any exit .
    Regards
    Amar

    Hi amar,
    try with transaction variant
    with transaction variant we can hide or grey out fields
    bye
    T Bharat Bhushan

  • TS1702 Just a few minutes ago i tried to purchase from The Simpsons tapped out game, but there were a warning that my purchese was declined and i was asked to re-filled the payment info in order to compete my purchase. I did that but that wont work

    Just a few minutes ago i tried to purchase from The Simpsons tapped out game, but there were a warning that my purchese was declined and i was asked to re-filled the payment info in order to compete my purchase. I did that but that wont work and the warning keep showing up. Whats wrong? help please.. Is there any correlation with the software update? I did check the update , there is an update for iOS 6.0.1 .

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • When attempting to purchase a song from i-tunes that was on an old ipod that I had to replace, the song is marked as 'purchased' and grayed out.  Is there a way that I can download these previously purchased items onto my new ipod?

    When attempting to purchase a song from i-tunes that was on an old ipod that I had to replace, the song is marked as 'purchased' and grayed out.  Is there a way that I can download these previously purchased items onto my new ipod?

    Lori,
    If you upgrade to iTunes 10.3, you can redownload your past purchases from the iCloud.  Just go to the home page of the iTunes Store and click on "Purchased" under "Quick Links."  It will bring up a list of your past purchases that are not currently in your library, with a little arrow icon that lets you download.

  • How to gray out fields in VA01 & VA02

    Hi All,
    My requirement is to restrict manual entries of line items.
    While creating a  credit memo with refrence to billing document the items from billing document gets copied to this document.
    User wants to restrict entering more line items apart from these.
    Therefore the rows after the last line item should be grayed out i.e in display mode. (Not the columns).
    This should happen in VA01 & VA02 transaction.
    I have found the Userexit_field_modification in include MV45AFZZ.
    Also the screen nunmber is 4902 and table control TCTRL_U_ERF_GUTLAST whose screen input should be 0.
    Please let me know if there is some other way by which this can be achieved also if this is correct; then how should I proceed with the logic.
    Thanks in advance.
    Regards,
    Darpana.Ahire

    Hi,
    For doing so you can use the concept of the transaction variants. Using transaction variants, you can do the below:
    1) Make fields mandatory on screen
    2) Hide fields on the screen
    3) Default values on screen fields
    4) Make fields input disable on screen.
    Hence for doing this, go to SHD0 transaction and do the recording for the standard transaction. Once done Save the transaction variant.
    Finally from menu((tab page: Standard Variant in SHD0): Activate as Standard Transactions variant.
    Give the Name as your Transaction variant name.
    Once you active the transaction variant as the standard variant, then if the std transaction is called, the screens which you defined in the transaction variant will be called.
    No code changes need to be done. The transaction variant will only change the appearance of the screens
    Regards
    Shiva
    Edited by: Shiva Kumar Tirumalasetty on Sep 11, 2009 4:41 PM

  • PR - material number gray out field

    hello
    I need to know if there is any way to gray out Material number field  in PR when I just enter to Tx Me51n.
    thks in advance.

    Dear,
    This action need to be done in development Enviro.
    go to IMG  screen -.> MMPuchasing---> Purchase Requisition --- > Screen Layout  , Choose ME51N (Screen Variant) field Material No choose Display.

  • After quitting FF 8.01 on a Mac with OSX 10.5, restarting the Mac then starting FF, the offer to Restore Previous Session is grayed out. Is there any way I can recover the list of pages open when FF was last quit?

    Had about 15 windows w/ tabs open. System was a little sluggish and had not been rebooted in weeks so I Quit FIREFOX. Restarted the Mac, then FIREFOX. Option to Restore Previous Session was grayed out. I haven't used that computer since, hoping not to overwrite record of previous session.
    I've used the Restore Previous Session feature many times before without any problems.

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • How to mapped Gray out field in web dynpro for ABAP.

    Hi,
    While preparing a WD Application i m using a RFC,which has one input parameter as MODE.
    IF MODE = 'DIS' (DIS stands for Display) then all fields of layout in web dynpro should be gray out.
    and
    IF MODE = 'MOD' (MOD stands for Modification) then all fields of layout in web dynpro should be opened of entering the data.
    Can anyone help me to solved this scenario.
    Regards,
    <b>Seema</b>

    Hi Seema
    I had the same issue a while ago.  I ended up with an assistance class with  set/get read only methods.  I then used the following type code to set the read only property in the WDDOMODIFYVIEW:
    DATA: lr_start_date TYPE REF TO cl_wd_input_field,
            lr_end_date TYPE REF TO cl_wd_input_field,
            lr_pernr TYPE REF TO cl_wd_input_field,
            lv_read_only TYPE abap_bool.
    lr_start_date ?= view->get_element( 'INP_START_DATE' ).
      lr_end_date ?= view->get_element( 'INP_END_DATE' ).
      lr_pernr ?= view->get_element( 'INP_PERSON' ).
    lv_read_only = wd_assist->get_read_only( ).
      IF lv_read_only = abap_true.
        lr_end_date->set_read_only( abap_true ).
        lr_start_date->set_read_only( abap_true ).
        lr_pernr->set_read_only( abap_true ).
      ELSE.
        lr_end_date->set_read_only( abap_false ).
        lr_start_date->set_read_only( abap_false ).
        lr_pernr->set_read_only( abap_false ).
      ENDIF.
    All my business logic is within my assistance class so it makes it easier to maintain. 
    Regards
    Ian

  • I just updated to 10.0.2 and now the "restore recent session" and "restore recent tab" buttons are grayed out. Also, there is no drop down butten for history on the back button. Please tell me how I can use these features again. Thank you.

    Those are the details. I'm using a Mac. Please help, this is annoying. Thanks.

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.org/kb/Private+Browsing
    To see all History and Cookie settings, choose:
    *Firefox > Preferences > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    *Deselect: [ ] "Always use private browsing mode"
    The arrow to open the tab history of the Back and Forward buttons has been removed in Firefox 4 and later.
    Use one of these methods to open the tab history list:
    * Right click on the Back or Forward button
    * Hold down the left mouse button on the enabled Back or Forward button until the list opens

  • How do you delete photos from an Ipad2.  trash can in there, but is grayed out?

    I cannot delete photos from my Ipad.  The trash can is there but is grayed out. 
    Also, there a hundreds of pictures that I never loaded.  These are associated with (4) movies I purchased.  How do I stop this from happening.

    Only photos taken with the iPad, copied onto it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad - either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view. Photos that were synced from your computer are deleted by moving/removing/de-selecting them from where they were synced from on your computer and then re-syncing

  • HT4623 After I press general, I see everything but Software update. Download and install does not even appear, it's not grayed out. There is no Software update button. Why is that?

    I have an iPod touch 4G. I have been trying to skype with my friends with skype 5.0 and I was the only one that could not download it. Then I researched why and it says I need iOS 5.0. I then went back to research how to download it and on here it says that it should be in setting under general and then you will see software update. That if I don't have any room I will see download and install grayed out. But not even software update is there. There's no button. It basically does not exist on my iPod 4. Why is this?

    That is only a feature of iOS 5 or later...
    If you have iOS 4... See Here...
    http://support.apple.com/kb/HT4972
    And Here...
    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

  • Difficulty sharing screen--grayed out

    I set my mother-in-law up with a Mac Mini so that I could troubleshoot problems when she needed help. The ability to share screens via iChat is the main way we want to do this.
    But when we were both on iChat, the ability to share her screen was grayed out. Under her video menu, "Screen Sharing Enabled" is grayed out.
    Anyone have any idea what the problem might be? I can successfully share screens with others.
    Is it an issue with the Mac Mini? Is a video camera and microphone required to share screens?

    A Camera or Mic is not required to Screen Share although the Screen Sharing in iChat does include an Audio feed.
    I have tried turning Off Share Screen option then selecting Microphone Enabled which in fact then Disables it. I can still turn On Screen Sharing again.
    There is also a Show Audio (Video) Status (in the View Menu) which turns the Buddy Video and Audio icons Off. But these do not seem to effect things either.
    Does she have System Preferences > Quicktime > Streaming set at 1.5Mbps ?
    She will need to Restart iChat if she has to change.
    Having said this, in Leopard if left at Automatic, iChat would be limited to 384k anyway which would be fast enough for Screen Sharing.
    At this stage I am at a bit of a loss as to a Fix per se.
    I would get her to try a Restart of the computer whilst holding down the Apple Key + ALT PR keys together until she hears three start up Bongs.
    9:22 PM Friday; July 11, 2008

  • Rotate Format Field 180. Height Grays out and changes from 2 to 1????

    Is there a reason why when I create a Format Field with a height of 2, and then when I rotate the field 180, then the height changes to 1 and can not be changed. (Grayed out).
    Is there anyway to make the height back to 2? Strange why this would happen.
    I'm using v5.5.1.280.
    Thanks

    Well, I was about to send the email but before doing so I decided to see what the software says about rotating. Here a quote from the help system:
    >Output Designer does not support the rotation of multiple-line fields. If the rotate property for a multiple-line field is changed to something other then 0 (the default), Output Designer will automatically convert the multiple-line field to a single-line field. At the same time, Output Designer will gray out the height property for the field.
    There doesn't seem to be a text rotation property but the help system states:
    >Rotated text labels are restricted to a single line, using a single font. Output Designer converts a multi-line text label to a single line when rotated.
    My guess is that the programming team was able to rotate the field but ran into a problem keeping the height so they documented the restriction.
    It looks like to get multiple lines there will just have to be multiple fields and some way to split up the data into those fields.

  • Config settings to gray out "Reqted Qty" field while creating TO via LT03

    Hi Experts,
           Could anyone please me in this. I would like to gray out "Requested Quantity" field when creating TO via LT03 transaction. Can anyone please let me know where the config setting needs to be maintained inorder to gray out the "Requested Quantity" in LT03 transaction.
    Thanks for your help.
    Regards,
    Nagarjun

    Hi,
    no there is not such a functionality.
    From a field settings perspective you may work at account group level, =>OBD2 or OVT0
    and/or at transaction type level => OB20
    With OB20 you can distinguish between creation and change.
    You may also react per authorisation. See F_KNA1_EAN. In that case you may gray out fields individually.
    BR
    Alain

  • PP CS6 doesn't recognize my Quadro FX 4800 for Mac graphics card but my trial PP CC does. When I open CS6 the Mercury Playback engine is grayed out. In PP CC the Mercury Playback engine is not Grayed out. I have the latest Nvidia driver & Cuda driver. Do

    I installed PP CS6 on a Mac OS 10.10.2, installed latest drivers for Nvidia Quadro FX 4800 graphic card including Cuda driver. The Mercury Playback Engine is grayed out. But when I open an installed trial version of PP CC the Mercury Playback engine is not grayed out. Do I have a problem with CS6 software?? Thanks for any input you can offer.

    If your nVidia card has at least 1Gig of video ram, use the nVidia Hack http://forums.adobe.com/thread/629557 - which is a simple entry in a "supported cards" file - and Mac http://www.vidmuze.com/how-to-enable-gpu-cuda-in-adobe-cs6-for-mac/

Maybe you are looking for