Hiding auth sources from Login auth source drop down

I have a requirement to hide auth sources only used for test purposes from being displayed in the login page auth source drop down list. Does anyone know how to filter out the test auth sources so they don't display???
Also, auth sources don't allow removal of the "everyone" group from auth source security in the UI. Can auth sources have everyone removed safely from the database or another way without violating referential integrity of the plumtree meta data base??
plumtree 5.0.4J on Unix

Hello Jenny,
to hide application source types and applications from the selection of the external candidate you have to change / enhance the method RETRIEVE_DATA of the component controller of web dynpro component HRRCF_C_COVERLETTER_UI.
If you have a look at this method around line 80 you find even some example code as the SAP standard already hides the application source type 02 for agencies. Easiest is probably to add some code directly after the loop to exclude this application source type for agencies and remove the other entries from the value set you no longer use.
To hide application sources of a application source type which is still used you would have to add a similar logic there. If the currently selected application source type is the correct one, get the node information for the application source node. Remove the entries from the value set and update the node again. Furthermore you have to put in the same logic into method ONACTIONDDLB_CHANGED of the view controller VW_COVERLETTER to ensure the application source dropdown is adjusted correctly if a different application source type is selected by the candidate.
A second change will be necessary if you can not ensure that the recruiters will not use obsolete entries when entering applications manually. The component for the manual application entry by recruiters is ERC_C_APPL_MGMT_UI. Here the change will be a bit easier. The assistance class of this component is CL_HRRCF_M_APPL_MGMT_UI. This class has two methods GET_APPL_SOURCE_TYPE_LIST and GET_APPL_SOURCE_LIST which centralize the determination of the values for the dropdowns. Here I would add implicit enhancements at the end of both methods to remove entries from the lists before they are returned.
Best regards
Roman     

Similar Messages

  • I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. How can I fix this?

    I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. Can I fix this?

    I'm fairly new to this, but I think it has to do with the way you have the drop downs named. Did you copy one then keep pasting it in each field? If so, that is the problem. You should rename each one with a different number: Dropdown1, Dropdown2, etc. I think that might solve the issue.

  • Fetching values from database into a drop down box

    in my JSP page there are 3 drop down boxes for date of birth......
    what i need is i want to get the values from database into that drop down box when i access the JSP page.......
    session is there....'m getting all other values.......
    I will attach the JSP page.....
    Please help me...........
    Thanks in Advance......
    <%@ taglib uri='/WEB-INF/taglib/struts-bean.tld' prefix='bean'%>
    <%@ taglib uri='/WEB-INF/taglib/struts-logic.tld' prefix='logic'%>
    <%@ taglib uri='/WEB-INF/taglib/dyna.tld' prefix='dyna'%>
    <%@ taglib uri='/WEB-INF/taglib/struts-html.tld' prefix='html'%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title><bean:message key="page_title"/></title>
    <link href="<bean:message key="context"/>/CSS/default.css" rel="stylesheet" type="text/css" />
    <script src="<bean:message key="context"/>/js/AC_RunActiveContent.js" type="text/javascript"></script>
    <link href="<bean:message key="context"/>/CSS/screen.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <%!
    Membership mShip = null;
    %>
    <script language="javascript" >
    function checkDate(Form){
    var d;
    d = Form.year.value+"-"+Form.month.value+"-"+Form.day.value;
    alert("Date is:"+d);
    Form.dob.value = d;
    </script>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
         <jsp:include flush="true" page="../templates/header.jsp"/>     </td>
    </tr>
    <tr>
    <td class="menuTD">     
         <jsp:include flush="true" page="../templates/menu.jsp"/>     </td>
    </tr>
    <tr>
    <td class="sub_menuTR"> </td>
    </tr>
    <tr>
    <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td class="column" valign="top" width="170"><jsp:include flush="true" page="../templates/left_panel.jsp"/></td>
    <td valign="top" align="left">
              <dyna:message error="error" warning="warning" message="message"/>
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="80%" valign="top" align="left">
                   <%
                   if(session != null){
                   mShip = (Membership)session.getAttribute("member");
                   %>
                        <form action="updateContactDetails.dy" method="post" name="form1">
                        <input type="hidden" name="m" value="<%=request.getParameter("m")%>" />
                             <table width="100%" border="0">
                             <tr>
                                  <td>First Name</td>
                                  <td><input name="first_name" type="text" id= "first_name" value = "<bean:write name = "member" property = "first_name" />" /></td>
                             </tr>
                             <tr>
                                  <td>Last Name </td>
                                  <td><input name="last_name" type="text" id="last_name" value = "<bean:write name = "member" property = "last_name" />" > </td>
                             </tr>
                             <tr>
                                  <td>Address</td>
                                  <td><input name="address1" type="text" id="address1" value = "<bean:write name = "member" property = "address1" />" ></td>
                             </tr>
                             <tr>
                                  <td> </td>
                                  <td><input name="address2" type="text" id="address2" value = "<bean:write name = "member" property = "address2" />" ></td>
                             </tr>
                             <tr>
                                  <td>Suburb/City </td>
                                  <td><input name="city" type="text" id="city" value= "<bean:write name = "member" property = "city" />" ></td>
                             </tr>
                             <tr>
                                  <td>State/Territory</td>
                                  <td><input type="text" name="state" value = "<bean:write name = "member" property = "state" />" ></td>
                             </tr>
                             <tr>
                                  <td>Postcode</td>
                                  <td><input type="text" name="postcode" value = "<bean:write name = "member" property = "postcode" />" ></td>
                             </tr>
                             <tr>
                                  <td>Contact Phone</td>
                                  <td><input type="text" name="home_phone" value = "<bean:write name = "member" property = "home_phone" />" ></td>
                             </tr>
                             <tr>
                                  <td>Mobile</td>
                                  <td><input type="text" name="mobile" value = "<bean:write name = "member" property = "mobile" />" ></td>
                             </tr>
                             <tr>
                                  <td>Date of birth</td>
                                  <td nowrap="nowrap"><select name="day">
    <option>Day</option>
    <option value="01">1</option>
    <option value="02">2</option>
    <option value="03">3</option>
    <option value="04">4</option>
    <option value="05">5</option>
    <option value="06">6</option>
    <option value="07">7</option>
    <option value="08">8</option>
    <option value="09">9</option>
    <option value="10">10</option>
    <option value="11">11</option>
    <option value="12">12</option>
    <option value="13">13</option>
    <option value="14">14</option>
    <option value="15">15</option>
    <option value="16">16</option>
    <option value="17">17</option>
    <option value="18">18</option>
    <option value="19">19</option>
    <option value="20">20</option>
    <option value="21">21</option>
    <option value="22">22</option>
    <option value="23">23</option>
    <option value="24">24</option>
    <option value="25">25</option>
    <option value="26">26</option>
    <option value="27">27</option>
    <option value="28">28</option>
    <option value="29">29</option>
    <option value="30">30</option>
    <option value="31">31</option>
    </select>
                                  <select name="month">
                                       <option>Month</option>
                                       <option value="01">January</option>
                                       <option value="02">February</option>
                                       <option value="03">March</option>
                                       <option value="04">April</option>
                                       <option value="05">May</option>
                                       <option value="06">June</option>
                                       <option value="07">July</option>
                                       <option value="08">August</option>
                                       <option value="09">September</option>
                                       <option value="10">October</option>
                                       <option value="11">November</option>
                                       <option value="12">Decembber</option>
                                  </select>
                                       <select name="year" onChange = "checkDate(this.form);" >
                                       <option>Year</option>
                                       <option value="1957">1957</option>
                                       <option value="1956">1956</option>
                                       <option value="1955">1955</option>
                                       <option value="1954">1954</option>
                                       <option value="1955">1955</option>
                                       <option value="1956">1956</option>
                                       <option value="1957">1957</option>
                                       <option value="1958">1958</option>
                                       <option value="1959">1959</option>
                                       <option value="1960">1960</option>
                                       <option value="1961">1961</option>
                                       <option value="1962">1962</option>
                                       <option value="1963">1963</option>
                                       <option value="1964">1964</option>
                                       <option value="1965">1965</option>
                                       <option value="1966">1966</option>
                                       <option value="1967">1967</option>
                                       <option value="1968">1968</option>
                                       <option value="1969">1969</option>
                                       <option value="1970">1970</option>
                                       <option value="1971">1971</option>
                                       <option value="1972">1972</option>
                                       <option value="1973">1973</option>
                                       <option value="1974">1974</option>
                                       <option value="1975">1975</option>
                                       <option value="1976">1976</option>
                                       <option value="1977">1977</option>
                                       <option value="1978">1978</option>
                                       <option value="1979">1979</option>
                                       <option value="1980">1980</option>
                                       <option value="1981">1981</option>
                                       <option value="1982">1982</option>
                                       <option value="1983">1983</option>
                                       <option value="1984">1984</option>
                                       <option value="1985">1985</option>
                                       <option value="1986">1986</option>
                                       <option value="1987">1987</option>
                                       <option value="1988">1988</option>
                                       <option value="1989">1989</option>
                                       <option value="1990">1990</option>
                                       <option value="1991">1991</option>
                                       <option value="1992">1992</option>
                                       <option value="1993">1993</option>
                                       <option value="1994">1994</option>
                                       <option value="1995">1995</option>
                                       <option value="1996">1996</option>
                                       <option value="1997">1997</option>
                                       <option value="1998">1998</option>
                                       <option value="1999">1999</option>
                                       <option value="2000">2000</option>
                                       <option value="2001">2001</option>
                                       <option value="2002">2002</option>
                                       <option value="2003">2003</option>
                                       <option value="2004">2004</option>
                                       <option value="2005">2005</option>
                                       <option value="2006">2006</option>
                                       <option value="2007">2007</option>
                             </select ></td></tr>
                             <tr>
                                  <td><input type="hidden" name = "dob" /> </td>
                                  <td nowrap="nowrap"><input type="submit" value="Submit" /></td>
                             </tr>
                             </table>
                        </form>
                   </td>
    <td width="40"></td>
    <td width="200" valign="top">
                   <div id="headlines">
    <jsp:include flush="true" page="../templates/profile.jsp"/>
    </div>
                   </td>
    </tr>
    </table>
              </td>
    <td> </td>
    </tr>
    </table></td>
    </tr>
    <tr>
    <td><jsp:include flush="true" page="../templates/footer.jsp"/></td>
    </tr>
    </table>
    </body>
    </html>

    i think normally u will get data from databsae as objects.they are like java beans having getter and setter methods.so you create a collection of those objects like collect all the objects coming from database into an arraylist or....
    suppose you want to populate the dropdown box with say "username" from database object s, your code will look like that
    <html:select property="name">
    <html:options collection="databaseList" property="username" />
    </html:select>
    "databaseList" is collection(say.. ArrayList) of objects you are getting from database.this dropdown will contain all the "usernames" you are getting from database.

  • Opening Word document templates from the New Document drop down does not open Word

    I have a document library with a number of Content Types attached to it.  Each one has a different Word document attached.  We have an intermittent problem where when you click to open one of these templates from the 'New Document' drop
    down list that nothing happens. The workaround appears to be either open Word first or re-boot the computer.  I think there is a problem with SharePoint not linking in with Word correctly.  Does anyone have any suggestions on how to fix this?
    Thanks
    Julie
    J Sykes

    Hi J,
    Can you please check in your internet explorer whether MS office Add ons enable or not.
    If not enable that and restart your browser and try again.
    Also try to repair MS Office if issue still persist.
    Regards
    Soni K

  • Yesterday I updated logic pro and my IK Multimedia ARC system has disappeared from the plug in drop down window, how can I get it back, it appears on old files but not new ones

    yesterday I updated logic pro, I have just discovered that my IK Multimedia ARC system has disappeared from the plug in drop down window, can anyone advise how I can get it back. It seems that old logic files where it was previously loaded still have the plug in live, but on a new project file it simply isn't there to select and activate.

    Not sure about your issue. What did you update from and to? Is ARC still in the plugins/components folder?
    I'm an ARC user too. I have it plugged in to Audio Hijack Pro which is set to hijack audio from Logic. This way ARC is after logic and you don't have to remember to bypass the plugin before you bounce.

  • How can I get rid of "History and Bookmarks" section from the search history drop down menu in safari 6.0.2?

    Let's just say I have saved bookmarks of things that i do NOT want my friends to see when they use my computer occasionally. I know they could go and find these bookmarks anyway in the bookmarks menu but they dont snoop around my computer. i would rather it not just pop up when they go to search for something or type in a webpage. If there is no way to customize what shows up in the drop down menu for search results then that is something apple overlooked. Not everybody wants things all in one place. Whats the point of deleting search history and website history if its just going to show the certain things you have bookmarked? Any solution to this would be appreciated. One solution i thought would work was disabling search from suggesting, but i guess that only supresses the webpages not the url/search bar. Oh and this is for safari 6.0.2 please dont give me outdated advice.
    Thanks

    Activate the Guest account for your friends and keep your account for yourself.

  • How do I remove an entry from the "Store Files" drop down list in the "Import Settings" section of Aperture 3.3.2

    The dropdown list "Store Files" in the "Import Settings" section of Aperture 3.3.2 displays the history of the entries previously added to the list. Some of the entries are no longer valid and I'm trying to delete them but I can't find a way to do this. This is a screenshot. Does anyone know how to do this?

    Once again - the Jive system ate my bullet points and messed up the formatting
    Is the MacOS X version in your signature correct? Then you cannot be using Aperture 3.3.2?
    You should not be seeing duplicate entries in the "Store Files" pop-up menu. This looks like your Aperture Preferences file is corrupted and needs fixing.
    Quit Aperture (and log off and on again, if you are running MacOS X 10.7 or later)
    Then reveal your User Library (from the Finder's main menu bar, the "Go" menu. Hold down the options-key until the library apears in the drop-down menu)
    In the Library folder select the "Preferences folder and locate the file "~/Library/Preferences/com.apple.Aperture.plist"
    Now you can either
    remove the com.apple.Aperture.plist file to the Desktop, to force Aperture to create a new one, but you will have to set again your Preferences from the "Preferences" panel,
    or make a backup copy of the file and edit it, if you are an experienced programmer and have Xcode installed. To fix the drop-down list you need to edit the item "RecentReferenceFolders" and delete the redundant folder names. Enter "recent" into the search field to find it quickly. If you click an item in the list, plus/minus buttons should appear. But only try this, if you know how to edit property lists, otherwise it will be much safer to delete the faulty list and to set your preferences again from the "Preferences" panel.
    Regards
    Léonie

  • How do I locate my thumb drive in from the "look in" drop down?

    I'm trying to open a document from my thumb drive.  However, when I select the "look in" drop down it's not listed.  It's listed under the finder as a device and I can see the document from there.  However, because I don't have this software to open the document, I have to open it from an icloud account through my school.  Does anyone have any suggestions?

    Upper-right corner of Firefox, hit the center of the 3 buttons to Maximize the browser window.

  • Can't select 'all layers' from the healing brush drop down menu

    I just installed PS6 and while cleaning up a picture I found this very frustrating: I created a new layer on top of the one I'm editing and wanted to remove a couple of blemishes. but when I hit J and try to select the 'all layers' option from the drop down menu, it won't allow me… it's stuck on 'current layer' and I can't seem to change that… Does anyone else have the same problem? Will reinstalling the software fix it? I need to get this done by the end of the weekend… HELP!

    never mind… found it! checked the channels panel and apparently I had created a quick mask… deleted it, works fine

  • There is no "Deauthorize all computers" from the iTunes store drop down menu (12.0.1.26 latest version)

    Just purchased a new iMac and somehow all of my licenses are consumed between existing/old computers and I am not allowed to synch my iTunes library using Match.  Looking at the on-line help provides guidance to choose a "deauthorize all computers" option from the Store drop down in iTunes but I only have these options:
    Obviously, I need to figure out how to do this and then reauthorize from each of my 5 machines.  Any help is greatly appreciated!
    Thanks

    HI
    This is the support document Authorize your computer in iTunes - Apple Support
    Deauthorize your computer using iTunes - Apple Support
    JIm

  • Automatically email from a series of drop down lists

    I am preparing a form which includes a number of drop down lists indicating individuals I need to have the form emailed to.
    Example:      List one "John Doe"
                        List two "Jane Doe"
                        List three"Design Department"
    Each of the names will need to have an email address scripted to it.
    After the lists have been populated, there will be a button on the form that opens the sender's email client, adds the email addresses from the lists and attaches the form to the email.
    Possible?
    Thanks, JimB

    not sure why this is happening, though i have noticed some
    odd reversals and missing dialogs etc. when using captivate.
    my solution when you encounter problems like this is to put
    captivate into full-motion record mode while you are using the
    drop-down, and return to normal afterwards.
    check the recording options for the hotkeys

  • Importing favorites from IE in the drop down file menu doesnt work

    I'm trying to import my IE favorites. In the file menu the dropdown list the import link is not highlighted and is not working. It was working the other day though
    == This happened ==
    Not sure how often
    == yesterday

    Try doing it this way.
    In IE:
    File > Import/Export - Export to HTML file
    ''then in Firefox:''
    Bookmarks > Organize Bookmarks -> Import & Backup - Import HTML... = From HTML file
    Your UserAgent string in Firefox is messed up by another program that you installed.
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''general.useragent.extra.firefox'''
    Right-click that preference and select '''Reset'''
    Then restart Firefox

  • Dreamweaver quit unexpectedly from Ajatix Advanced CSS Drop Down Menu Light

    Process:   Dreamweaver [1111]
    Path:   /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
    Identifier:  com.adobe.dreamweaver-12.0
    Version:   12.0.0.5808 (12.0.0)
    Code Type:  X86 (Native)
    Parent Process:  launchd [145]
    Responsible:   Dreamweaver [1111]`
    User ID:   501
    Date/Time:   2014-08-04 23:56:25.214 +0100
    OS Version:   Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  3339F2F3-5034-564D-287B-7F95E9E96A64
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ff28663e
    VM Regions Near 0xff28663e:
      CG shared images  00000000c871f000-00000000c8727000 [   32K] r--/r-- SM=SHM 
    -->
       Submap   00000000ffff0000-00000000ffff1000 [   4K] r--/r-- SM=PRV process-only VM submap
    Application Specific Information:
    Performing @selector(dispatchMenuSelection from sender DVAMacMenuItem 0x15c91da0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0  com.adobe.dreamweaver-12.0   0x004a8c44 MaybeSetupFrame + 272
    1  com.adobe.dreamweaver-12.0   0x004affce js_CompileTokenStream + 57
    2  com.adobe.dreamweaver-12.0   0x003e786a CompileTokenStream + 202
    3  com.adobe.dreamweaver-12.0   0x003e793f JS_CompileUCScriptForPrincipals + 85
    4  com.adobe.dreamweaver-12.0   0x003e79be JS_EvaluateUCScriptForPrincipals + 79
    5  com.adobe.dreamweaver-12.0   0x003e7a75 JS_EvaluateUCScript + 67
    6  com.adobe.dreamweaver-12.0   0x000f8802 JSInterp::ExecuteScript(Run*, TitanDoc*, unsigned short const*, unsigned short const*, unsigned short const*, long, unsigned short const*, CString*, JSInterp::ScriptMode, int, int, int, int, int, int) + 1670
    7  com.adobe.dreamweaver-12.0   0x009ee720 JSUICommand::CallExecuteOrKillFocusHandler(TitanDoc*, int, unsigned short const*, bool) + 1408
    8  com.adobe.dreamweaver-12.0   0x009ee993 JSUICommand::Execute(TitanDoc*, int, unsigned short const*) + 215
    9  com.adobe.dreamweaver-12.0   0x009c4710 JSMenusCommands::Execute(unsigned int) const + 312
    10  com.adobe.dreamweaver-12.0   0x009c0285 JSMenus::ExecuteCommand(unsigned int) const + 27
    11  com.adobe.dreamweaver-12.0   0x0057a632 TitanMainFrame::OnExecuteJSMenuItem(unsigned int) + 34
    12  com.adobe.dreamweaver-12.0   0x0112af71 CCmdTarget::OnCmdMsg(unsigned int, int, void*, AFX_CMDHANDLERINFO*) + 271
    13  com.adobe.dreamweaver-12.0   0x0112b7d1 CFrameWnd::OnCmdMsg(unsigned int, int, void*, AFX_CMDHANDLERINFO*) + 121
    14  com.adobe.dreamweaver-12.0   0x01118881 CWnd::OnCommand(unsigned int, long) + 239
    15  com.adobe.dreamweaver-12.0   0x0114c231 CMDIFrameWnd::OnCommand(unsigned int, long) + 85
    16  com.adobe.dreamweaver-12.0   0x0121289f MMUI::COwlFrameWnd::OnCommand(unsigned int, long) + 85
    17  com.adobe.dreamweaver-12.0   0x0057b46c TitanMainFrame::OnCommand(unsigned int, long) + 60
    18  com.adobe.dreamweaver-12.0   0x01116db0 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 60
    19  com.adobe.dreamweaver-12.0   0x01116422 CWnd::WindowProc(unsigned int, unsigned int, long) + 58
    20  com.adobe.dreamweaver-12.0   0x003a6fce CWnd::WinSendMessage(unsigned int, unsigned int, long) + 44
    21  com.adobe.dreamweaver-12.0   0x01138085 CRealApp::DoHandleCommand(int) + 369
    22  com.adobe.dreamweaver-12.0   0x01137f0b non-virtual thunk to CRealApp::DoHandleCommand(int) + 27
    23  com.adobe.exo.framework  0x04111688 exo::uisupport::CommandHandler::HandleCommand(int) + 84
    24  com.adobe.exo.framework  0x04110a83 exo::uisupport::CommandHandler::DoCallMyCommandChain(int) + 49
    25  com.adobe.exo.framework  0x0410fd95 exo::uisupport::CommandHandlerBase::CallCommandChain(int) + 65
    26  com.adobe.exo.framework  0x040ca364 exo::app::OS_AppBase::DispatchMenuCommand(int) + 146
    27  com.adobe.exo.framework  0x040cacdf boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf1<void, exo::app::OS_AppBase, int>, boost::_bi::list2<boost::_bi::value<exo::app::OS_AppBase*>, boost::_bi::value<int> > >, void>::invoke(boost::detail::function::function_buffer&) + 47
    28  com.adobe.dvacore.framework  0x033e11fa int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 36
    29  com.adobe.dvacore.framework  0x033e20f8 boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<int, int (*)(boost::function0<void>*, void*), boost::_bi::list2<boost::_bi::value<boost::function0<void>*>, boost::_bi::value<void*> > >, int>::invoke(boost::detail::function::function_buffer&) + 24
    30  com.adobe.dreamweaver-12.0   0x01139fa8 TestErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0<int>) + 50
    31  com.adobe.dvacore.framework  0x033e10ef void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::function0<void>, bool*) + 135
    32  com.adobe.dvacore.framework  0x033e3bb1 void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 129
    33  com.adobe.exo.framework  0x040c8e6e -[ExoMacApplication handleMenuCommand:] + 174
    34  com.adobe.dvaui.framework  0x03997192 -[DVAMacMenuItem dispatchMenuSelection:] + 66
    35  libobjc.A.dylib  0x9a7352af -[NSObject performSelector:withObject:] + 70
    36  com.apple.AppKit   0x929878a5 -[NSApplication sendAction:to:from:] + 438
    37  com.apple.AppKit   0x929a3c65 -[NSMenuItem _corePerformAction] + 486
    38  com.apple.AppKit   0x929a396a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 163
    39  com.apple.AppKit   0x929a3021 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    40  com.apple.AppKit   0x929f6664 -[NSMenu performActionForItemAtIndex:] + 65
    41  com.adobe.dvaui.framework  0x03996c1a -[DVAMacMenu performActionForItemAtIndex:] + 58
    42  com.apple.AppKit   0x929f6619 -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    43  com.apple.AppKit   0x929f65e4 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    44  com.apple.AppKit   0x929f6434 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 120
    45  com.apple.AppKit   0x92998da6 NSSLMMenuEventHandler + 816
    46  com.apple.HIToolbox   0x98148d89 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    47  com.apple.HIToolbox   0x97f9c34f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    48  com.apple.HIToolbox   0x97f9b668 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    49  com.apple.HIToolbox   0x97fae811 SendEventToEventTarget + 88
    50  com.apple.HIToolbox   0x98148c2e SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 478
    51  com.apple.HIToolbox   0x98011ef7 SendMenuCommandWithContextAndModifiers + 70
    52  com.apple.HIToolbox   0x98011ea4 SendMenuItemSelectedEvent + 199
    53  com.apple.HIToolbox   0x98011d72 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 134
    54  com.apple.HIToolbox   0x9819d59d MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 722
    55  com.apple.HIToolbox   0x9801970e _HandleMenuSelection2 + 488
    56  com.apple.HIToolbox  

    Remove the red coloured part
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {
    left: auto;
    top:0;
    or start again with the original SpryMenuBarHorizontal.css and follow the rules as in http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#one.
    Either way will get you back on track.
    Good luck.
    Ben

  • How do I block previous web sites from showing in the drop down menue as I type

    when i type in the website in a box, previous sites pop up below in a menu, even if they were used in private browsing

    See:
    * [[Clearing Location bar history]]
    * [[Smart Location Bar]]

  • Auto-populating Infopath fields from a Sharepoint list after selecting a drop down

    I currently have two lists one titled 'Book of Work' which holds details around on-going projects and the other titled 'Book of Work Amendments' which are requests submitted by users to change project details (through an infopath form).
    There is a column in the BoW Amendments list entitled 'Select Project' which has a lookup to 'Project Name' in the BoW list. The aim is that when a user chooses an option from the 'Select Project' drop-down, other fields in the form such as 'Project Manager',
    'Project Description' will be automatically populated with data from that row in the BoW table.
    I have connected both Sharepoint Lists as data connections with BoW Amendments being the primary and BoW the secondary. If we take the Project Manager field as an example the method I have attempted is as follows:
    . Create a rule with condition Select Project is not blank
    . Action - Set a field's value: Field: Project Manager (BoW Amendments - Primary) Value:
    Project Manager (BoW - Secondary) Add Filter: Project_Name (BoW - Secondary) =
    Select Project (BoW - Primary)
    Currently this is not populating the field when the project is selected in the drop down, any assistance would be greatly appreciated.

    Hi Josh,
    This should be straight forward. You do not need BOW Amend data connection. You are creating requests in this list so this will be your Main Data Connection.
    When creating the rule on the drop down, select Action:
    Condition: anytime the value changes, Set a field's value - Project Manager (Main); Value - Project Manager(BOW) where Project[BOW] = Project [Main]
    Hope it helps.
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

Maybe you are looking for

  • Error in installing SAP Netweaver 7.02

    Hi all! I'm new in SAP and installing the version 32-bit in Windows XP - SP2. View the error bellow: An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 2 > SAP Application Server ABAP > MaxDB > Central System >

  • Encore CS4 Missing Frames/Stops Starts  and Blue Screen Crashes During Playback

    I'm opening Premiere Pro CS4 with the default presets of HDV Capture, HDV 1080i30 software only mode. I'm capturing from my Canon HV20 using firewire HDV out 1440 x 1080. All goes well during the editing process but when I Dynamic Link and playback i

  • 9360 Trackpad Help

    Hello. I really need help with my trackpad. There's a problem with the actual pad. Recently the old one messed up, it stopped working completely so I purchased a new one from a seller I bought all my parts off and installed it myself. The trackpad wo

  • Internal & External No. Range....................

    1.I have created GL master with selection of open item management and i have posted business transactions to that GL. Now client wants to change that GL  deselect open item management. is it possible...how? 2.What is exactly diff between External and

  • Unable to play .mov files

    I have my AppleTV looking at my Mac's iTunes to play files found in Movies. There are a couple that do not appear in the list of movies displayed. I noticed that they are .mov files. One is a small sized movie - 320x240 Quicktime movie file. The othe