How to make a filed  as Input Disable in VL02N

Hi All,
In VL02N == > Goto == > Header ==> Administarion.
I have to disable Delivery Block based on some value.
I have tried MV50AFZ1 ,MV50AFZ2 ,MV50AFZ3 . But i am unable to make the feild .
Can you please let me know the Correct User Exit for that.
Regards.
Rohit.

hmmm either search if there are screen exits for this dynpro, what i dont believe, or well, use the last chance and modify the PBO of the dynpro.
I personally dont like enhancements too much since the whole concept is hmmm quite not overthaught, so dont feel bad you cant use it.
Modyfying has at least the pro, that you notice, that there has been done something, tho you got a little bit more workload due to merging.

Similar Messages

  • How to make Text filed Grayed out / disabled

    Hi,
    I have a text field and I have set the following property..
    HTML Form Element Attributes:- readOnly=trueThis field is read only now.
    HOW to make this field looks like a disabled field, some thing like filling the background with light gray color.
    Thanks,
    Deepak

    Thanks Andy..it worked..but one clarification.
    when I am using the following code as suggested by you, I am getting the text box border, as well as gray color in the box...THIS is perfectly fine which I wanted.... (This will make that field always read only)
    Element Type - Text
    HTML Form Element Attributes - readOnly=true style="background-color:gray"NOW I want my field to be read only based on condition.
    So I am using the following code, This is displaying the gray color, but the border of the text box is gone, so it doesn't look good. How can I keep the border too..
    Element Type - Text
    Read Only Condition Type (condition - Expression1=Expression2)
    Read Only Element Table Cell(s) Attributes - style="background-color:gray"Also, How to make FONT bold, I am using - font-weight: bold; - but it's not working.
    and finally , can I define this style in custom.css file and then how to call that stylesheet here...????
    Thanks,
    Deepak
    Edited by: Deepak_J on Oct 8, 2009 11:28 AM

  • How to make a form for input in web interface builder

    Hi expert:
        How to make a form for input in web interface builder?I have already used it to do PS planning, but I don't know how to  draw lines and checkboxes . Thanks in advance.
    Allen

    WAD:
    Open the WAD and create a new template. On the left hand navigation you will have several Web Items available. Under 'Standard' you have 'Analysis' item. Pull that into your template to the right. Under the Properties tab you need to pick the query [form/layout] that you have built in Query Designer.
    You will also find other items such as Button group, Checkbox, drop down, list box etc available. Pick and drag into the template whatever it is you require. Lets say you want a button. Under the Properties tab select the 'Command' that you require. You could use standard commands that are available there. You could also define functions and commands that you require.
    Query Designer:
    Open the QD and drag the characteristics and key figures that you require into the rows and columns of the QD. You would need to specify restrictions under the Filter tab of the QD based on the granularity of data that you require. You would need to remember that the key figures need to be made Input Ready [do this by clicking on KF and on the planning tab select "change by user and planning functions"].
    This shouldgive you a start. After you've explored it yourself a bit we can discuss further and I can certainly provide you additional details/material on these areas.
    Srikant

  • How to make a filed mandatory of an editable ALV

    Hi Guru,
    Pls tell me how to make a filed mandatory of an editable ALV so that while a new records is inserted the mandatory fields are filled.

    hi,
    You can make fields as mandatory fields using data changed event.
    validate the entered or blank entries of a column in data changed event and call method 'add_protocol_entry' to raise errors.
    Check the program : BCALV_EDIT_03 & BCALV_EDIT_04for more details.
    Refer to this link....
    about field in alv
    obligatory field editable in ALV

  • How to make A JButton not look disabled when it is  setEnabled(false);

    how do i make a jbutton not look disabled when i setEnabled(false) because when u disabled abutton it changes and takes away the frame of the button it self..is there a way to make it make a sound when its disabled and not take the frame away...example look at windows calculator when u have an answer for example 2 + 2 when the answer is displayed if u try to click the backspacebutton at this point it makes a sound..is this possible in java thanks

    Why did you repost this question??????
    You where given an answer in the other posting. You have not explained why the solution won't work and you haven't provided any further information about your question.
    You also haven't listened to the other advice, you just reposted the question word for word.

  • How to make the custom field enable/disable in ME21n/ME22n/ME23n trans

    Hi Experts,
    I need help.
    I have created one custom field in the transaction ME21n/ME22n/ME23n under customer data 2 tab. But my problem is the field is always in enable (means editable only)  even in Display mode. How to make the field is non editable in display mode and editable in change mode.
    I have tried by putting some logic to make that field to change alternatively according to change/display button. And it is working fine but if we click any othe button , this field is becoming editable even in display mode.
    How to make this field to behave as standard fields?
    Please reply me <removed by moderator>
    Thank you in advance.
    Best Regards,
    Divakar.
    Edited by: Thomas Zloch on Mar 2, 2012

    If you have BADI implimented for custom tabs then you can do this in method ME_PROCESS_PO_CUST~FIELDSELECTION_ITEM
    lv_changeable = im_header->is_changeable( ).
      LOOP AT ch_fieldselection ASSIGNING <fs>
        IF lv_changeable IS INITIAL.
          <fs>-fieldstatus = '*'. " Display
        ELSE.
          <fs>-fieldstatus = '+'. " Change
        ENDIF.
    endloop.

  • How to make a field mendatory input in ALV grid

    Hi All,
    I am using   CALL METHOD g_alv_grid_0200->set_table_for_first_display for diplay in an ALV Grid.
    I have made few fields in the ALV grid as EDITABLE. Now I want to make them as MENDATORY FOR INPUT.
    Can somebody please suggest me how can I do it using any field of field catalogue or any other way !
    Timely inputs will be highly appreciated.
    Thanks in Advance!!
    Chandan

    hi
    we the option of making the field as not mandatory or making the field ready for input or edit
    but dont have the option to make the edited field as mandatory.
    types: begin of slis_fieldcat_alv_spec,
             key_sel(1)     type c,        " field not obligatory
             input(1)       type c,        " input
             edit(1)        type c,        " internal use only
           end of slis_fieldcat_alv_spec.
    Regards

  • How to make use of the Input Stream

    Hai,
    I want to read input from the user for non-character type through Keyboard as the standard input device. How can I read the non-character type. I tried the following method, but not succeeded. The input data may be of type double or int. Can anyone help me.
    DataInputStream num=new DataInputStream(System.in);
    Double Vig_Fair_Value=num.read();
    Thanks,
    Sennat

    You read the characters the user types, eg. "15" into a string using a BufferedReader, you then convert them to a number here's an method to do it for integers
           public static int inInt()
              BufferedReader inp = new BufferedReader(new InputStreamReader(System.in));
              String s = "";try{s = inp.readLine();}catch(Exception e){}
              return toInt(s,0);     // make integer, default 0
           public static int toInt(String s, int er)
                int i;
                try{i = new Integer(s).intValue();}
                catch(NumberFormatException exc){i =er;}
                return i;

  • How to make Path point from inputed variable

    Hi Im wandering how I can replicate the rectangle tool in Illustrator where by I can input sizes into a window and it shall draw an object for me. The problem I have is stating that a point should be a (variable1,variable2) instead of (X,Y)
    im using the java ExtendScript Toolkit. so im trying:
      var docRef = documents.add();
        var piRef = activeDocument.pathItems;
        var pathRef = piRef.add();
      pathRef.setEntirePath( new Array(
      new Array(0, 0),
      new Array((shapeWidth), (shapeHeight)) ) ) ;
    Although what im looking to do is more complex this is the part giving me trouble
    any help would be greatly appreciated

    Thank you for the response
    Yeah, I understand. I have to put the keyword first, the problem is sometimes I transfer almost around 800 photos at once. I haven't had much time to sort every photos and put the keyword on every Path photo. Beside so many photos in my library, and not well-organized. Also I have tried any possibilities of relevant criteria in smart album. But still zero result.
    So, before I actually take the time to organize my thousands of photos manually, I was thinking maybe there's another way, simple and smart one, with this smart album feature. Anyone?
    Ismail

  • How to make the Applicant name link disabled in the webform of oracle apps

    Hi,
    In iRecruitment module,i have created a new responsibility with the name "irecruitment - interview" the menu attached with the responsibility is "Irc Employee Menu" and the functions and menu excluded are "Irc Employee Applicant Home Page","Irc Employee Home Page","IRC Employee Candidate Application Menu","Irc Employee Referral Application","Irc Interviewer Application".
    When i click on the responsibility the applicant names come,and on the applicant name link is there,on clicking onto the applicant name the other information of the vacancy also becomes visible,i want that the applicant name should be visible but the link link which is coming onto it should get disabled.
    In order to achieve this i have gone to personalisation and under the "Applicant Name" i set the "Popup Enabled" to "false" at the responsibility level.But it is not working out.
    Please tell me how can i achieve this.
    Regards
    Ankit

    Hi Avaneesh,
    When i goes to the personalisation in the "Destination URI" at all the levels i can only see "inherit" written how to remove the "URL" as specified by you.
    Please reply
    Best Regards
    Ankit

  • How to make Vi file as input file in Event structure?

    Hiii All..
    i got problems when to construct a event structure. The file input  (vi format) doesnt have source of wire connection to conect the wire (shift register) .For your information the vi that i create only contain simple mathematical equation.
    I already study the New Event Handler Example. but the file input for that example (acquire data.vi) have a source of connection. anyone can help me? 
    thank you very much
    [email protected]
    Solved!
    Go to Solution.
    Attachments:
    TOTAL.vi ‏18 KB

    Well, in your subVI you do need to wire up some inputs and outputs to your connector panel.  As I said, a basic LabVIEW skill that you will find in the tutorials.
    You have a number of inputs to your subVI.  More than you would want to attach to a connector panel.  You should perhaps use a cluster to group them together.
    To get you started, here are the steps to connect a control or indicator to the connector panel.
    1.  Open subVI.
    2. Right click on icon at upper right.  Show Connector.
    3.  Hover over a block you want to be a connector terminal, it will change to a spool of wire.  Click.
    4.  Go to the control or indicator on the front panel that you want to associate it with.  Click again.
    5.  Repeat as needed for other controls and indicators and save your subVI.  Now the subVI instance in your main VI can have wires connected to it.
    You should plan your connector panel so that controls are on the left side of the panel, and indicators on the right.  This will allow data to "flow into" and "flow out of" the subVI in a normal looking left to right orientation.

  • How to make ES filee manager work?

    Hello everyone. I used to use ES file manager to manage my files on my xperia SP. Now I had xperia Z2, but I can't use ES file manager the way I used to. I mean : if I want to move for example a picture from my internal phone memory to the External SD card , amessage pops up telling methat the task failed.
    Then I press on Task Details and a Hint pops up saying: Your system forbidsES from writing on external SD card(check https://code.google.com/p/android/issues/detail?id=67570), so ES can only write on it after rooted. I tried to enter this url but couldn't, an error occured saying :
    Your client does not have permission to get URL /p/android/issues/detail from this server. That’s all we know.
    I want to know if there is a way to make ES work without rooting. Thanks.

    @Prodigy1
    Don't forget to contact the app developer regarding this. 
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • How to make the Region Fild in Vendor Master as a Mandatory?

    HI All,
    can anyonde guide me about:
    How to make the filed: "Region" in Vendor Master a Mandatory while entering the Data.
    PL.help.
    Thanks,
    Roopan.

    Hi
    Go to T-code OBD3.
    Check with account group you use for the vendor.
    Double click on the account group.
    Double click on the general data and on then on the address group. You can maintain region here as Mandatory.
    Reward if this helps
    Thanks

  • How to make input field as mandatory field in sub screen

    Hi All,
           I need to display the input selection parameters in tab strip sub screen. The input screen is not giving an error while processing with blank values, but I made the input field as required in sub screen input filed settings. Can some one please help me how to make the input field as mandatory field in sub screen.
    Thanks in advance.
    Regards,
    Kannan

    Hi Kannan,
        Try this out.
    1. Goto screen painter
    2. Enter the program name and screen number ( screen # 1000 -  in case if its  a custom report prg)
    3. Double click on the field which u`ve got to make mandatory.You`ll get Screen painter attributes window.
    4. U`ll find three tabs here - Dict, Program, Display
    5. Go to Program tab, and change the first attribute - Input field`s input value as "Required".
    6. Save and activate it.
    7. Now execute ur program and this should make ur field as mandatory on the screen.
    This works with input fields, but I`m not sure about the input field in tab strip control.
    Hope this helps
    Regards,
    Farhana

  • How to make numbers in message text input  fields left aligned?

    Hi Friends
    I have completed one of my task .but getting result right side of the field.
    how to make numbers in message text input  fields left aligned?
    Thanks
    Aravinda

    Hi ,
    Sorry for late replay i am trying this alos not set that page....
    pageContext.forwardImmediatelyToCurrentPage(null, true, null);
    and one more that kff field working is fine for ex display any text pled displayed properly and only problem is not set the value and HrSitKeyFlex6 and HrSitKeyFlex7 fields are perfectly get the values but not pront HrSitKeyFlex8 that only my issue....
    Regards,
    Srini

Maybe you are looking for

  • Advanced Acroform Toolset

    First of all, how come Forms Central doesn't have a drop down calendar for the date field? So I found the Advanced Acroform Toolset - it allows you to install a set of tools, including a drop down calendar, into Acrobat Pro - and I installed it in Ac

  • Tables-Primary Key-Sequential read

    Hi Folks, Out of the following which imporves performace? 1.Using all the primary keys of a table in the where clause of a select statement? 2.Using any one or two (not all) primary keys of a table in the where clause of a select statement? Let me th

  • Why has my iPad safari changed to full screen

    I'm not exactly sure when is happened but it must have been today as I would have noticed it before. I've had my iPad 3 for about 6 months and the entire time I've had it at the top of the screen there is always a black bar with the signal strength,

  • Can someone explain wireless internet to me?

    Ok so I have a new macbook pro (purchased yesterday). I don't really understand wireless internet - can someone explain what I have to do to get wireless internet. I'm currently on ADSL. I did notice that I was able to pick-up a wirelesss internet co

  • Where is HTML help for uploading projects or where can i see Pods ??

    Hello Everyone, I am new to Robo Help. I have successfully installed Robo Help Server 8 in my PC. After i type http://<servername:port>/robohelp/admin I am able to view tha admin page. From there I am able to successfully able to login to the Admin M