Is it possible to run a query of IdocScript with GET_SEARCH_RESULTS of Service?

Hi all

I need to run the query with GET_SEARCH_RESULTS service below.

xSubmissionDate "ArchivePackage" < AND > dDocType < match > < 8 October 13 11:03 ' < AND > xArchiveDocName < EQUALS > dDocName


Part of this query works fine, but when the part in BOLD is also used I get an error, reason be there there is nothing like < EQUALS > when you use the Query Builder


Instead it is possible to run the idocscript with any service below?


<$ (dDocType as "ArchivePackage") & xSubmissionDate < dateCurrent(-365) & (XArchiveDocname == dDocname) $>

I tried with GET_SEARCH_RESULTS, but received erroneous results and no mistake.

Is this even possible or should I just change my approach?

Concerning

What about the GET_DATARESULTSET service?

required params:

dataSource = Documents

resultName =

whereClause = (revisions.dDocType = 'ArchivePackage' AND DocMeta.xArchiveDocName = Revisions.dDocName and...) / / pure SQL where clause

Tags: Fusion Middleware

Similar Questions

  • Is it possible to run the query created in Discoverer Plus (v10) from PL/SQL

    Hello

    As a subject - is it possible to create a PL/SQL code (or any other), who runs a query saved in Discoverer?

    Concerning
    Piotr

    Hello

    This table is not part of the discoverer EUL and is probably maintained by a trigger of discoverer. The trigger can save the SQL used in the workbook in a custom table when the workbook is run. This is why the table will contain the last SQL for all workbooks that have been executed. It may be what you want but does not contain the last SQL for all workbooks.

    Rod West

  • Run the query in accordance with condition

    Oracle 10g version

    Hi gurus

    I have the following data

    Examples of data

    SELECT DeptNo FROM scott.emp

    UNION ALL

    SELECT EmpNo FROM scott.emp

    ;

    Now what I want is I want to execute conditionally of those surveyed, something like below:

    If list_item = 'I', then run below

    SELECT DeptNo FROM scott.emp

    otherwise run below

    SELECT EmpNo FROM scott.emp

    End if;

    ------

    I want to keep the union all and run the query under the terms...

    Set a long tank (max 4000)

    L_WHERE_CLAUSE

    Use it in your application as a substitution variable by prefixing with &

    WHERE & L_WHERE_CLAUSE

    Assign the value into a pl/sql block (trigger, formula column)

    IF condition THEN

    L_WHERE_CLAUSE: = '1 = 1';

    ON THE OTHER

    L_WHERE_CLAUSE: = '1 = 2';

    END IF;

    Now, among the options that have been suggested to you and the information you provided, I think the solution of Solomon should be easier. Just refer to the column list_item has a link within your query variable (assuming that this and the query where list_item belongs are related, for example, there is a join between them)

    SELECT DeptNo FROM scott.emp, t

    WHERE: list_item = 'l '.

    UNION ALL

    SELECT EmpNo FROM scott.emp, t

    WHERE nvl(:list_item,'x')! = « l »

  • Is it possible to get the query Details of the old run from oracle?

    Is it possible to get the query Details of the old run from oracle? I mean, I wanted to know the details of a request executed work, I know the time taken by the query to run? Is it possible to know?

    Yes, it is possible to obtain, provided you use enterprise edition version + additional license *. A few tables to get information of are:

    dba_hist_sqltext

    dba_hist_sqlstat

    dba_hist_snapshot

    dba_hist_sql_plan

    dba_hist_active_sess_history

  • How do I run the query by quarter

    Hi all,
    I would like to run this query based on the users selection from the interface. For example if the user select year 2011 and quarter 1, then   this code will be like this                   
                            AND (B.DATELET >= TO_DATE ('2011-01-01', 'YYYY-MM-DD')
                            AND B.DATELET <= TO_DATE ('2011-03-31', 'YYYY-MM-DD'))
    When the user select year 2011 and quarter 2 then this code will be like this
                            AND (B.DATELET >= TO_DATE ('2011-04-01', 'YYYY-MM-DD')
                            AND B.DATELET <= TO_DATE ('2011-06-30', 'YYYY-MM-DD'))
    Will this possible to change my code here or I need to code this in PL/SQL?  any clue will be appreciated.
    
    SELECT DISTINCT
             COUNT (P.CPROJNUM) ProjectAwarded,
             SUM (MIN (c.calcbtot)) AwardedDollarAmount,
             SUM (COUNT (C.VENDOR)) NumberOfBidders,
             (SUM (COUNT (C.VENDOR)) / (COUNT (P.CPROJNUM))) AverageNumberOfBidder
        FROM BIDDERS C,
             BIDLET B,
             LETPROP L,
             PROPOSAL P
       WHERE     C.LETTING = B.LETTING
             AND P.CONTID = L.LCONTID
             AND C.LETTING = L.LETTING
             AND C.CALL = L.CALL
             AND l.lcontid IN
                    (SELECT lcontid
                       FROM letprop c, PROPOSAL d
                      WHERE     datestat IS NOT NULL
                            AND UPPER (letstat) <> 'R'
                            AND UPPER (letstat) <> 'B'
                            AND TRIM (UPPER (TIMELET)) = TRIM ('9:30 A.M.')
                            AND c.LCONTID = d.CONTID)
                            AND (B.DATELET >= TO_DATE ('2011-04-01', 'YYYY-MM-DD')
                            AND B.DATELET <= TO_DATE ('2011-06-30', 'YYYY-MM-DD'))              
            
    GROUP BY l.call

    Hello

    If: p_year and: p_quarter are variables NUMBERS, container of the year and the quarter you want, then you can do something like this:

    WITH     got_report_start_date     AS
    (
         SELECT  ADD_MONTHS ( DATE '2000-01-01'
                      , (12 * (:p_year - 2000)) +
                        ( 3 * (:p_quarter - 1))
                      )   AS report_start_date
         FROM    dual
    )                                        -- Everything above is NEW
    SELECT DISTINCT
             COUNT (P.CPROJNUM) ProjectAwarded,
             SUM (MIN (c.calcbtot)) AwardedDollarAmount,
             SUM (COUNT (C.VENDOR)) NumberOfBidders,
             (SUM (COUNT (C.VENDOR)) / (COUNT (P.CPROJNUM))) AverageNumberOfBidder
        FROM BIDDERS C,
             BIDLET B,
             LETPROP L,
             PROPOSAL P
       ,      got_report_start_date     r                    -- NEW
       WHERE     C.LETTING = B.LETTING
             AND P.CONTID = L.LCONTID
             AND C.LETTING = L.LETTING
             AND C.CALL = L.CALL
             AND l.lcontid IN
                    (SELECT lcontid
                       FROM letprop c, PROPOSAL d
                      WHERE     datestat IS NOT NULL
                            AND UPPER (letstat) <> 'R'
                            AND UPPER (letstat)  'B'
                            AND TRIM (UPPER (TIMELET)) = TRIM ('9:30 A.M.')
                            AND c.LCONTID = d.CONTID
              )
             AND B.DATELET >= r.report_start_date               -- CHANGED
             AND B.DATELET <  ADD_MONTHS (r.report_start_date, 3)     -- CHANGED
    

    Look at the comments that say NEW or MODIFIED; the rest is just what you've posted.

    Note that you must use < (not=""> <=) when="" testing="" the="" end="" of="" the="" date="" range,="" and="" the="" date="" after="" the=""> < sign="" is="" the="" first="" date=""> NOT be included in the results.

  • Run the query according to the transaction.

    Hi all

    I am able to run the query, but I want to run query award date.
    I created the timer for shape and I want when user update the record for the same registration date must run, do not run the query from the previous day.
    is this possible?
    can someone help me?


    Sarah

    See other thread

  • Is it possible to run files apk on my phone SE

    Is it possible to run on my SE apk files?  Thank you

    # An apk file is a package Android file, and which would not be in the iOS. You couldn't install Android on an iOS device, as it would not be in the App Store, which is the only place where ever you get things to install on the iPhone.

  • Is it possible to run Safari7 on 10.7.5 OSX? I can't upgrade the software of other system on my Mac.

    Is it possible to run Safari7 on 10.7.5 OSX? I can't upgrade the software of other system on my Mac.

    N °

    (143905)

  • Is it possible to run Windows 7 on Tecra S1 PT831E

    Hello

    is it possible to run Windows 7 on my Tecra S1 PT831E 126PQ?

    I've updated the BIOS (last?) version 2.50 (it should be suitable also for Windows 7). With this done BIOS is fully compliant with ACPI?

    Checking with Windows 7 Upgrade Advisor should not be a problem, in fact.

    Thanks for any help.

    Well cordially

    ThomasMuentzer

    Hello

    Of course, you can install Windows 7 on your good old classic.
    But the fact is that there is no official driver Win 7 on the page of the European driver Toshiba, it seems that you have to collect the pilots in his own hand.

    But in general this should not be a problem of submission.
    WLAN, LAN drivers can be downloaded from the pages of chip manufacturer driver touchpad can be used in other models of computers, laptops and Toshiba as VAP (value added package) Flash cards tools or similar

  • HP EliteBook 8570w: is it possible to run two monitors on a 8570w without a docking station.

    Is it possible to run two monitors on a 8570w without a docking station. Connect a monitor to the VGA port and the other to display port.

    I was able to get this to work. My 8570w has an Amd over-pants 7700, don't know if that matters. One is connected VGA other Displayport. The port monitor must have a custom resolution defined in the over-pants Control Panel. except that it works perfectly. More laptop screen no. Docking Station 2 24 inch Dell.

    And thanks for the quick reply Provost.

  • Is it possible to run virtual machines on Satellite A500-1DN?

    I want to know its possible to run a virtual machine on my laptop?

    (Windows VM cannot start the computer does not support hardware virtualization ed)

    Help please

    Even if the processor supports virtualization, it can be disabled in the BIOS by default and must be activated before use.
    Then please enter advanced BIOS settings and check if the virtualization technology is enabled or disabled.

  • Is it possible to run splitview with two-mode applications landscape on iPad pro in portrait mode?

    Hello

    Is it possible to run splitview so that both applications are in landscape mode, while now the iPad in portrait mode?

    So basically, instead of apps side by side, it would be top apps down.

    I use goodreader to watch a video while surfing the web on safari. But when he was knocked down by side there are a lot of realestate lost on the side of the video.

    see you soon

    Unfortunately not. If I was a Pro too much it would be my favorite. Try using the comments link to suggest to Apple.

    http://www.Apple.com/feedback/

  • Is it possible to run DiagOnCAN with the NI-CAN driver only (without car Diag command Set)

    Hello world

    Is it possible to run DiagOnCan without using Diag command set auto - only with the NI-CAN driver (hardware I use is low tolerant speed - USB8472 and NOR-XNET)?

    G. Petko

    no problem to do with your hardware and NI-CAN frame API.

    However, you must implement the Diag and Services Transport layer on your own, which is quite a big job.

    I recommend you spend the money for automotive diagnostic command set that supports

    • NI CAN (PXI, PCI, PCMCIA, USB)

    • NOR-XNET

    • cRIO/985 x target (Pharlap and VxWorks) #.

    which means that if you plan to transfer your application in the future to different hardware target or the real-time target, that you don't need to change your app at all.

  • There is a possibility to run Labview projects or to set them off from a batch file or if the exist and the ability to control labview or run it from an external application?

    Hi, I m a bit new in LabVIEW and I'd like to ask a few questions...

    -There is a possibility to run Labview projects or to set them off from a batch file or if the exist and the ability to control labview or run it from an external application?

    -One API PI or raspberry beaglebone exists for LabVIEW?

    -Power supply Wich can recommend you control with LabVIEW? (some chip solution witn 0 - 30v / 0 - 3A DC)

    Thank you very much for your advice!

    Best regards

    Elena

    Elena,

    I know raspberry, so no comment on that.

    For the rest:

    -Do you want to create tools for developers? If so, we must look in the API of project VI and VI server. If this isn't the case, please compile your application LV as executable and call this one using a batch file.

    -LV prefer specific supplies. LV is a programming language. There are several power supply providers (including OR) which provide directly the LV API for their power supplies. So, essentially, the approach is:

    1. choose food that serves your needs.

    2. check if the power supply has a standard interface for programming (such as Ethernet, GPIB, or if the power supply is PXI, is already providing a programming interface!)

    3. check if the LV API (so-called "instrument driver") is available for the device. In the case of a PXI system, get you a device driver (for example NI DCPower).

    4. check if the LV samples are available (for example in the Finder for example LV once you have installed the driver).

    Norbert

  • Is it possible to run an executable on a Windows Phone 8 Labview?

    If I create an executable of Labview, it will be possible to run it on a Windows 8 phone?

    No, as Mike has already said.

    The reason is that an executable of LabVIEW contains a binary code that is compiled for the x 86 architecture CPU, and access to the Win32 API. Windows Phone general works on the ARM or RISC processors and provided only a subset of Win32 very limited in the past. With the new Windows RT technology that he actually moved even further the Win32 compatibility as it is all architecture is based on .net technology.

    So even if you happen to get a processor Intel Atom based device Windows Phone that would be compatible x 86 it couldn't work, because a LabVIEW executable is an executable format portable Win32 is not a picture of .net bytecode.

Maybe you are looking for

  • Application of SkypeSetup.exe not a Win32 valid?

    Attempt to run that SkypeSetup.exe.on a PC with Windows 7 fails with the message that SkypeSetup.exe is not a valid Win32 application. What should I do?

  • No games will now install

    I just won 7 & can't run any games that works fine under xp, I had. Ive tried reinstalling the but it says that my graphics card is not suitable for the instalation. Ive looked & run schedule my my laptop manufacturer MSI but it tells me there is no

  • Changing the name of a printer in my local network

    I just bought the Officejet 6500 has more. Time to install it on my network of Mac OS Lion I renamed it library printer to differentiate it from our bonus room printer. When printing any of our Macs it appears correctly in the 'library printer' but d

  • portchannle in UCS any idea on the solution

    We create a Portchannel in the UCS but it appears in the switch and the spectacle of the UCS has failed Since no f0727 member of operatioma with this error? ACK = "no". cause = 'membership-down. " changeSet ="" Code = "F0727". created = "" 2012-01 -

  • Uninstall a program not listed is not in uninstall Panel

    Drumcore software installed.  Need to uninstall it, but it does not appear in the section uninstalling the Panel control in Win7.  States of information online could be due to incompatible software with Win7.  The software maker says it is compatible