Need equivalent of Oracle Forms Row-Level LOV

I came very close, but I am stuck on the last item.
I am trying to build an update form. I have a select box at the top, and when I select a new value, I want it to change all of the values on the form (for update) to the record associted with the value I chose in the Select Box.
I did this with the Master Detail wizard, although I believe that a "Form with a Report ", would work too. With the Master Detail Wizard, I choose "Edit detail on separate page", which creates the page that I am after, then I just delete the others. I then go to the last page (i.e., edit detail), and change the non-displayed primary key to a "Select List with Redirect" and then associate the desired LOV.
It works pretty nicely one I select a value, and it performs the redirect. However; I can't seem to get the form to pre-populate upon startup.
I tried defaulting the Select List, it does not pull in the detail data, unless I select something with the selct box.

Just three last questions.
1) If I want to call another similar form and have it start on the same item that I currently have selected in the select box, how would I pass that parameter, and how would I receive that parameter? I currently create a link on the first page, and use the following to call the second page:
LinkName
2) Is there an easier way to do what I am trying to do other than using a Master Detail Wizard, or Form with a Report. When I use the wizrd to create a single form, it seems to default to an Insert Form, and is missing the necessary function to do what I like.
3) In my first two forms, a record will always exist before I navigate to it. However; I have another class of form, that may not have a record yet. Do I need to create this form differently, or will the approach I've taken above still work if I need the form to do an insert rather than an update into the associated detail table?

Similar Messages

  • Web PLSQL Row Level LOV

    Has anyone successfully generated a Row-level LOV from Designer in a Web PLSQL module, like you are able to do with the Forms generator?

    Not exactly like that, but you can do a combined insert/update form if you're willing to play some tricks.
    For example, create a multi-row update form on your table. Then call a function in your top-of-page-text which will insert a fixed number of empty rows in your table. Set the order-by to put those rows at the bottom.
    This isn't how we normally want to work with our database. It's best done with a staging table, since you can't have any non-null fields and you'll be restricted to a sequence number for your primary key. You'll also need a process which will remove the empty rows if the user doesn't actually add data.
    The advantage, though, is that it works to create a combined update/insert form with the WSG.
    -- jim

  • UDF is not showing at Forecast Form - Row Level

    Hi Expert s,
    I am facing a hurdle while showing  UDFs in the Forecast Row Level .
    The UDF is created . but at the Forecast Form , it is not showing at the Row Level as well as it is not showing in the Form Setting .
    Thanks
    Ashish Ranjan

    Hi Ashish......
    Unfortunately SAP has given the provision but it seems it does not work.....
    It does not display UDF at Forecast level......
    Regards,
    Rahul

  • Need help for Oracle forms 10.1.2

    Hi , I have installed oracle form 10g application in one of my linux box ( 64 bit) , After bringing up the servers , the system-linux box is getting rebooted automatically . Please help as the Everytime the servers are going down along with the machine.

    My shop uses that version of Forms. 64 bit Linux gave us so much trouble we installed 32 bit Linux on the 64 bit hardware.
    Correct me if I'm wrong, but I don't think there's a 32 bit version of the oracle software so 64 bit Linux does not give you anything.
    Best Regards
    mseberg

  • Need information about Oracle Forms & Reports server installation

    Hello Friends,
    First of all I am very new user for oracle forums, So please ignore if I posted wrong place.
    We are using Oracle Database 10g and Oracle forms & Reports server 6i version.
    We just purchased oracle forms & reports (currently known as a Oracle Fusion middleware) license.  As per my knowledge latest version doesn't support Oracle 10g database.
    My question is can somebody give me Oracle Database 10g supported Forms & Reports version?
    We are planning to upgrade.
    Help would be really appreciated.
    Thanks & Regards.

    Thanks a lot for prompt response.
    I get my answer from your certification matrix.  I appreciate your response.
    Now second question arise that We are using currently Database version of 10.2.0.1.0.
    And in a certification matrix shows supported version Oracle 10.2.0.4+.
    Now I am bit confused that currently working database supports or not?
    Still i am trying to install on My window 2008 R2 with IIS 7.0.
    Let me check what happens.
    Again Thanks a lot to ccortez and PaulM  for your quick response and help.

  • Help needed in Master Detail Form - 2 level of details

    Hi,
    I have a form with 2 levels of Master Detail and a Find window
    The Datablocks are
    - Batch
    - Headers
    - Lines
    - Manual datablock for Find Wndow
    I have created relation between Bacthes and Headers with Batch Id
    I have created relation between Headers and Lines using HeaderId.
    The issue is that,
    If I search with '%' in Batch block, by default it will show results in 'Headers' and 'Lines' block.but if i navigate to the next record in batch block , only Headers block shows results but Lines block does not show result.
    If I search from Find window also, only Batch and Headers block shows results but Lines block will be empty.
    In the 'Batch' block if I search with specific data , the screen shows results in 'Headers' and 'Lines' block.
    Can you please help me solve it.
    I have written a PRE-QUERY on Batches block to set where clause from Find window.
    I have written a PRE-QUERY in Headers block to set where clause from Find window
    Thanks,
    Kamath.
    Thanks,
    Gowtam

    Hi,
    When you execute normal not by searching through ENTER_QUERY mode. Then data is coming in all blocks
    - Yes. Once I go to the Form if I search using '%' in batch block or search for a particlaur record i Batch block, the results shows up in Headers and Lines block.
    Ex: say there are 2 records in Batch block(A and B) and I search by %, by default i get 1 batth record (A) and corresponsding headers and lines
    now when i use down arrow key in the batch block, second record(B) will be showed in batch block. relevant Headers block records will be shown but Lines block does not get queried.
    Similarly if coem to the Form from search window then also, Batch and Header blcoks wil be shown but not Lines block
    PREQUERY at Batch Level_*
    V_WHERE := 'WHERE 1 = 1';
    IF :XXYH_ICAN_CALC_WB_FIND.PERIOD IS NOT NULL THEN
         V_WHERE :=      V_WHERE || ' AND PERIOD = '''||:XXYH_ICAN_CALC_WB_FIND.PERIOD||'''';
    END IF;               
    IF :XXYH_ICAN_CALC_WB_FIND.BATCH_ID IS NOT NULL THEN
         V_WHERE :=      V_WHERE || ' AND BATCH_ID = '''||:XXYH_ICAN_CALC_WB_FIND.BATCH_ID||'''';
    END IF;
    IF      V_WHERE IS NOT NULL THEN
         set_block_property('XXYH_ICAN_WB_BATCHES',DEFAULT_WHERE,V_WHERE );                          
    END IF;     
    PRE-QUERY at Header Level_
    IF :XXYH_ICAN_CALC_WB_FIND.BATCH_ID IS NOT NULL THEN
         V_WHERE :=      V_WHERE || ' AND BATCH_ID = '''||:XXYH_ICAN_CALC_WB_FIND.BATCH_ID||'''';
    END IF;
    IF      V_WHERE IS NOT NULL THEN
    set_block_property('XXYH_ICAN_WB_TRX_HEADERS',DEFAULT_WHERE,V_WHERE );
    END IF;     
    Thanks,
    kamath.

  • Need Help On Oracle form side for serial no genretion for every last record

    Hi Experts,
    currently i'm facing one problem like :
    i'm populating one receipt detail in Multi block , like when user key in one receipt number that time record should go in first record ,and if they key in second receipt number then record should go in second record . mean to say every time record go in last record ..but the problem is i want to generate Serial no correspondence to every last record ..
    here is my approch :
    cursor c1 is
    select * from table
    where cname =:blk_name.clm_name.
    Last record;
    next_record;
    for v1 in c1 loop
    processed record;
    next_record;
    end loop;
    last_record;
    go_block(___);
    first_record;
    :sno := system.cursor_record ;
    next_reocrd;
    end loop;
    first_record;
    And in block level i'm writing code for Serial number generation when user key in manual entry for receipt detail:
    :blk_name.coulumn_name := :system. cursor_record;
    so in this approach their is no problem it is working properly but the problem is that
    when user fetch one receipt automatically and then after he want to enter next record manually and he decided to go in detail block ,
    and once he reached in detail block that time block level trigger i firing .ans serial number 2 generated and then suddenly he came to know no i want to fetch next record automatically mean to say now user going again master block and fetching next receipt detail ,
    but the problem is when user leaving seccond sr no and going in master block and population next receipt detail that time cursor going on 3 record
    but logically have to replace the second Serial no and generate the again serial number 2 record population .
    so i'm appreciating is anyone if came accoross this type of issue please corrrect my code and send updated code ..plsssssssssssssssssssssssssssssss
    Thanks
    Abhishek
    [email protected]

    Friend, If you forward this question in forms forums , It will be better for you.
    Abishek Go this link and post there friend.
    Link:Forms

  • Issue for Amount From_amt and to_amt  Overlapping validation On oracle Form

    Hi Expert's
    i need Help on Oracle Form side .
    PROBLEM :-
    i want to put Overlapping check On Fr_amt - To_amt in Oracle Tabular form in Modify MODE after execute query.
    for example : If suppose User key in 1st line Amout range is 10 -100 ,the after 1st line if user key in second line like amount range is 50 -80 or 10-50 then i want to ristrict them and popup the message :- Sales Amount should not Overlap ...
    --Here is my  code  which works only current record
    declare
    fr_amt number(10);
    l_curr number;
    begin
    fr_amt := :blk_name.from_amt;
    l_curr := :system.cursor_record;
    first_record;
    loop
    exit when :system.last_record ='true'
    if :system.cursor_record <> l_curr then
    if fr_amt between :blk_name.from_amt and :bl_name.to_amount then
    message('Sales amount should not be overlap');
    raise form_trigger_failuier;
    go_reccord(l_curr);
    go_item('blk_name.from_amt');
    end if;
    next record;
    end if
    end loop;
    go_record(l_curr);
    first_record;
    end;
    Note : Can anybody correct my code if you come across same problem.
    Thanks
    Abhishek

    Hi Dora ,
    Note : My form is in modify mode and execute query ,mean to every time after open form record always on screen
    so i want to check overlap value in form level only ..
    can u please check my code which i wrote same like you but its not working :
    PROCEDURE TEST IS
    m_loop1_rec number:=1;
    m_loop2_rec number;
    m_exit number :=0;
    m_last_Rec number :=0;
    m_loop_rec NUMBER :=0;
    m_from_amt NUMBER;
    m_to_Amt NUMBER;
    Begin
    go_block('CG$CTRL01');
    last_record;
    m_last_rec := :system.cursor_Record;
    first_record;
    Loop
    go_record(m_loop1_rec);
    m_from_amt := :CG$CTRL01.FR_SLS_AMT ;
    m_to_Amt := :CG$CTRL01.TO_SLS_AMT ;
    m_loop2_rec := m_loop1_rec+1;
    Loop
    go_record(m_loop2_rec);
    If (m_from_Amt between :CG$CTRL01.FR_SLS_AMT and :CG$CTRL01.TO_SLS_AMT) or (m_to_Amt between :CG$CTRL01.FR_SLS_AMT and :CG$CTRL01.TO_SLS_AMT ) then
    m_exit := m_loop2_rec;
    end if;
    exit when m_exit > 0;-- or m_loop_rec >= m_last_Rec;
    m_loop2_rec := m_loop2_rec +1;
    End loop;
    exit when m_exit > 0 or m_loop1_rec = m_last_Rec -1;
    m_loop1_Rec := m_loop1_rec + 1;
    end loop;
    If m_exit > 0 then
    go_record(m_exit);
    message(' This range overlaps with previously entered ranges');
    RAISE form_trigger_failure;
    end if;
    --END IF;
    END ;
    Thanks
    Abhishek

  • Oracle Forms  (11.1.2.2.0) is supported on RED HAT 7

    Hi, all...
    I need know if Oracle Forms  (11.1.2.2.0) is supported on RED HAT 7, in certmatrix, the RED HAT 6  is supported, if I install in RED HAT 7, Oracle supports the product?
    Thank you.

    This forum is dedicated to support the Oracle Maven Repository and related Maven functionality and therefore, are unlikely to find answers to your Oracle Forms-related questions here.  However, if the certification matrix does not explicitly list RHEL 7, that means that it has not been certified to run on RHEL 7.

  • Oracle Oracle SOA Suite 10g (10.1.3.1.0) with Oracle Forms

    I need run an Oracle Forms 6i application on then web, after migration process that convert modules to Oracle Forms 10g modules, can i run my application on the Oracle Application Server latest version (Oracle Oracle SOA Suite 10g (10.1.3.1.0))?

    Forms and reports is not included in the 10.1.3 release - so you need to deploy Forms and reports on 10.1.2 and 10.1.3 on a different installation home. Next release of Forms will be 11
    Regards
    Grant

  • Download Oracle Forms 4.5

    Hi Friends,
    Need to Downloaf Oracle Forms 4.5 .Please give me Link.
    Regards,
    Arun

    Hi,
    I dont have the service of oracle support
    Where can i have the Oracle Form 4.5 to download??
    Its very urgent.. If someone have the software; please let me know asapIf you have no access to "My Oracle Support", then I believe it is not easy to get the software (as explained above).
    Regards,
    Hussein

  • Oracle Forms and Reports 10gR2 for Windows Server 2008 (64bit)

    Hi!
    I need to install Oracle Forms and Reports 10gR2 in a windows server 2008 64 bit machine. But I cannot find the installer of it. Is there a way to do it?
    Thanks...

    I need to install Oracle Forms and Reports 10gR2 in a windows server 2008 64 bit machine.Be aware that Oracle Forms and Reports 10gR2 (AS 10.1.2.0.2) is not certified for windows server 2008, as from Oracle Certification Matrices

  • How to connect oracle forms 6i with .odb database

    Hai,
    I need to connect oracle forms 6i with .odb database.
    What are the software i need to install.
    tell me the steps hoe to connect the oracle forms6i with .odb database

    I must say honestly that I got a little ticked when you have mentioned .odb is oracle lite.You should mention the complete name of the software whichever it may be as its not at all mandatory,everyone would know the acronym.
    Anyways,a quick search revealed this.
    Connect Forms 6i application to Oracle 10g Lite database on notebook
    I have not worked in Oracle lite at all.So I can't help much in it.But as per the thread,it wont be a straight connectivity.I would suggest you contact Support
    Aman....

  • Oracle Forms 11g / frmall.jar or frm90all.jar installation

    I need to import Oracle.Forms.properties.ID in one of my JDeveloper application.
    I am using JDeveloper 10.1.3.5. I need frmall.jar/frm90all.jar to make the above import statement work in JDeveloper if i am not mistaking.Basically i need to add either of the .jar in Jdeveloper.
    For that I came accross Oracle Forms 11g. For Oracle Forms 11g I have installed wlserver_10.3. and i have ofm_pfrd_win_11.1.1.3.0_32_disk1_1of1\Disk1 with Oracle Fusion Middleware forms 11g setup. When I click on that setup getting a Oracle screen asking me for Oracle Middleware Home and Oracle Home Directory. My Oracle 11g db is installed in C:\new\Oracle11g.
    And setting up ORACLE_HOME pointing t that directory. clicking on next on that screen is giving errors like Oracle Home location is not specified , The specified MiddleWare Home is not valid and Oracle.classicwsl.top could not be located etc.
    Can Anyone help me solving this issue so I can use Oracle Forms ID in JDeveloper.?

    Let me tell you what exactly i am doing :
    I have set the below environment variables:
    Path=C:\new\Oracle11g\bin;D:\app\veeralakshmi_v01\product\11.1.0\client_1\bin;C:\Program Files\ZeroC\Ice-3.4.1\bin;C:\Program Files\Java\jdk1.5.0_16\bin;
    ORACLE_HOME=C:\new\Oracle11g\BIN;
    I have C:\Oracle\Middleware in this path i have folders and sub folders like C:\Oracle\Middleware\jrockit_160_17_R28.0.0-679
    C:\Oracle\Middleware\oepe_11gR1PS2
    C:\Oracle\Middleware\wlserver_10.3
    C:\Oracle\Middleware\modules
    C:\Oracle\Middleware\coherence_3.5
    C:\Oracle\Middleware\jdk160_18
    and other folders and files.
    Now when i click on \\myshecsccm01\PackageSource\ofm_pfrd_win_11.1.1.3.0_32_disk1_1of1\Disk1\setup it takes me to Oracle 11g fm . On step 2 of 6
    for Oracle Middleware Home :C:\Oracle\Middleware
    and Oracle Home Directory: ORACLE_HOME
    i m giving.
    Here the Middleware folder contains the above folders/sub folders listings.
    and clicking on next I am getting the below errors:
    INST-07010: Validation of Oracle Home location failed. The location specified does not exist.
    Enter a valid existing directory
    INST-07100: The Oracle home provided does not contain Oracle Portal 11.1.1.2.0.
    In order to patch your existing version please provide an Oracle home that contains the product mentioned above. If you choose to continue, only the oracle_common directory and any components that both products have in common will be patched.
    INST-07293: Middleware home location specified does not have the required Oracle homes installed in it. The Oracle homes for the following components is not installed oracle.classicwls.top.
    Provide a different Middleware home location or install the required Oracle Products and try the install again
    So as per your suggestion My middleware folder is not empty.
    what should I do?
    And after doing all these installtions will i be able to get the frmall.jar file which i really required to use it for importing Oracle.forms.properties.ID?
    Edited by: 874822 on Jul 25, 2011 9:40 PM

  • Row  level security in dashboard

    Hello Experts,
    We have a scenario where in my dev team is designing dashboard based on SAP BW (bex query) via OLAP universe -> Webi reports ->  Xcelsius. We need to implement data security(row level) in the dashboard i.e : The user when he sees the dashboard, should see data w.r.t only to his context.
    What are the different possible ways to handle such a situation?
    Can we use Xcelsius publishing plug in?
    Cheers,
    AK

    Hi Ingo,
    Thanks for your reply.
    So Xcelusis publishing plug in will not solve my problem right?  & I need to have BI authorizations defined in SAP system?
    I am having tough time convincing my customer about this.
    Thanks
    Cheers,
    AK

Maybe you are looking for

  • Doubt in fbl1n transaction

    hi i have a doubt.... in fbl1n transaction, there are open items and cleared items. in it the cleared items  for certain document types such as invoice etc is not present in the open item table (bsik) however the cleared items for document types such

  • Internal-Profit Center Accounts Receivables/Payables

    Dear All, Within a single Company Code, Profit Center 1 is assigned to Plant 1 while Profit Center 2 is assigned to Plant 2. To track inter-divisional revenues and costs between Profit Center 1 & 2 during stock transfer, Transfer Pricing will be acti

  • Insert empty row

    Hi all, I am trying to insert a new emty row to my JTable. After the new row is inserted the user should fill in the values. I tried inserting dummy data; it works fine. However, when I try to insert an empty Vector I get the following exception. Any

  • Reg :send mail notification

    Hi all i have bit new scenario with me can any one please guide me how to come out of this issue . In the manpower requisition process on the portal, we need to make the following change: - Add a notification mail to Head HR whenever there is new req

  • Purchased mountain lion and receive 403 forbidden error when downloading to snow leopard 10.6.8

    can you help me? Thank you so much for suggestions