Calling the reports of forms in the same session.

Hello everyone:

I have a small question calling reports 6i Forms 6i form:

When I call a report from Oracle Forms 6i with the RUN_PRODUCT command, the report asked running on another session as the appellant formula.


I need call a report but in the same session of calling forms.

is there a way to fix this?

Best regards
Pedro

I need call a report but in the same session of calling forms.

It is not possible. You can use the same user to call the report, but not in the same session. Forms and reports are two different products, so both have their own session. If you just did something in a form and want to make a report that reflects the changes you made, you need to commit these changes in forms first.

Tags: Oracle Development

Similar Questions

  • Can I call the same SSI file twice on the same page?

    I called the same include file (form.inc) twice on this page, just below each of the two links "download the printable file.

    It works perfectly for the first instance 'PARTNER Ares & Co', but does not appear in the second case, the "CHIEF MARKETING OFFICER")

    Current research of work & Partners

    I used the exact sam call at both locations

    <!-BEGIN FORM INCLUDE->

    <? php require_once ("form.inc");? >

    <!-END FORM INCLUDE->

    Will very much appreciate your advice.

    Try

  • What happens when two parallel process call the same VI in an FPGA?

    Hi all

    I was wondering, what happens when say two parallel processes call the same Subvi in an FPGA? I think that the FPGA would create two instances of the Subvi, not sure. Any point of view?

    Thank you

    Altras

    I don't know if the FPGA adds any ordinary special, but in LabVIEW rule and in LabVIEW Real-time, a VI by default is not reentrant.  Therefore, a process that is called when it is already in use is blocked and must wait.

    If the VI is reentrant, however, then you have two (or more) for the VI dataspaces, so that each can run independently.

  • NEW_FORM opens in the SAME session, but the data are not visible

    We have a requirement like this:

    -Our menu calls other forms using NEW_FORM
    -In the KEY OUTPUT of all forms of our that we call the form of menu using NEW_FORM
    - We do.
    -In the menu (form) before we call a form using NEW_FORM insert us a record in a table. We have no ' commit.
    -Normal form of an application is open (e.g. billing form)
    -We close the form of billing.
    -KEY-RELEASE of billing forms call the menu using NEW_FORM (menuform) form
    -In the Menu when new forms - form example, we must now read the inserted record and get the values of line
    -Read us the data, BUT the problem is that the line is not there.

    I tried this:
    -I put debug code to see if the form menu and other forms will open in the SAME session.
    - And Yes, 63325/138/79687 what we get for sid, serial #, audsid from V$ SESSION for all other forms and
    -the form of menu
    -This means that all open forms (forms app and form menu) using NEW_FORM opens in the SAME session.

    My question is:
    - If forms will open in THE SAME SESSION, why is - our inserted line is not visible when we come back to the
    switchboard form?
    -If we are COMMITTED to the line, then it becomes visible.
    -The problem is that we cannot make according to the requirement of the app.
    -We need her to be visible ONLY for the connected to the users session.
    -I tried using a GLOBAL temporary table and the result is the same as above.

    Any advice would be greatly appreciated since our application is based on the insertion of a record in the form of menu, calling from any other form of app, and when the menu form is called again this line must be visible to read.

    Published by: Channa 18 April 2010 22:44

    By default, the NEW_FORM did a restore when it is called, your insertion will simply be rollbacked.
    Some ideas of what you can do:
    -Using a GLOBAL TEMPORARY TABLE with ON COMMIT PRESERVE, and then issue a commit in your code after insertion
    -Use a context in the DB to store data
    -Use a package in the db to store data

  • To connect to vCenter using the same Session with PowerCLI

    Hi all

    Is it possible that we can establish multiple connections to vCenter using the same session with Powercli.

    As connect-viserver-Server "vcenter1" - domain\domainacnt of the username-password "Password".

    is to establish several connections and we want to limit, because we are in the process of report generation based on the web developing using Powercli with IIS.

    Please suggest.

    You can use the Session parameter on the cmdlet Connect-VIServer .

    I use this for the PowerShell Workflows, see workflow of PowerShell and PowerCLI

  • Question when the workflow started the same session

    Hello world
    I'm having a weird problem. When I start the workflow for the first time, it is stuck at a certain "Activity A" activity with a status of 'Active'. When I start the workflow from the same session for the second transaction, the first transaction is completed and the other is still stuck in the same activity. It continues when I start the workflow from the same session.

    But when I close this session, the last transaction of this session is permanantly stuck to the activity with a status of 'Active'.

    When I open another session and submit the first transaction, once again the same pattern repeats itself.


    The code of the activity where it gets stuck is:
    PROCEDURE PROCESS_REQUEST_SUBMIT (itemtype in varchar2,
    ItemKey in varchar2,
    actid number,
    funcmode in varchar2,
    Out out result NOCOPY varchar2)
    IS
    l_sundry_listing_number varchar2 (30);
    number of l_approval_sequence;
    l_action_by varchar2 (240);
    l_count number;
    BEGIN



    l_sundry_listing_number: = wf_engine.getitemattrtext(itemtype,itemkey,'TRANSACTION_ID');

    Select count (*) in the XXCED_SUNDRY_WF_ACTION_HIST l_count
    where sundry_listing_number = l_sundry_listing_number;

    If l_count = 0 then
    l_approval_sequence: = 0;
    on the other
    Select max (approval_sequence) in the l_approval_sequence of XXCED_SUNDRY_WF_ACTION_HIST
    where sundry_listing_number = l_sundry_listing_number;
    l_approval_sequence: = l_approval_sequence + 1;
    end if;

    l_action_by: = wf_engine.getitemattrtext(itemtype,itemkey,'REQUESTOR_NAME');

    INSERT INTO XXCED_SUNDRY_WF_ACTION_HIST
    (SUNDRY_LISTING_NUMBER,
    APPROVAL_SEQUENCE,
    ACTION_BY,
    ACTION,
    ACTION_DATE
    )
    VALUES
    (l_sundry_listing_number,
    l_approval_sequence,
    l_action_by,
    "Submit."
    TO_CHAR (sysdate, "DD-MON-YY HH24:MI:SS)
    );

    COMMIT;



    END PROCESS_REQUEST_SUBMIT;


    Can someone help me with this problem please?


    Thank you
    Rambeau

    Hello

    So that the workflow must be started correctly, something MUST validate the transaction - be it in your procedure that starts the workflow, or anything that calls this procedure. If there is no commit, then when the session disconnects, it restores the workflow.

    So, try

    begin
    XXCED_APWFL006_SUNDRYAPPR_PKG.Initiate_Workflow(transaction_id=>'SUNDRY-0001',
    requestor=>'AMBALAR');
    COMMIT;
    end; 
    

    SQL * more and see what the results are. If it works, the problem is within your call to call the workflow without a validation process.

    Matt

    Published by: Darryl Burke - advertising and deleted links

  • Run 2 processes at the same time the same session

    is it possible to run 2 (or 3, 4 would be better =) stored procedures at the same time trough the same session?
    (something like the parallelism)

    I need to so that I do not like the result of the execution, ideas?

    I did a stored procedure that does ping to the 400 ip but is a bit slow, I DB a trigger to execute, it is reason to run it "hollow parallelism.

    YAL: http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:4712493580500

  • What happens when two computers call the same code stored in networked storage?

    We have our code on the network storage and have worked on a single computer code.  We have now replicated our configuration and want to use the same code to run the new installation to another computer.  We want to run simultaneously both configurations (both using the same storage networking code).  Will there be conflicts here, or both computers load their own copy of the vi to run from?  I must say that we do not have global variables.

    I am interested in the answer to this question anyway, but I'd be happy to hear any suggestions (or even critical) on how to do what we do.

    You should seriously consider a source control system, which is the best solution here. This gives you an original copy of the code on the network. Each computer retrieves the latest revision of the source control, make a copy on the local disk. Source control keeps a good backup and allows you to track and compare the versions or to return to the old code, when something breaks.

    I'm fairly certain that you can open the same screw that is stored on a network drive on multiple computers simultaneously. Global variables are not relevant here. Each computer is independently responsible for the screw in memory. The problem is if edit you and save the VI on a computer while it is open on another, and if you make changes on both at the same time, will certainly lose you some of her edits and could possibly corrupt your VI and lose all, that's why you should use a source code control system.

    If you have the request of the manufacturer, I recommend your building code in an application. You can store the network application if you want and run it on multiple computers.

  • Possible to combine VOIP and teleconference call in the same session?

    Is it possible to use VOIP AND telephone conference together in the same Adobe Connect session? If so, how?

    Hello

    This is possible by using the UV (Unified Voice) function that supports Acrobat Connect Pro. Please contact your reseller to learn more about this feature.

    Thank you

    Sameer Puri

  • content of the different session for the same session, CF9

    Two URLS:

    http://domain/zshowsession.cfm

    http://domain/institutes/Office/zshowsession.cfm

    The DOMAIN part is identical.  Same site.  Same server see

    The two files contain this code:

    < cfdump var = "#session #" >

    A poster this:

    session1.png

    The other displays this:

    session2.png

    You can see it's the same cfid and cftoken, but the session content is different.  It causes me problems.

    Someone is aware of any legitimate reason, why this is happening?  Maybe some configurations weird CF in the CFIDE or something?  I already checked the two relevant Application.cfc files (one in /, one in institutes) and there is nothing that changes the session.

    I fixed it.  The problem was that both Application.cfc files have different values for myIdName.  When I made them equal session data becomes synchronized.

  • the call for a process of apex after a javascript called the same key

    A url button calls a procedure of java script in the header,
    but then I need a process by their Summit to run after that.
    How can I do that.
    Thank you
    Doug

    Hi Doug,.

    A few questions for you...


    1. What features are you trying to reach?

    2. What APEX version do you use?

    3. When you say 'process', do you mean "process Page"?

    There are certainly ways to submit the page and trigger a process page to run via JavaScript, but it would be good to better understand your needs before offering has some solution first.

    Kind regards
    Anthony.

  • Why this code calls the same url?

    HI im to create a web page in flash and im using this code for the navigation buttons:

    bio.addEventListener (MouseEvent.CLICK, buttonClickHandler);
    function buttonClickHandler {}
    navigateToURL (new URLRequest ("bio.html"), '_self');
    }
    paquetes.addEventListener (MouseEvent.CLICK, buttonClickHandler);
    function buttonClickHandler2(event:MouseEvent):void {}
    navigateToURL (new URLRequest ("paquetes.html"), '_self');
    }
    bodas.addEventListener (MouseEvent.CLICK, buttonClickHandler);
    function buttonClickHandler3(event:MouseEvent):void {}
    navigateToURL (new URLRequest ("bodas.html"), '_self');
    }

    The problem is that when I publish cela and place it in Dreamweaver, all three buttons link to "bio.html.

    Thank you

    You could probably have found the problem. But in the case you do not, paquetes.addEventListener (MouseEvent.CLICK, buttonClickHandler); should be: paquetes.addEventListener (MouseEvent.CLICK, buttonClickHandler2); and bodas.addEventListener (MouseEvent.CLICK, buttonClickHandler); must be bodas.addEventListener (MouseEvent.CLICK, buttonClickHandler3); Simply remember the '2' and '3' in the headphones of the respective function.

  • I lost the most views drop-down list under the search bar, it used several times in the same session, and then he just disappeared.

    The drop-down list is / was my part used of any page, use it to access to everything I need. The only other thing I noticed changed it's new green bottom-tab at the top of each page: site Web Safe/number of trackers. I can't get rid of it. Avira virus control icon is on my desktop, but the icon also suddenly appeared on the right side of the search bar. I deleted it because I have it on the desktop. I have no why he appeared suddenly. It is my 3rd session today. I had not changed anything in previous sessions, so don't know why the drop down menu has disappeared.

    Any help appreciated.
    HK

    Hi, hopefully a screenshot can make things more clear - when you right click in the area of the red dot, then a popup menu will appear where you can re-enable the toolbar of bookmarks.

  • multiple use of Camera Raw in the same session of Photoshop a Foto

    I've seen (some time ago) a presentation where the editor was initially working in Camera Raw with a new foto (original). During the changes in Photoshop, he returned some settings in Camera Raw, edited, returned to Photoshop. He did this switching between Photoshop and Camera Raw a few times.

    The command that was used for this option?

    Thanks for your help

    Roland

    If you open a raw file in Camera Raw and choose to open it as a smart object on the ACR workflow options option, you can have the raw file into a Photoshop file allowing reaccessing the raw image in Camera Raw. Note, there are some things that you can't do with a smart object as paintinng on the layer and the PSD grows big enough, but using dynamic objects can be useful.

  • How to call a report from Oracle 10g lies in the application server to the server of DB using PLSQL

    Hi all

    I have the following requirement

    I have a 10g Oracle compiled report and giving PDF as output...

    1. I want to call the same report server DB using PLSQL to generate reports in bulk.

    2. the production of the above-mentioned reports should be in the path specific and with the specific name

    Please help me on this

    Kind regards

    SH

    What you want is called "Event Driven publication":

    http://docs.Oracle.com/CD/E17904_01/bi.1111/b32121/pbr_evnt001.htm#RSPUB23700

Maybe you are looking for