Forms urgent req.

oracle apps using forms is it possible refresh,clear form or exit from one form to another form
using button, becoz i am using 2 forms called Form A and Form B. Form A is main form and calling Form B by calling function fnd_function.execute(FUNCTION_NAME=>'B').
If i change parameters in Form A, i want to pass latest parameters in Form B also.. but Form prev parameters B contains only.
How can i refresh Form B with latest parameters while i pass parameters dynamically from Form A.
otherwise, can i use do_key('exit_form') from FORM A ? i want to close FORM B from FORM A.

we dont know this function fnd_function.execute(FUNCTION_NAME=>'B') from your apps.
There is an own apps-forum here in the otn.
Search for E-Business-Suite-Forums

Similar Messages

  • ORA-00439 error in Forms URGENT.... URGENT.....

    Hi,
    i have created a new procedure to import a file on the machine to the database BLOB object. the procedure ran succesfully in the SQL prompt. In the Oracle forms builder, I created a new button and on the WHEN_BUTTON_PRESSED PL/SQL logic, i pasted the same procedure. But I got ORA-00439 error while running the form and clicked on the button. Could anyone of you help me out? Is that something to do with any restrictions on Forms?
    Below is the code that i used in the PL/SQL logic of WHEN_BUTTON_PRESSED event.
    declare
    src_file BFILE; -- source file
    dst_file BLOB; -- designation file
    lgh_file BINARY_INTEGER; -- file length
    pdname VARCHAR2(255) := '/appl/pce/d1/eai/informatica/Temp/';
    pfname VARCHAR2(255) := 'router.cfg';
    file_readonly CONSTANT BINARY_INTEGER := 0;
    BEGIN
    src_file := bfilename('RNDVPVOUS', pfname);
    -- insert a NULL record to lock
    INSERT INTO temp1
    (name, file_1)
    VALUES
    (pdname, EMPTY_BLOB())
    RETURNING file_1 INTO dst_file;
    -- lock record
    SELECT file_1
    INTO dst_file
    FROM temp1
    WHERE name = pdname
    FOR UPDATE;
    -- Open the file
    dbms_lob.fileopen(src_file, file_readonly);
    -- Determine length
    lgh_file := dbms_lob.getlength(src_file);
    -- read the file
    dbms_lob.loadfromfile(dst_file, src_file, lgh_file);
    -- Update the blob field
    UPDATE temp1
    SET file_1 = dst_file
    WHERE name = pdname;
    commit;
    -- Close file
    dbms_lob.fileclose(src_file);
    END load_file;
    I'm also sending the version details of Forms Builder below.
    Forms [32 Bit] Version 6.0.8.18.3 (Production)
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.6.0 - Production
    Oracle Toolkit Version 6.0.8.18.0 (Production)
    PL/SQL Version 8.0.6.3.0 (Production)
    Oracle Procedure Builder V6.0.8.17.0 Build #863 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 6.0.7.1.0 - Production
    Oracle Virtual Graphics System Version 6.0.5.38.0 (Production)
    Oracle Tools GUI Utilities Version 6.0.5.32.0 (Production)
    Oracle Multimedia Version 6.0.8.18.1 (Production)
    Oracle Tools Integration Version 6.0.8.17.0 (Production)
    Oracle Tools Common Area Version 6.0.5.32.1
    Oracle CORE Version 4.0.6.0.0 - Production
    Please help me out in this regard as I have an urgent release this weekend.
    Cheers
    Sarma

    Thank you very much. This problem is now solved as I have used FORMS_DDL to execute the procedure from database and not from Forms. But could anyone of you tell me if we can have a link in Forms for BLOB object, where if there is a word document in the database BLOB object, by clicking on that link, that document should open in word. Similarly if there is an image file in the BLOB object, then clicking on that link in Forms should open it some Image processing software which that OS has. Is this really possible? Please let me know. If we update the contents of the document opened, they should get reflected in the database BLOB object. Is this really a HERCULIAN task?

  • Problem is transporting Smart forms---------Urgent

    Hello Guys,
    I have make some small change in smart forms. That change are reflecting in quality ckient and working OK.
    But when I am transporting the same in prod. server.the changes are not reflecting . Wehre is the problem. I have check properly no issue like Actvitation and saving.
    I have save and actvitated the form properly after that only transported in 400.
    please reply urgent .
    Regards
    Swati Namdeo

    Hi,
    Check the changes made in smartform by checking the tr rquest and also confirm the server name after the release of the request from quality
    Contact your basis guy for more information
    regards
    Shiva

  • Retruning parameter/value from report to form - (Urgent)

    Hi ,
    I am calling a report (2.5) from a form using RUN_PRODUCT. I would like to know if there is any way to do the following.
    (a) Return a value from reports to calling form. For ex. I would like to know the last Item name (assuming the reports prints all items in inventory) printed. I am sending a from and to numbers of item id's (range) and I need to know the last item printed.
    (b). Check the success of report. For example, while printing the 5 items (the range that I passed) if there is any error in printing , this should be tracked either in the form or report. If this is not possible using run_product , If I need to use srw package, how to use it. Can I call the report as usual with run_product and in the after parameter trigger can, I call the report again and track error.
    Any help will be appreciated.
    Thanks

    Please repost your question in the reports forum

  • HELP-i want to print price details in SMART FORMS-urgent

    hi friends,
        I want to print price details of sales order in every page of my <b>smart forms</b> using FM <b>RV_PRICE_PRINT_ITEM</b> .
    Can anyone help me how to use that function and how to pass value to the parameter
    all your answers are appreciatable .
    thanks in advance
    shan
    Message was edited by: Shan

    hi santhosh ,
      this is how my program look ,but i dnt know how values can be pass to this internal table as the table TKOMV and
    TKOMVD in FM are of structure type .
      DATA: IT_KOMV LIKE TABLE OF KOMV,
      WA_KOMV LIKE LINE OF IT_KOMV.
    DATA: IT_KOMVD LIKE TABLE OF KOMVD,
    WA_KOMVD LIKE LINE OF IT_KOMVD.
    select *
    into table IT_KOMVD
    from komvd up to 10 rows.
    CALL FUNCTION 'RV_PRICE_PRINT_ITEM'
      EXPORTING
        COMM_HEAD_I       = WA_KOMV
        COMM_ITEM_I       = WA_KOMVD
      LANGUAGE          = ' '
    IMPORTING
      COMM_HEAD_E       =
      COMM_ITEM_E       =
      TABLES
        TKOMV             = IT_KOMV
        TKOMVD            =  IT_KOMVD .
    LOOP AT IT_KOMV INTO WA_KOMV.
    WRITE: / 'TAX' , WA_KOMV-TXJLV.
    "WRITE: / WA_KOMV-matnr.
    ENDLOOP.
    LOOP AT IT_KOMVD INTO WA_KOMVD.
    WRITE: / 'DISCOUNT' , WA_KOMVD-NRMNG.
    WRITE: / 'KNTYP', WA_KOMVD-KNTYP.
    ENDLOOP.
    pls help in this issue.
      thanks ,
      shan(SAP beginner)

  • Regarding drop down list  in adobe forms ::::urgent

    hi
    i have a drop down list with entries 1,2,3...  and a text field in the form layout.
    now the requirement is when i select one entry from the list
    the name of that particular entry should display in the text field.
    suppose say for ex...
    entry 1   name=xxxxx
    entry 2   name =yyyyy.
    like wise depending on what i select it should display the result in the text box..
    let me know the logic for it...
    Edited by: suman yerravelli on Mar 4, 2008 6:03 AM

    hi all
    i have a drop down list with entries 1,2,3... and a text field in the form layout.
    now the requirement is when i select one entry from the list
    the name of that particular entry should display in the text field.
    suppose say for ex...
    entry 1 name=xxxxx
    entry 2 name =yyyyy.
    like wise depending on what i select it should display the result in the text box..
    let me know the logic for it...

  • HR Forms -Urgent

    Hi All,
    How can I test a form created in PE51 as the test link there is inactive also is there any help available on working with HR forms apart from the sap help.
    Thanx in advance,
    Amit

    Amit,
    If it's for Remuneration then run program RPCEDTU0 with form name as selection
    Hope this helps.

  • Need to update mutli record in oracle forms - Urgent please

    Hi,
    We are using Oracle apps release 11i - Oracle forms 6i.
    I have a field "project_start_date" in project_block in a custom form. There is another multi-record block called role_block in the same custom form and it has a field named start_date. Requirement is when ever I make change in the project_start_date in project_block, that should reflect in role_block.start_date. I tried different means and could update only the very first record of the multi-record block - role_block. I need to update all the records in the role_block with the same project_start_date. Used looping and several other methods. But could not achieve. Any help is really appreciated.
    Thanks
    Akil

    Please first read this https://forums.oracle.com/forums/ann.jspa?annID=432
    We are using Oracle apps release 11i - Oracle forms 6i.I can't understand this together.
    I have a field "project_start_date" in project_block in a custom form. There is another multi-record block called role_block in the same custom form and it has a field named start_date. Requirement is when ever I make change in the project_start_date in project_block, that should reflect in role_block.start_date. I tried different means and could update only the very first record of the multi-record block - role_block. I need to update all the records in the role_block with the same project_start_date. Used looping and several other methods. But could not achieve. Any help is really appreciated.
    Thanks
    AkilIs there any relation between project_block and role_block ?
    Do u want to update corresponding column (specific filed) of role_block when updating project_start_date in forms? How may rows will be updated for one project_start_date update ? one or multiple or all ?

  • Calculations in Jsp form - Urgent Please

    Hi,
    I have 3 fields in my table, Quantity,Price and Total. Quantity * Price gives Total. Price is the Column of another table and I display the values of Price using <jbo:InputSelectLOV>. So,my requirement is when I input the value for Quantity and select the values from list in the Edit.jsp form I need the value of Quantity * Price to be displayed in the Total field on Browse form. Could someone please help me. I am new to JSP and any help is appreciated.
    Thank You

    It's not related to JDeveloper this is a generic thing for HTML pages - if you want to do client side (menaing no traffic to the server) actions you use Javascript.
    You just need to stick the Javascript into the JSP page you have inside JDeveloper.

  • Link Of a Standard Form to a Custom  Form --- Urgent !!

    We are in apps version 11.5.10.2. The Client has custom payslip form suited to their requirement. Now they want a little enhancement feature in the Custom Form.
    The custom pay slip form can be queried by employee number. From then you can get the appropriate payperiod where you can navigate to any of the pay periods and view the payslip for that period.
    Now they want to add a button to the custom form so that on the click of the button the element entries form for the respective pay period is opened. Now we have added a button and gave the reference to the standard form. We do not know exactly how to reference the exact period entries and for the same employee number. Currently it is poping a find window asking the employee number.
    Form gurus...please throw ur light on this ...awaiting ur replies and suggestions.

    do they want to see the element entry form (so Read Only), or do they want to kick off transactions into that element entry form?
    When Read Only, you can use also the Element History folder, or a custom subform, based on the element entries view.
    If not, you have to rework your original custom form, so that she is TaskFlow compatible, and then inheritance should take place by itself.

  • Sales order confirmation form in Adobe Forms-Urgent

    Hi Experts,
    I have to create an adobe form for Sales order Confirmation.
    I have worked on ABAP but no idea about Adobe forms. I am new for this.
    Could you please tell me what are are the things required to delelop an adobe forms
    What are the steps i have to follow to create an adobe form.
    I have to do coading in ABAP DEV Workbench or somewhere else?
    If somewhere else then in which language and where ?
    If someone has created a sales order confirmation adobe forms earlier please send me the code for reference.
    Regards,
    Nik

    Thanks again Vinod for this input. I've already had a look into the form where nothing named as 'TITLE' appear. And frankly I'm not very strong in identifying the print program for a given form. I try with debug but taking into account my poor skills in ABAP I'm lost with all those function module. And the print program that I could get from [NACE] includes so many things that I'm still not able to find out the OPEN_FORM statement. But I keep on trying.
    Regards.
    Nozome.

  • OLEVAR doesn't work on 10G Forms (Urgent)

    Hi all,
    I currently use 10g Forms. but every time have a error
    occur
    FRM-92101 : There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.
    Java Exception :
    oracle.forms.netConnectionException: Forms .....
    at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
    at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
    at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
    at oracle.forms.net.HTTPNStream.flush(Unknown Source)
    at java.io.DataOutputStream.flush(Unknown Source)
    at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    when execute "var:=TO_VARIANT( strs );" in when-button-press trigger. anybody know that what is the problem occur ?
    pls find below coding : -
    PROCEDURE EXP_EXCEL IS
    TYPE TStrs IS TABLE OF varchar2(1000) INDEX BY BINARY_INTEGER;
    MyApp ole2.obj_type;
    MyBook ole2.obj_type;
    MyWorkbooksCollection ole2.obj_type;
    myWorksheets ole2.obj_type;
    mySheet ole2.obj_type;
    args OLE2.LIST_TYPE;
    myRange ole2.obj_type;
    val varchar2(32000);
    startTime pls_integer;
    endTime pls_integer;
    -- Here is extra variable for this method
    strs TStrs;
    var OLEVAR;
    firstCell varchar2(100);
    lastCell varchar2(100);
    id pls_integer;
    BEGIN
    /* Open Excel and create new document */
    MyApp:=OLE2.Create_Obj('Excel.Application');
    OLE2.Set_Property( MyApp,'VISIBLE', 1 );
    MyWorkbooksCollection:=OLE2.GET_OBJ_PROPERTY( MyApp, 'Workbooks' );
    MyBook:=OLE2.Invoke_Obj( MyWorkbooksCollection,'Add' );
    myWorksheets:=OLE2.GET_OBJ_PROPERTY( MyBook,'Worksheets');
    /* Get the WorkSheet to work */
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, 1 ); -- add worksheet INDEX
    MySheet := OLE2.GET_OBJ_PROPERTY( myWorksheets, 'Item', args);
    OLE2.DESTROY_ARGLIST( args);
    -- startTime:=WIN32.GetTickCount;
    /* Add the information */
    FOR myRowNum IN 1..8 LOOP
    strs.delete;
    -- Prepare the information for the row
    FOR myColumnNum IN 1..38 LOOP
    val:='t'||myRowNum||'_'||myColumnNum;
    strs(myColumnNum):=val;
    END LOOP;
    /* Get the address of the first and the last cells */
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, myRowNum );
    OLE2.ADD_ARG( args, 1 );
    myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Cells', args );
    OLE2.DESTROY_ARGLIST( args);
    firstCell:=OLE2.GET_CHAR_PROPERTY( myRange, 'Address' );
    OLE2.RELEASE_OBJ( myRange );
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, myRowNum );
    OLE2.ADD_ARG( args, 38 );
    myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Cells', args );
    OLE2.DESTROY_ARGLIST( args);
    lastCell:=OLE2.GET_CHAR_PROPERTY( myRange, 'Address' );
    OLE2.RELEASE_OBJ( myRange );
    /* Get the range */
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, firstCell );
    OLE2.ADD_ARG( args, lastCell );
    myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Range', args );
    OLE2.DESTROY_ARGLIST( args);
    /* Set the cell value for range */
    var:=TO_VARIANT( strs );
    id:=GET_OLE_MEMBERID( myRange, 'Value' );
    SET_OLE( myRange, id, var );
    DESTROY_VARIANT( var );
    OLE2.RELEASE_OBJ( myRange );
    END LOOP;
    -- endTime:=WIN32.GetTickCount;
    -- :BLOCK1.FAST2_TIME:=TO_CHAR( (endTime-startTime) );
    OLE2.RELEASE_OBJ(mySheet);
    OLE2.RELEASE_OBJ(myWorksheets);
    OLE2.RELEASE_OBJ(MyBook);
    OLE2.RELEASE_OBJ(MyWorkbooksCollection);
    -- OLE2.INVOKE (MyApp,'Quit');
    OLE2.RELEASE_OBJ(MyApp);
    END;
    best regards
    boris

    Hi all,
    Any expert can help me ?
    best regards
    boris

  • Insert / Update from Oracle Forms -- URGENT Please thanks

    Hello All,
    I need to create form which can be use for two purposes. i.e insert and update
    I have one table called emp which has 50 columns.
    Only four columns has not null constraint.
    I need to insert values in only these columns.
    From SQLPLUS it can be cone as below:
    insert ito emp values ('333','2222','007','AA','01-JAN-2007','','','','','','','','','',........);
    After that I need to update one of the coulmn with the value as
    update emp
    set zipcode = 'Y'
    where empt# = 007;
    How could I achive this from Oracle form.
    Any help will be appricated.
    D

    Why handle updates in the On-Update trigger? Oracle Forms already handles this for you. You update a data value in a field and click on the SAVE button (assuming you have a Save button) and the Oracle Forms handles the Update. The On-Update trigger is provided so you can perform processing in addition to the default UPDATE.
    Craig...

  • How to write a cursor for mutiple columns in forms urgent required.........

    i created one table rk with 8 columns and that i designed in forms.
    but i have another table grk with 4 columns.
    this grk contains data.
    this grk 4 columns data i have to retrive in rk table in froms by multiple records.
    the both column names are same in the both tables.
    because by seeing this 4 columns data i will insert remaining 4 column by entering in rk table in form.
    i known that i have to write cursor to retrive the 4 columns data for multiple record from grk table and in trigger i have to produce to rk table.
    i have worked but it is not working.
    can any body help me out how to write a cursor for 4 column to retrive multple records in form

    Hi,
    Try,
    DECLARE
            CURSOR Cur_Test IS SELECT <field_1>, <field_2>, <field_3>, ... <field_n> FROM <table_name> WHERE <condition>;
    BEGIN
            OPEN Cur_Test;
            LOOP
                    FETCH Cur_Test INTO <items_or_variables>;
                    EXIT WHEN Cur_Test%NOTFOUND;
            END LOOP;
            CLOSE Cur_Test;
    END;Regards,
    Manu.

  • Null Values(Urgent Req)

    Hi Guys,
    I have a date column where I use Max(Date) function...
    As per the req I have changed the Date format to MMM-dd-YYYY from mm-dd-yyyy...
    Now I want to display "No Date" when ever the data value is null....
    I tried writing a case statement by casting the max(date) to char...but it shows MMM-dd-YYY instead of "No Date"
    Case when cast(max(date) as char) IS NULL then 'No Date' Else cast(max(date) as char) end;
    Can some one please let me know how this can be resolved?
    Thanks in advance...

    When you changed the format to CHAR in Criteria mode, a null value will display the format syntax since the column is now CHAR. So what you want now is a CASE statement that changes 'MMM-dd-YYYY' to 'No Date.'
    Try writing the CASE statement like this:
    CASE WHEN CAST(MAX(DATE) AS CHAR) IS 'MMM-dd-YYYY' THEN 'No Date' ELSE Max(Date) END
    Tell me if this works. I'm at home and can't test it.

Maybe you are looking for

  • Unable to expand Essbase server in EAS console

    Hi All, I have recently installed and configured Oracle Hyperion EPM Essbase 11.1.2.2 in a distributed virtual environment (One Foundation/WLServer VM, One Essbase VM, One Oracle11g DB VM). Host OS: MS Win server 2008 x64 (SP1). I am using Native Dir

  • Tv as a monitor?

    Today I got my Mac mini and while I was trying to set it up using a dynex tv as a display (I know it's not ideal but it's what I have for now) I get a second of it working perfectly, then static and lines on the tv. It worked fine as a display for my

  • How to create Detour in MSMP Workflow?

    Hello GRC Experts, we are implementing GRC Access Control 10.0 with all four components: CUP, BRM, EAM and RAR. We have customized the CUP and BRM Workflows without Detour rules, they are working fine so far. But now we have a following issue: We wou

  • Can I send message in byte format

    hello Why no one is answering me but still I want to know that Can I send message in byte format to inbox message.setContent(byte [] b, "text/plain"); And Can I receive mail in byte format from inbox. String dis = new String((String)messagePart.getCo

  • Notebooks in Forte Visual

    I am just starting to look at Forte Visual for C++ and am wondering how I might create a widget similar to the Java JTabbedPane container? Anyone developed something like this using Forte and the Motif widget set? grumpy