Clicking on workflow from oracle applications manager getting directed to http instead of https

Oracle DB:11.2.0.3.0
Oracle Apps: 12.1.3
O/S: Sun Solaris
Hi All,
We are facing s strange issue -  Whenever we click on workflow from oracle applications manager, it's getting directed to http instead of https?
Could anyone please share the fix to the above issue.
Thanks for your time.
Regards,

I've noticed that lsmod | grep agp gives me this output:
intel_agp 25436 1
agpgart 29332 2 drm,intel_agp
Is alright to see the intel_agp module or should I use ati_agp?
That module is motherboard dependent or VGA dependent?
Edit:
dmesg | grep agp
agpgart-intel 0000:00:00.0: Intel 865 Chipset
agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
agpgart-intel 0000:00:00.0: AGP 3.0 bridge
agpgart-intel 0000:00:00.0: putting AGP V3 device into 4x mode
Last edited by pazioman (2009-06-04 14:25:59)

Similar Messages

  • Oracle Application Management Pack for Siebel 10gR4 is GA

    Oracle Application Management Pack for Siebel 10gR4 is now generally available.
    Go to this OTN page if you want more information about the product.
    http://www.oracle.com/technology/products/oem/prod_focus/app_mgmt.html
    You may also download it from OTN to try it out as part of Enterprise Manager 10gR4. We will be demonstrating it at booths D8 and J7 at the Oracle Demoground at Moscone South Hall, at session S291922 at Moscone West L2-2001 on Monday, 11/12 from 3:15 to 4:15 p.m., and at the Siebel Pack Hands-on Lab (S294089) at Marriott Hotel Golden Gate Room B1 on Thursday, 11/15 from 11:30 a.m.-12:30 p.m.
    The Siebel Pack is designed to be a complete and integrated management tool for Siebel. Using this management pack, you may get proactive alerts on impending problems on the application, examine run-time statistics to troubleshoot and tune performance, compare configurations across different environments, keep track of configuration changes, proactively enforce configuration policies in order to avoid configuration related problems, monitor and report on service level delivered by the application and performance diagnostics of user and server performance. The pack may be used with other Oracle Enterprise Manager management packs and plug-in’s to achieve end-to-end management of the entire application environment, including both Oracle and non-Oracle databases, operating systems, storage and network devices.
    The 10gR4 release of this pack adds integrated Siebel Transaction Diagnostic support using data captured via Siebel Application Response Measurement (SARM) framework. With this tool, you may:
    - Analyze request processing for individual user requests
    - Analyze CPU and memory consumption of processing requests for different Siebel Server Components
    - Visualize SARM metric data graphically
    - Compare performance profiles over time
    - Create performance reports and share them with your co-worker for collaborative performance diagnostics
    The 10gR4 version of this Siebel Transaction Diagnostic tool also adds support for Siebel 7.7 and 7.8 in addition to being compatible with Siebel 8.0. It is fully integrated with Oracle Enterprise Manager, which eliminates the need for separate install and user maintenance, and it runs on all operating system platforms that Oracle Enterprise Manager supports.

    Working with the Oracle Enterprise Manager group to integrate closely with their monitoring solutions has been one of the most important advantages of joining the Oracle team. As our customers have started to use CRM more deeply as part of their business processes, CRM has quickly become Mission Critical, with 24/7 uptime requirements. Furthermore, as CRM becomes further integrated into the enterprise, knowing the status and health of the connections to multiple backend systems becomes evermore crucial.
    Through our partnership with the Oracle Enterprise Manager, we aim to support true Enterprise-class CRM. We are the only solution out there with over six million live users, and we are leveraging the knowledge gained from those customers in our Enterprise Manager integration. With the real-time monitoring and diagnosis that Oracle Enterprise Manager provides, we simplify the process of managing sophisticated CRM implementations which span organizations and systems. If you have a Siebel implementation with four servers or more, or with integrations to several systems, you owe it to yourself to check out Oracle Enterprise Manager.

  • Oracle Application Management Pack

    Hi,
    We have R12 of EBS and asked to install Oracle Application Management Pack. I could see 394448.1 : Oracle Application Management Pack for Oracle E-Business Suite, Release 2.0 .
    Do we need to reinstall OEM or simply applying patches as per metalink notes 394448.1?
    Awaiting ur reply..

    Hi,
    I applied appspack patch 6809246 and it's applied successfully. after this I looged in to oem url and checked to see if the instance has been added under Targets>Oracle Applications. It was not there. Do we need to add databse there?I tried to add instance name and it was asking for "Monitoring Schema Username, Monitoring Schema Password, Monitoring Applications Username, Monitoring Applications User Password "
    From where we get those details and do we need to add database explicitly?
    Regards

  • How to call a web Service from Oracle Applications?

    Hi friends,
    I've posted this question on OA Framework forum , but may be it's more appropiated put it here. Sorry for do it again:
    It's about how to call a web service from a Form or a .sql (via Request) in Oracle Applications:
    Could you please explain here the detailed steps (with code example if it's possible) to invoke a webservice from Oracle Applications?.. how did yo do it...?
    I've read differents posts here and the 33097.1 metalink note (by the way, the first recommended link in this note is broken...), but there are lots of theorical concepts and no real examples to see how/from where invoke the WS
    I'll have to call one webservice (I suppose the customer will give me the interface implementation)...but I've never did it with Applications so that's why I ask you for all the detailed steps...
    I work with Forms 6i, Apps 11.5.10.2 and DB 9.2.0.7.
    Thanks a lot.
    Jose.

    Hello Jose,
    I did using java program to call BPEL web services in 11.5.10.
    I pasted below the metalink note for your reference (Note:250964.1)
    The idea is first write a java program to call the webservice (in my case it is calling an BPEL web service, so this may not help directly), test it.
    Then port the java program as specified in the note, so that you could call your web service through concurrent manager scheduler.
    Is this ok?
    Thanks
    Arun.
    ======================================================
    Checked for relevance on 25-Apr-2007
    Application Install - Version: 11.5.8 to 11.5.10
    Goal
    ====
    How to register and create a Java concurrent program for Oracle Applications
    Release 11i
    Solution
    ========
    1. Create your Java Concurrent Program (JCP) , using a text editor.
    /*===========================================================================+
    | Concurrent Processing Sample Code |
    | |
    | FILENAME |
    | Hello.java |
    | |
    | DESCRIPTION |
    | Sample Java concurrent program |
    | About the simplest possible program, just writes a message to the |
    | logfile and output file. |
    | |
    | HISTORY |
    | $Log$ |
    | |
    +===========================================================================*/
    package oracle.apps.fnd.cp.sample;
    import oracle.apps.fnd.cp.request.*;
    public class Hello implements JavaConcurrentProgram {
    public static final String RCS_ID = "$Header$";
    public void runProgram(CpContext ctx) {
    ctx.getLogFile().writeln("-- Hello World! --", 0);
    ctx.getOutFile().writeln("-- Hello World! --");
    ctx.getReqCompletion().setCompletion(ReqCompletion.NORMAL, "");
    =======================================
    End Sample
    =======================================
    2. Create a sample directory under $JAVA_TOP:
    $ mkdir $JAVA_TOPoracle/apps/fnd/cp/sample
    3. Copy Hello.java into $JAVA_TOP/oracle/apps/fnd/cp/sample:
    $ cp $HOME/Hello.java $JAVA_TOP/oracle/apps/fnd/cp/sample
    4. Compile your java program:
    javac $JAVA_TOP/oracle/apps/fnd/cp/sample/Hello.java
    5. Test at the command line with following syntax:
    jre -Ddbcfile=$FND_TOP/secure/your_dbc_file.dbc \
    -Drequest.outfile=./outfile \
    oracle.apps.fnd.cp.request.Run \
    oracle.apps.fnd.cp.sample.Hello
    6. Register your custom java concurrent program with Oracle Applications.
    a. Navigate: Concurrent > Program > Executable
    b. Enter details into the form
    Executable: JCPHELLO
    Shortname: JCPHELLO
    Application: Application Object Library
    Execution Method: Java Concurrent Program
    Execution File Name: Hello (Insert a name that does not contain space or period)
    Execution File Path: oracle.apps.fnd.cp.sample
    c. Save the details
    d. Navigate: Concurrent > Program > Define
    e. Enter details into the form
    Program Name: JCPHELLO
    Program Shortname: JCPHELLO
    Application: Application Object Library
    Executable: Choose JCPHELLO from LOV
    Executable Options :
    f. Save the details
    7. Add this new concurrent request to your responsibility request group.
    a. Navigate > Security > Responsiblity > Request
    b. Query System Administrator
    c. Add new row and choose TestJava
    d. Save the changes.
    8. Run your new Hello Java Concurrent Program
    Navigate: Request > Run
    References
    ~~~~~~~~~~~
    Oracle Applications Developers Manual for Release 11i A75545-01
    ====================================================

  • How to access Oracle Application Manager

    Dear All,
    I have installed EBS R12.0 in Oracle Enterprise Linux Release 4 environment. Through browser I am able to login using sysadmin username and password however I am unable to find Oracle Application Manager or AutoConfig option any where. Can any of you please tell me how I can enable or access OAM.
    Kindly mention the step by step procedure.
    Regards,
    Asif

    Hi Asif;
    I have installed EBS R12.0 in Oracle Enterprise Linux Release 4 environment. Through browser I am able to login using sysadmin username and password however I am unable to find Oracle Application Manager or AutoConfig option any where. Can any of you please tell me how I can enable or access OAM.For OAM:
    Login as sysadmin >> System Administrator>> Oracle Applications Manager (There are link under this)>> click dashboard then u will see Site map top of page click it
    you will see System Configuration>>AutoConfig there
    Regard
    Helios

  • Host status is unavailable oracle application manager

    Hi All
    we have EBS 11.5.10.2 on MultiNode servers (SUNFIRE V890I) with solaris 10 platform
    after converting to multinode system we notice that host status in oracle application manager for one of the two nodes is UNAVAILABLE
    the system is working fine but it's confusing of making troubles in future
    could you please provide us with more information about this issue
    Thanks
    Mohamed

    Hi,
    1) Make sure you have a valid entry in the hosts file and you can ping the server. Also, make sure this node is trusted registered in the database.
    Note: 429328.1 - Application Server Status Always Shown as Down in OAM
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=429328.1
    Note: 287415.1 - Host Status In Application Dashboard Overview Tab Shown As Down in OAM
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=287415.1
    2) Clear the FND_NODES table, and run AutoConfig on the database tier, then on the application tier (on every application tier node)
    Note: 391406.1 - How to get a clean Autoconfig Environment
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=391406.1
    Regards,
    Hussein

  • Oracle Application Manager

    I know Oracle sells complete solutions. I know I don't need a complete. I just need a strong EJB application manager (like BEA WebLogic, or Imprise's Application Server)
    which should be integrated later to a larger complete B2B solution.
    Any answers will be gratituded*
    Thanks.
    *by sending a smiley on your phone, or whatever...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Yadnesh wrote:
    Hi,
    After navigating through System Administrator-->Oracle Application Manager -->concurrent Manager
    a webpage is opened which displays various status overviews of various managers.
    I want to know where are these status stored on back end(SQL developer).
    Please help me which table would help me fetch the status of the managers.
    Thanks in advance.FND_CONCURRENT_QUEUES_VL -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=FND_CONCURRENT_QUEUES_VL&c_owner=APPS&c_type=VIEW
    FND_CONCURRENT_QUEUES -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=FND_CONCURRENT_QUEUES&c_owner=APPLSYS&c_type=TABLE
    Concurrent Processing - What are the Meaning of the Codes in the STATUS_CODE and PHASE_CODE Columns of FND_CONCURRENT_REQUESTS Table? [ID 152209.1]
    How To Determine Table and Column Name from a Field in a Form in 11i [ID 259722.1]
    Thanks,
    Hussein

  • Oracle Application Manager - Patching and Utilities

    Is there a section within the Patching and Utilities part of Oracle Application Manager where you can view the Navigation Path to forms where any changes were made/updated by the patch?
    Thanks

    864641 wrote:
    Is there a section within the Patching and Utilities part of Oracle Application Manager where you can view the Navigation Path to forms where any changes were made/updated by the patch?
    ThanksYes -- OAM > Patching and Utilities > Search for the Patch > Click on Details > Click on "Files Copied" and you will see the list of copied/updated form/reports/sql ..etc
    OAM Usage And Navigation [ID 352235.1]
    http://docs.oracle.com/cd/E18727_01/doc.121/e12148/T531058T531064.htm
    Thanks,
    Hussein

  • Oracle Workflow VS Oracle Approvals Management

    Hi,
    I am new to Oracle Apps. I would like to know the difference between Oracle Workflow and Oracle Approvals Management. I a bit confused. Why we need to have Oracle Approvals Management module if the same can be achieved through Oracle Workflow. Am I missing sometiing here.
    Thanks
    IB

    Hi
    I'll try to explain the difference. Workflow is the background process which is followed by the self service transaction. The workflow consists of a series of tasks or functions and exh function will return a 'result'. The routhe through the workflow process will depend on the rersults. For example, if the workflow task is 'validate input' and the result can be 'valid' or 'invalid', after this taks the workflow will follow either the 'valid' path or the 'invalid' path. Eventually, the workflow will reach an 'end' task when the tranaction is complete.
    AME is a process of determining approvers dynamically from the transaction data, or during the transaction. AME is called in different ways from each module in the e-Business Suite. In HR for example, it is usually called during the 'review' process. It will execute a rule based on conditions (which must be true). The conditions are in turn based on the values of attributes you define in AME. Effectively, you can define a business rule such as IF ORGANIZATION = ABC THEN APPROVERS ARE FIRST 2 SUPERVISORS IN SUPERVISOR HIERARCHY.
    AME is usually embedded into a workflow task.
    I hope that explains it in simple (relatively non-technical) terms!
    Regards
    Tim

  • Invoke function from oracle application express

    Hello,
    I am using oracle application express 10g.
    I wrote a simple function.
    I want to call the function from oracle application express.
    *Is it possible to invoke the function from oracle application express?*
    I search the web and find no example for it.
    Can you please write any good links for an example? What have I missed?_
    I am really stuck with it. Any help will be appreciated!
    Thanks a lot,
    Niron.

    Hi,
    You can call function in e.g. computations, validations and process like you call it in SQL sheet.
    Process example to get value to variable from function sending item value as parameter
    DECLARE
      l_my_var varchar2(32700);
    BEGIN
      l_my_var := my_function(:Px_MY_ITEM);
      /* other code */
    END;Regards,
    Jari

  • Launch Discoverer 10g from Oracle Applications Menu

    Please provide steps to launch Discoverer 10g from Oracle applications menu.
    Thanks in advance.
    suresh

    Hi,
    Follow these steps....
    The process is in 3 stages _(stage 1 will be done only once for all the reports)._
    Stage 1:
    Set the application discoverer relevant parameters.
    Perform this stage only once.
    1.1 Enter the application in System Administrator responsibility.
    1.2 Choose menu 'Profile' and then submenu 'System'.
    1.3 Find the desired profile by filling 'Icx%Discoverer%' and press Find button.
    1.4 Fill the fields (only the values) as described in the table of values bellow.
    Parameter Value
    ICX: Discoverer Default End User Layer Schema Prefix your eul name without the suffix (_US).
    note that if you have several invs it can be diffrent between them.
    ICX: Discoverer End User Layer Language Override American English
    ICX: Discoverer Launcher http://your_server_name:7777/discoverer/viewer?Connect=[APPS_SECURE]
    ICX: Discoverer Release 10 or any other that you are using
    ICX: Discoverer Viewer Launcher http://your_server_name:7777/discoverer/viewer?Connect=[APPS_SECURE]
    ICX: Discoverer use Viewer Yes (or not if you want plus to open - but change the viewer to plus in the link as well - the previos parameter)
    Don't forget to press save button.
    Stage 1 Ends.
    Stage 2:
    Build an oracle application function for each discoverer report.
    Perform this stage for each report.
    2.1 Enter the application in System Administrator responsibility.
    2.2 Choose menu 'Application' and then submenu 'Function'.
    2.3 Fill needed values in each tab by the next instructions (function values)
    2.3.1 Description tab – fill the function, function user name and the description. Notice that the function value should be without spaces.
    2.3.2 Properties tab – fill the:
    Function with the same name you have choose in the previous tab,
    Type with 'SSWA plsql function',
    Maintenance Mode Support with 'None' (Default value),
    Context Dependence with 'Responsibility' (Default value).
    2.3.3 Form tab- fill the:
    Function with the same name you have choose in the previous tab,
    Form & Application fields leave empty,
    Parameters – there are two options available:
    1st Leave it empty – will cause the function to open the discoverer all reports web page and user will have to choose a specific report from the list .
    2nd Fill it with value '=workbook=name of the workbook' but without spaces, convert the spaces (if there are any) from the workbook name to + (plus) sign.
    For example '=workbook=BI+SERVICE+Performance' represents the string for the 'BI SERVICE Performance' report.
    Note: you can also send parameters to the report but since almost all the parameters have a default value (accept from dates) it's not necessary.
    2.3.4 Web HTML tab – fill the HTML call with ' OracleOASIS.RunDiscoverer'.
    Don't forget to press save button.
    Stage 2 Ends.
    Stage 3:
    Build an oracle application menu or submenu for each discoverer report that represented by the function you has created in stage 2.
    Perform this stage for each pair - responsibility + report/function.
    3.1 Enter the application in System Administrator responsibility.
    3.2 Choose menu 'Security' and then submenu 'Responsibility' and then submenu 'Define'.
    3.3 Locate the needed menu by the responsibility that you want to enable her to use the report – of course that the report should be granted for the responsibility via discoverer mechanism as well.
    Do it by clicking on the flashlight that located in the left upper corner and find the needed responsibility.
    3.4 Find the needed responsibility and select her via next screen (Don't forget to use % as wildcards)-choose by double click on her
    3.5 Copy the menu name that related to the responsibility you have choose from the menu field located in the next screen and close the window.
    3.6 From the navigator screen choose menu 'Application' and then submenu 'Menu'.
    3.7 Locate the menu that you've copied in 3.5 (with the flashlight and the find screen, double click on the menu name – similar to 3.3 and 3.4) via next screen.
    3.8 Press on the 'add record' sign (+) that located in the right upper corner of the screen (Do it after the mouse sign and focus is in the rows as you can see the oval mark).
    3.9 Fill the prompt with what you want the user to see in the menu that will activate the report link and after fill the user function name as you have build her in stage 2 (Don't forget to save it).
    Don't forget to press save button.
    Stage 3 Ends.

  • Email from oracle application

    Hello,
    I have account with google apps. with that email acount I would like gen emails from database and send thru google apps gmail acccount. Plz. help me with SMTP setuo on util mail. I am using ORACLE 10g

    1. Logon to OAM (Oracle Application Manager):
    - Site Map > Press the link Monitoring > Current Activity > System Alerts > Notifications Setup > Create >Single Application > Press Continue button >
    2. For the Application select: Application Object library.
    3. For the Component Name: you can select any of the manager, for example “Standard Manager”
    4. Select the Person to Notify.
    5. Press Submit.

  • Mailing reports from oracle applications

    Hi,
    I am running a customized report as a request from ORACLE APPLICATIONS under NT:
    destype=MAIL desname=[email protected]
    I am getting REP-4202 (Error occurred while logging on to the Mail subsystem) as a result in request log output.
    When I mail same report on app server from DOS promt everything is OK.
    When I run same report from OFIN with default destype everything is OK as well.
    Is it possible to mail reports using destype=MAIL from ORACLE Financial or should I use alert?
    Please respond ASAP.
    Thanks a lot. Andrei.

    hi Andrei,
    You mentioned maling a report on app server from DOS promt.
    Can you please tell me how you do that.
    Thanks.

  • Oracle Application Management Pack for Siebel

    Does anyone on this board have any experience with the Oracle 10G Grid Control software and the Oracle Application Management Pack for Siebel. The installation of the Oracle Enterprise Manager Grid Control with the Siebel Management Pack has been successful on the Windows 2003 servers and we can view a list of the servers within Oracle's OEM tool. The problem I am facing is when I try to add a Siebel Enterprise. I receive the following error when I attempt to add a Siebel Enterprise.
    An error occured while adding Siebel Enterprise.
    Credentials - Missing Credentials for host <HOST_NAME>
    All of the credentials have been added properly. Does anyone have any experience or success using this product? If so please reply with feedback.
    .

    Please log a service request with tech support so that we can track this inquiry. On the service request, capture a screenshot of the page where you defined the host preferred credentials, and tell us the names of your servers.
    Btw, I take that you are stuck in the step in which you:
    - Click the "Add Enterprise" button to add the enterprise
    - Fill in the 7 parameters
    - Click Ok to start the discovery process
    Which release of Siebel and Enterprise Manager are you using?
    Chung

  • Look and feel of self-service pages under Oracle Applications Manager (OAM)

    Hi All,
    After applying patches for upgrading the HRMS module from 12.1.3 to 12.1.5, look and feel of self-service pages under Oracle Applications Manager (OAM) changed means Buttons not appearing in proper manner. and look of pages are not in proper manner. This is happening for OAM self-service pages only.
    Current HRMS patchset level : r12.hr_pf.b.delta.5
    OS : RHEL 5.3 x86_64
    Any idea please....
    Thanks inadvance,
    Regards,
    900076.

    You need to ask your DBA to delete the cached stylesheets in /OA_HTML/cabo/styles/cache/...
    You will also need to delete your temporary internet files.
    Once both and deleted, re-access the page and you will see the updated stylesheets.
    (Note: individual users may need to delete their temporary internet files too else they will see an old version cached on their computer)
    Explanation: In new releases Oracle may introduce new additional OAF components. Each OAF component is assigned a shortcode/id by browsers in alphabetical order and a stylesheet generated.
    If a new item is introduced, the shortcode/ids will change. However if an old version of the stylesheet still exists it will apply the wrong style to the wrong component.

Maybe you are looking for

  • Images won't show up when I try to upload online

    Hi I need help to figure out why my photos won't show up when I try to upload them online (e.g. Facebook, Pinterest, Google+). All of my photos are in iPhoto and it used to work fine until I updated to ver 9.3 a coupe of days ago. When I open iPhoto,

  • Use of hierarchy with cell definition

    Hi all, I have an issue with a query that is using cell definition in order to have different selection criteria in 2 columns. In the cell definition, it has being defined a new selection using a hierarchy ( 0costcenter hierarchy) to filter and selec

  • What are default group permissions supposed to look like?

    I'm struggling with permissions under Leopard (I understand many others are as well). My quick and dirty question is: what are the default user & group ID numbers for a fresh leopard client install? I've only done archive & installs lately so no long

  • How change asp ratio 16:9 to 4:3 ???

    Hi I has shoot on HDV, capture and edit in 1920x1080 - 16:9 But i need to change final material to 4:3(640x480) for television So, how can i do that??? Thanks!

  • Brand New Out Of Box Satellite C655-S5307 Will not turn on , black screen

    I got this http://us.toshiba.com/computers/laptops/satellite/C650/C655-S5307/ A Toshiba 655-5307 laptop for my sis for Christmas. She said she charged the thing overnight and went to turn it on, the green led power light came on I heard fans come on,