Selection Text Activation

Hi All,
I Developed the program and and Transported to Quality. Selection text is not transported. In development i went to selection Text and given the space and i tried to activate, to get the new request. then i could not able to activate.
following error i am getting. our system is ECC 6.0.
<b>Error during activation
Message no. EU837</b>

Hello,
i've just had the same problem and i realize that this message was giving me because the program had an original system different than the one i was. The program had been created in another system and was transported to my actual.
SAP couldn't activate me my text elements.. so i went to SE03 and changed the original system to the one i was logged and the problem was solved
Paulo A.
Edited by: Paulo Almeida on Jan 25, 2010 12:08 PM

Similar Messages

  • Error During Activation while activating Report Selection Texts

    Hi,
         I've developed a report and the Transport Request for the Report has been migrated to Quality and Production Systems. Now, I have to make some more changes where I had to create another request.
    Now, while activating the Selection Texts for the Report under the New Transport Request, it gives me an error message saying "Error During Activation". Could somebody tell me the reason and resolution for this error?
    Thanks and Regards,
    Venkat

    Hi ,
    Try activating it through se80 , as it activates the complete object .
    In inactive head , with your user id see all the inactive object , may be there you can find the program , or the texts . Activate and see.
    Regards,
    Sureshp.

  • Select text based on format (free form style text)

    As suggested by Apple, I'm trying to create my first ePub using Pages as opposed to inDesign.
    I only have a PDF as a source file and don't want to re-type all the text.
    When I copy the text from the PDF and paste to Pages, the text comes in with the 'free form' style applied no matter what options I select during copy and paste.
    In order to produce an ePub, I need to set styles for the text. This is quite tedious.
    Is there any way to select text based on the way it is formatted when styles are not applied to the text?

    Here is a script which may be useful if your problem surface again.
    --{code}
    --[SCRIPT words_attributes_to_Style]
    Enregistrer le script en tant que Script : words_attributes_to_Style.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Pages:
    Il vous faudra peut-être créer le dossier Pages et peut-être même le dossier Applications.
    Ouvrir un document Pages contenant des mots soulignés
    Aller au menu Scripts , choisir Pages puis choisir “words_attributes_to_Style”
    Le script appliquera :
    le style "Souligné" aux mots soulignés
    le style "Accentuation" aux mots en gras
    le style "Italic" (si vous l'avez créé) aux mots en italique.
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: words_attributes_to_Style.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Pages:
    Maybe you would have to create the folder Pages and even the folder Applications by yourself.
    Select a Pages document embedding underlined words
    Go to the Scripts Menu, choose Pages, then choose “words_attributes_to_Style”
    The script will apply :
    the named style "Underlined" to the underlined words
    the named style "Emphasis" to bolded words
    the named style "Italic" (assuming that you defined it) to italicized words.
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/11/13
    2011/11/13 enhanced by Nigel Garvey in : http://macscripter.net/viewtopic.php?pid=145883#p145883
    --=====
    on run
              set Underlined_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Underline")
              set Emphasis_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Emphasis")
              tell application "Pages" to tell document 1
                        set character style of words whose underline type is single underline or underline type is double underline to character style Underlined_loc
                        set character style of words whose bold is true to character style Emphasis_loc
    Assuming that you defined your own Italic style named "Italic", you may use : *)
                        try
                                  set character style of words whose italic is true to character style "Italic"
                        end try
              end tell
    end run
    --=====
    Example
    set Heading8_loc to my getLocalizedStyleName("Pages", "STYLE_Heading 8")
    Requires :
    getLocalizedName()
    on getLocalizedStyleName(theApp, tName, x)
      activate application theApp
              tell application "System Events"
                        (application file of application process theApp as text) & "Contents:Resources:Templates:" & tName & ":Contents:Resources:"
                        return my getLocalizedName(theApp, x, result)
              end tell
    end getLocalizedStyleName
    --=====
    on getLocalizedName(a, x, f)
              tell application a to return localized string x from table "Localizable" in bundle file f
    end getLocalizedName
    --=====
    List of default styles embedded in the Blank template :
    "STYLE_Body" = "Corps";
    "STYLE_Body Bullet" = "Puce du corps de texte";
    "STYLE_Bullet" = "Puce";
    "STYLE_Caption" = "Légende";
    "STYLE_Emphasis" = "Accentuation";
    "STYLE_Footnote Text" = "Texte de note de bas de page";
    "STYLE_Free Form" = "Format libre";
    "STYLE_Harvard" = "Harvard";
    "STYLE_Header & Footer" = "En-tête et bas de page";
    "STYLE_Heading 1" = "Sous-section 1";
    "STYLE_Heading 2" = "Sous-section 2";
    "STYLE_Heading 3" = "Sous-section 3";
    "STYLE_Heading 4" = "Sous-section 4";
    "STYLE_Heading 5" = "Sous-section 5";
    "STYLE_Heading 6" = "Sous-section 6";
    "STYLE_Heading 7" = "Sous-section 7";
    "STYLE_Heading 8" = "Sous-section 8";
    "STYLE_Heading 9" = "Sous-section 9";
    "STYLE_Legal" = "Légal";
    "STYLE_None" = "Aucun";
    "STYLE_Normal" = "Normal";
    "STYLE_Normal 22" = "Normal 22";
    "STYLE_Normal 4" = "Normal 4";
    "STYLE_Normal 8" = "Normal 8";
    "STYLE_Numbered List" = "Liste numérotée";
    "STYLE_Series_0" = "Series_0";
    "STYLE_Series_1" = "Series_1";
    "STYLE_Series_2" = "Series_2";
    "STYLE_Series_3" = "Series_3";
    "STYLE_Series_4" = "Series_4";
    "STYLE_Series_5" = "Series_5";
    "STYLE_Strikethrough" = "Barré";
    "STYLE_TOC" = "Table des matières";
    "STYLE_TOC Heading 1" = "Sous-section 1 de table des matières";
    "STYLE_TOC Heading 2" = "Sous-section 2 de table des matières";
    "STYLE_TOC Heading 3" = "Sous-section 3 de table des matières";
    "STYLE_TOC Heading 4" = "Sous-section 4 de table des matières";
    "STYLE_Title" = "Titre";
    "STYLE_Underline" = "Souligné";
    "STYLE_[Null]" = "[Nul]";
    You may use more sophisticated custom styles embedding several properties:
    baseline shift (real) : Raise or lower the target text.
    bold (boolean) : Whether the font style is bold.
    capitalization type (all caps/normal capitalization/small caps) : Whether a capitalization style is applied.
    character background color (color) : The color of the character's background.
    color (color) : The color of the font.
    font name (text) : The name of the font.
    font size (real) : The size of the font.
    italic (boolean) : Whether the font style is italic.
    ligatures (all ligatures/default ligatures/none) : Remove ligatures from the target text if the document is set to use ligatures.
    name (text) : The name of the style.
    outline (boolean) : Whether the font style is outline.
    shadow (boolean) : Whether the text box content casts a shadow or not.
    shadow angle (real) : The directional angle, in degrees, that the shadow is cast.
    shadow blur (integer) : The relative amount of blur of images seen through the shadow.
    shadow color (color) : The color of the shadow.
    shadow offset (real) : The offset from the text box content that the shadow extends to.
    shadow opacity (real) : The amount of opacity for the shadow, in percent.
    strikethrough color (color) : The color of the strikethrough line(s).
    strikethrough type (double strikethrough/none/single strikethrough) : Whether one or more lines are drawn through the characters.
    subscript (boolean) : Decrease the font size and lower the baseline of the text.
    superscript (boolean) : Decrease the font size and raise the baseline of the text.
    tracking (real) : The space between text characters, in percent.
    underline color (color) : The color of the underline(s).
    underline type (double underline/none/single underline) : Whether the font style is underline.
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) lundi 2 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Logical Database Selection Text?

    We have a report (run from the report tree) that above the selection-screen window a field with a range, SAUFNR  is displayed. Someone tried to go into the Logical Database POH (SE36), selection texts were there was a '?' and changed it to 'Order Number'  and were able to save it. However, SAUFNR still displays and not the text.
    The main goal is to disply 'Order Number' for this field and not 'SAUFN'. It is an SAP prog with a name about a footbal field long.  It executed 'Orders by finished Schedule date'.
      Any suggestions?
                                    Thank-you.

    Hi Tom,
    Have you activated the selection text and also please check in translation part of the text elements .
    Hope this may help you.
    Regards,
    Kiran I

  • Speed up adding URL hyperlinks to bullets/selected text

    Hi, I'm doing a presentation that requires linking a huge amount of the bullet text to different sites. I was hoping to create some sort of macro that told Keynote to add the URL of the current active window in Safari to the selected text, but Automator can't do it and I don't know of any other way to create a macro (I'm new to the Mac world).
    At the moment, after go to the site I want to link to, switch to Keynote, highlight the desired text and open the Hyperlink inspector window:
    1) Hyperlink inspector window defaults to Slide (vs. Webpage)
    2) After I click Enable Hyperlink and choose Webpage from the pulldown menu, the URL defaults to my home page URL.
    This means I have to go to Safari, highlight and copy the URL, switch back to Keynote, highlight the homepage URL, paste the correct URL (from the active Safari window), click Apple-end to get to the end of the URL and hit Enter in order to hyperlink the selected text.
    I know there has to be an easier way.
    At one point, I accidentally did something that dynamically changed the URL in Hyperlink inspector to the active URL on Safari, but I can't re-create it. That, at least, would be some help.
    Any suggestions for how to simplify/speed up/automate this cumbersome process would be GREATLY APPRECIATED, as I am slogging along using this inefficient approach while trying to meet a looming deadline.
    Thanks in advance!
    Maggie
    iBook G4   Mac OS X (10.4.6)  

    Maggie, how desperate are you for a quick solution? One approach might be to edit the Keynote XML text file directly, adding the bullets and hyperlinks as elements in that file rather than through Keynote proper. This approach is relatively straightforward, and it is very fast, but it does involve getting down-and-dirty with the XML, which might not be everyone's cup of tea. It's honestly not that daunting, though, and just involved doing very minor editing to a text file within TextEdit. I don't know if it would work well for your specific needs, and it involves a completely different workflow than working in Keynote directly, but it might be worth a shot. Here's how you would add a list of hyperlinked bullets to a single slide:
    - First, create a single slide with a bulleted list with a single item that has a hyperlink to a website. This will allow you to see what the XML looks like when we open the XML file. Use an unusual word or string of letters for the bullet item to make it easier to find in the XML code. Save this one slide presentation, and close it.
    - In the Finder, hold down the Control key while clicking once on the presentation file. This will bring up the contextual menu. Choose "Show Package Contents". This will open a new Finder window that shows you the "guts" of the Keynote presentation, which is actually a collection of files.
    - Double click on the "index.apxl.gz" file. This is the file that holds the XML markup for the presentation. It is stored in compressed form, but when you double-click it, a new file, "index.apxl", will be created. This is a plain text file, editable with TextEdit, and it is the file you will modify. Delete the "index.apxl.gz" file, as it isn't needed now, and Keynote will automagically re-compress the "index.apxl" file when we open the presentation.
    - Open the "index.apxl" file in TextEdit (or whatever other text editor you like). You will see a mess of XML, without any real formatting. That's OK though, because you only need to edit a small bit of this file, and you will use the unusual word in the bullets you created as a search guide.
    - Find the unusual word in the text. This word is embedded in the XML code that specifies the bullet on the slide. This is the code that you will need to edit.
    The code that specifies a hyperlinked bullet will look something like this:
    <sf:p sf:style="SFWPParagraphStyle-263" sf:list-level="1"><sf:link href="http://www.apple.com/"><sf:span sf:style="SFWPCharacterStyle-38">Test1</sf:span></sf:link><sf:br/></sf:p>
    (The numbers of the "ParagraphStyle" and "CharacterStyle" may be different depending on the theme you used.)
    If you look at this snippet, you can see that there is a URL in the <sf:link> tag -- that's the hyperlink for the bullet text. You can also see that there is some text (in this case, "Test1") wedged between the <sf:span> and </sf:span> tags -- that's the text that appears on the slide, and in your file it will be the unusual text that you searched for in the file.
    Now, the cool thing is that, if you change this URL and this bullet text in the XML file and save it (having previously deleted the "index.apxl.gz" file), you will have changed the bullet text and hyperlink in the actual presentation. The much cooler thing is that you can add bullets to a slide by simply pasting multiple copies of the above code template into the XML file -- just make sure that you copy the entire bullet template (from <sf:p to </sf:p>), and that you paste it directly after another </sf:p> tag. (Be sure to use the template from your XML file, since the ParagraphStyle and CharacterStyle numbers will be different.)
    What this means is that the task that formerly involved going back and forth in the Keynote interface now just involves editing a text file. In the case of your task, for example, what you could do is create a second TextEdit window, paste the bullet code template into it several times, and then just drag and drop the URLs you want into the various address spots of the templates. You can also edit the bullet text directly in the templates. Once you're done, you can simply copy the whole batch of text and paste it into the appropriate spot in the "index.apxl" XML file, and you're done.
    Also, because this is now a text editing task rather than a Keynote task, you can potentially take advantage of applications that automate text editing to generate the bullet XML for you. For example, you could just create a list of the URLs, and then use the macro capabilities of Word, or (my favourite) NisusWriter, to go through the list and populate the addresses in the bullet templates. The possibilities are quite wide open with this approach.
    This is just how to do one slide, but multiple slides are just as straightforward -- simply start by creating a presention where each slide has one bullet point, with unique text in each bullet. Then you can easily find the section of XML code for the bullet of each slide, and edit accordingly.
    This may seem like a hugely involved and roundabout way of doing this task, but it works, and by making it a text editing task, it can make it far easier.
    PowerMac G5   Mac OS X (10.4.4)  

  • Translation Selection text

    I have tried translating the selection text using Goto->Translation to desired language , the problem is how to transport it to different server ???

    Hi Gm,
    i faced a similar problem where it does not ask for the trasport request if you transalate the text.
    but if you include the text file i mean the REPT object for your program in the TR then the translation will also be transaported.
    you can do this by making a small change in the seletion text in the original language and activating it and it will ask for a tr and the REPT object wll be included.
    thus solving your problem as all the transalation will be also added to TR.
    please let me knoe if you have any doubts.
    award points if helpful

  • How to make selected and active a child row of a treeTable?

    Hello,
    I am inserting a new child row into a af:treeTable, disclosing it, but I can't figure out how to make it selected and active so the focus of the user to go on it.
    Jdeveloper version 11.1.2.3.0
    This is how I am inserting the child node:
    public void createLocation(RowIterator ri, Key selectedNodeKey) {
            final String locationCategoryViewDef = "model.views.LocationCategoryView";
            if (ri != null && selectedNodeKey != null) {
                Row[] found = ri.findByKey(selectedNodeKey, 1);
                if (found != null && found.length == 1) {
                    Row foundRow = found[0];
                    String nodeDefname = foundRow.getStructureDef().getDefFullName();
                    RowSet parents = (RowSet)foundRow.getAttribute("LocationView");
                    Row childrow = parents.createRow();
                    //hardcoded locationId
                    childrow.setAttribute("LocationId", 434558);
                    parents.insertRow(childrow);
    }  And this is the treeTable:
    <af:treeTable value="#{bindings.LocationCategoryView2.treeModel}" var="node" varStatus="vaarr"
                  partialTriggers="gaga gag4a ga4a"
                  selectionListener="#{bindings.LocationCategoryView2.treeModel.makeCurrent}"
                  displayRow="selected" rowSelection="single" id="tt1" editingMode="clickToEdit"
                  horizontalGridVisible="true" binding="#{pageFlowScope.treeTableBean.sampleTreeTable}">
        <f:facet name="nodeStamp">
            <af:column id="c5" width="15">
                <af:outputText value="#{node}" inlineStyle="display:none" id="ot1"/>
            </af:column>
        </f:facet>
        <f:facet name="pathStamp">
            <af:inputText value="#{node}" id="ot2"/>
        </f:facet>
        <af:column id="c2" headerText="Location CategoryName">
            <af:inputText value="#{node.LocationCategoryName}" inlineStyle="font-weight:900" id="ot45"/>
        </af:column>
        <af:column id="c6" headerText="Location CATID">
            <af:inputText value="#{node.LocationCategoryId}" inlineStyle="font-weight:900" id="ot6"/>
        </af:column>
        <af:column id="cgg2" headerText="Var INDEx">
            <af:outputText value="#{vaarr.index}"/>
        </af:column>
        <af:column id="c1" headerText="Location Name">
            <af:inputText value="#{node.LocationName}" id="ot3"/>
        </af:column>
        <af:column>
            <af:panelGroupLayout layout="vertical">
                <af:commandLink id="gaga" text="addLocation" inlineStyle="color:red"
                                action="#{pageFlowScope.treeTableBean.createChildren}"
                                rendered="#{node.LocationId == null}" partialSubmit="true"/>
                <af:commandLink id="gag4a" text="delete category" inlineStyle="color:blue"
                                partialSubmit="true" rendered="#{node.LocationId == null}"
                                action="#{pageFlowScope.treeTableBean.deleteChildRow}"/>
                <af:commandLink id="ga4a" text="delete location" inlineStyle="color:green"
                                partialSubmit="true" rendered="#{node.LocationId != null}"
                                action="#{pageFlowScope.treeTableBean.deleteChildRow}"/>
            </af:panelGroupLayout>
        </af:column>
    </af:treeTable>

    Yes I did now but nothing changes. The current, selected and active row is still the parent node...
    Even I am adding AdfFacesContext.getCurrentInstance().addPartialTarget(this.sampleTreeTable); for just in case..

  • Internet Explorer: Contextual Menu, Retrieve Current URL,Grab Selected Text

    Hi,
    How would you do to add an item to the Internet Explorer Contextual Menu that grab the selected text and retrieve the current Url?
    Thanks in advance

    Actually, I would like to retrieve the current URL and the selected text from the browser by default.
    Ubiquitous, Internet Explorer is the first browser I would like to use.
    1. It could be a java application that monitors the active browser on WinNT, and displays the current URL and the selected text of the monitored browser.
    Or
    2. it could be a java script called by the contextual menu of IE that launches an application with specific data from the page when the item is clicked (gives these specific data to a monitoring application)
    Launching the default browser with a URL is OK. However, monitoring the active browser and retrieving its informations, or retrieving its informations after a clik from the contextual menu is quite an exercise ;-)
    Thanks in advance,

  • Can no longer select text in email template or read only field with mouse using IE or Firefox?

    Hi Guys,
    I can no longer select text in email template or read only field using my mouse in IE or Firefox anymore. We are using CRM 2011 rollup 18 applied with IE 11 and the latest version of Firefox. We only applied roll up 18 in Feb when this issue began.
    Thanks
    Dave
    David Kelly

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies (save any pending work first) using either of these. While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    These features rely on JavaScript, and it sounds as though you have scripting enabled if you get (the wrong) color changes. Some add-ons might alter the way scripts operate, so a standard diagnostic to bypass interference by extensions (and some custom settings) is to try Firefox's Safe Mode.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [[Backing up your information]]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in Firefox's Safe Mode ([[Safe Mode]]) using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode."
    If those features work correctly, this points to one of your extensions or custom settings as the problem.
    To also disable plugins, you can use this page:
    orange Firefox button ''or'' classic Tools menu > Add-ons > Plugins category
    Any change?

  • Select text from all_views returns an empty string

    My application allows the user to select between the Data Provider for ODBC and the Data Provider for Oracle. (ODP)
    When using the ODBC provider the statement:
    Select text from all_views where view_name='MYVIEW'
    returns the expected string.
    If I connect via ODP however it returns an empty string.
    (If I use 'Select *' it tells me the text_length is 154 in this specific case - so there is definately text available.)
    I'm thinking it has something to do with the fact that the data type is LONG.
    In both cases I retreive the data using rdr.GetChars(), which should work.
    If I use the dbms_metadata.get_ddl function instead, it does return the string (Probably because the return type is not LONG)
    Unfortunately that function only works for Views in the current schema, while the original Select works for any view.
    (And I dont know what version of Oracle this function was added in - I have to support older versions too.)
    Similarly, if I use one of the XML functions to retreive the text as XML it works fine.
    (Again it is probably returned as a VARCHAR2 instead of a LONG.)
    The strange thing is that when I created my own table containing a LONG column I was able to load and retreive data without any problems.
    The problem appears to be specific to this column in all_views.
    Anyone know a solution to this?
    Thanks
    Mike

    Thanks that was it.
    I had not seen those properties since I am working with the 'generic' objects (DbCommand rather than OracleCommand, etc.)
    What is strange is that I was able to retreive data from my own LONG column WITHOUT setting this value to -1.
    (It defaulted to 0 in both cases.)
    The only difference was that when I retreived data from my own column I specified CommandBehaviour.SequentialAccess.
    When I retreived the all_views.text column I did not specify a behaviour at all.
    However the Oracle docs said that SequentialAccess is not supported ... so I guess that is not correct.
    (Maybe it doesn't 'work', but it certainly seems to cause things to work differently)
    Thanks
    Mike

  • Print/Save Selected Text to PDF

    I want to use Mozilla Firefox very much for a long time. I like it because the UI is very clean, easy to use, the icon vey pretty. When I use in my Android Mobile, it is very easy and intelligent to select content of page site. Very good!
    But I had to install Chrome instead so I've always been using "Print a selected content to PDF" but I couldn't find ways to do that with Firefox. Chrome is doing very good.
    I searched all add-ons, pdf printer software but they are only saving or printing all the page (website) to PDF.
    Please help me the ways to save a selected content to PDF. Thanks very much.

    Hii hanh01001..
    I think i know one solution to the problem
    https://addons.mozilla.org/en-US/firefox/addon/print-selected-text/?src=api
    this is an add on that is used to print the selected text only..
    have a nice day :) :)
    ---Thanks tracy :)

  • Create a dynamic form where selected text boxes appears, based on options chosen in a drop-down box

    HELP!!! Can anyone please provide some guidance on how to create a dynamic form where selected text boxes appears, based on options chosen in a drop-down box.
    I have a form which – based on the department that's selected from a drop-down box – will have different form fields/text boxes, etc, made available.
    Is this possible in LiveCycle, if so, can you please provide the script/info - as needed.
    Thanks,

    In the preOpen event of the second dropdown list you put something like (in formCalc):
    if (dropdown1 == 1) then
    $.clearItems()
    $.setItems("Year, 2 Year,  3 Year")
    elseif (dropdown1 == 2) then
    $.clearItems()
    $.setItems("3 Year,  4 Year")
    endif

  • How to select text from a webpage

    hi. i have firefox for my n900. i would like to know how to select some text from a webpage so i can copy and paste it. thanks for the help. i couldn't it anywhere.

    First tap where you want the selection to start. (It might help to zoom in as far as possible first. You can do this using the volume buttons in the newly-released Firefox 1.1rc1.) Then hold the Shift key while pressing the arrow keys on the N900 keyboard to select text.
    Note: We are aware that this is not a very user-friendly way to select text, and we hope to include a better design in a future version of mobile Firefox.

  • Get selected text from af:inputText

    Hi,
    I am using an <af:inputText> component, within which I would want to know if any text has been selected.
    InputText.getValue() would give me the total value that is there within the inputText component. But if I have selected a part of the text, I would like to get hold of that.
    Is there a way in ADF, to get that selected Text ?
    Thanks,
    Pawan.

    Hi,
    If I am to use javascript, can i directly use the IE/FF (browser-specific) code to get hold of the selected text ?
    The ADF javascript API doesn't seem to have a way to get the selected text.
    Thanks,
    Pawan.

  • Why does my cursor not automatically select the entire word when I try to select text by starting/ending in the middle of a word?

    In any other browser I've used (or word processor, for that matter) when I select text using my mouse cursor, if I start and/or end in the middle of a word, it automatically selects the whole word when I'm selecting more than one word. But for some reason this is not happening in Firefox. If I try to select say 3 words, and I start in the middle of the first word and end in the middle of the last word, it will only select those parts, not all 3 words entirely.

    Firefox allows to select part of a word. You can select a word with a double click and use Shift + left click to set the end of the selection, so you need to click at the end of the last word instead of in it.

Maybe you are looking for

  • USB-6009

    I am electrical engineering student and i design a project which the sensor signals through USB-6009 to PC labview for monitoring, but i dont know this sensor and USB-6009 can do this function or not? anyone can help, Thank you! Attachments: FFP350_p

  • ***Urgent Need of resolution***X220 driver not installed Intel Management Engine AMT 7.1

    I have a laptop refresh project strating soon and i can not deploy any X220 machines. After the installation of Windows 7 there is an "Unknown device" shown in device manager. If I uninstall the unknown device then "Scan hardware changes" the device

  • Rotating an image

    Im making a blackjack game and for the double function i need the card image to be rotated 90 degrees. But I have rarely worked with graphics so I need some help. I have found this code on a site: Graphics2D g2d = (Graphics2D)g; // Move the origin to

  • Beryl/ATI problems

    I used to have XGL/Compiz working with fglrx drivers at one point a few months ago. I stopped using it however after I noticed that it made video playback use 100% CPU (since it couldn't use Xv). Today I decided to see if things had improved over the

  • Where can I purchase AC Adaptor for my Airport Extreme as the original one is broken?

    Where can I purchase AC Adaptor for my Airport Extreme as the original one is broken? I have tried to go to Apple Store in Singapore / Hongkong, they do not sell just the AC adaptor. They asked me to purchase new Airport Extreme / upgrade to Time Cap