How to change the browser title Window or View Dynamically.

Hi
I have several application calling my applicationm and i need the browser that lauches the application to have different Titles on the Browser Title.
How can I change the Title from the Window or View?
Please advice.
Thank you.
Regards,
Vinod

The browser title gets pulled from the WD Application Description.  Currently there is no API to change the browser title from within WDA.  Next year in 7.02 we do add such an API.  Here is an example of what will be possible in 7.02:
data l_window_title type string.
  case lv_transaction_type.
  when wd_assist->create_mode.
  l_window_title = `Create Sales Order`.
  when wd_assist->display_mode.
  l_window_title = `Display Sales Order: ` && so_id.
  when wd_assist->change_mode.
  l_window_title = `Change Sales Order: ` && so_id.
  endcase.
  wd_this->wd_get_api( )->get_component( )->get_application( )->set_window_title( l_window_title ).
Setting the title on a View is easier.  You can just use a Tray or Group UI element as the root of your view and set the title property of the UI element dynamically by context binding to the property.

Similar Messages

  • How to change the Browser title when report runs on the web?

    Hi folks,
    How to change the title of the browser when I run my report on the web? Iam using Internet explorer and Reports 6i. Is it possible in 6i or 10g reports?
    Could you please tell me the step by step procedure ?
    Right now the browser is displaying the URL when I run the report with format = PDF.
    Thanks.

    It works for me. I don't see why you have a problem with >this code.
    Can you look at the source code of the html >file that was created (so, not in the browser, but in a >text editor). What do the header and title look like?The Html code in the file is same as the above code I specified. Actually I copied the same code and pasted here. But when I run the html file the Title shows up.
    Don't put </html> there. Maybe that helps. I tried this, but it did not work.
    Please let me know is there any way to set it dynamically inside the triggers using SRW built_in.
    Thanks alot.

  • How to change the browser title of standard SAP WD4A application - eRecruit

    Hi,
    I have a requirement to change browser title for standard SAP WD4A application hrrcf_a_candidate_registration. I know this value is used from application description filed.
    Current set up is 'Candidate Registration'. (WD Component HRRCF_C_REGISTER_UI)
    I tried to use enhancement framework technique and application customization/configuration - but was not successfull.
    I do not like the idea of changing the standard SAP object since it might be overwritten in future upgrade. And also I do not prefer to create z* copy of this application as well.
    Any ideas how to handle this request? Is dynamic modification of this property possible?
    Thanks for your feedback.
    Regards,
    Igor

    Hello,
    Did you try to change the description of the service in transaction SICF ?
    You can find the Webdynpro services under the tree /default_host/sap/bc/webdynpro/sap/.
    Regards,

  • How to change the browser used for Google search from context menu of selected text?

    How to change the browser used for Google search from context menu of selected text?
    It uses Safari. But I want to use Chrome (it's my default browser).

    How to change the browser used for Google search from context menu of selected text?
    It uses Safari. But I want to use Chrome (it's my default browser).

  • Changing the Chart Title in Graphic View in Interactive demand Planning

    Hi All,
    Is it possible to change the Chart title in Graphic View in interactive demand planning screen.
    When we go to interactive planning after loading the data we go to Univariate forecast then switch to graphic, the chart title shows the selection at which the planning is done. For eg; If I plan at die level and i select a particular sap material, the chart title displays Die value and not the material value.
    Is it possible to change the chart title such that it displays all the selections made in selection winodw, like in the above case both Die value as well as SAP Material Number.
    Thanks and Regards,
    Diana

    Dear Diana,
    unfortunately this is not possible.
    The chart title is build from the planning book name + the Show characteristic in the shuffler (+ available nav. attributes of the Show char).                                                           
    The functionality you requested doesn't exist in standard.            
    Regards,
    Tibor

  • How to change the Display Pattern for Decimal Fields dynamically

    hi all,
    Can any one help me how to change the display pattern for decimal fields dynamically???
    Currently I am using z,zzz,zzz,zz9.999 Display pattern for Quantity Field. If the value is blank it is displaying as 0.000 on the Screen. But I don't want this to be printed.
    Please help me how to solve this ASAP.
    Thanks,
    Prabhu

    Hi,
    Alternatively you can handle it in the context.
    In the context area, click on the quantity. In the bottom, click on the conditions tab, and put a condition
    <quan field> NE initial.
    So the field will not be printed if there is no value.
    Regards,
    Vidya Chowdhary A.

  • How to change the frame title

    hello
    i m using oracle forms varsion 9.0.4.0......
    in the formsweb.cfg i hv set the parameters seperate frame=true
    also given the pagetitle=my application
    but when i run form in the browser ....the browser title is coming and then again a seperate window or frame appears whose title is Oracle developer forms runtime-web....i want to change the title of the second frame which appears after loading the applet in the browser...
    thanks

    You could use:
    SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW, TITLE,'your title');

  • How to change the icon for 'windows group' in Java 1.6 [Windows XP] ?

    Hello,
    I was wondering if there is a possibility to change the icon for 'windows group' in Java 1.6...
    I'm using Windows XP SP2. Now the windows from my Java 1.6 application are grouped with the standard Sun icon [screen below] on the group.
    http://img382.imageshack.us/img382/8995/iconbl1.png
    I would like to change the icon for my own. Is there a way to do that ?
    Please help.

    Whichever icon I use for the main frame (I tried few), after grouping the main frame and other sub-frames the icon is changed to standard 'Java Sun' icon as you can see in the screenshot from my first post. The problem occurs only when frames are grouped, when the are separated in the task bar their titles and icons are ok...
    So how can I change the icon/title for the group only (for Java 1.6 in Windows XP) ?

  • How to change the Task title on runtime?

    Hi experts again,
    My customer is struggling with something very simple: how to customize the Task title. You can certainly create an argument in the task, use Data Associations to map the argument, and then use XPath expression to get the value from the task payload and set it to the task title. That works fine. But it only executes once, when the process instance 'enters' in the task.
    So once the Task is created, you can see the custom title in the Workspace.
    Now, can we change the Title on runtime? I thought you could get the task payload, update the title and finally update the task but this does not seem to work. Here's the code that does it.
    In this example, the priority is updated successfully but not the title.
    FacesContext context = FacesContext.getCurrentInstance();
    String tskId = (String)context.getApplication().evaluateExpressionGet(context,
    "#{pageFlowScope.bpmWorklistTaskId}", String.class);
    IWorkflowServiceClient workflowSvcClient = WorkflowService.getWorkflowServiceClient();
    ITaskService taskSvc = workflowSvcClient .getTaskService();
    ITaskQueryService wfQueryService = workflowSvcClient.getTaskQueryService();
    IWorkflowContext wfContext = WorklistUtil.getWorkflowContextForASelectedTask();
    Task myTask;
    try {
    myTask = wfQueryService.getTaskDetailsById(wfContext, tskId);
    Element payloadElem = myTask.getPayloadAsElement();
    System.out.println("****************" + myTask.getTitle());
    System.out.println("****************" + myTask.getPriority());
    myTask.setTitle("Task Title 3");
    myTask.setPriority(2);
    myTask.setPayloadAsElement(payloadElem);
    taskSvc.updateTask(wfContext, myTask);
    } catch (Exception e) {
    e.printStackTrace();
    The results which printed out in console after execute above code twice.
    ****************Task Title 1
    ****************3
    ****************Task Title 1
    ****************2

    You can use the appropriately named Window Title property. In your project you can define conditional disable symbols (right-click on the project node and select Properties) and then use a conditional disable structure in your code. However, these symbols apply to the entire project, not to a specific executable. Thus, a better route would be to use the executable name (also accessible via a property), if possible, or some other distinction between the executables. What makes the executables different?

  • How to change the application title in apex while importing it ..

    Hi ,
    I have an issue here. As per the requirements I need to change the application title in Apex while
    importing it from One instance to another instance.
    Ex: My application title is WATERFALL PORTAL in iWATERFALL instance ,it must be changed to PUAT PORTAL if im Importing it to PUAT instance.
    This change has to be done Dynamically. Without Entering it Manually.
    Kindly help me out and Will be Great for your Assistance.
    Thanks,
    Vishal

    1001804 wrote:
    Hi ,Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your forum profile with a real handle instead of "1001804".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    I have an issue here. As per the requirements I need to change the application title in Apex while
    importing it from One instance to another instance.Please clarify what you mean by "application title". The Application Name in the application definition? The displayed Logo in the user interface properties?
    Ex: My application title is WATERFALL PORTAL in iWATERFALL instance ,it must be changed to PUAT PORTAL if im Importing it to PUAT instance.
    This change has to be done Dynamically. Without Entering it Manually.Also clarify what you mean by "instance". An "APEX instance" refers to the APEX installation in a database. The "APEX instance" does not have a specific name property, and would therefore usually be referred to using the database name. Or do you mean the APEX workspace containing the application?

  • Satellite Pro C660-1JL - How to change the language of Windows 7?

    Hello,
    I bought Toshiba with preinstalled official Windows 7 Professional 64 service pack 1. And would like to change language from German to Russian.
    According to instructions from microsoft home page I could not get the result. MUI pack is not shown when searching for Windows up-dates (some other up-dates are only available, but not language pack)...
    What would you recommend how to solve this problem ?
    Its Satellite Pro C660-1JL

    Hey,
    > I bought Toshiba with preinstalled official Windows 7 Professional 64 service pack 1
    You cant change the language on Windows 7 Professional, this is only possible on Windows 7 Enterprise (volume license) and Windows 7 Ultimate.
    So if you want another language, buy Windows 7 Ultimate or be happy with current language of Windows 7 Professional. ;)

  • How to change the layout of a category view

    I don't know how to change the layout of a category. I want to put 3 image's behind each other followed by some text, like a table with 4 columns. Instead of puting then in 4 rows

    larsprevo
    The category 'view' of items/folders uses the default style of the content area it is defined in (shared categories use the default shared style). Edit the default style to change the font/color of the items/folders returned within the category 'view'. Unfortunately, you don't have the ability to control the layout(like folder regions) - they always display in rows.
    Added an enhancement request for a feature that would allow you to control the display of items/folders in a category/perspective: 1828423

  • How to change the color picker/color space view?

    I wanted to change the color picker/color space view to what it looks like in the other Adobe programs. I have gotten used to using the color picker from the other programs and I have had problems with the look and function of this color view.
    In InDesign the color picker looks like this:
    And the Photoshop/Illustrator/etc. looks like this:
    I've tried changing the "Convert To Profile..." and the Transparency Blend Space, but neither have done anything to what I want to be done.
    Is there some way to change this in InDesign?
    Note: I want to change the looks of the gradient-like area if that isn't obvious.

    I was wanting to do the same change as you, until I saw your two images.
    Within the InDesign image you've selected a dark blue colour (R:16, G:49, B:152)  AND you've got the (R)ed channel selected.
    Within the Photoshop image you've selected a white colour(R:255, G:255, B:255)  AND you've got the (H)ue channel selected.
    In Photoshop I can recreate both of your images by having the same settings for RGB/CMYK and selecting the same channel item as you have in those images.
    That's all.
    There is no difference between the two colour selection dialogs except where the HSB, RGB, CMYK and LAB are placed.

  • How to change the number of "windows recently closed" that appear in "Historic" menu?

    The maximum number of "windows recently closed" i can have available in my "Historic" menu are 3. How can i change the options it to get more than that?

    Note that Firefox always seems to remember at least one closed wind even if you've set the above mentioned browser.sessionstore.max_windows_undo pref to 0. That can be a problem with pop-up windows that won't allow to open additional tabs or close existing tabs without closing the window.

  • How to change the color title of unused tab?

    The color title of unused tab is white. So it makes me hard to see the title. I want to change this to black. Can you help me?
    *Screenshot
    http://i.minus.com/iVAn8VrCDEkrJ.png
    http://i.minus.com/iLwWFkS1GDHci.png

    You can look at the Classic Theme Restorer extension.
    *Classic Theme Restorer: https://addons.mozilla.org/firefox/addon/classicthemerestorer/
    *You can check out the Custom color settings of the CTR extension via its Options/Preferences button on the "Firefox/Tools > Add-ons > Extensions" page.
    *You can find extra toolbar buttons and more toolbar settings in Customize (3-bar Firefox menu button > Customize)
    See also:
    *https://support.mozilla.org/kb/how-to-make-new-firefox-look-like-old-firefox
    *https://support.mozilla.org/kb/common-questions-after-updating-to-new-firefox
    *https://support.mozilla.org/kb/learn-more-about-the-design-of-new-firefox

Maybe you are looking for

  • How to get the Values i need from a String???

    hi i need some help on my program, I have a Server that actually sent some data to my Client. The data consist of some messages and intergers . The whole piece of data is stores as a String message. ARRAY 'Monitor Chart' 2 5 'Total OverFlow' 'Queued'

  • Multiple page Report

    Hi, How to Print the Report in Multiple Pages? i.e. Once the first page Report is finished , the next one has to start printing, and so on.Each Page can contain more than one pages. TIA, Vikki null

  • Multiple windows of the same class with a different argument

    Suppose I have a main window with a list of users. If I click on any one user, the "chat window" should open with the argument as that "user". If i click on another, a similar "chat window" should open but with a different user. I can't have so many

  • Itunes cannot read the contents of my iphone 5?

    When I try to sync my iphone to itunes, it says that "Itunes cannot read the contents of the iPhone "Name's iPhone". Go to the Summary tab in iPhone preferences and click Restore to restore this iPhone to factory settings." However, I have music that

  • Ipod Classic Wiped, Any Advice ?

    Last week my Ipod classic wiped itself. This occured after I had tried to listen to a podcast where it kept freezing. Confusingly although the Ipod says that there is no music/video/podcasts on there it states that it has 7.9 GB of memory used. Think