Oracle EBS Web Form (Query Only)

Hi,
I need to create responsibility in which all forms or web form should be query only.
When i tried this with individual forms (QUEYR_ONLY="YES") its working but web form not working please guide how can i do with web forms.
Regards
Rehan

877432 wrote:
Hi,
I need to create responsibility in which all forms or web form should be query only.
When i tried this with individual forms (QUEYR_ONLY="YES") its working but web form not working please guide how can i do with web forms.
Regards
RehanAFAIK, it is not possible for Self-Service pages. You may log a SR to confirm the same with Oracle support.
Thanks,
Hussein

Similar Messages

  • Oracle 9i WEB-forms, with or without Headstart?

    We have some applications that are created with Designer 2.1.2 and Headstart 2.1.2 and we are about to migrate these to Oracle9i Web Forms and here are my questions:
    1) What are the advantages/disadvantages if we continue to use Headstart?
    2) What do we need to get Headstart working together with Oracle 9i Web Forms?
    3) Where do we order new software/license for "Headstart for 9i"?
    4) Are there any way we can get support on Headstart except the forum on OTN?
    5) Briefly explained, if we remove Headstart and replace it with own-developed code, what would our main tasks/problems be?
    6) Are there any functionality we cannot have if we remove Headstart from our applications?

    1) What are the advantages/disadvantages if we continue to use Headstart?
    The advantages would be more or less the same as for Headstart 2.1.2, except for the fact that you can make use of new features, and it runs on the web too! A 'disadvantage' would be that only web forms is supported out of the box (not client/server) and you need to set up an application server. Of course you need to migrate, which sometimes can be a difficult task. However, this depends on things like customizations on top of Headstart, typical client/server features that have been used and that cannot be migrated to web forms etc. A lot of this has been documented in the Headstart Migration Guide.
    2) What do we need to get Headstart working together with Oracle 9i Web Forms?
    We build Headstart against Designer 9i (+ Developer 9i that comes with it). At this point we still are working on Headstart for Designer 9i.
    3) Where do we order new software/license for "Headstart for 9i"?
    Contact your Oracle Consulting Manager, or call Oracle and ask for Mike Kruijsdijk.
    4) Are there any way we can get support on Headstart except the forum on OTN?
    You can hire consultancy from us or one of our partners.
    5) Briefly explained, if we remove Headstart and replace it with own-developed code, what would our main tasks/problems be?
    To mention some of them:
    - It probably would take man-years to build a template package with the same functionality
    - Headstart code at some points deals with Forms bugs, which you now have to deal with yourself
    - You have no support any more (upgrades) and need to do upgrades for new versions of Designer yourself. I've seen more than one customer that are years behind with upgrading to new versions of Designer, because of this.
    And many more. You really should investigate this thouroughly before you start on this. It would not surprise me if you come to the conclusion you might as well rebuild your applications completely.
    6) Are there any functionality we cannot have if we remove Headstart from our applications?
    You can have anything you like, as long as you build it yourself. But for practical reasons I suppose you will not have RuleFrame for example.
    As long as you don't start building new applications with it, the code practically is yours, so you might consider to do the upgrade of Headstart yourself. Of course support will be more difficult, but you still can hire consultancy.
    Jan Kettenis

  • INSTEAD of Trigger View for an Oracle EBS New form development

    Hello,
    I am developing a new EBS form based on a database view.
    This form is an EBS form will run in an 11.5.10.2 environment and developed using 6i.
    The form has one data block that is based on the view. The view is joined and based on following tables.
    Hz_Parties Hp,
    Hz_Cust_Accounts
    Hz_Cust_Acct_Sites_All
    Hz_Party_Sites
    Hz_Locations
    Ra_Salesreps_All
    Hz_Cust_Site_Uses_All
    Ar_Vat_Tax_All
    xx_custom_table t
    The view is inherently not updatable. Therefore, I am thinking to write an INSTEAD OF trigger on the view. The question. The form which is based on the view is require to update Oracle EBS tables mentioned above. As you know, there are APIs available to update above tables.
    Typically, you would write API in a program unit in the form and call from triggers. But here the form is based on the view. And to support DMLs on the view, I HAVE TO write INSTEAD of trigger(or that is the only way i know) so the question is:
    1. Do I write these APIs under INSTEAD of triggers?
    2. Or, I write these API in the form triggers and write DML referencing OLD and NEW values in INSTEAD of trigger? Where, these OLD and NEW values will refer on above tables.
    Please advise.
    And lastly, Do I have to write an INSTEAD of trigger? The USER_UPDATEABLE_COLUMNS view for this table shows no columns are updateable at the moment
    Thanks,
    A

    As you know, there are APIs available to update above tables.No, I don't B-) You'd better ask this in the eBusiness Suite form, as this is very EBS, not Forms, specific.
    In general, I would say that in this case you can use the EBS API's in the instead of trigger, not in the form.
    Or you can base the form on stored procedures, not directly on the view.

  • Automatically generate PDF from Oracle Applications web forms

    Hi,
    One can configure Oracle Applications to use a template (PDF, XSL, etc) for a certain web form, which basically allows the user to manually click a button on the form to Export it.
    On the other hand, how to do this automatically? In other words, is it possible to automatically export a form to PDF, and store it in DB, after a user inserts data?

    Hello Malas,
    if you don't need complex layouts, then try as_pdf_mini from Anton Scheffer
    http://technology.amis.nl/blog/8650/as_pdf-generating-a-pdf-document-with-some-plsql
    or
    http://reseau.erasme.org/PL-FPDF,1337?lang=fr
    Regards
    Marcus
    Edited by: Marwim on 14.03.2012 13:54

  • Formatting web form query fields to be passed to RFC query FM

    We have a web front end used to query the SAP sales database. The fields can accept multiple or range selections. We have written a couple of FM (RFC enabled function modules) to retrieve the data based on the queries.
    The question is, what is the best way to handle multiple selections in the FM interface. Currently we are using SELOPT structures to handle the select criteria.
    On the web front end, is it simple and feasable to format the form fields in the SELOPT structure or is there a better way.
    Below is the interface currently proposed for the FM:
    FUNCTION ZE_GET_SALES_ORDERS.
    ""Local interface:
    *" IMPORTING
    *" REFERENCE(I_ORDER_STATUS) TYPE CHAR01 OPTIONAL
    *" REFERENCE(I_INVOICE_AUTH_FLAG) TYPE CHAR01 OPTIONAL
    *" TABLES
    *" T_VALID_SOLDTO STRUCTURE SELOPT
    *" T_SOLDTO STRUCTURE SELOPT OPTIONAL
    *" T_CUSTOMER_PO STRUCTURE SELOPT OPTIONAL
    *" T_SALES_ORDER STRUCTURE SELOPT OPTIONAL
    *" T_DATE_RANGE STRUCTURE SELOPT OPTIONAL
    *" T_STARS_QUOTE STRUCTURE SELOPT OPTIONAL
    *" T_BILLTO STRUCTURE SELOPT OPTIONAL
    *" T_SHIPTO STRUCTURE SELOPT OPTIONAL
    *" T_INVOICE_NUM STRUCTURE SELOPT OPTIONAL
    *" T_ORDER_HEADERLIST STRUCTURE ZORDERVIS_ORDERHEADER OPTIONAL
    *" T_INVOICE_LIST STRUCTURE ZORDERVIS_INVOICE_LIST OPTIONAL
    *" T_ORDER_HEADERLIST_SUMM STRUCTURE
    *" ZORDERVIS_ORDERHEADER_SUMMARY OPTIONAL
    *" T_SELECT_PARAMS STRUCTURE W3QUERY OPTIONAL
    *" T_ORDER_CREATE STRUCTURE SELOPT OPTIONAL
    *" EXCEPTIONS
    *" VALIDATION_CUST_MISSING
    Any advice or direction would be greatly appreciated.
    Thanks in advance,
    Jennifer

    Basically you can't! The RFC iView is in my opinion a bad way to get data out of SAP. It is difficult to edit and passing paramaters is a nightmare.
    Any chance you can use Visual Composer instead, or maybe right a little portal component to do the same thing?
    Ps: if you're using SSO< the username that is used to start the RFC is the same username in the backend system, so maybe you can use sy-uname?
    Cheers

  • How to find LOV Query in Oracle Web Form

    Hi All,
    I am currently use oracle ebs R12.1.2 and i just want to know the query which is attached in lov for Oracle web pages kindly help.
    Regards

    Hi,
    There is a bug in OAF for this one, upon clicking on About this page on the newly opened LOV page it still shows the Parent Page Details.
    Workaround:
    1. After the LOV window opens, click on about this page [This will still show the parent page properties]
    2. Now click on backspace. [You should be back to the same LOV Page]
    3. Now click on About this page, again, - This should show you the correct details.
    Hope that helps!!!
    Regards,
    Yuvaraj

  • How to display LOV on web in ENTER-QUERY mode with form or block query only.

    Hello all
    How can I display lov automatic on the web in from enter-query
    mode in form or block query only mode.
    thankx

    If I understand correctly your explanation, your called form
    fails to activate the LOV in enter-query mode when it is deployed
    and test on the browser.
    So lets proceeed like this, to make it work in all environments,
    let us programetically activate the LOV.
    HOW?
    In the called form, write in the WHEN-NEW-ITEM-INSTANCE TRIGGER
    at block level (if have more than one LOV)
    IF :SYSTEM.MODE = 'ENTER-QUERY' THEN
    IF get_item_property(:system.cursor_item,lov_name) IN ('YOUR
    LOV1', 'LOV2' etc) THEN
    IF SHOW_LOV(get_item_property(:system.cursor_item,lov_name))
    THEN
    NULL;
    END IF;
    END IF;
    END IF;
    The above code maybe tweak to suite your need and condition.
    This way, we explicitly make the LOV appear in ENTER-QUERY mode
    whenever the user clicks on an item with an attached LOV.
    Hope this helps.
    Mohammed R.Qurashi

  • Integrating Oracle EBS with web services which use SAML authentication

    Hi,
    I have a requirement to invoke web service using PL/SQL from a Custom Form of EBS.
    The web Service is configured to use SAML as authentication mechanism.
    Coming to question!
    1) How do I make my EBS integrate with a SAML provider preferably (Oracle Identity Federation) ?
    2) How do i get the SAML token in my PL/SQL and pass it on to the web service?
    Regards
    Dharmvir

    user1983888 wrote:
    Hi ,
    We have Oracle EBS R12 (12.1.2) with Oracle Database 11gR2 (11.2.0.2) Database on Linux env.
    We want to implement Oracle Database Vault 11gR2. We are referring to Note: Integrating Oracle E-Business Suite Release 12 with Oracle Database Vault 11gR2 [ID 1091083.1].
    Do we need to install Oracle Database 11gR2 (s/w only) again on the Oracle Database Server or can we use the existing Oracle EBS Database 11gR2 Home which is already on 11.2?
    Regards,
    ThiruAs mentioned in the doc "If your E-Business Suite R12 is already integrated with 11gR2 database, you just need to enable Database Vault 11gR2 & register it with the database as per Task 3", so no installation of ORACLE_HOME is required and you just need to "Register Oracle Database Vault".
    Thanks,
    Hussein

  • Purchase Order form in Query only mode for some users

    Hi All,
    I want to make the Purchase Orders form as query only for a single user. I tried by giving 'Query_only=Yes' in the parameters section. I am getting 'FRM-04151: You cannot query records here' message more than 10 time. I know we get this message and this is applicable to all the users. But this message is comming more than 10 times.
    Is there anyway that I can restrict the Query only mode to a single user and please suggest about the message also.
    Thanks in Advance,
    Naresh

    Naresh,
    Since you want to achieve this for one user only, I would suggest you create a new function/menu/responsibility and assign this responsibility to the user.
    Note: 400380.1 - How To Create a QUERY-ONLY FORM
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=400380.1
    For the FRM error, please review the following document.
    Note: 116074.1 - ACCESS LEVEL - REVIEW ONLY - PO
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=116074.1
    Regards,
    Hussein

  • Oracle UCM 11G missing Web Form Editor

    Hello All,
    Oracle 10G UCM provided a WebForm Editor. After installation of newer version Oracle UCM 11G we found the feature is missing.
    Is there a substitute provided by Oracle in 11G version for the same?
    We need to provide functionality to end users where they could go and create some forms on their own. We were thinking to use Web-Form Editor for the same, but to our surprise we found the feature is missing.
    Can anyone suggest if we are missing something. Any help is appreciated.
    Thanks.

    Kent,
    You're correct that the general UCM docs don't include that detail, but the FormEditor component readme.txt does include that info. I didn't open the readme.doc, but the readme says that there's more info in there.
    From the component readme:
    <snip>
    Updated 2010-02-16
    The HTML editor UI is now only enabled if the configuration parameter HasWebFormEditorUI is set
    to true. See BUG 9218712
    </snip>
    Thanks,
    -ryan
    Ryan Sullivan | ECMconsultant
    http://www.ecmconsultant.net/
    Edited by: Ryan Sullivan on May 5, 2011 12:25 PM

  • How to find last_query for oracle web form?

    I know that for standard forn we can navigate diagnostics-system-last_query
    How can we do it for web forms?
    Diagnostics menu contain only 5 items
    - Show log
    - Set trace lavel
    - Show Log on screen
    - Show pool monitor
    Thanks

    Are you talking about the Block Menu - which allowed you to select the "Last Query" variable? If so, Forms 6i was the last version to support the Block Menu. If you need to see the last query executed, then you will have to explicitly capture the value of the :SYSTEM.LAST_QUERY variable. In other words, you will have to write code to assign the value of :SYSTEM.LAST_QUERY to a form variable.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Performance of WEB enabling ( Converting to Oracle 8i and Forms 6i)

    We are working on a project to convert a forms 4.5 and Oracle 7.3.4 application to a web based app ( Oracle 8i and Forms 6i). I want to know if there will be a performance hit (improve or decrease) as a result of this.
    Please help

    Satish - concerned about your statement that you have not used in in production but you think its not the good. If you can quantify your statement I will address is.
    As for Bobs points - check out http://forums.oracle.com/forums/message.jsp?id=836060
    This probably addresses Bobs concerns.
    If you are concerned - take a look at the testimonials. Go to otn.oracle.com/products/forms and click on the Testimonials link.
    Believe it or not we actually have people who are running FASTER on the Web - How can that be!!! - well the reason is that the have uses on slow links - when running client server there database access is across these links and since they had database intensive application they found it could be slow. On the web the data trasfer between the app server and the database was on a fast link and the client (who are still on the slow link) are getting only screen draw information which is alot less than the database traffic.
    Hope this helps
    Grant

  • Is it possible to test a text in a Oracle ebs form ...?plz help me..

    Hello,
    Is it possible to test a text in a Oracle ebs form ...?
    If possible then please tell me. It is working in Http /web based application.
    and table test is possible.. in Oracle ebs form?. Is it possible to capture a data from a text field and make comparison to check it. Though i want it all to be done in Oracle Ebs forms .
    Please help me..
    Regards
    Srinivas
    Edited by: 850579 on Apr 26, 2011 7:30 AM

    Hi,
    Thank u Alex i have tested with object test its working. I have got the result. can u tell me is it possible to insert table test in oracle ebs forms.
    can we insert iteration in the middle of the script.
    Regards
    Srinivas

  • I only see Web Forms & Email in Site Manager

    Why do I only see Web Forms & Email settings in the Site Manager for a WebMarketing Site? Where did everything else go? I'm trying to upload a pdf file and that function is gone in BC.

    Hi,
    If you have published the site via Muse, Please try this
    In Admin Panel, on your Right Hand side top, Mouse over on your name and Go to "My Details". You will see a check box "Enable online content editing". Check this box, Click save and logout. Login again, and goto site manager, you will see some more options like File manager
    Please let me know if you have any other query.

  • Create Web Form data records in Oracle CRM OnDemand

    Hello,
    One of our customers has a requirement to capture leads through a Web based HTML form. This captured data (First Name, Last Name, email Id) should then create a corresponding Opportunity record in Oracle's CRM OnDemand.
    From what I know, CRM OnDemand is a provider in terms of Web Services and not a Taker.
    Can somebody suggest on the best way to implement this?
    Thanks & Regards,
    Nitin Jain

    There are couples of web services provided by oracle for this purpose, by using that you can insert, update, query, delete records in CRM OnDemand.
    So you need to write the web service client program which takes data from your web form and create record in OnDemand. It can be in any language / platform (like java, c++, PHP etc)
    Check web services guide for more details.
    Dinesh

Maybe you are looking for