How to call the program simultaneous form OPS page

hi ................

How to call a page ofa simultaneous program...
There is no package for the concurrentprogram package in jdeveloper 9.0...
That is to say... cp.concurrentprogram...

You can suggest a solution for this...

Hello

Check this class 'RequestSubmissionException' exists in the path, and then import the vector class.

Kind regards
Out Sharma

Tags: Oracle Applications

Similar Questions

  • urgent! How to change the program simultaneous .out file naming rule

    I want to change the output to sysadmin. < request_id > name.
    where and how to make this change?
    Thanks in advance!

    Hi Tao;

    I want to change the output name in sysadmin. .

    Check it Please Note: how to change the output File Naming Convention [1034453.6 ID], I belive that you will find some answer in

    Respect of
    HELIOS

  • How to call the function (function Build-in user) in Pro * C program

    We have developed the application Pro * C program.
    TimesTen version is "TimesTen release 11.2.1.5.0 (64-bit, Linux/x86_64) (tt112150:53308) 2010-03 - 04 T 20: 39:30Z.

    We would like to develop Pro * C program you are using PL/SQL.

    We have a few questions.
    How to call the function (function Build-in user) in Pro * C program?

    #########
    TEST
    #########

    ttisql:
    Command > create or replace FUNCTION F_SAMPLE (i_str IN VARCHAR2)
    > BACK NUMBER
    > o_number NUMBER;
    > START
    > select i_str
    > in o_number
    > double;
    >
    > O_number RETURN;
    >
    > EXCEPTION
    > Others THEN
    > RETURN 0;
    > END;
    > /.
    display errors
    The function is created.
    Order > show errors
    No errors.
    Command >
    Command > set serveroutput on;
    Command > declare
    > number of num1;
    > start
    > num1: = F_SAMPLE ('A');
    > DBMS_OUTPUT. PUT_LINE ("F_SAMPLE" |) ' ' || NUM1);
    > end;
    > /.
    F_SAMPLE 0

    PL/SQL procedure successfully completed.

    Command >


    Pro * C case:

    EXEC SQL BEGIN DECLARE SECTION;
    number of num1;
    EXEC SQL END DECLARE SECTION;

    EXEC SQL EXECUTE
    Start
    : num1: = F_SAMPLE ('A');
    end;
    END-EXEC;

    Make sure to install:
    Error on line 146, column 3, file plsqlPROC.pc:
    Error on line 146, column 3 in file plsqlPROC.pc
    number of num1;
    .. 1
    PCC-S-02201, encountered the symbol "num1" when expecting one of the following conditions:


    Thank you.

    GooGyum

    There are two problems with your variable declaration:

    1. the name of the variable and type are thew misplacement autour.

    2. you may not use a host variable type.

    If you change this to:

    EXEC SQL BEGIN DECLARE SECTION;
    int num1;
    EXEC SQL END DECLARE SECTION;

    Then it will work very well.

    Chris

  • How do to call the BlackBerry menu form share an Adobe Air application?

    Hello

    I'm looking for a tutorial or demo code that describes how to call the BlackBerry menu sharing an Adobe Air based application.

    I found a tutorial of waterfalls for it - there's one for Adobe Air too?
    - http://bbcascadescode.tumblr.com/post/38998702671/invoke-share-for-bb10

    This is a screenshot of the Action menu:

    Advice welcome!

    Here you go:

    package com.lib.playbook.invocation
    {
        import com.lib.playbook.controls.List;
        import com.lib.playbook.pages.TitlePage;
        import com.lib.playbook.renderers.IconListRenderer;
    
        import flash.events.Event;
        import flash.events.IEventDispatcher;
    
        import qnx.events.InvokeEvent;
        import qnx.events.InvokeQueryTargetEvent;
        import qnx.fuse.ui.core.Action;
        import qnx.fuse.ui.events.ActionEvent;
        import qnx.fuse.ui.events.ListEvent;
        import qnx.invoke.ActionQuery;
        import qnx.invoke.InvokeManager;
        import qnx.invoke.InvokeRequest;
        import qnx.invoke.InvokeTarget;
    
        public class InvokeSearchPage extends TitlePage
        {
            private var request : InvokeRequest = null;
            private var targets : List = new List();
    
            /////////////////////////////////////////////////////////////////////////////////////////
            public function InvokeSearchPage()
            {
                super();
                this.title = 'Search With';
                this.titlebar.dismissAction = new Action( 'Cancel', null, {id:'cancel'} );
                this.titlebar.addEventListener(ActionEvent.ACTION_SELECTED, ActionSelected );
    
                this.targets.cellRenderer = com.lib.playbook.renderers.IconListRenderer;
                this.targets.addEventListener(ListEvent.ITEM_CLICKED, TargetSelected );
                this.targets.rowHeight = 140;
                this.addChild( this.targets );
            }
    
            ///////////////////////////////////////////////////////////////////////////////////////////
            public function filter( request :InvokeRequest ) : void
            {
                this.targets.removeAll();
    
                this.request = request;
    
                //trace( 'filter ' + request.mimeType );
                InvokeManager.invokeManager.addEventListener( InvokeQueryTargetEvent.SUCCESS, TargetsFound );
                InvokeManager.invokeManager.queryInvokeTargets( request.mimeType, request.uri, request.action, request.targetOptions );
            }
    
            ///////////////////////////////////////////////////////////////////////////////////////////
            private function TargetsFound( event : InvokeQueryTargetEvent ) : void
            {
                InvokeManager.invokeManager.removeEventListener(InvokeQueryTargetEvent.SUCCESS, TargetsFound );
                //trace( 'TargetsFound' );
                var action : ActionQuery;
                var target : InvokeTarget;
                for each( action in event.actions )
                {
                    for each( target in action.targets )
                    {
                      this.targets.addItem( { data : target.target, label : target.label, icon : 'file://' + target.icon } );
                    }
                }
            }
    
            ////////////////////////////////////////////////////////////////////
            private function TargetSelected( event :Event ) : void
            {
                if( this.targets.selectedIndex >= 0 )
                {
                  this.request.target = this.targets.selection;
                  InvokeManager.invokeManager.invoke( this.request );
                }
            }
    
            ////////////////////////////////////////////////////////////////////
            private function ActionSelected( event :ActionEvent ) : void
            {
                switch( event.action.data.id )
                {
                    case 'cancel' : this.dispatchEvent( new Event( Event.CANCEL ) ); break;
                }
            }
    
            //////////////////////////////////////////////////////////////////////
            override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
            {
                super.updateDisplayList( unscaledWidth, unscaledHeight );
    
                this.targets.setPosition( 10, this.top + 10 );
                this.targets.setActualSize( unscaledWidth - 20, unscaledHeight - this.targets.y - 10 );
            }
        }
    }
    

    And the rendering engine:

    package com.lib.playbook.renderers
    {
    
        import qnx.fuse.ui.display.Image;
        import qnx.fuse.ui.listClasses.CellRenderer;
    
        public class IconListRenderer extends CellRenderer
        {
    
            private var icon    :Image = new Image();
    
            /////////////////////////////////////////////////////////////////////////
            public function IconListRenderer()
            {
                super();
            }
    
            ///////////////////////////////////////////////////////////////
            override protected function onAdded():void
            {
                super.onAdded();
                this.addChild( this.icon );
            }
    
            ///////////////////////////////////////////////////////////////
            override protected function onRemoved():void
            {
                super.onRemoved();
                this.removeChild( this.icon );
            }
    
            /////////////////////////////////////////////////////////////////////////////////////
            override protected function drawLabel(unscaledWidth:Number, unscaledHeight:Number):void
            {
                super.drawLabel( unscaledWidth, unscaledHeight );
    
                if( this.data )
                {
    
                    if( this.data.hasOwnProperty( 'icon' ) && this.data.icon != null )
                    {
                        this.icon.setImage( this.data.icon );
                        this.icon.setPosition( 10, 15 );//( unscaledHeight - this.icon.height ) / 2 );
                    }
                    else
                    {
                        this.icon.setImage( null );
                    }
    
                }
    
                this.label.x = 140;
                this.label.width = unscaledWidth - this.label.x - 20;
            }
        }
    }
    

    references com.lib.playbook our our inner classes, but you should get the approach to apply.

  • When you access all tasks of merger Applications home page, "an error has been received for the task manage worker research of goal setting." This task is identified by the HRG_MANAGE_WORKER_GOAL_SETTING_LOOKUPS code that calls the program/WEB-INF/oracle/

    We have installed version of the Application from merger 11.1.7 HCM and CRM modules.

    It is 2 node architecture IDM IE components installed in a single node and Fusion components installed in another node.

    We are able to start the components of IDM and Fusion successfully, but when users try to access any task of merger application home page, they receive the below error


    A consumer of portlet error has been received for research of parameter task manage worker objective. Report the error details to the product owner next goal management.

    An error has been received for research of parameter task manage worker objective. This task is identified by the HRG_MANAGE_WORKER_GOAL_SETTING_LOOKUPS code that calls the program module code fndSetup /WEB-INF/oracle/apps/fnd/applcore/lookups/publicUi/flow/ManageCommonLookupsTF.xml#ManageCommonLookupsTF. Review logs consumer and producer for details about this error.



    This may be related to your other question about "FUSION_APPS_WSM_APPID-KEY" as newspapers contains exceptions such as:

    oracle.wsm.policymanager.PolicyManagerException: WSM-02081: failed to logon to perform the requested action.

    Please refer to the document Fusion Service account password Expiration causes Portlet producer errors of Application (1486388.1) to learn how to check and set the password. There is also exception:

    javax.security.auth.login.FailedLoginException: [Security: 090302] authentication failure: User FUSION_APPS_PROV_PATCH_APPID refused

    This is probably caused by an expired password, please see Fusion applications servers are not in - password policy error: 9000: GSL_PWDEXPIRED_EXCP: your password has expired (1629927.1).

    --

    Jani Rautiainen

    Relationship with the developers of Applications in fusion

    https://blogs.Oracle.com/fadevrel/

  • How to change the programs that load when Windows starts

    In simple terms... How to change the programs that load when Windows starts?  Because my boot time is slow in arriving at my login screen!

    Download and run the "Autoruns" from Microsoft Sysinternals freeware:

    < http://technet.microsoft.com/en-us/sysinternals/bb963902="">

    It lists all programs that start at startup and allows you to disable it by simply removing a check mark.  This makes it easy to reverse in case something goes wrong.

    HTH,
    JW

  • How to call the setting menu of the BIOS on HP DV4 1540us netbook?

    Hi all

    How to call the setting menu of the BIOS on HP DV4 1540us netbook?

    F2 does NOT an on-screen BIOS setting.

    Is there another trick?  Or, perhaps, defining the procedure step by step to start the BIOS?

    TIA

    Power on the laptop and all logo HP being displayed, press F10.

  • How to call the web service?

    Hello

    I want to know how to call the web service from my application HTML5 & javascript.

    Please help me find this detail as what I can access easily. and I want to access web services online (a method of it) I'm not concered with how background Web service takes place.

    I just want that when you call a web service method, I will return the result.

    Please try this out for a WebService call

    var xmlhttp;
    xmlhttp = new XMLHttpRequest();
    xmlhttp.open("get","your url",true);
    xmlhttp.setRequestHeader("Accept","application/json");
    xmlhttp.setRequestHeader("Content-type", "application/json");
    xmlhttp.onreadystatechange=function() {
     if (xmlhttp.readyState==4) {
      if (xmlhttp.status == 200) {
        console.log(xmlhttp.responseText);
      }
     }
    }
    xmlhttp.send();
    

    This will display the result of the invocation of webservice. The url is the application that you deploy and the type can be get/post. If xmlhttp.send (post) takes argument for the display of the data. You can call it by clicking a button in HTML.

  • How tio changes the programs installation directory, I want to install?

    How tio changes the programs installation directory, I want to install? I'm trying to install a lot of programs is always installed in "Local disk C" that low memory space. Please tell me how can I install the programs in other folders such as "Local disk D and E and F. And also please tell me that the directory in which the widows is installed when reached about his memory limit, does windows performance issues.

    Win needs 15% free space for proper operation.

    Using various hacks registry posted on various sites to redirect the default program installation folder to another drive is not supported by MS and can cause problems.

    Most of the programs when you install them have the option for a custom install, where you can specify where / which drive to install, but not all programs have this option. Even if you install a separate drive various files/folders will be written on victory drive.

    If the drives D, E & F are separate partitions of a disk, you will need to modify/extend partition in win

  • How to rename the HFM web form

    Hi all

    How to rename the HFM web form

    Thanks in advance

    Concerning

    Satheesh.s

    Hello

    Unfortunately, you cannot rename a form online.

    In order to change the name of an existing one, you need to:

    • Save the existing one with a different name
    • Remove the previous and start using the new

    See you soon,.

    Thanos

  • Cannot save the simultaneous release of the program as a Web page, archive in Internet Explorer

    Hello

    The user is not able to record the simultaneous release of the program as a Web page, check in Internet Explorer. I could save as Web page, Html only without any problem. But the user wants to save as .mht. the file is saved, but when he opens shows authentication failed as content. Please advise as soon as possible.

    Thank you

    Please see

    Authentication failed while trying to use Save as in the browser IE (Doc ID 184154.1)

    ApPsMaStI

    sharing is caring

  • How to call the procedure type table

    Hi I have the below requirement

    Created in the sub table type

    CREATE or REPLACE the TYPE char_type IS the TABLE OF VARCHAR2 (4000);

    create or replace procedure test_proc_type (p_type char_type) is

    Start

    I'm looping 1.p_type.count

    dbms_output.put_line (p_type (i));

    end loop;

    end;

    How to call the procedure with parameter as a type!

    SQL> create or replace type  char_type as table of varchar2(4000)
      2  /
    
    Type created.
    
    SQL> create or replace procedure test_proc_type (p_type char_type)
      2  is
      3  begin
      4    for i in 1..p_type.count loop
      5      dbms_output.put_line (p_type(i) ) ;
      6    end loop;
      7  end;
      8  /
    
    Procedure created.
    
    SQL> set serveroutput on
    SQL>
    SQL> exec test_proc_type(char_type('A','B','C','D','E'))
    A
    B
    C
    D
    E
    
    PL/SQL procedure successfully completed.
    
    SQL>
    
  • How to change the color of form fields

    I don't know how to change the color of form fields. They default to gray, but I don't know how to make a different color.

    Gray does not match the color scheme of my landing page!

    Thank you!

    I think you have two options when you are working on a landing page with an embedded format:

    • You can change the background color of the entire form field set by selecting the shape, and then clicking on the Toolbox. In the window that opens go to the second (on a paint brush icon) and select the background color you want.
    • You can change the background color of the actual fields in the form by adding CSS styles. Select the Toolbox, go to the last tab (Tools Extract page) and in the middle of this window, you will see "head | CSS | JS"- select this average CSS tab and enter the style code to get the color you want. Here is an example of code you can put in it. Note that #000000 is the color code for black. Here is more information about the code: css - background in the input fields and text color? - stack overflow

  • I have one of my programs adobe on a mac pro, which is broken. How to pass the program over this i mac?

    I have one of my Macbookpros that has a broken screen. How to pass the program Adobe of it ti that I have Mac?

    Download/install the desktop application, connect and install applications subscription.

    https://helpx.Adobe.com/creative-cloud/help/download-install-app.html

  • I have paid the monthly fee and have been using Acrobat Pro DC.  I had a problem where I broke my previous laptop and want to continue to use this product.  I bought a laptop and I don't know how to download the program without havin

    I have paid the monthly fee and have been using Acrobat Pro DC.  I had a problem where I broke my previous laptop and want to continue to use this product.  I bought another laptop, and I don't know how to download the program without having to pay again.  I pay $14,99 per month for this service, how can I download it without having to pay again?

    Hello

    Please download Acrobat Pro ms of the here. After you download the application, install and activate it by providing your Adobe ID

    Thank you

    Abhishek

Maybe you are looking for

  • You can change the color palette in the quick selection of fonts pane?

    In the sidebar on the right formatting, there are a few options if you want to change the font colors.  One option is to click on the color wheel that then evokes the different options to choose as a method to select your color.  The median option on

  • Virus hides Java

    I have a problem with a Virus of Java.  I deleted the temporary files in the Java Cache, but that does not solve the problem.  Here is the path: C:\Documents and Settings\Userid\temp\jar_cache6532558552665317445.tmp ZIP bpac/a.class - a variant of Ja

  • Pavillion g7: my HP Pavillion laptop g7 is asking for an administrator / power on password.

    I have not tried to use my laptop last year and when I turned it on it was asking for an administrator / power on password. I have no idea what could be the password and I don't remember ever asking a when I used the camera regularly. I read on anoth

  • MOM.exe ordinal not found 575 could not be located in the binding Dynamics lybrary

    This happens every turning of time on my computer.   Usually, I restart my computer it is running a disk check and all is well.  Now I can't run a disk check.   Nothing that I can think is to help right now.Can you?Thank you

  • Problem getting zip Explorer files

    Hello I can't extract the files using windows Explorer zip. I can open the zip file and see the content, but when I try and extract an individual file or select 'extract all' she is generate a folder but without files into it. If I use another progra