How to Change Applet Windows Title in EBS 11.5.10.2?

Dear All, would like to check How do I change the Applet Form Windows Title in EBS 11.5.10.2?
Thanks.

Hi,
Anybody know how to change the wording in the red rectangle part ?Check my previous reply, it answers your question (login to System Administrator responsibility and navigate to Profile > System, search for the profile name, and change it at the Site level).
Regards,
Hussein

Similar Messages

  • How to Change the Windows Title in EP7.0

    Hi
    Can anyone provide some pointers on how to change the windows title bar in EP 6.0
    We would like to remove the words "SAP Netweaver Portal" from the title.
    I have found OSS note  695903 however this refers to EP6.0
    Thanks in advance.
    Ian

    Hi,
    For people who have no access to the note, here are the steps involved. The same steps are listed in the note :
    1) Logon to your portal with your user who has super_admin role.
    2) Go to the System Administration tab -> System Configuration tab.
    3) Go to the Service Configuration -> Central Configuration.
    4) Change the portal.html.head.title part. Do no forget to save the changes you made.
    5) Restart the j2ee server to be able to see the changes on the portal
    Cheers,
    Sunil

  • How to change the Window Title on a per build spec basis?

    I would like to be able to make 4 "build specificiations" against the same Startup-VI and be able to have the Window Title different in each of the output executables.   I know how to change the Window Title for the VI itself, but for some reason, I don't see the ability to override this information in Source File Settings --> Customize VI Properties dialog of the build specification.    Is there perhaps a way to do this programattically with VI server?  Perhaps there is a way I can define a unique symbol on each of the build specs and then do a case statement in code to determine which title to display based on the symbol that was defined?
    Thanks,

    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 main window title of oracle ebs

    Hi all,
    Kindly tell me how can we change the main title of oracle ebs 11i.
    Thanks

    Hello Gloscott,
    Welcome to the Aperture discussion forum. Congratulations. You just hijacked a thread. That's bad form for 2 reasons. First, you added a message to a thread called "How to change main window view" which makes it look like you had information to add that thread, and you did not. Second, people who can help you are more likely to read a message that has your problem in the subject than they are to read this message. I.e., you won't get what you want if you ask for something else.
    That being said, when you repost your query in a new thread, you'll have to be more specific. A "Frame" is not in the regular Aperture terminology.
    nathan
    Message was edited by: Mr Endo

  • Changing the Window title

    Hi,
    I am using forms 10g version and like to know if there is any possible way I can change the window title from,
    'http://192.168.x.x - Oracle Application Server Forms Services - Microsoft Internet Explorer'
    to other wordings ?
    I have tried to use, SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,TITLE,'New Title'); but not successful.
    My existing settings of formsweb.cfg are,
    [default]
    separateFrame=false
    [sepwin]
    separateFrame=True
    Thanks in advance.

    You're right - you'll use Javascript to make the change to the browser title, but you'll need a Java bean in your Form to make the call to that Javascript. I've posted some example code in an earlier thread on how to call Javascript from a Forms bean item:
    Re: How can a Javabean call Javascript function of the basejpi.html??
    I used a Javascript include file to include the following Javascript function (among others) in the html page that hosts the applet i.e. in our case, webutiljini.htm:
    function setWindowTitle(title)
    document.title=title;
    Hope that gives you the building blocks you need!
    James

  • How to change html style titles of a JTabbedPne at run time??

    hi,
    how to change html style titles of a JTabbedPne at run time??
    setTitleAt is not working...

    You can't change the canvas at runtime. But you can put the scrollbar on a stacked canvas and then show or hide that stacked canvas on different canvases.

  • How to set browser window title?

    Hello..
    Is there a way to change browser window title at runtime? I am using WD ABAP with FPM
    Please suggest an API.
    Thanks in Advance

    Hi Hari,
    For changing the application title you need to configure, which i assume u know and have configured.
    now you can use the following code to change the title.
      DATA lo_idr TYPE REF TO if_fpm_idr.
    get idr instance*
      lo_idr ?= cl_fpm_service_manager=>get_service( cl_fpm_service_manager=>gc_key_idr ).
      IF lo_idr IS NOT INITIAL.
        lo_idr->set_application_title(
          EXPORTING
            iv_title = lv_heading
            iv_title_tooltip = lv_heading ).
      ENDIF.
    where lv_heading is the new heading.
    for any other question on FPM post it in Floorplan Manager for WebDynpro Abap fourm
    Hope this will help you.
    Thanks & Regards,
    Arvind

  • Change browser window title when separateFrame=false

    We are running Web forms with separateFrame=false and want to change the window title.
    Have tried using a javabean as provided by Frank Nimphius but that manipulates the top window frame only (i.e. the one that does not exist because we have only one frame). The built-in SET_WINDOW_PROPERTY ((FORMS_MDI_WINDOW, TITLE, 'my title') does not work
    Using Webutil has been rejected by the client because of security/admin issues.
    Anyone know of a solution?
    Cheers,
    Gary

    Hi,
    based on the following Javascript that works to set the title
    <html>
    <body onLoad="document.title='Hello'">
    </body>
    </html>
    you can create a web.show_document() call like
    web.show_document('javascript:document.title="hello"','_self');
    If this doesn't work the first time, add a method to the base html file in Forms and call this method the same way
    Frank

  • 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.

  • 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 default window size?

    I'm using MX 6.0 on Mac... For some reason I can't figure out
    how to change the default window size in the work windows. Every
    time I open a new file to work on it opens to a smaller size than
    the actual page is. When opening pages dozens of times a day, it
    gets annoying to have to resize each time. I'm sure it wasn't
    always like this, but I can't figure out how to change it so the
    default size that it opens to each time is larger.
    Thanks for any help,
    DD

    Window | Workspace | Save Current
    This gives you the opportunity to save a current layout look
    that you like
    You might also look under
    Edit |Preferences | Status bar - but I don't see that this
    does anything
    in DWCS3

  • 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 headings and titles in standard performance mgmt screen ?

    Hi,
    I am new to webdynro ABAP. Kindly help with inputs for below requirement
    To change the process title  for Manager overview screen
    To change task descriptions (eg current description is- Schedule review meetings with employee and discuss goals. this needs to be changed to text given by the client)
    To change tab descriptions  (eg to change tab heading like Employee Documents, Team Goals etc)
    To change section descriptions (eg Individual Goals, Competency and Developement Goals etc need to be changed)
    will there be configurations or functions available to meet above requirement ?
    thanks
    B

    Dear B,
    Sure. That is easy.
    Here's what you need to do.
    You will need to Configure or Personalize your WD4A (Webdynpro for ABAP).
    How do you Configure a WD4A ?
    You need to click on a Application Configuration or Component Configuration on your WD4A on SE80.
    And then you will be taken (on your browser) to the App. and Comp. Configuration environment.
    And it is there that you can do some changes to your WD.
    Here's an image that shows you what I mean (where you need to click)
    [http://imageshack.us/photo/my-images/411/20111010152038.jpg/]
    But you can learn more regarding Configuration here
    [http://help.sap.com/saphelp_nw70/helpdata/EN/43/e86de5008b4d9ae10000000a155369/content.htm]
    What about Personalization of a WD4A ?
    For this you will need to run you WD4A in Personalization in Administration Mode
    See here what I mean:
    [http://imageshack.us/photo/my-images/685/20111010153034.jpg/]
    When you launch your WD in Admin. Mode your URL will have an extra parameter at the end
    named sap-config-mode=X
    Here's an example
    http://.......webdynpro/sap/fitv_powl_trips?sap-language=EN&sap-wd-configId=FITV_POWL_TRIPS&sap-config-mode=X
    By having this you can now personalize your WD for every user.
    Just go to your desired field, tab, label, button, wathever and personalize it.
    How ?
    Simple, just CTRL+Click on top of it and choose the option "Settings for Current Configuration"
    Here's an exmple:
    [http://imageshack.us/photo/my-images/827/20111010153423.jpg/]
    After this a popup will appear with all the options for that UI element, where you can make a lot of changes (modify text, change size, hide, etc...)
    More on Personalization for WD4A here:
    [http://help.sap.com/saphelp_nw70/helpdata/EN/fd/2da442dc030e31e10000000a1550b0/content.htm]
    Hope this helps.
    Kind Regards
    /Ricardo Quintas

  • How to display Applet window in user browser?

    Hi,
    Can anyone help me in displaying the applet in the user browser.
    I am using a java script method(callApplet) in my JSp page which will be invoked when a button is clicked.
    So when the button is clicked the i am getting the new window, but the applet window is not displaying i am
    getting just a blank image.
    I guess we have to change in browser setting for enabling the applet window.
    Can anyone help me where we have to enable for applet setting in our browser (ie browser setting) or do we need to install any software for viewing the applet window.
    Here is my code to display the applet in browser:
    My JSP Page includes below code:-
    function callApplet()
         window.open("http://infch00878:8080/USMS-Local/jsp/home1.html");
    And home1.html file is :-
    <html>
    <applet code="aDraw.class" archive="aDraw.jar" width="520" height="330" name="aDraw">
    <param name="url" value="http://infch00878:8080/adraw/jsp/save.jsp">
    <param name="save" value="Save">
    <param name="bgcolor" value="#F0F0F0">
    <param name="image" value="test2.jpg">
    <param name="sizeW" value="430">
    <param name="sizeH" value="450">
    <param name="bouton" value="D:\test\bouton.gif">
    </applet>
    </html>
    Thanks in advance for your help.

    I'll ask the same question again: does the applet work in AppletViewer (if you do not know what appletviewer is, you should review Sun's documentation on applets - http://java.sun.com/docs/books/tutorial/deployment/applet/ )? It is easy to diagnose problems when you have certain steps to at which tobreak the problem apart...here, if the applet does not work in Appletviewer, than the problem is with the applet or your link to the applet in the html, and not anything downstream of that.

  • Changing Applet Window Size

    I developed a few forms on 6i and was going to go ahead and migrate to 9i. However, my forms no longer fit in the applet window screen; the user would have to scroll over to see half of it now. The applet window now (not my own window but the window that has "Window" on the left side and "ORACLE" on the right) is only about 2/3 the length of the screen. I can see no way to change it right off...can it be done? if not, jeez, that's a pretty small window...also, I can only assume that the big "ORACLE" advertisement can't be taken off; is that right?
    BTW, I am running Windows 2000.
    Thanks,
    Brian

    To resize the applet just change the width and height parameters in the HTML that invokes your form.
    You can also eliminate the Oracle Logo, its one of the parameters to the applet.

Maybe you are looking for

  • "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)

    We are getting the following error "there is a problem with adobe acrobat/reader. if it is running please exit and try again. (523.523)" and a gray screen appears (Image not viewable) with multiple users. We are using Adobe Reader XI (11.0.05) and (1

  • Po's based on material created

    hi, please help me out in generation of the below report. <b>display the PO's based on material created by the user.</b> you can send your views on ' [email protected]'. thanks in advance. -Muraly.

  • How to display " %some string% " in JSP

    In the following code the value of Parameter "greeting" is "<%some string%>" How do I escape it so that I can print it as it is. out.println("Greeting: " + request.getParameter("greeting")); thanks in advance. -a.

  • Co-Product & by product

    What is the diffrence between the co-product & the by product.How does these influence any transactions in PP? Could u provide with me an example of a co product & by product? Thanks & Rgds Charan

  • Codec help needed - Quicktime to Final Cut

    I am having a problem in my workflow using Keynote, QuickTime and Final Cut Pro. I'm trying to create some presentations in Keynote, export them to Quicktime, then import them into Final Cut Pro and then export them into various formats. I want to ha