Best approach to send result PHP Page Interview in cloud OPA 12.2 version details


Team,

I would like to know the best approach to render the results of interview (Page Summary) to PHP data. We use the OPA 12.2 release cloud version August.

We plan to use page summary as a PHP page rather page summary of OPA. Please throw your point of view on this.

Thank you

Vivek

Custom Control Manager is sent throughout the OPA session so you can get the results you want, or just report all deduced values.

http://Oracle.com/determinations/engine/sessiondata/10.2 "> "

The data structures are all in the link of the document that I posted above.

Tags: Oracle Applications

Similar Questions

  • Send results PHP/MySQL for the html popup window

    Hi all

    Not even sure if this is possible, but I have a Results.php page that includes a line:

    "My task, [<?]. PHP echo $row_Recordset1 ['task'];? ">], is located in the upper part [<? php echo $row_Recordset1 ['RankPercent'];? >] tasks in the company."

    .. .or the php tags represent the results of a search for MySQL.

    How can I send this to html format for a window mini-so that people can send to their friends on facebook/twitter/etc?

    NOTE: in this case is not in creating a popup page - I can do that.

    Do I have to be able to do is to move this sentence to the popup.php 'exactly' page as it appears on the page when rendering.

    I did experiments on the...

    $text = ' my job [<?]. PHP echo $row_Recordset1 ['task'];? ">], is located in the upper part [<? php echo $row_Recordset1 ['RankPercent'];? >] tasks in the company."

    ... Road, but this gives just a load of errors of analysis (quite predicably).

    Any thoughts?

    You can use curly braces to include the values of the recordset object directly:

    $text = "my task, [{$row_Recordset1 ['task']}], is at the top [{$row_Recordset1 ['RankPercent']}] tasks in the company."

  • Send push notification app from a php page

    Hello

    My question is: is it possible to send push notification to an application from a php page (hosted on a remote server or website)? If so, is there a tutorial or something?

    The simplest option is to use a 3rd party service which provide an API to send promissory notes and a plugin for PhoneGap. Pushwoosh.com are very good and have examples of code for php. You will need to register for service PN Apple and Google (no extra cost) then give the Panel of Pushwoosh the access key (Google) and your Apple dev password (it will configure the necessary certificates for you).

  • How to send a complete HTML, dynamic PHP page using phpmail()?

    How to send a complete HTML, dynamic PHP page using PHP Web site phpmail(), similar to the post this page or send the link to a friend?

    How to send a complete HTML, dynamic PHP page using PHP Web site phpmail(), similar to the post this page or send the link to a friend?

  • Best approach - whether to return Collections or the Ref Cursor?

    I have the table that the column is a nested table (column address) type. Now, I want to fill the same
    in a jsp page.

    As his collection type I am thinking to send variable Collection to front-end. And most of java professionals
    argue that the collections are the best approach.

    But here, in a lot of posts, I read that collections at the front end is the worst approach and it degrades performance
    and increases the load.

    But java assert that even if connection fails they can always display the data as the data set is with them
    How to get a set of results COLLECTION.

    As ref cursor is just a pointer to the real cursor lies in the comics... they're going to make one record of the other instead and once the connection is lost... they can no longer display the data. This assertion seems
    to be reasonable!

    How you condemn it? and prove ref Cursor is good way?


    Here's the example scenario that I have with me.
    create type t_adress is object(t_h_no varchar2(500),t_pin_code number);
     /
     
     create type t_address_tbl is table of t_adress;
     /
     
     create table r_dummy (emp_name varchar2(200),emp_id number,emp_address t_address_tbl)
     nested table emp_address store as emp_address_tbl;
     
     insert into r_dummy values('raghu',1,t_address_tbl(t_adress('598',500035),t_adress('600',500036)))
     
     insert into r_dummy values('raghu nadh',2,t_address_tbl(t_adress('598',500035),t_adress('600',500036)))
    Using the Collection
    Create or replace procedure p_using_col
     (
     p_emp_id          in     r_dummy.emp_name%type,
     p_emp_dtls          out     t_address_tbl
     )
     is
     begin
              Select     t_adress(cl.t_h_no,cl.t_pin_code)
              bulk collect into p_emp_dtls
              from     r_dummy,table(emp_address) cl
              where     emp_id = p_emp_id;
     
     end;
     /
     
     set serveroutput on;
     declare
              l_emp_id          r_dummy.emp_name%type := 1;
              l_emp_dtls          t_address_tbl;
     begin
              p_using_col(l_emp_id,l_emp_dtls);
              
              for i in 1..l_emp_dtls.count
              loop
              
                   dbms_output.put_line(l_emp_dtls(i).t_h_no);
              
              
              
              
              end loop;
     
     
     end;
    Using Ref Cursor
    Create or replace procedure p_using_ref
     (
     p_emp_id          in     r_dummy.emp_name%type,
     p_emp_dtls          out     sys_refcursor
     )
     is
     begin
              Open p_emp_dtls for
                   Select     cl.t_h_no,cl.t_pin_code
                   from     r_dummy,table(emp_address) cl
                   where     emp_id = p_emp_id;
     
     end;
     /
     
     set serveroutput on;
     declare
              l_emp_id          r_dummy.emp_name%type := 1;
              l_emp_dtls          sys_refcursor;
              
              l_h_no               varchar2(500);
              l_pin_code          number;
              
              
     begin
              p_using_ref(l_emp_id,l_emp_dtls);
              
                   loop
                        fetch l_emp_dtls into l_h_no,l_pin_code;
                        
                        exit when l_emp_dtls%notfound;
                        dbms_output.put_line(l_h_no||'    '||l_pin_code);
                   
                   
                   end loop;
              
                   close l_emp_dtls;
     end;
    Concerning
    RUSSO

    RUSSO says:
    I would like to know what really happens behind the screen IE in PGA... when we return collections...

    A collection is a PL/SQL variable. Like all PL/SQL variables, it resides in the global area of the server process that executes PL/SQL code. This memory is part of the process the process's private memory.

    If need more memory, more memory server be malloc' ed by the process.

    As he is dedicated and private memory, no other process can reap the benefits of this memory in use. It is not 'ideal' - shared memory however benefits all the processes that are involved in sharing that allocated the memory. As is the case with the SGA

    How long my set of data will reside in the PGA? He immediately fade after returning to the calling procedure? and how it degrades performance. Help me with a good link.

    Assume that you create a collection of 10 MB. The process server malloc' ed 10 MB of server memory. The PGA has thus extended.

    When your code executes the variable usage (it is out of reach of runtime), the PL/SQL engine can theoretically free up 10 MB of memory. However, it may have allocated 4 KB memory after this assignment of 10 MB. Only 4 KB is still in use. This moment results in that the process cannot shrink its allocated memory - as this free piece of 10 MB is slapbang in the middle of the used memory space.

    PGA memory is 'expensive' because it's not shared memory is private, with only the current process. PGA in memory is not so easy to decline. Memory management is a complex issue and you who ceases to use a large part of the PGA memory almost never means that this memory suddenly become free and available for other processes to use.

    Also, you have to ask yourself why you want to copy data from disk blocks into the SGA buffer (for SQL procedures) cache, then copy these data blocks of APG in the PGA (using a collection and extraction in bulk) and then copy this PGA memory on the network to the client process (TOAD or .net or Java or whatever).

    It's a lot of moving parts - which increases the complexity, lowers the performance and scalability and ups the risk of something going wrong due to the increased complexity.

    It is much simpler and much stronger, to maintain the number of moving parts to a minimum. For example to copy data directly from cache buffers of the SGA to the customer via a ref cursor

  • need to develop the multi site php page

    Hello I designed a website in dreamweaver now I want to develop in php with mysql. I know how to develop a website page with admin panel, but I want to accomplish the following task,

    as it's a mobile Web site for each mobile phone php page will have its own image, description and specification, so my question is how to create these pages in the admin panel, I want an option in the administration panel having this link create new mobile page and when we go to this new page must have space for a new image for mobile , description and specification of area text entry, and when I save it, it takes one single page other than other mobile pages, as nokia 1100 will have a page with the content of the nokia 1100 and nokia 2300 should have other content of the page of the nokia 2300. and must be built from a single option in admin which is create new mobile page with and our admin panel should have a pre created the page with the image, description, and speification, and when it is saved, it is as I said a different content of nokia 1100 and 2300 etc...

    waiting for your response.

    You would have a field in your database that is named

    model_id

    model_make

    MODEL_NAME

    model_description

    Create a record for each product:

    The "model_id" field must be the database identifier that is unique for each product - and referred to as the "key of primatry and auto-increment.

    In the "model_make" field, you must insert do--Nokia, Samsung etc.

    In the field "model_name" you should insert - Nokia 1100, Nokia 2300 etc.

    In the "model_description" field, you must insert the product information

    Page 1 (level 1), you could list the models manually as links or you could call from the 'model_make' of the database field. If you go him the automated way and call them from the database, would need you a mqsql like query:

    $model_make = mysql_query ("SELECT DISTINCT model_make FROM mobile_phones") or die (mysql_error ());

    where "mobile_phones" is the name of your database table.

    If you plan to automate the links then use a repeat region do echo to mobel_make on page information:

    Which would give you something like:

  • Nokia mobile - all models
  • Samsung mobile - all models
  • You can now move the "model_make" to a higher level of the page using the $_GET:

    $model_make = $_GET ['model_make'];

    Then query the database for the ' model_id, 'model_make' and "model_name" based on the "model_make":

    $model_make = mysql_query ("" SELECT model_id, model_make, TEMPLATE_NAME FROM mobile_phones WHERE model_make = ' $model_make ' "") or die (mysql_error ());

    Create an another repeat region and assign the "model_id" (the field of your database that is the unique identify at the end of the affair and to assign the "model_name" for the link of the visible page):

    Which would give you something like:

  • ">Nokia 1000
  • Next, you need to create the model_details.php page and query the database based on the "model_id:

    $model_details = mysql_query ("" SELECT * FROM mobile_phones WHERE model_id = ' $model_id ' ' ") or die (mysql_error ());

    $model_details = mysql_fetch_array ($model_details);

    You can then echo all data fields associated with the identifier unique field "model_id" on page of:

    Dreamweavers server behaviors should be able to do most of the above for you. I have only provided a plan of action of the process by using mysql to query the database which I wouldn't normally use because it's a procedure dated, BUT if you are still reliant on the DW server behaviors its your best approach.

  • Best approach to call a javascript function in a tabular presentation

    Hi all

    I have a manual tabular presentation. In this form, I have a javascript function that disables hiredate column. The function is called on the deptno column change.

    So, if I select the "Research" Department and hire date field is disabled for the selected line.

    I need to run this function also executed automatically on page load. So, it checks if all rows with deptno as search and disable hiredate field for these lines.

    Please let know us the best approach to achieve this goal, which does not affect the performance that the page has 2000 lines.

    function test2 (pThis) {}

    var v_item_value = pThis.value;

    var v_hiredate_item = $(pThis).closest('tr').find ('td [headers = HIREDATE] input [name = f05]');

    var v_hiredate_button = $(pThis).closest('tr').find ('td [headers = HIREDATE] button "");

    var currIndex = $('select[name="'+pThis.name+'"]').index (pThis);

    var currRow = currIndex + 1;

    If (v_item_value == '20') {}

    v_hiredate_item.prop ('readOnly', true);

    v_hiredate_button.prop ("disabled", true);

    document.getElementById("f08_"+[currRow]).disabled = true;

    }

    else {}

    v_hiredate_item.prop ('readOnly', false);

    v_hiredate_button.prop ("disabled", false);

    document.getElementById("f08_"+[currRow]).disabled = false;

    }

    }

    Thank you

    Zkay

    Try this:

    Suppose that the deptno column name is "f08".

    execute a javascript script that triggers the loading of the page

    $("[name=f08]').change ();

  • Best approach to editing on two computers

    I usually use my desktop PC to change my photos, but will be traveling and would like to be able to work on my laptop while traveling.  I wonder what is the best approach.

    As a backdrop, all my photos are in a cloud service (OneDrive in my case) which synchronizes the files in directories identical on desktop or portable.

    I have identified two approaches and would like a recommendation on which is better.

    1. Move the catalog to the cloud synchronized directory structure
      I know that I would need to make sure that I had that catalog open on one machine at a time and which would need to be sure that the synchronization is complete before starting an editing session

    2. Export a catalog of files that I would like to change and the re - import when I finished
      Because the negative files are in the same file structure, I would only export the metadata, not the negative files
      I do my editing and then re - import the catalog to my master catalog when I come back, once again, leaving only negative files.

    Is there a benefit / cost to both approaches?

    Thanks in advance.

    Andy Schlei says:

    1. Move the catalog to the cloud synchronized directory structure
      I know that I would need to make sure that I had that catalog open on one machine at a time and which would need to be sure that the synchronization is complete before starting an editing session

    I'd go with this method providing you are careful with the sync, upload in trip etc.

    Much depends on the frequency at which Exchange you between computers. More frequently, more looking to maintain the catalogue on an external drive. It's convenient when you go between the office and personal computers, but a player allows use more Lr offline, especially if you have generated a lot of intelligent insights. When I travel I use this method, and it replaced your option 2 for me.

    The method of cloud can be fine if you can wait to download sync end after the closure of Lr on the machine and wait synchronization to download complete before the opening of Lr on the other. If you are logged on a trip, and upload speed is good, then you win some backup benefits too.

    Another idea is to use the mobile features if you have a subscription to the CC. Synchronize a collection of Mobile and you can make adjustments to broad brush on tablets or phones, and adjustments will automatically return in your catalog. You can also use Lightroom Web to make some adjustments in a standard browser window, and in all cases, you can generate JPEG files if you need to send them to people.

    There are a variety of approaches and individual circumstances.

  • Best approach to a green screen on multiple clips?

    So I know that this may fall into the category of the sequels, but start with a project in creation with many clips and cuts, what would be the best way to apply the green screen on all these clips? I think that all these clips after compositions effects would be excessive and not the best approach. So is there a better way to do this?

    In these cases, it is preferable that you test them with a clip before you go all in and having to change direction after that much is being done.  You can get keyed Ultra in the body if the screens are made properly and clean enough.  It will depend also on the desired result.  In other words, you find you can do a lot of tweaking of plans that are unable to repay if they are quick-action, etc..  I'll usually round complex houses for AE involving the shots really need to clean up, but opted for Ultra in the quick clips body with action.  When I use the Ultra key I use multiple instances of the key.   Then test both ways and use this as an opportunity to know the Pro of these two methods.

  • WARNING: at the bottom of the php page

    Hello

    I have a password protected php page that shows the following message appears at the bottom of the page. What it means? How can I get rid of him?

    Warning: mysql_free_result() expects parameter 1 resource, null in /home/myusername/public_html/newsletter.php on line 123

    When I look at the code at line 123 on this page is mysql_free_result ($rsemailsetup) of readings;

    Thank you

    The error message means that your database query failed to produce a valid result. The problem lie at the foot of the page, but in the application of data base for rsemailsetup.

    You can remove this error is by wrapping line 123 in a conditional statement like this:

    If (is_resource ($rsemailsetup)) {}

    mysql_free_result ($rsemailsetup);

    }

    However, it does not solve the problem with $rsemailsetup is not valid not a result of database.

  • Not displaying PHP pages is not the Remote/Web server

    All,

    Be nice, faithful of DW. I'm a n00b this field as a whole and the use of PHP, DW, etc.. I have a few questions... I use ~ 2008 Macbook Pro DW5 and MAMP.

    Put up my site with PHP files, got up a local test and running, got the Games records/requests to look and work the way that I love on my local server. In other words, the site is great locally. Signed up for bluehost to use my remote control, downloaded all the files correctly. BUT, when I went to see my site on the remote server, the php pages that are limited to members only are not displayed at all (HTTP 500 error). I guess that's not a mistake in coding that the pages display correctly on the local, but not the remote (therefore, a DB connection problem). Here's what I did to try to address.

    • Exported local DB, imported remotely (so its structure / named exactly the same apart from the host-insterted characters entered)
    • Activated my IP update remote site host cPanel (my C-class?)

    The first line of PHP code on all these pages of restricted Member begins with:

    <? php require_once('.. / Connections/TBO_Golf.php');? >

    The "TBO_Golf.php" contains:

    <? PHP

    # FileName = "Connection_php_mysql.htm"

    # Type = 'MYSQL '.

    # HTTP = 'true '.

    $hostname_TBO_Golf = "localhost";

    $database_TBO_Golf = "TBO_Golf".

    $username_TBO_Golf = "*"

    $password_TBO_Golf = "*"

    $TBO_Golf = mysql_pconnect ($hostname_TBO_Golf, $username_TBO_Golf, $password_TBO_Golf) or trigger_error (mysql_error (), E_USER_ERROR);

    ? >

    Issue 1) -I'm sure that with the files on the remote server, run the script tries to connect to a 'localhost', which is causing my error. Can I change the settings in the connection file or in the connection window of database to what works for my remote server? I know what they are like a second connection to the remote database (so now I have one for local and remote), I created that I have to "Redo" queries by using the remote connection?

    Question 2) Changes the settings as follows best practices when moving locally proved remotely (and test remote local to) regarding the display of dynamic pages? If not, what is?

    Question 3) In my attempt to research, I read somewhere that DW can't handle multiple database connections at a time. I find it hard to believe, so is it true that?

    If anyone can help, it will be greatly appreciated!

    Thanks in advance!

    SnakeEyez02,

    Thanks for the reply. Very much appreciated!

    (1) according to your answer, it seems that I have just to keep the name of the server as localhost, but just change the name of user and pword to match my remote user profiles?

    (2) re-reading of this issue, I guess I wonder what are some best practices when going from local to remote? I guess the same things like maintaining username/pw for local remote control, import and export, for help. But I was more focused on the transfer of DB connections that operate on local to the remote control. I find that it is not as simple as transferring the entire site, import/export of the DB.

    (3) sorry, wasn't clear on what I meant by multiple databases. He was referring to connect to the local computer and the remote control. It would be in the window "Database". So I run RS against either DB?

    Thanks for the direction on the error log. I think I know where it is on the cPanel, so I hope it will shed light on the issue.

    One last question... When I test the site locally and run off the coast of the local db, recordsets when I publish remotely, should I rewrite the recordsets to make reference to the distance db? Or can I just change the DB login information to access the remote versus local?

    Thanks for your patience!

  • Reset the AF:Popup / variable PageFlowScope - best approach?

    Hi all

    Some advice on the best approach to take here...

    I have a link on a table, once activated, I use property set operations to move an af:popup a number of PageFLowScope settings that are limited to the entrance of the text elements. Then I have a method that will take the values of these elements and execute a stored procedure of the database... Everything works great!

    I have also an AF:Message which will return a message based on the output variable inside... IE if return1 = SUCCESS or return1 = ERROR THEN displays a special message.

    When I close this popup and select this option to change another line, the message always appears as the return parameter is always filled.

    So I think I need to reset this parameter with a NULL value.

    I don't know how to do this...

    Also, I suspect that if I use taskflow and JSFF page, it will open a new transaction, where no problem, however I could not find a way to open a jssff in a new window / popup. Right now my jsff replace my whole page.

    Again, help or advice much appreciated.

    Simo

    Try to use the popupFetchListener to clear/init of your popup, make sure that contentDelivery is defined as lazyUncached for the popup. If your data page and popup parent are very tightly coupled, and you don't need to reuse the popup around elsewhere in the application, you may not go to taskflow.
    http://jdevadf.Oracle.com/ADF-richclient-demo/docs/tagdoc/af_popup.html

  • Send an entire page in email

    How to send a complete HTML, dynamic PHP page using phpmail()

    How to send a complete HTML, dynamic PHP page using phpmail()

  • How to send a web page to another person

    I often have to transfer web pages to friends and used to be able to do it before I got a new hard drive put in. I used to be able to click an orange cross who opened an email forwarding screen that I filled in, then sent to the page. I see that now and wonder if there is something similar, that I can use. My web searches have previously been in vain, and as usual, do not help the responses of Firefox. What can you tell me?

    There is a FIREFOX addon, capture and send this web page, which does all the work for you when you want to send a web page to a person. You need only type that email address you're using and the password for that. It's simple, accurate and very effective, even send him a copy of what you sent to your e-mail address.

  • Best way to send signals between the two screws

    Hi all

    I have two screws that generate some complicated signals (sine wave, pulse, etc.). The other one takes manually entered the tension and pressure send to certain material with a pump and reads the output of the pump.

    What is the best way to send the waveform of the signal VI the VI hands-on? I still need to be able to control the signals manually in this manual control VI.

    Thank you.

    Your user interface would handle this. If you use a machine to States (hint-hint) you would simply chose the State appropriate for your current configuration. You would provide a mechanism (UI, configuration file, argument of command line to name a few) for the parameter which mode to use, and the application would have chosen the appropriate action.

Maybe you are looking for