Querying all active forms

Hi,
I am trying to see if the following is possible within the Eloqua API, and if so, the best way to write this query.
I am currently doing the following:
select all  form submits for form X in the last Y time span
I would like to change the query to:
Select all form submits across ALL forms in the last Y time span
Just to be clear, I'm interested in the form submission data, not the name of the form objects.
Thanks in advance for the help.

Thanks Shay, but i still need some questions answered by anyone out there who has expereienced the same problem.
I used read-image-file in a 'When-image-pressed' trigger to insert the image. It did'nt work with message '47100 - Cant read image file ...'. I noticed other images in the example tables where all around 100k so i resized mine from 900k to 100k and tried again and it worked and committed but it still wouldnt return the image in a query. I then loaded the image through a procedure using DBMS_LOB and then queried the record in Forms and it worked. So
Why wouldnt the larger image work, i thought blobs were up to 4gb and
Why is Forms not commiting the image to the database
Anyone more answers or ideas?

Similar Messages

  • Query to get all active customers in oracle apps

    Hi All,
    I want to grab all active customers account number, customer name, email address, tel number. Could any one give me the query to get it.
    Thanks,
    Red.

    Hi,
    Please refer to this document, and see if it helps.
    Note: 68046.1 - SQL Scripts To Extract Information Relating To A Particular Customer
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=68046.1
    Regards,
    Hussein

  • Different LOVs in af:query and af:form for the same VO attribute

    Hi,
    We need to display different LOVs in af:query and af:form for the same attribute in VO.
    Is it possible to use LOV Switcher for this ?
    What condition can we use in LOV Switcher attribute to check if it is View Critearia row or VO row ?

    We have a VO attribute "User" which needs to be displayed as LOV in a Search Panel ( af:query component created using View Critearia ) and in a af:form.
    When this VO attribute is displayed in search panel, in LOV, we need to show all users.
    When this VO attribute "User" is displayed in a form for editing, in LOV, we need to show only active users.
    For this, we created two LOVs "ActiveUsersLOV" ( which shows only active users ) and "AllUsersLOV" ( which shows all users ) on VO attribute "User".
    LOVSwitcher attribute should return "ActiveUsersLOV" if the LOV is displayed in form and "AllUsersLOV" if the LOV is displayed in search panel.

  • 5200: Error executing query: The data form grid is invalid.

    Hi,
    I am getting this error " 5200: Error executing query: The data form grid is invalid. Verify that all members selected are in Essbase. Check log for details.
    com.hyperion.planning.HspException;hasPovDims=1;povXML=<?xml version="1.0"?><datasources><datasource name="Profit " dsid="228af2c3_129ca3dd85c_-77b1" allowEdit="1"><dim name="Period" dimIndex="1" dsName="Profit " keyDimName="Period" memberName="Apr" displayName="Period: Apr"/><dim name="Year" dimIndex="2" dsName="Profit " keyDimName="Year" memberName="FY10" displayName="Year: FY10"/><dim name="Entity" dimIndex="5" dsName="Profit " keyDimName="Entity" memberName="9999" displayName="Entity: 9999"/></datasource></datasources>"
    I have checked that both the systems essbase and planning are same. nothing's different. still i cannot find the exact reason why the report is not working.
    can any please help me.
    btw, i am using Hyperion Planning 9.3.1
    Thanks,
    BIMS

    Hi
    You probably deleted some members from outline that are used by report
    I would recommend you to open you report/grid via rep.client and try to find which elements are abcent
    Regards
    Alexander
    Edited by: Softperson on 19/8/2010 17:38

  • Using JavaScript to Print and Overwrite Active Form Files

    Hello all,
    I have zero knowledge of JavaScript and I am hoping someone can help me
    quickly solve an issue I am having with active forms. I tried using the flatten
    feature in the action wizard but it is not working. I also tried using
    "this.flattenPages()" but I can still edit the fields in my PDF file.
    What I am looking for is a JavaScript command that allows me to overwrite the existing
    PDF file using the PDF printer and overwrite the active form so it is
    finalized. Maybe there is an easier more efficient way to accomplish this? Any
    input or help would be much appreciated. I am using Adobe Acrobat XI
    Pro. Thanks.
    P.S. I realize I can manually selected the Adobe PDF printer and finalize my
    active form that way but I am looking for a one click solution.

    Have you seen these?
    A tutorial on how to flatten form fields:
    http://acrobatusers.com/tutorials/how-to-flatten-form-fields
    And a free "Flatten Page Content" tool:
    http://www.pdfscripting.com/public/Free_Acrobat_Automation_Tools.cfm

  • 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

  • All active favourites

    Hi, I need to write a program which will give me all Active favourites i.e. the output should be in the form of:
    <user_id>, <Total # of folders the user has under KM Favourites>.
    Can anyone please point me in the right direction? Thanks.

    Hi Sri
    The rough code will be
    ->The rid path to your favorites will /userhome/<userid>/favorites
    ->Obtain the RID object by passing the rid path
    RID rid = RID.getRID(<ridpath>)
    ->Obtain ResourceContext object by passing in the IUser object
    ResourceContext ctx = new ResourceContext(<IUser>)
    ->Get an instance of the ResourceFactory
    resFact = ResourceFactory.getInstance()
    ->Obtain to an IResource object to the RID path by passing in the RID object and ResouceContext
    IResource iRes = resFact.getResource(rid,ctx)
    ->obtain child resources using the method
    ICollection chldColl = iRes(ICollection);
    chldColl.listIterator()
    //recursivel call method to obtain child of child
    //passing each value from the iterator
    Regards
    Pran

  • For Update Query from ORACLE Forms

    Hi
    We are using Oracle Forms 10g running with 10g database 10.2.0.1.0. We happend to see a query which is getting generated in AWR report like Select rowid, all_columns from TableName for Update of C1 Nowait. But no such query is really written in forms and we are aware that, Any query prefixed with rowid is definitely executing from Forms. But how the ForUpdate and Nowait clause is appended to the query.
    We have checked the following properties in the database Block
    *1) Locking Mode is set to Automatic*
    *2) Update Changed Columns only is set to YES*
    *3) Query all records is set to No (Though this particular property may not be relevant to the issue)*
    What is the property or setting which might trigger such a query from ORACLE Forms with ForUpdate and Nowait clause.
    Any ideas/suggestions on why such behaviour. Please have a healthy discussion on this. Thanks in advance.

    you can't dynamically add a query to the data model in reports.
    You should look into the XML based customization of Oracle Reports. This will enable you to define a report dynamically by creating a definition in XML.
    Also another option is to have the report with a query in it and use lexical parameters in reports to pass the query definition or just the where part of it.
    Look at the reports online help for both of these solutions.

  • How to Inactive an active form

    Hi,
    *1. I have three form in screen..only last screen is active(normally)
    2. Assume i have three forms A1,A2,A3
    3.Now A3 is top and active form Form order is like A1->A2->A3
    4. Always i want put A3 in back like A3->A2 ->A1 or i want make A3 in active mode....
    5.All this forms are opened by codes.
    6.plz give me a reply regdg this*
    By Firos

    Hi firoz,
    You mean you want form 2 and 3 to be inactive, and user can only access form 1 ?
    You have to code this behaviour.
    You catch the form activate event. If the form uid is not form 1, then you set form 1 as an active form.
    using :
    If formuid <> "FORM1UID" then
    sbo_application.Forms.Item("FORM1UID").Select
    end if
    Edited by: Edy Simon on Jul 17, 2009 9:00 AM

  • How to check the source query of tabular form ....

    Hi All ,
    is there any way to change the source query of tabular form ......
    ya ... i could see it in the source but it is normal sql query ....
    where as to generate the addrow functionality the sql query must be
    Select empno , ADD_ITEM.TEXT(1,empno), ename ,ADD_ITEM.TEXT(2,ename)................
    then where can i find this query .?
    i could see that ADD button is calling ADDROW process and which inreturn calling ADD function ....
    can any one tell me , where to see the code for this ADD function ....
    as i checked it in db ..... it is not there at all.

    You can have a look here for the manual tabular forms:
    http://apex.oracle.com/pls/otn/f?p=31517:170
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • [OIM] - Form Complex Lookup Query on child form

    Hi all expert
    I have two form, which is parent-child relationship.
    I need to form a lookup query on child form's lookupfield to let user select the value but lookup query depens on the parent form on what user selecting..
    Example as:
    Parent form - Country Code - 100
    Child Form - Department Code - Lookup query will be = Select DepartmentCode From DeparmentLookup where country ="100"
    The "100" value depends on what user choice on CountryCode fro mparent form.
    Can i do something like this ?
    Thank in advanced
    John

    This happen for a property setting in the relation. try this..
    Select all your relation in the form under Relation nodes (data block >> relation)
    go to property or press F4 and set the following property to YES
    Prevent Masterless Operations = Yescompile and check..
    Hope this will works.. ;)
    Hamid
    Mark correct/helpful to help others to get right answer(s).*

  • Find the names of all open forms from inside a PJC

    Hi,
    is it possible to find the names of all open forms from inside a PJC (pluggable java bean)?
    I have tried the window bean but it retrieves currently open windows and reads the title of each window, but what i need is to find the form name not the window title.
    oracle forms version: 10g
    Thank you
    Edited by: user542352 on Jun 26, 2009 1:07 AM

    You don't need to know names of all open forms to close them.
    Try to do someting like this :
    When you need to close all forms, set some global variable flag and call exit_form
    in WHEN-WINDOW-ACTIVATED of each form check your global flag and if set, also exit_form.

  • Setting advanced query on Activity Stream

    Hi
    I'm using Publisher and Activity Stream taskflows together in a page and I need to differenciate when an uploaded document comes from publisher or not.
    By setting an advanced query at Activity Stream Content Presenter, for example: AE.ACTIVITY_TYPE NOT IN (\'create-document\') hide all the new documents uploaded by users on Content Server regardless of the location. That expression doesn't differentiate between documents uploaded to a personal folder or a public one.
    I need to hide on the activity stream all the new documents uploaded under /PersonalSpaces folder and subfolders in Content Server. So, documents uploaded using Publisher would appear because are stored under /WebCenterSpaces/my_folder_space/
    Documentation is quite poor.
    Please help.
    Regards

    So,
    For Case 1 : When Process B is getting executed in a separate Thread and Transaction , then when process A is getting rolled back why B is also getting rolled back as it's in different thread althgether.
    3) For Case2 : Please clear my following understanding :
    When we set the value to 'sync' for process B, then B will act like a synchronous process(ideally it Async), and will get committed after the it's execution. Because of this, even if A is getting rolled back, B will not get rolledback because it is already committed. For case 1:
    By calling process B, an invocation message is being insert into the dehydration store. That causes process B to be created as a new thread/transaction.
    When you perform rollback->the new transaction that was made following the new thread, is being rollback among the rest of your process transaction(the rollback causes the message not to be save and for that you can't see new instance).
    For case 2:
    By calling process B, only a new transaction is being creating, and invocation message is not being insert into the dehydration store.
    So actualy, you have 1 thread and 2 transactions, and you are telling your process(thread) to rollback only the current transaction and not the new one (process A not owns the new transaction).
    2) You mentioned if we are calling Process B with No Rollback. How to call B with No Rollback? Is there any property like that? It was just an example. Forget about it.
    I hope it answered you questions...
    Arik

  • List all active login sessions IDs

    Hi,
    I want to enumrate all active login sessions for session IDs. I found some api SessionGetInfo which gives current user
    session ID. and getutmpxent which gives process id of (as i understand id of process creating session) all sessions. I
    want to map pid to session id. or is there any other way to list the session IDs of all logged in users.
    Thanks.

    Hi Nagendra,
    You can get the informamtion through one more option also. In case of function module you need to execute the module again and again for each user or may be need to write a report. I would like to suggest you an alternative. That is making use of queries.
    1. Go to transaction SQVI.
    2. In the input field Quick View give the any name for query for example Z_EMAIL_ADD.
    3. Choose create option. In the resulting pop up give description in Title field. In data source choose TABLE JOIN. Select Basis mode.
    4. In the next screen choose INSERT TABLE pushbutton and in the pop up give USR21. Then again choose INSERT TABLE pushbutton and this time give ADR6.
    5. Now go back using back arrow or F3.
    6. Now in the new screen you will be under the tab strip List fld select.. From that entries under available filed (on right hand side) select User name in user master record and the first entry for Internet mail (SMTP) address. Now using single arrow pushbutton poitning towards left move these fields to tabstrip List fld select.
    7. Now go to tabstrip selection filed. As done in step 6 move User name in user master record under it.
    8. Save the changes and go back. A pop up will come asking you to save quick view Z_EMAIL_ADD. Choose yes.
    9. Now execute the query. In the input field you can give one user or multiple users at a given time.
    Regards,
    Rajesh

  • Query a second form from another form by passing value

    Hi,
    I have two forms. I am trying to query a second form from another form. I have managed to display the query results in the second form by passing value from the first form. I did it according to the details in the Oracle 9ias Portal Technical FAQ html file.
    It works fine when there is already a row in the first form. When I insert a new row in the first form and query the second form which has key from the first form, there is no matching rows displayed which is correct but detail action mode is 'NONE' for all detail rows.
    According to the FAQ, it says the following:-
    "When the called form is started, it executes a query with the supplied condition (in this case, "where deptno=10"). If the query is successful, the matching rows are displayed in Update mode. If no matching rows are found, the form starts in Insert mode."
    It does not happen for me. I get NONE mode for no matching rows. Is this a BUG ? I am working on Portal version 3.0.9.8.0.
    Is there something wrong in the code I wrote ? I would like to have all the detail mode as Insert.
    Here is the following code I wrote on SUCCESSFUL SUBMISSION OF THE FORM.
    declare
    my_url varchar2(1000);
    v_deptno number;
    begin
    v_deptno := p_session.get_value_as_NUMBER(p_block_name => 'DEFAULT', p_attribute_name => 'A_DEPTNO');
    my_url := 'PORTAL30.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=1268491962&p_arg_names=_show_header&p_arg_values=YES&p_arg_names=deptno&p_arg_values='||LTRIM(TO_CHAR(v_deptno))||'&p_arg_names=_deptno_cond&p_arg_values=%3D';
    go(my_url);
    end;

    Hi,
    The behaviour is OK as in the MD form there are two states "Save" and "Query and Save" and when the form is in "Query and Save" mode that means you can use it for both Query aswell as Save which is decided by your "Master action" if that is None it is used for Query , for Insert you will have to select Insert ,this is the Insert Mode behavior.
    If you open a new MD form that is also in the "Query and Save" the same behaviour will be there.
    Hope this answers your query.
    rahul

Maybe you are looking for

  • How to extend display?

    I have an old display "LG Flatiron L222WS" and a MBK Pro Retina. The display have only vga output and i have a converter from vga to hdmi. Whenever i connect the hdmi to the computer, i can extend or mirror display. The problem is that no picture is

  • Control key locks

    i have an hp g-71167dx notebook.  my control key show as being locked and i have to turn off my computer to clear it.  pc is only 6 months old.  are there any solutions ?

  • Roles and authorizations in BI content

    Hi experts, I'm trying to define a very simple scheme of roles and authorizations for my queries. So, i'm trying to limit the acess by infocube and DSO, but I'm missing the authorizations objects for Cube and DSO. I know that authorization object for

  • Displaying a Region on Column 2

    Hello All, I have a Jquery tab on one pf my pages. Under one tab, I need to add 2 sub regions, Region1's display point is Column1 & Region2's display point is Column2 How can I achieve this positioning ? I want the regions to be displayed beside each

  • Price on condition record no issue

    Hi, I am working on report to print the PR00 value of material. Report is working fine but the material whose price had chaged is not picking write price .( picking first time entered price) Tables :A515 and konp . I am picking the price on basis of