Lock drop down for end users

I want to create a from that contains drop down menus so I can pick values to save time not having to type in the information. I have figured this out!  The problem is I want to be able to distribute this form to teachers but not allow than to change the values I have picked from the drop menu.  I also want the form to have text fields where they can enter the name of student, date etc., so they would have to be able to edit those fields.  Is this even possible?  I am probably missing something obvious.  Any help would be appreciated!

Thanks for the info Bob.  I tried that but Acrobat seems to treat drop downs like filling in form fields so the end user can still use the drop down menu.

Similar Messages

  • Drop down for a field in a table

    hi friends,
       need a help from u, how to maintain the drop down for a field in a table..
    advance thanks..

    Hi,
    You can use the function module F4IF_INT_TABLE_VALUE_REQUEST
    TABLES: T005T.
    DATA: BEGIN OF t_t005 OCCURS 0,
            land1 TYPE t005-land1,
          END OF t_t005.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(6) v_text FOR FIELD P_LAND1.
    PARAMETERS: p_land1  TYPE t005-land1.
    SELECTION-SCREEN COMMENT 13(35) v_text1.
    SELECTION-SCREEN END OF LINE.
    INITIALIZATION.
      v_text = 'Country'.
      v_text1 = ' '.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_land1.
      REFRESH: t_t005.
      SELECT land1
             INTO TABLE t_t005
             FROM t005.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
    *            DDIC_STRUCTURE   = 'T005'
                PVALKEY          = ' '
                retfield         = 'LAND1'
                dynpprog         = sy-repid
                DYNPNR           = sy-dynnr
                dynprofield      = 'P_LAND1'
                callback_program = sy-repid
                value_org        = 'S'
           TABLES
                value_tab        = t_t005
           EXCEPTIONS
                parameter_error  = 1
                no_values_found  = 2
                OTHERS           = 3.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Thanks
    Naren

  • Rule Policies:  Value drop down for category blank

    Hello,
    We have implemented Rule Policies in CRM 7.0.  When entering a condition for attribute "ICWC_Category" the drop down for "Value" is blank.  We have checked the following:  Categorization schemas are active and user has access to display categorization schemas.  When checking in all other systems, this is working with no issue, but in the productioin system, the value drop down is blank.
    If you have any ideas to trouble shoot or recreate the issue, it would be appreciated.
    Regards,
    E. Simpson

    Hi Anil,
    There is a SAP note availble for this problem.Please check.
    Thanks,
    Ashish

  • SQL 2000 Database Maintenance Plan drop downs for days, weeks, months, not displaying

    When setting up a SQL 2000 Database Maintenance Plan the drop down for Remove files older than is not populating with hours, days, weeks, or months. It is just blank. The version is  Microsoft SQL Server  2000 - 8.00.2039 (Intel X86)  
    May  3 2005 23:18:38   Copyright (c) 1988-2003 Microsoft Corporation  Desktop Engine on Windows NT 5.2 (Build 3790: Service Pack 2). Is there a fix for this issue?

    This also works. All the credit goes to a user named eyechart.  Great directions provided as well.
    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=47575
    sqlmaint.exe
    was missing from MSDE 2000, but that was fixed in SP1 I think. Since this is SP3
    you probably have a missing registry value for the backup directory.
    I
    had to fix a similar problem last year on a bunch of laptops. They were all
    missing a registry value. Anyway, here is the fix:
    1. Fire up regedit and
    look under HKLM\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer
    2. Ensure you have
    a string value called BackupDirectory. The value for this should be the path to
    your backup dir. The default value is C:\Program Files\Microsoft SQL
    Server\MSSQL\BACKUP
    btw, this fix assumes you have a default instance
    installed. A named instance will have slightly different registry location and
    filesystem path.
    -ec
    Edited by -
    eyechart on 03/25/2005 21:04:27

  • Abt Drop Down For ALV Data cells

    Hi,
    I m unable to create drop down for each cell of ALV table.
    Reply me as soon as possible.
    Thks.

    You need to create an object of type CL_SALV_WD_UIE_DROPDOWN_BY_KEY, which is the UI element for dropdown by key, and set that to be your individual cell editor.
    For whichever column you want a dropdown box, use the method set_cell_editor to make the editor as a dropdown box. Hope this helps.
    Regards
    Nithya

  • Need a drop down for a selection screen

    HI all,
    I need a drop down for a selection screen.
    say for eg: Field is MARA-MTART   (Material Type). The selection is optional and the dropdown should be using check table: T134
    How to get a dropdown? I think a function module is used , but I dont remember the name.
    Kindly reply.
    Thanks in advance.
    Points will be rewarded

    Hi,
    chk the below code...
    TYPE-POOLS: vrm.
    PARAMETER: pr_spart TYPE spart AS LISTBOX VISIBLE LENGTH 7.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR pr_spart.
    INITIALIZATION.
    *----Code for Drop down list....
      DATA: lit_spart_list  TYPE vrm_values, "Table for list of Divisions
              lwa_spart_list TYPE vrm_value,
              lw_name  TYPE vrm_id.            "Name of parameter with list-box.
    *---Assign selected values to table that would be passed to FM VRM_SET_VALUES
      CLEAR : lwa_spart_list,
              lw_name.
    *---Pass required values for list-box display.
      lwa_spart_list-key = 'H'.
      lwa_spart_list-text = 'HL'.
      APPEND lwa_spart_list TO lit_spart_list.
      lwa_spart_list-key = 'S'.
      lwa_spart_list-text = 'SL'.
      APPEND lwa_spart_list TO lit_spart_list.
      lwa_spart_list-key = 'P'.
      lwa_spart_list-text = 'PP'.
      APPEND lwa_spart_list TO lit_spart_list.
      lwa_spart_list-key = 'F'.
      lwa_spart_list-text = 'FR'.
      APPEND lwa_spart_list TO lit_spart_list.
    *Name of parameter to which list is to be assigned
      lw_name = 'PR_SPART'.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = lw_name
          values          = lit_spart_list
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Reagrds,
    nagaraj

  • In logic X I am trying to normalize but the track and file option in the edit window is not there at all just the drop down for pointer eraser etc. Any ideas? Thanks!..

    In logic X I am trying to normalize but the track and file option in the edit window is not there at all just the drop down for pointer eraser etc. Any ideas? Thanks!..

    Total life saver. Thank you

  • Did anyone experience drop down in # of user usage in Apple's weekly report after transitioning?

    Hello,
    Did anyone experience drop down in # of user usage in Apple's weekly report after transitioning to the new structure (or design)?
    We transitioned our public iTunes U site on the first week of April.
    Since then, the number in the apple's weekly report showing the user usage of the site dramatically went down.
    I don't think all the RSS feeds and the URL of our podcasts changed due to the transition.

    Greetings;
    The following previous discussion thread might shed some light on your issue.  All the best...
    Syd Rodocker
    Tennessee Department of Education
    http://discussions.apple.com/thread.jspa?messageID=13000515&#13000515

  • Recording NWBC scripts for End User Experience

    Hi Experts,
    I am recording NWBC scripts using the Netweaver Business Client GUI for loading and running it through Robots for End User Experience Monitoring. I don't see an option to "LogOff" in NWBC client while recording  the script. We only have option to "Close all session and LogOff" in NWBC client .
    When I am using this option, it closes all the sessions including the EEM Recorder also without saving the recording .
    I need to include "LogOff" as the last step so that it doesn't leave any active sessions for each run by different robots.
    I have a Solution Manager 7.1 SP10 and NWBC client 3.5 Patch 13.
    Please help me achieve this.
    Regards,
    Manish K

    Hi,
    for a browser the recommendation is to open a new, empty tab to keep the browser alive while closing the tab with the  session. All that with the hope that the backend will use the triggered event of collapsing tab to close session.
    Maybe a similar strategy works for NWBC.. but I don't know the UI in detail.

  • Not able to set values in drop down for a table field

    Hi All,
    I am not able to set values in drop down for a table field. Although I am able to set these values to a stand alone field but its not happening for a particular table field. I am using ABAP web dynpro for coding.
    Pls help.
    Regards,
    Bhaskar

    Hi Otto,
    Here is the code I am using:
    * navigate from <CONTEXT> to <DATASOURCE> via lead selection
      lo_nd_datasource = wd_context->get_child_node( name = wd_this->wdctx_datasource ).
    * navigate from <DATASOURCE> to <CHANGING_PARAM> via lead selection
      lo_nd_changing_param = lo_nd_datasource->get_child_node( name = wd_this->wdctx_changing_param ).
    * navigate from <CHANGING_PARAM> to <EDUCATION_TAB> via lead selection
      lo_nd_education_tab = lo_nd_changing_param->get_child_node( name = wd_this->wdctx_education_tab ).
      node_info = lo_nd_education_tab->get_node_info( ).
      REFRESH ddlb_value_set.
      DATA: wa_edu_est TYPE t517t.
      SELECT * FROM t517t INTO wa_edu_est WHERE sprsL = 'EN'.
        s_element-text = wa_edu_est-stext.
        s_element-value = wa_edu_est-slart.
        APPEND s_element TO ddlb_value_set.
      ENDSELECT.
      SORT ddlb_value_set BY text.
    *    Set Value_sets to node_info
      node_info->set_attribute_value_set(
         name      = 'EDU_EST'
         value_set = ddlb_value_set ).
    Regards,
    Bhaskar

  • Lock a tcode for particular user

    Hi Experts
    i need to lock few transaction for particular users only. we have n number of roles and the transactions have been assigned to some tcodes to be reasticted  for a list of users. is there any method or program to built to restrict the users for few tcodes.is there any more query pl trigger me
    regards
    bala

    hi
    sagar:
    as you said if i start creating roles to restrict some users then there atleast 25 tcodes are there to restrict and 120 roles are to be analyzed and the job becomes hefty by creating roles and there will too many number of roles and it becomes confusion in future forecast. there fore i nedd any suggestion like that the userscan be restricted when they are trying to access that particular code or lock the screen or inform them to not access these tcodes thro some message or writing a program to restrict the users while the user exits. i have an idea but i dont know how it will work - ( I am not a ABAPER) there should be tcode or program which should list tcodes authorized for particular users and where they can be locked like SM01 ( but it will lock for all) but locking for particular users
    Am i more advanced??
    regards
    bala

  • Reset passwork for end user using XE version 2.1.0.00.39

    Hi All,
    I would like to create a link "Change Password" for end users to able to change their password anytime. I've followed the link below
    Self Reset Password
    but it still require the admin login before end users can change their password.
    The following steps that I did:
    1. Under "Shared Components", create a Navigation Bar entry name "Change Password".
    2. On page 1, click on the "Change Password" link under Navigation Bar and entered
    Target Type = URL
    URL Target = javascript:popupURL('f?p=4350:53:&SESSION.:::53.F4350_P53_USER_NAME::APP_USER');
    How do i make the "Change password" link go directly to reset password page after end users clicked on it without admin login require? I'm using a default authentication and all end users assigned to user group.
    Thanks in advance,
    Kevin

    Kevin,
    You want the users to go to popup page 58 (in application 4350). See this thread: Re: Pop Up Change Password Window . But I don't know if that will work in 2.1.
    In general, you're better off using other types of account management tools such as LDAP.
    Scott

  • Page customization for end user

    is it possible to use other mechanism for end users to customize their own pages instead using the portal features since it's a little complicated cause each user needs to create new pages, add portlet, etc.
    Can we use the mechanism like my cnn, my yahoo,excite and how to do that in a simple way?
    thanks for helping

    Hi,
    I have the same question, but I would like to have a seperate page or application, showing only predetermined portlets, for users to choose from and place on their page. I do not want the end user to ever see the customization process Oracle uses. Can this be done???
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Karthika Siva ([email protected]):
    A simple way to do this:
    1. Create a page that will become the default page for end users. This page will have your branded look & feel (style) and contain a default set of portlets. These are portlets that you think your typical user will find useful.
    2. Create portal user.
    3. Grant one of the following privileges on the page to the user. Grant 'Full Customization' or 'Add Only Customization' depending on how much control you want to give the end user. Keep in mind that both of these privileges allow the end user to only customize their PRIVATE VERSION of the page. Others will see the default, or their own version if they have also personalized it. See the online help on the Access tab of the Customize Page screen for a description of the privileges.
    4. Once that is done, set this page as the default home page for the user. You can do this using the Preferences tab on the edit user screen.
    Now the portal user can log into the portal, and personalize his/her page by customizing portlets on the page, hiding/showing default portlets, and even adding other portlets to the page.<HR></BLOCKQUOTE>
    null

  • CProjects for end users

    Afternoon all, i've recently installed cProjects as a add on to a WEBAS system, i'm after some useful links/information about how to use the product at all, as i've no real experience of it.
    Any help would be much appreciated, the SAP guides don't seem to be suited for end users thats all....

    Hello James,
    From your post I cannot make out which release of cProjects have you installed (3.1 or 4.0). Any way pl find below the links to the help.sap.com portal which is a detailed guide to cProjects Suite.
    cProjects Suite 3.1
    http://help.sap.com/saphelp_cpro31/helpdata/en/home.htm
    cProjects Suite 4.0
    http://help.sap.com/saphelp_ppm400/helpdata/en/index.htm
    Hope this helps.
    Rgds
    Deepak

  • SCSM 2012 SSP Permission for End users

    Hello Experts,
    I have an issues with SSP - SCSM 2012 SP1.
    As an admin user, I can see theOfferings, see the pending requests, can see the requests I have submitted, Approve them etc. But when I am an end user, browsing from my laptop, I see a blank Home page. I dont see the Service offerings in the
    homepage..even I dont see the Need Help? text. What is the issue? FYI : Silver light is already installed on my laptop.
    Interestingly, I see the Need Help? text with the same end user credential when I am opening the browser inside the server wher SSP is installed.
    But, in both the cases, whether I browse in the server or from my laptop, I dont see the service offerings anywhere when i am an end user. I followed the below article..but no success.. :(
    http://systemcentertech.com/2012/06/28/scsm-2012-portal-service-catalog-empty-for-end-users/
    Please help...
    Thanks!
    Thanks

    Hi,
    Did you add the Service Offerings and Request Offerings to the Catalog Group? Here is another good blog on this you can reference:
    http://www.concurrency.com/blog/scsmportalpermisions/
    My Blog | www.buchatech.com | www.systemcenterportal.com
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer". This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion
    in a test environment before implementing!

Maybe you are looking for

  • Creating job

    Hi Experts, I am about to create a batch job. I used FM JOB_OPEN, JOB_SUBMIT and JOB_CLOSE. However, whenever I run the program it creates job for every 1 second. It will not stop creating jobs unless you completely exited in the program. The code is

  • I can no longer attach a PDF to Outlook email in Mavericks OSX even though I have Mac Outlook selected as my email client. (It worked under Mountain Lion)

    I used to have a problem with Acrobat Pro X not recognizing Mac Outlook as my email client when using the 'SHARE' function under Acrobat Pro X . Then it was fixed and worked most of the time, although I occasionally had to go back and select Outlook

  • Slow folder item previews when opening files in Photoshop CS3

    Can anyone advise me on the best way to improve the speed of previewing folder items/contents when navigating to items through the photoshop CS3 file finder? For some reason, one of my studio Macs, running Mac OS 10.4.1, and PShop CS3 takes ages to b

  • Airplay IMAC to two different Apple Tv's

    Our current set up at church is to use 1 apple tv, split the video  and connect two TV's with it.  Then we airplay to the TV's in order to show the words to the songs and the message for the sermon.  We are moving to a new church and the TV's are abo

  • HT1147 Screen Resolution 24" iMac

    My screen resolution on a 24" iMac is 1920 x 1200. An accidental bump of the keyboard increased the size of the screen so that it cannot all be seen. I tried other resolution but none worked. What options, other than resolution, are there for reducin