Selection screen in Non-EDIT mode

Hi all,
I have a selection screen in which the user wants a field to be in Non-EDIT mode. How to do it?
PARAMETERS : s_vkorg like vbrk-vkorg default '1000'.
(The above parameter shud be in non-editable mode) 
select-options : s_vtweg for vbrk-vtweg.
select-options : s_spart for vbrk-spart.
Pls reply.
Thanks in advance.
Vijay

Vijay,
Use the code below.
REPORT zscreen.
TABLES: vbrk.
SELECT-OPTIONS : s_vtweg FOR vbrk-vtweg MODIF ID mo1.
SELECT-OPTIONS : s_spart FOR vbrk-spart MODIF ID mo1.
* At selection Screen Output Event
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF screen-group1 = 'MO1'.
      screen-input = 0.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.

Similar Messages

  • FBL5N - Feild selection non editable mode

    Hi All,
    When i execute FBL5N transaction,i am not able to select the feilds as per my desire bcoz the feild display ICON is in non editable mode.
    The only option i have is layout selection and not the feilds selection.
    Can you let me know how to change it to editable mode.
    regards

    Hello,
    You don't have authorization for maintain ALV layouts. Please contact to your Basis department for authorization.
    ALV layout authorization object is S_ALV_LAYO. Please tell your Basis departman to give this object value for '23'.
    Regards,
    Burak

  • Item field to non-editable mode(display mode) in Purchase Order(ME22n).

    Hi SDN,
    Based on the Comany code i need to modify the item level fields like <b>Item, Account Assignment, Material</b> to non-editable mode(display mode) in Purchase Order(ME22n).
    So i modifed in the method MODIFY_SCREEN_TC_LINE of class CL_TABLE_VIEW_MM and set the value L_FIELD_STATUS = *  for the screen filed MEPO1211-EBELP. When i execute, the whole column changed to display mode and the empty rows filled with 0(zero). But i want only grey mode for the line items that are present for that PO but not for the whole column. So can any one guide me to do so. I am using 4.6c.
    Thanks in Advance
    Regards
    Basha

    Hi Ramesh,
    Normally you can change the currency field, after entering information in Data base's table, go to Detail's table and change the rate as you want, then directly choose your PO number.
    so the system accept the rate entered aven though the PO had another rate.
    Regards.

  • 'Choose function drop-down is coming in non editing mode

    Hi,
       I am trying to create RFC iView.I given function Group asBAPI_BILLINGDOC_GETDETAIL and Function Name: as BILLINGDOC.But once i am selecting the button Find  'Choose function drop-down is coming in non editing mode. Please provide the needful.
    Thanks,
    kundan

    Hi,
    Plz ensure the function group name and funciton module name are correct..
    Drop down will be enabled only after clicking on find button provided by proper details of function group and name

  • Help Needed---Opening Attachments/Templates of a BP in non-editable mode

    Hi...
    I am new to CRM...
    How do we open a document/Template attached to a BP in non-editable mode in web UI?
    Helpful Answers would be rewarded.
    Thanks
    Swapna

    Hi...
    I am new to CRM...
    How do we open a document/Template attached to a BP in non-editable mode in web UI?
    Helpful Answers would be rewarded.
    Thanks
    Swapna

  • The note field is in non-editable mode in appraisal document

    Hi all,
    In appraisal document,
    the reviewer can give his comment in the status u201CIn Processu201D and in the Sub Status u201CAnnual Review by Addl Managers/Reviewersu201D in an appraisal document. It is editable when I am trying via web but when I try to upload the comment from backend GUI  ( using phap_admin) the note field is in non-editable mode. My client requires it in editable mode at the back end.
    Can any one help me on thisu2026

    Hello Girish,
    Can you please check the appraisal  template, Proper access has been given to use the note column. If still faces problem can look for the BADI  HRHAP00_COL_ACCESS.
    You can look for the following notes also :
    1554467   column access does not work
    Best Regards,
    Deepak..

  • Display a file with in the ADF screen in the edit mode.(RTF or Word format)

    Hi ,
    As per my business need i need to display a file (.doc or .pdf) in the ADF screen in the edit mode. Later user can be able to save the document . As of now i am using a separate editor for edit the document. but that editor is supporting only for html format only. so that some images which are there in those files are not displaying in the screen.so this is not the consistent solution for my requirement.
    So please help on this if any body had done this kind of object.
    Thanks,
    Rajesh
    Edited by: 927500 on Apr 18, 2012 7:31 AM

    Hi,
    ADF doesn't provide a component for PDF and Word editing.
    Frank

  • Appraisal Document opens in non-editable mode

    The Appraisal cycle is as follows: Appraisee-> Appraiser-> Reviewer
    The appraisal document is flowing correctly as per the status flow and the corresponding participants are able to act on it. But when the Appraisal document reaches the Reviewer, i.e. the last stage, it opens in a non-editable mode. Hence the Reviewer is not able to make any changes in the document. The buttons are also in disabled mode.
    Request you to help me with the same.

    Hi,
    Thanks for your response. Problem solved. The Roles and Element access was fine.
    Needed to set the BSP iView parameter MODE = X
    Now its working fine.
    Sheetal

  • How to make a field in non Editable mode

    Hi All:
    Now i created one form through wizard method this consists of following details
    Table name:T1
    Fields:No,Name
    here my requirement is how to make this "No" field in non editable mode after the insertion of the first record.

    You can make it a display item, you can disable the item, or you can set the update property to No. See the set_item_property in the Help documentation.

  • ALV Grid fields from editable to non-editable mode

    Hi,
    I am displaying my data through ALV Grid. In my grid the non-key fields are in editable mode.
    When I edit any of the editable fields and place the cursor on other field the field which I have edited should become disable(non-editable). Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it.
    Thanks & Regards,
    Adithya M.

    Hi Adithya,
    I am confused by your statement "place the cursor on other field the field which I have edited should become disable" -- are you stating that this is the requirement or what is currently happening with your program.  The way the edit fields should work by default is they are editable at all times unless you tell it otherwise. 
    If you are saying your requirement is to change the field to disabled once the field is edited (runtime change), first you want to handle the event on data changed then within your method of handling on data changed, you can disable the field from being edited by using cell styles and changing the value to disabled. 
    If you look at program BCALV_GRID_EDIT,
    You will find code where it disables the field for edit using Cell Style -- this will give you an idea how Cell Style controls editable fields and display fields:
            ls_cell-style  = cl_gui_alv_grid=>mc_style_enabled.
            ls_cell-maxlen = 4.
            ls_cell-fieldname = 'CARRNAME'.
            append ls_cell to gt_sflight-cell.
    This specific code will set the field disabled when the program is first exectued, in your case if you need to do this at run time, after someone edits the field, you need to implement handling the event on data changed, in the same program you will find:
    method handle_data_changed.                 
       perform data_changed using er_data_changed.
    endmethod.                     
    It is within this method that you can disable a field for editing.
    However, once it is disabled you will not get back into the handle_data_changed method.  I'm not sure I understand your statement "Again if I want to edit the same field which is now in non-editable mode should again change to editable mode when the cursor is placed on it."  Why would you want the user to be able to edit something, then show it disabled, then let them click on it and edit it again?  Why not just leave it in edit mode?  Maybe if I understand the requirement better, I can answer this portion of the question. 
    If this is based on security or changing from edit to display for the entire grid, you can run the same program mentioned above and click on the Change/Display button in the top left to see how it enables and disables the entire grid for editing.
    Cheers,
    Bonnie

  • Making screen fields non-editable in standard SAP screen

    Hi All,
    I have a reuirement. In transaction code CAA2 I have to make the field 'Incoming payment method' (EZAWE) as read only/non-editable. This field is available in table FKKVKP. We can make this field as read only by performing some configuration setting. But this field needs to be disabled based on some validations.
    For example EZAWE field should appear in changable mode when user has the role 'ZDJ: SUPER_USER' assigned to him. If the user does not hold this role the EZAWE fields needs to be disabled.
    One more thing here I don't have to use screen variants for this.
    Thanks,
    Venkat

    >
    Vijay Babu Dudla wrote:
    > Try with Transaction Variants , if there is no exit available to modify the screen dynamically, check the Transaction code SCDO.
    >
    > Search SDN with Transaction Variants
    Hi,
    I think it is SHD0. correct me if am wrong
    Rhea.
    Edited by: rhea on Oct 17, 2008 12:39 PM

  • Sequencing Screen Captures in Edit Mode

    I've used Camtasia alot and am transitioning to Captivate. To
    test recording and editing in Captivate, I recorded one minute of
    screen activity to simulate capturing an application demo. When I
    end the recording, it converts the recording to thumbnails and puts
    them in Storyboard mode but also chunks it into slides that I can
    not sequence in Edit Mode. I get 10 seconds chunks and I can't
    figure out how to put them together to make one sequence. Do I have
    a wrong setting? Any help is greatly appreciated.

    Hi Jennifer and welcome to our community
    This isn't intended to slam or highlight either product, only
    to point out differences.
    Camtasia captures full motion from the onset. Captivate
    captures individual screen shots and places them on slides.
    Captivate does do full motion capture, but it's not intended to be
    used like Camtasia's is. For example, you would never want to
    surround Windows Media Player using Captivate and record a five
    minute video. But you could do this with Camtasia. (copyrights
    notwithstanding)
    Camtasia allows text captions, but you have to add them after
    the fact. Captivate can add these things automatically. Captivate
    wins with these hands down, as there is more variety and they look
    more polished and professional.
    Captivate has only two different output types. .SWF and .EXE.
    Camtasia offers a wider selection. Including .FLV (Flash Video) ,
    .AVI (Audio/Video Interleave, .WMV (Windows Media), .QT
    (QuickTime), .RM (RealMedia).
    The Camtasia Timeline represents the entire project.
    Captivate's Timeline is per slide.
    Camtasia has some neat transitions you may use, but you have
    to split the movie manually and it takes a bit of getting used to.
    Captivate has a few transitions for slides, but the process seems
    more intuitive. At least to me.
    Captivate offers three "levels" of audio. Background track,
    Slide and Object. Camtasia essentially has two and seems a bit
    rigid as opposed to Captivate.
    Both products offer quizzing functionality. However,
    Captivate's seems more robust and easier to use. At least it does
    to me.
    Both products record the screen, but as near as I can tell,
    Camtasia is unable to record like Captivate does, where you end up
    with a simulation. You may certainly add Flash hotspots later, but
    Captivate does it for you.
    Those are just a few differences I noted. There are many
    more. Hopefully this helps give you an idea. Personally, while both
    products do essentially the same thing (record the screen) I easily
    see a need to have both.
    Hopefully this was helpful... Rick

  • Non-editable mode for customer master data in VA01 and VA02

    Hi all,
    User requirement is they don't want to give permission to change customer master data (payer & ship-to ). I didn't find any user exit to do screen non-editable.
    Can any one help me in this..
    Regards,
    Sudhakara

    Hi Sudhakar Reddy,
    For this transaction code user exits available :
    SDTRM001  Reschedule schedule lines without a new ATP check
    V45A0001  Determine alternative materials for product selection
    V45A0002  Predefine sold-to party in sales document
    V45A0003  Collector for customer function modulpool MV45A
    V45A0004  Copy packing proposal
    V45E0001  Update the purchase order from the sales order
    V45E0002  Data transfer in procurement elements (PRreq., assembly
    V45L0001  SD component supplier processing (customer enhancements
    V45P0001  SD customer function for cross-company code sales
    V45S0001  Update sales document from configuration
    V45S0003  MRP-relevance for incomplete configuration
    V45S0004  Effectivity type in sales order
    V45W0001  SD Service Management: Forward Contract Data to Item
    V46H0001  SD Customer functions for resource-related billing
    V60F0001  SD Billing plan (customer enhancement) diff. to billing
    For ur requirement whixh exit is suitable plz check it out. other wise put breakpoint for userexit and check it out.
    Rewards somr points.
    Rgds,
    P.Nag

  • In sales order sold to party is non editable mode

    Dear Experts ,
    I am facing one issue regarding customer code in sales order,my issue is
    As we are creating sales order with reference to service order ,when it comes to sales order the sold to party is in  non editable field,as we want to give the option for the user to change the sold to party address and save the document,is there any standard process to change the sold to party at sales order level,how to do that,and what will be the effect If i change the sold to party address,soon reply will be more helpful and thankfull.
    I have check all the related questions but I cant find related answer for this.

    Hello,
    Sold to Part is non modifiable in SAP Standard.
    For changing Customer address you need to change the Sold to Party code in Sales Order.
    Just go to partners Tab & double click on Customer Code of required partner & system will open Customer Address in new screen. You can change the address here.
    This change will be applicable only to particular Transaction & Customer Master address will not be changed.
    Hope this helps,
    Thanks,
    Jignesh Mehta

  • To make a field in non editable mode

    hi all,
    I have a requirement. In which i want a field to be in display mode.
    i want the user to select the data into the field only from the f4 option and not to entre manually.
    How can i code this. this is a report and not a module pool program.
    when i tried at selection screen even and loop at screen and input = 0 then i cant pass the value from f4 into the field.
    Kindly suggest.
    Regards & thanks
    vidhya

    Hi VIdya,
    use AT SELECTION-SCREEN ON VALUE-REQUEST Event.
    in the CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
    *   DDIC_STRUCTURE         = ' '      " Pass remaining Values as usual !
        retfield               = retfield
    *   PVALKEY                = ' '
    *   DYNPPROG               = ' '
    *   DYNPNR                 = ' '
    *   DYNPROFIELD            = ' '
    *   STEPL                  = 0
    *   WINDOW_TITLE           = WINDOW_TITLE
    *   VALUE                  = ' '
    *   VALUE_ORG              = 'S'
    *   MULTIPLE_CHOICE        = ' '
       DISPLAY                = ' F'  " Here Passing F forces the F4 Help for Display Field.
    *   CALLBACK_PROGRAM       = ' '
    *   CALLBACK_FORM          = ' '
    *   MARK_TAB               = MARK_TAB
    * IMPORTING
    *   USER_RESET             = USER_RESET
      TABLES
        value_tab              = value_tab
    *   FIELD_TAB              = FIELD_TAB
    *   RETURN_TAB             = RETURN_TAB
    *   DYNPFLD_MAPPING        = DYNPFLD_MAPPING
    * EXCEPTIONS
    *   PARAMETER_ERROR        = 1
    *   NO_VALUES_FOUND        = 2
    *   OTHERS                 = 3
    Hope this simple advice solves your problem
    Cheerz
    Ram

Maybe you are looking for