How to View Output From Customized Form

I have developed a new customized form and attach it in Receipt Form Menu. I have added a button of Print Receipt on the form by name Print Screen.I have added code behind the Print Receipt Button that when it would be clicked report of receipt would be generated.When i click Print Receipt Buttton Request is submitted to Concurrent Manager and i have to view it from Concurrent Request Window.My requirement is when i click Print Screen Button output would be generated and viewable at that place and i dont need to go in concurrent request window to view and print that output.Is there any solution please suggest me.I am thankful in advance to all.

Hi;
Please check [this |http://forums.oracle.com/forums/forum.jspa?forumID=129] and see it helpful
Also see:
How to view the output submitted by other user
How to customize look of a view
Regard
Helios

Similar Messages

  • How to view data from infopath form that submit into sharepoint list into another page in sharepoint

    what I want to do is, User A as administrator, will fill in the form. Next User A will assign task to User B, to complete the form. when User B open the form, the above part of the form will displayed data that fill by User A. Field that User B need to fill
    in is at the below of the form. 
    may I know how to do it step by step? Thank you for your answer. 
    Azuaniza Ariffin

    Hi,
    I saw a similar post by you on this forum, and to achieve the functionality you can try using InfoPath Form or JQuery with SPService to make part of the Form as Readonly. and in conjunction use SharePoint designer to create a workflow to assign task or send
    email to user B.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d02389be-f267-4c09-baf1-d85a5429bafb/set-field-value-and-make-field-read-only-on-custom-list-form?forum=sharepointgenerallegacy
    http://www.sharepointdiary.com/2013/07/how-to-make-sharepoint-list-column-form-field-read-only.html#ixzz2aH103rcM
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to view report from a Form

    I am trying to call a parameter report from a form passing all
    the parameters, using RUN_PRODUCT procedure. I want to display
    the report and not to print it. I set the destination type
    to 'sysout' and the mode to BATCH. I think the mode has to be
    batch in order to hide the parameter form and display the report.
    In the actual report, I have set the initial value for the
    destination type to be sysout.
    But, I am getting the error saying for destination type sysout,
    the mode should be BATCH. That's what I have. So does any one
    has any idea, what I am doing wrong or is this a bug?
    Thanks for your reply and time.
    Benoy Peters

    Set it to Screen.

  • How to view concurrent program LOG from custom FORMs

    Hi,
    How to view concurrent program LOG from custom FORMs?
    Thanks
    ESL

    Hi Thanks for your response....
    lets assume there are 2 buttons, first button to submit concurrent program and second button to view concurrent program output/log.
    Actually im able to submit concurrent program from oracle custom form(6i) in ebusiness(11.5.0.2) i.e first button (WHEN-BUTTON_PRESSED buitin).
    Rather user navigating to VIEW-> REQUEST, i would like to give option to user to view concurrent program output/log when user clicks on second button (WHEN-BUTTON_PRESSED buitin)
    How can i achive this?
    Thanks,
    ESL

  • Implementation restriction 'apps.fnd_api.g_false' call from custom form

    Hi guys
    the following PL/SQL bit executes successfully from a toad session. db user "apps"
    SET SERVEROUTPUT ON;
    DECLARE
    v_api_return_status  VARCHAR2 (1);
    v_qty_oh             NUMBER;
    v_qty_res_oh         NUMBER;
    v_qty_res            NUMBER;
    v_qty_sug            NUMBER;
    v_qty_att            NUMBER;
    v_qty_atr            NUMBER;
    v_msg_count          NUMBER;
    v_msg_data           VARCHAR2(1000);
    v_inventory_item_id  VARCHAR2(250) := '24445';
    v_organization_id    VARCHAR2(10)  := '110';
    BEGIN
    inv_quantity_tree_grp.clear_quantity_cache;
    DBMS_OUTPUT.put_line ('Transaction Mode');
    DBMS_OUTPUT.put_line ('Onhand For the Item :'|| v_inventory_item_id );
    DBMS_OUTPUT.put_line ('Organization        :'|| v_organization_id);
    apps.INV_QUANTITY_TREE_PUB.QUERY_QUANTITIES
    (p_api_version_number  => 1.0,
    p_init_msg_lst        => apps.fnd_api.g_false,
    x_return_status       => v_api_return_status,
    x_msg_count           => v_msg_count,
    x_msg_data            => v_msg_data,
    p_organization_id     => v_organization_id,
    p_inventory_item_id   => v_inventory_item_id,
    p_tree_mode           => apps.inv_quantity_tree_pub.g_transaction_mode,
    p_onhand_source       => 3,
    p_is_revision_control => FALSE,
    p_is_lot_control      => FALSE,
    p_is_serial_control   => FALSE,
    p_revision            => NULL,
    p_lot_number          => NULL,
    p_subinventory_code   => 'KSP-02', --NULL,
    p_locator_id          => NULL,
    x_qoh                 => v_qty_oh,
    x_rqoh                => v_qty_res_oh,
    x_qr                  => v_qty_res,
    x_qs                  => v_qty_sug,
    x_att                 => v_qty_att,
    x_atr                 => v_qty_atr);
    DBMS_OUTPUT.put_line ('on hand Quantity                :'|| v_qty_oh);
    DBMS_OUTPUT.put_line ('Reservable quantity on hand     :'|| v_qty_res_oh);
    DBMS_OUTPUT.put_line ('Quantity reserved               :'|| v_qty_res);
    DBMS_OUTPUT.put_line ('Quantity suggested              :'|| v_qty_sug);
    DBMS_OUTPUT.put_line ('Quantity Available To Transact  :'|| v_qty_att);
    DBMS_OUTPUT.put_line ('Quantity Available To Reserve   :'|| v_qty_atr);
    END;However, while called from a custom form, we receive the following error starting with 'apps.fnd_api.g_false' cannot directly access remote package variable or cursor.
    Does it mean, if we need to call the API through a custom form we should initiate any POLICY CONTEXT(s)? if we change the same like below code, the API call compiles successfully and we are able to display the results over the custom form objects.
    DECLARE
    v_api_return_status  VARCHAR2 (1);
    v_qty_oh             NUMBER;
    v_qty_res_oh         NUMBER;
    v_qty_res            NUMBER;
    v_qty_sug            NUMBER;
    v_qty_att            NUMBER;
    v_qty_atr            NUMBER;
    v_msg_count          NUMBER;
    v_msg_data           VARCHAR2(1000);
    v_inventory_item_id  VARCHAR2(250) := :QTY_HEADER.ITEM_ID;
    v_organization_id    VARCHAR2(10)  := '110';
    BEGIN
    inv_quantity_tree_grp.clear_quantity_cache;
    apps.INV_QUANTITY_TREE_PUB.QUERY_QUANTITIES
    (p_api_version_number  => 1.0,
    --p_init_msg_lst        => apps.fnd_api.g_false,
    p_init_msg_lst        => 'F', --Value manually assigned
    x_return_status       => v_api_return_status,
    x_msg_count           => v_msg_count,
    x_msg_data            => v_msg_data,
    p_organization_id     => v_organization_id,
    p_inventory_item_id   => v_inventory_item_id,
    --p_tree_mode           => apps.inv_quantity_tree_pub.g_transaction_mode,
    p_tree_mode           => 2, -- value manually assigned
    p_onhand_source       => 3,
    p_is_revision_control => FALSE,
    p_is_lot_control      => FALSE,
    p_is_serial_control   => FALSE,
    p_revision            => NULL,
    p_lot_number          => NULL,
    p_subinventory_code   => 'KSP-02', --NULL,
    p_locator_id          => NULL,
    x_qoh                 => v_qty_oh,
    x_rqoh                => v_qty_res_oh,
    x_qr                  => v_qty_res,
    x_qs                  => v_qty_sug,
    x_att                 => v_qty_att,
    x_atr                 => v_qty_atr);
    :QTY_HEADER.ONHAND_QTY := v_qty_oh;
    :QTY_HEADER.RES_QTY := v_qty_res;
    END;Please input your valued suggestions.
    regards,

    Done, by creating a database stored procedure and returning values. Example procedure as following:
    CREATE OR REPLACE PROCEDURE xx_retrive_quantity (item_id       NUMBER,
                                                     org_id        NUMBER,
                                                     subinv        VARCHAR2,
                                                     oqtt      OUT NUMBER,
                                                     oqtr      OUT NUMBER)
    IS
       v_api_return_status   VARCHAR2 (1);
       v_qty_oh              NUMBER;
       v_qty_res_oh          NUMBER;
       v_qty_res             NUMBER;
       v_qty_sug             NUMBER;
       v_qty_att             NUMBER;
       v_qty_atr             NUMBER;
       v_msg_count           NUMBER;
       v_msg_data            VARCHAR2 (1000);
       v_inventory_item_id   VARCHAR2 (250) := item_id;
       v_organization_id     VARCHAR2 (10) := org_id;
       v_subinventory_code   VARCHAR2 (20) := subinv;
    BEGIN
       inv_quantity_tree_grp.clear_quantity_cache;
       apps.INV_QUANTITY_TREE_PUB.QUERY_QUANTITIES (
          p_api_version_number    => 1.0,
          p_init_msg_lst          => apps.fnd_api.g_false,
          x_return_status         => v_api_return_status,
          x_msg_count             => v_msg_count,
          x_msg_data              => v_msg_data,
          p_organization_id       => v_organization_id,
          p_inventory_item_id     => v_inventory_item_id,
          p_tree_mode             => apps.inv_quantity_tree_pub.g_transaction_mode,
          p_onhand_source         => 3,
          p_is_revision_control   => FALSE,
          p_is_lot_control        => FALSE,
          p_is_serial_control     => FALSE,
          p_revision              => NULL,
          p_lot_number            => NULL,
          p_subinventory_code     => v_subinventory_code,
          p_locator_id            => NULL,
          x_qoh                   => v_qty_oh,
          x_rqoh                  => v_qty_res_oh,
          x_qr                    => v_qty_res,
          x_qs                    => v_qty_sug,
          x_att                   => v_qty_att,
          x_atr                   => v_qty_atr
       oqtt := v_qty_att;
       oqtr := v_qty_atr;
    END xx_retrive_quantity;This stored procedure could be called from a custom form or report by passing values. Hope this is useful for few others out there. A complete writeup is available over here
    http://windows7bugs.wordpress.com/2011/04/17/oracle-ebs-r12-how-to-call-standard-apipackages-from-custom-form-or-reports/

  • How to extract data from custom made Idoc that is not sent

    Hi experts,
    Could you please advise if there is a way how to extract data from custom made idoc (it collects a lot of data from different SAP tables)? Please note that this idoc is not sent as target system is not fully maintained.
    As by now, we would like to verify - what data is extracted now.
    Any help, would be appreciated!

    Hi,
    The fields that are given for each segment have their length given in EDSAPPL table. How you have to map is explained in below example.
    Suppose for segment1, EDSAPPL has 3 fields so below are entries
    SEGMENT          FIELDNAME           LENGTH
    SEGMENT1         FIELD1                   4
    SEGMENT1         FIELD2                   2
    SEGMENT1         FIELD3                   2
    Data in EDID4 would be as follows
    IDOC           SEGMENT                          APPLICATION DATA
    12345         SEGMENT1                        XYZ R Y
    When you are extracting data from these tables into your internal table, mapping has to be as follows:
    FIELD1 = APPLICATIONDATA+0(4)        to read first 4 characters of this field, because the first 4 characters in this field would belong to FIELD1
    Similarly,
    FIELD2 = APPLICATIONDATA+4(2).
    FIELD3 = APPLICATIONDATA+6(2).  
    FIELD1 would have XYZ, FIELD2 = R, FIELD3 = Y
    This would remain true in all cases. So all you need to do is identify which fields you want to extract, and simply code as above to extract the data from this table.
    Hope this was helpful in explaining how to derive the data.

  • How to pass Data from one form to the other

    Hi all
    Can any one suggest me how to pass data from one form to the other form, which i zoomed from the original one?
    I tried to do this by passing parameter in Event Procedure but i am getting error msg when i am opening the zoomed form.
    If any one of u have any idea, give me a reply
    Thank you
    Suhasini

    If you choose the second alternative you should erase these global variables after the second form is opened
    You can erase the global variable using:
    erase('global_var')
    Greetings,
    Sim

  • How to get username from customer email id.

    Hi experts,
    How to get username from customer email id.I am using transaction XD02.
    I would be thankful for your kind replies .
    Regards,
    Sachin Hada

    Hi sachin,
    Re: Email id field
    Regards,
    Sravanthi

  • Unable to view output from concurrent manager

    Hello all,
    I am unable to view output from concurrent manager, I am using IE 8 32bit on Windows 7 & adobe 10.0.1
    It gives a blank page
    We are trying to view an xml report
    EBS 11.5.10.2
    db : 10.2.0.
    linux 4 update 5
    I have already reffered below documents but for no luck
    Note: 888932.1 - R12.1 Unable To View Output For Xml Outputs - View Output Button - The window opens up And Disappear Automatically
    Note: 305850.1 - Unable To View Output Of PDF Report When Clicking ''View Output''
    Thanks.

    Is the issue with XML/PDF concurrent requests or with all requests?
    Can you find any errors in Apache/Database log files?
    Is the application listener up and running? Can you find any errors in the listener log file?
    Have you tried to run AutoConfig and bounce the services and see if this helps?
    Thanks,
    Hussein

  • How to view photos from ipad on smart samsung tv?

    How to view photos from ipad on smart samsung tv?

    If you wish to view your photos on a television, you could use AirPlay via the Apple TV:
    Apple - AirPlay - Play content from iOS devices on Apple TV
    http://www.apple.com/airplay/
    Alternately, there are Apple Digital AV Adapters for hardwired connections:
    iOS: About Apple Digital AV Adapters
    http://support.apple.com/kb/ht4108

  • How to view games from iPad on Apple TV

    How to view games from iPad on apple tv

    I believe this is the answer:
    Apple TV: How to use AirPlay Mirroring

  • How to view messages from another iPhone using your apple Id

    How to view messages from another iPhone using your apple Id

    Sign into iMessage using the same ID (in Settings>Messages>Send & Receive).  The other phone should then see your messages too.

  • How to insert data from APEX form into two tables

    Hi,
    I'm running APEX 4.1 with Oracle XE 11g, having two tables CERTIFICATES and USER_FILES. Some of the (useless) fields are cut to reduce information:
    CREATE TABLE CERTIFICATES
    CERT_ID NUMBER NOT NULL ,
    CERT_OWNER NUMBER NOT NULL ,
    CERT_VENDOR NUMBER NOT NULL ,
    CERT_NAME VARCHAR2 (128) ,
    CERT_FILE NUMBER NOT NULL ,
    ) TABLESPACE CP_DATA
    LOGGING;
    ALTER TABLE CERTIFICATES
    ADD CONSTRAINT CERTIFICATES_PK PRIMARY KEY ( CERT_ID ) ;
    CREATE TABLE USER_FILES
    FILE_ID NUMBER NOT NULL ,
    FILENAME VARCHAR2 (128) ,
    BLOB_CONTENT BLOB ,
    MIMETYPE VARCHAR2 (32) ,
    LAST_UPDATE_DATE DATE
    ) TABLESPACE CP_FILES
    LOGGING
    LOB ( BLOB_CONTENT ) STORE AS SECUREFILE
    TABLESPACE CP_FILES
    STORAGE (
    PCTINCREASE 0
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    FREELISTS 1
    BUFFER_POOL DEFAULT
    RETENTION
    ENABLE STORAGE IN ROW
    NOCACHE
    ALTER TABLE USER_FILES
    ADD CONSTRAINT CERT_FILES_PK PRIMARY KEY ( FILE_ID ) ;
    ALTER TABLE CERTIFICATES
    ADD CONSTRAINT CERTIFICATES_USER_FILES_FK FOREIGN KEY
    CERT_FILE
    REFERENCES USER_FILES
    FILE_ID
    NOT DEFERRABLE
    What I'm trying to do is to allow users to fill out all the certificate data and upload a file in an APEX form. Once submitted the file should be uploaded in the USER_FILES table and all the fields along with CERT_ID, which is the foreign key pointing to the file in the USER_FILES table to be populated to the CERTIFICATES table. APEX wizard forms are based on one table and I'm unable to build form on both tables.
    That's why I've created a view (V_CERT_FILES) on both tables and using INSTEAD OF trigger to insert/update both tables. I've done this before and updating this kind of views works perfect. Here is where the problem comes, if I'm updating the view all the data is updated correctly, but if I'm inserting into the view all the fields are populated at CERTIFICATES table, but for USER_FILES only the fields FILE_ID and LAST_UPDATE_DATE are populated. The rest three regarding the LOB are missing: BLOB_CONTENT, FILENAME, MIMETYPE. There are no errors when running this from APEX, but If I try to insert into the view from SQLDeveloper, I got this error:
    ORA-22816: unsupported feature with RETURNING clause
    ORA-06512: at line 1
    As far as I know RETURNING clause in not supported in INSTEAD of triggers, although I didn't have any RETURNING clauses in my trigger (body is below).
    Now the interesting stuff, after long tracing I found why this is happening:
    First, insert is executed and the BLOB along with all its properties are uploaded to wwv_flow_file_objects$.
    Then the following insert is executed to populate all the fields except the BLOB and it's properties, rowid is RETURNED, but as we know RETURNING clause is not supported in INSTEAD OF triggers, that's why I got error:
    PARSE ERROR #1918608720:len=266 dep=3 uid=48 oct=2 lid=48 tim=1324569863593494 err=22816
    INSERT INTO "SVE". "V_CERT_FILES" ( "CERT_ID", "CERT_OWNER", "CERT_VENDOR", "CERT_NAME", "BLOB_CONTENT") VALUES (:B1 ,:B2 ,:B3 ,:B4, ,EMPTY_BLOB()) RETURNING ROWID INTO :O0
    CLOSE #1918608720:c=0,e=11,dep=3,type=0,tim=1324569863593909
    EXEC #1820672032:c=3000,e=3168,p=0,cr=2,cu=4,mis=0,r=0,dep=2,og=1,plh=0,tim=1324569863593969
    ERROR #43:err=22816 tim=1324569863593993
    CLOSE #1820672032:c=0,e=43,dep=2,type=1,tim=1324569863594167
    Next my trigger gets in action, sequences are generated, CERTIFICATES table is populated and then USER_FILES, but only the FILE_ID and LAST_UPDATE_DATE.
    Finally update is fired against my view (V_CERT_FILES), reading data from wwv_flow_files it populates BLOB_CONTENT, MIMETYPE and FILENAME fields at the specific rowid in V_CERT_FILES, the one returned from the insert at the beginning. Last, file is deleted from wwv_flow_files.
    I'm using sequences for the primary keys, this is only the body of the INSTEAD OF trigger:
    select user_files_seq.nextval into l_file_id from dual;
    select certificates_seq.nextval into l_cert_id from dual;
    insert into user_files (file_id, filename, blob_content, mimetype, last_update_date) values (l_file_id, :n.filename, :n.blob_content, :n.mimetype, sysdate);
    insert into certificates (cert_id, cert_owner, cert_vendor, cert_name, cert_file) values (l_cert_id, :n.cert_owner, :n.cert_vendor, :n.cert_name, l_file_id);
    I'm surprised that I wasn't able to find a valuable source of information regarding this problem, only MOS note about running SQLoader against view with CLOB column and INSTEAD OF trigger. The solution would be to ran it against base table, MOS ID 795956.1.
    Maybe I'm missing something and that's why I decided to share my problem here. So my question is how do you create this kind of architecture, insert into two tables with a relation between them in APEX ? I read a lot in the Internet, some advices were for creating custom form with APEX API, create a custom ARP, create two ARP or create a PL/SQL procedure for handing the DML?
    Thanks in advance.
    Regards,
    Sve

    Thank you however I was wondering if there was an example available which uses EJB and persistence.

  • How to get data from PDF form?

    PDF forms can send data in url like GET or POST method. Is it possible to get data from url, like in PHP http://sever/file.php?item1=value1&item2=value2&item3=value3
    In APEX url have specific construction and I don't know how to get value of items (1...3)
    Please let me help to find simple method of geting data from URL.
    Best Regards,
    Mark

    The APEX URL syntax is detailed here
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#BCEDJBEH
    How to get it from PDF is another matter...
    I'm working on an app that downloads PDFs with a Large amount of data as a blob, takes that blob and changes it to XML, then goes through the xml to validate each section of data and then add it into the schema that my apex app is referencing....
    I didn't write the original code but I do know that it isn't a quick thing to implement and includes using some uploading some java jar files to your schema and writing some custom java code.
    Someone else may be able to help with grabbing PDF data into the URL for the amounts of data you want to pass to apex.
    Gus..
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!
    Edited by: Gussay on Sep 21, 2009 5:52 PM

  • How do I output the "Customer Type"

    I am want to hide some content in a secure zone based on the "Customer Type".
    How do I output this CRM field?

    What class is your req variable? If your using a HttpServletRequest, then there is no method req.setContentType("");
    In the HttpServletResponse this is for telling the web browser or receving medium what kind of mime type to expect.
    And what package is the HttpConnection class from?
    I think more precise info is required before this question can be answered.

Maybe you are looking for