Plsql query to list cases that have failed to create listing records

i would like to create a query as follows
Give me all docket_num (whose batch_id's are =11051) from Import_case table
which do not have listing records on Listing_Table (either they don't exist at all
or if the do; the create_date in the Listing table is null OR cretae_date on Lsting table not = record_process_date on Import_case table.
-------- x ---------------
Import_case Table
==============
1. import_case_id number(38) primary key
2. batch_id number
3. record_processed_date date
4. docket_num varchar2(17)
case_master Table
=================
1. case_master_id number(38) primary key
2. docket_num varchar2(17)
Listing Table
==========
1. Listing_id number(38) primary key
2. case_master_id number(38)
3. created_date timestamp(6)
note: case_master table is a link between Import_case Table and Listing table
where docket_num on import_case table = docket_num on case_master
and case_master_id on case_master = case_master_id on Listing Table
Please reply at your earliest. Thanking you. Arvind Modi.

I have used following query, which gives me list of docket numbers on Import case Table; which don't have Listing records on Listing Table.
========================================================
select
ic.import_case_id as "IMP_CASE_ID",
ic.batch_id as "B_ID",
ic.docket_num as "DOCKET#",
ic.insert_timestamp as "INS_DT",
ic.record_processed_timestamp as "REC_PROCESS_DT",
ic.next_date as "NEXT DT"
from daoimp.import_case ic
-- ** insert Batch id ** >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
where ic.batch_id=11051
-- ** insert Batch id ** <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
minus
select
t.import_case_id as "IMP_CASE_ID",
t.batch_id as "B_ID",
t.docket_num as "DOCKET#",
t.insert_timestamp as "INS_DT",
t.record_processed_timestamp as "REC_PROCESS_DT",
t.next_date as "NEXT DT"
from daoimp.import_case t,
case_master cm,
listing l
-- ** insert Batch id ** >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
where t.batch_id=11051
-- ** insert Batch id ** <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
and
t.docket_num = cm.docket_num
and
cm.case_master_id = l.case_master_id
==================================================
The above query gives correct docket_numbers on Import_case table, but it also needs to include Docket numbers on Import_case Table
whose Listing records in Listing table contain NULL value in created_date
OR create_date on Listing table not equal record_process_date on Import_case Table.
---- x ----
Here is the actual request and above is my interpretation of it.
The goal of the task here is to create a tool. The tool can be run to check for missing listing records that were not created during the import process. When run, the tools returns a result set of records (docket_numbers) from the import case table that although processed on a particular date i.e., (record_process_date) do not have a matching listing record i.e., ( a listing record with a create_date equal to the record_process_date).
The ONLY VARIABLE PARAMETER NEEDED in this tool is the Batch ID for the import case table.
---- x ---
I am working on some other queries using inner join or outer join or not exists, but no success so far.
Please call me at my phone number or reply on my e-mail, if you like; so that I can clarify any issues.

Similar Messages

  • Query Help - PO's That Have Not Been Sent

    Is it possible to make a query for PO's that have not been sent? I tried a few things and couldn't get it to work.

    I think I understand what you mean let me try and answer that,
    Yes the order comes into SAP from our website then we have someone who then creates the PO based off the sales order. During that process the person who creates the PO then sends it via email in the messaging system to the vendor. My end game is to be able to run some type of query where we could see if that person has missed any.

  • Query to find Orders that have all LINES CLOSED status

    All,
    CAn someone send me SQL QUERY TO find all ORDERS that have all LINES in CLOSED status.
    we have an issue in an environment, i am trying to build a data fix script.
    regards
    girish

    Hi,
    Try this :
    Method-1 (backend):
    *==============*
    select a.order_number, b.line_number, b.flow_status_code
    from oe_order_headers_all a, oe_order_lines_all b
    where a.header_id = b.header_id
    and a.org_id= &Org_id     -- Operating_unit_id
    and a.org_id = b.org_id
    and b.flow_status_code='CLOSED'
    Method-2 (front end)
    *==============*
    Orders,Returns --> Order Organizor --> Find orders/Quotes form will open --> Close this serch page only.... --> Now you will able to see Order oganizor form --> Click on Lines Tab of this form (you will see this tab atleft bottom side of the page) --> Press F11.. --> In status Field give parameter as *"CLOSED"..*and press Ctrl + F11 ..... Take an export of the form output..
    Risk : this query may take hell lot of time to complete..as it is going to pull all closed line of a particular Org..
    Method-3
    *========*
    Check if you can find any oracle standard report for closed lines..
    Hope this will help..
    Regards :)
    S.P DASH

  • Report Query - Highlighting the cells that have a new value...

    hello all,
    I have to display a report in alv in web dynpro abap.
    In that I have to display two fields and both the fields are locations of different months.
    If the location is different than the previous one then i have to display cell with the new location in red color or highlighted.
    How can I achieve this.???
    Only for the changed ones it has to be highlighted or different color.....  I repeat.
    Happy Coding.

    IF want to display 2 locations , one  corresponding to location of previous month  and other corresponding to location of curr month  ,and if 2 are not same then current month location should be highlighted or displaying in red color . If this is what u want to do then try following .
    1]    In context where  ur data to be display exist  - In LIST NODE along with attribute  Location_previous_month , Location_current_month add attribute "COLOR" TYPE WDUI_TEXTVIEW_SEM_COL .
    2]   Find out the column which has to be marked with a different colour based on its content ( Location_ Current_ Month in your case )  . Assign the context attribute "COLOUR"  to the "Cell Design Fieldname" attribute of the respective column. This can be done while setting Column attributes for each of the ALV Columns
    IF find any problem in implementing above step then go thro' this link :
    http://wiki.sdn.sap.com/wiki/display/Snippets/ABAP%20Web%20Dynpro%20ALV%20-%20Change%20Cell%20Colour%20based%20on%20Content
    3] In the method to fill the data to  be displayed .
      CREATE INTERNAL TABLE OF TYPE List node
    FILLINTERNAL TABLE CREATED ABOVE  ( SAY ITAB  ) WITH VALUES FOR  LOCATION_ CURRENT_ MONTH  , LOCATION_PREVIOUS_MONTH .
    FILL COLOR VALUE FOR EACH ROW OF ITAB AS FOLLOW 
    LOOP AT  ITAB INTO LS_ITAB .
       IF LS_ITAB-LOCATION_CURRENT_MONTH  <> LS-ITAB- LOACTION_PREVIOUS_MONTH .
                     COLOR = 06 ." 06 IS COLOR CODE 
       ENDIF .
    4] BIND THIS INTERNAL TABLE WITH NODE LIST_NODE .
      DATA NODE_LS_NODE TYPE REF TO IF_WD_CONTEXT_NODE .
    NODE_LS_NODE = WD_CONTEXT->GET_CHILD_NODE( NAME = 'LIST_NODE' ) .
             NODE_LS_NODE->BIND_TABLE ( EXPORTING
                       NEW_TAB = ITAB ).
    Hope thid will help .
    THKS ,
    RUSHIKESH
    Edited by: RUSHI123 on Oct 31, 2009 8:59 PM

  • How can I get credited for 2 movies that have failed to download to my iPhone for my vacation (no computer, on vacation)?

    I tried to download 50/50 and hangover 2 on friday before leaving and 50/50 keeps getting errors and restarting an the hangover 2 moves at slug speed and keeps stopping, then restarting. Very annoying.

    If you are getting an 'invalid security code' message then is the address on your iTunes account exactly the same (format and spacing etc) as on your credit card bill : http://support.apple.com/kb/TS1646 ? If it is then you could try what it says at the bottom of that page :
    If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorizations have the correct information on file.
    And/or try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Express Lane, then iTunes > iTunes Store

  • Where can you buy cases that fit the 4S perfectly from?

    Most of us know by now that a lot of the iPhone 4 cases, bumpers inpituclar don't quite fit the 4S. Every time you look for a case they all say 4/4S when clearly there is a slight difference. The main one been the silence switch is slightly covered with many cases making it difficult to flick on and off. I know you can get the ones with a big gap on the side that don't cover any of the buttons which are fine, but dose anyone know any sites that are selling cases that have been adjusted to fit the 4S Perfect?
    Thanks in advance

    Any case that is advertised as fits iPhone 4/4S should work. I know for a fact Otterbox has redesigned their lineup of iPhone cases just for the 4S due to the movement of sensors (and the camera issue). Plus, Otterboxes are great

  • ISE Failed to Create Network Device Error

    I am trying to add new network device to a new out of the box ISE 3315 appliance under the Administration > Network Resources section.  I was able to do this the other day but now when I try I get an error that says "Failed to create network device.  System Error!
    Any ideas?  I tried a reboot, and Iam pretty certain I was able to do this a few days ago.  Its a lab device so only I have touch it.  Only other thing I can think to add is that I am running on an eval license until my regular licenses arrive.  From what I see I have 81 days left on my base and advance package eval licenses.

    Is there a certain amount of AAA client for that eval license?
    Thanks,
    Scott Fella
    Sent from my iPhone

  • Background stock determination fails to process Cogi records

    We are in a process to Reprocess the COGI records which have been Backflushed through
    DI u2013Backflush.
    But It is found that system fails to process the records. giving the message u201C0 goods movements have been successfully executedu201D.
    Stock is available for the material to process.
    As per my assumption if the stock is available for the material then system has to populate correct store location and valuation type as per the priorities available in stock determination group and should process the records in COGI.
    Regards,
    Pravin

    Dear Pravin,
    What is the message you are getting when you click on message u201C0 goods movements have been successfully executedu201D ?
    Please check
    Ishwar

  • Failed to create the CTI Route Point and corresponding Line on Cisco Unified CM.

    Dear All
               Kindly I got that message "Failed to create the CTI Route Point and corresponding Line on Cisco Unified CM." When I am trying to create Trigger on the UCCX for an Application,
    Bye the way I create Call Control Group and it gives me OK, and I create it from Subsystem>Cisco Unified CM Telephony>Call Control Group
    and Type CTI Ports: 4 | Inbound | Starting DN : 9000 "Nothing in my route pattern report have created CTI numbers"
    So Appreciate your help to avoid that errors raised when I am trying to create new prompts 
    Thanks 
    Ahmed Samir Yosuef 
    Integration Manager

    Let me know the deployment model and Node details

  • Have Adobe's Digital Edition, now I wanted per bookcase the books in a list printing, but printing can not activate. I cannot get it working to someway to print lists. Please tell me what the cause is that this fails or what should I change to get the lis

    have Adobe's Digital Edition, now I wanted per bookcase the books in a list printing, but printing can not activate. I cannot get it working to someway to print lists. Please tell me what the cause is that this fails or what should I change to get the lists be printed

    Hello, Edward and thank you for your note.
    I read through the thread you mentioned and it seems that people are having a lot of problems with the iCloud clients, so we're not alone, but the unique issue in my case is the failing email address vs. the working perfectly email address.
    After reading your message tonight, I tried my setup again with the preferred Apple ID (the one without the "." between the names), and for the first time ever, IT WORKS. Mail app configured the servers both send and receive as p01-smtp.mail.me.com and p01-imap.mail.me.com. For the first time, I'm able to send and receive into the Mail app, create mailboxes, move messages into and out of mailboxes, keep Sent messages, etc.
    I had a 50-minute support chat with MobileMe support via ExpressLane on Monday afternoon. They couldn't resolve my issue but passed me on to escalation. I was told to expect to get an email from advanced support by this afternoon, but none has arrived. However, so far tonight -- and I will check again tomorrow several times before declaring victory -- it looks like something has been fixed on the Apple end to make things work.
    I will report back after I do some additional testing tomorrow to make sure the fix is real and is solid...and before I let my friend, the new Mac user, know the good news.
    Regards,
    Mike

  • Does anyone know why Adobe CC is failing recognise or open files taken on a Nikon D4 that have been previously edited in CS5?

    I'm just migrating some of my image archive across from one hard drive to another.  During the process, I checked the files in Bridge to see that they'd copied correctly.  It was here that I noticed that for some reason, in every folder that I've moved, there are at least a few images that it fails to recognise.  These images are listed as having no camera model and no serial number.  Attempting to open them in Photoshop CC says that it is an unrecognised file.  Bridge struggles for a while, manages to eventually recognise a lot of them but always leaves a few that it cannot work with.
    Having looked at the original drive, the files are fine and open perfectly.  One thing that I've noticed is that some (not all) of the now corrupt files have been previously edited in CS5.  Removing the sidecar xmp file makes no difference.  Purging the cache makes no difference.  Repairing permissions makes no difference.
    I am running OSX Mavericks (10.9.3) and have the latest updated version of CC.
    Please help!
    Leon

    I'm using an Intel iMac, 3.6Ghz Intel core i5 with 12GB of 1333 Mhz DDR3 RAM.
    The iMac has OSX 10.9.3 installed with all of the latest updates.
    I'm using Adobe CC with all of the latest updates installed so Bridge is version 6.0.1.6.
    I have repaired permissions, rebooted the Mac, re-started Bridge and cleared the Bridge cache.
    The raw files are .nef files from a Nikon D4.  They are currently stored on an external Western Digital red hard drive and all of the images are accessible and load correctly.
    In moving the files across to a new Western Digital green drive, Bridge is failing to create some of the thumbnails.  After waiting for all of the thumbnails to be created, the remaining files are simply displayed with a nef files icon.  Any attempt to open them fails, with Adobe Photoshop CC displaying a message stating that the file is not in a format that Photoshop can understand.
    On investigating further, I have found that the images that are causing issues are ones that have been edited before and have sidecar .xmp files.  These .xmp files were created during editing when using Adobe Photoshop CS5.1.
    I hope that's everything that you requested.
    Leon

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • Billing Due List shows third party sales orders that have no SGR

    Hello,
    I've run into an issue where the billing due list (VF04) shows sales documents that have not gone through statistical goods receipt.  In our normal flow we create a sales order, which automatically creates a purchase requisition (PR).  We create a purchase order (PO) from the PR and when we generate a shipping notification (ASN) we also do a statistical goods receipt, which kicks off billing. 
    Normally items show up in the billing due list based on the billing type of the sales order item category.  In this case that indicator is B - relevant for order-related billing on the basis of the order quantity.  My understanding is that it should not show up in the billing due list until goods receipt, which is not happening for us.  We're seeing sales orders based on non-SGR'd PO's in the billing due list. 
    Also, in sales to billing copy control (vtfa) the billing quantity indicator is E - Goods receipt less invoiced quantity.
    Any ideas?  Have I provided enough info?  Thanks in advance!

    Kapil,
    Thank you very much!  However, a setting of 'F' only seems to show line items in the Billing Due List after I create a vendor invoice.  We are not using vendor invoices for our process and I want items to show up in the Billing Due List after the GRN.  Are you saying that you think items should show up in the Billing Due List after the GRN?  I know SAP doco kind hints to that, but I did try a setting of 'F' and it does not work; the items only show up after I create a vendor invoice.
    Any other info or guidance is greatly appreciated.
    Thanks,
    Mark

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1*
    Hello All,
    Bpel deployment fails for all processes that have revision other than *1.0*.
    We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy for every project which isn’t a (revision 1.0). We are getting the following error whenever we try to deploy a process with a revision other than 1.0:
    D:\TJ_AutoDeploy\BPEL_AutoDeploy_BETA\build.xml:65: BPEL archive doesnt exist in directory "{0}"
         at com.collaxa.cube.ant.taskdefs.DeployRemote.getJarFile(DeployRemote.java:254)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.deployProcess(DeployRemote.java:409)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.execute(DeployRemote.java:211)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    The structure of our automated deployment script is as follows:
    First, a batch script calls (Jdeveloper_BPEL_Prompt.bat) in order to set all necessary environment variables i.e. ORACLE_HOME, BPEL_HOME, ANT_HOME, etc for ant.
    Next, the script lists every .jar file within the directory to an .ini file called BPEL_List.ini. Furthermore, BPEL_DIR, ADMIN_USER and ADMIN_PSWD variables are set and initialized respectively to:
    -     “.” – point to directory where script is running from because all the BPEL processes are located here
    -     “oc4jadmin”
    -     “*********” (whatever the password for out environment is)
    We’ve developed a method to have the script prompt the user to select the target environment to deploy to. Once the user selects the appropriate environment, the script goes through the BPEL_List.ini files and a loop tells it that for every BPEL process listed:
    DO ant
    -Dprocess.name=%%b
    -Drev= !Rev!
    -Dpath=%BPEL_DIR%
    -Ddomain=default
    -Dadmin.user=%ADMIN_USER%
    -Dadmin.password=%ADMIN_PWD%
    -Dhttp.hostname=%HOST%
    -Dhttp.port=%PORT%
    -Dverbose=true
    (What’s happening is that the variables in the batch file are being passed on to the ANT script where *%%b* is the process name, !rev! is revision #, and so on…)
    The loop goes through each line in the BPEL_List.ini and tokenizes the BPEL process into 3 parts *(%%a, %%b, and %%c)* but we only extract 2 parts: *%%b* (process name) and *%%c* which becomes !Rev! (revision number).
    Example:
    Sample BPEL process:
    bpel_ThisIsProcess1_1.0.jar
    bpel_ThisIsProcess2_SOAv2.19.0.001B.jar
    After tokenizing:
    %%a     %%b     %%c
    bpel     ThisIsProcess1     1.0.jar
    bpel     ThisIsProcess2     SOAv2.19.0.001B.jar
    *!Rev!* and not *%%c* because *%%c* will return whatever the revision number is + the “.jar” file extension as illustrated above. So to circumvent this, we parse *%%c* so that the last 4 characters are stripped. Such is done like this:
    set RevN=%%c
    set RevN=!RevN:~0,-4!
    Hence, the usage of !Rev!.
    Below is a screenshot post of the ANT build.xml that goes with our script:
    <!--<?xml version="1.0"?>-->
    <!--BUILD.XML-->
    <project name="bpel.deploy" default="deployProcess" basedir=".">
         <!--
         This ant build file was generated by JDev to deploy the BPEL process.
         DONOT EDIT THIS JDEV GENERATED FILE. Any customization should be done
         in default target in user created pre-build.xml or post-build.xml
         -->
         <property name="process.dir" value="${basedir}" />
              <!-- Set BPEL process name -->
              <!--
              <xmlproperty file="${process.dir}/bpel/bpel.xml"/>
              <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}"/>
              <property name="rev" value="${BPELSuitcase(rev)}"/>
              -->
         <property environment="env"/>
         <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME -->
              <condition property="bpel.home" value="${env.BPEL_HOME}">
                   <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
              </condition>
         <!-- show that both bpel and oracle.home are located (TESTING purposes ONLY) -->
         <!-- <echo>HERE:${env.BPEL_HOME} ${env.ORACLE_HOME}</echo> -->
         <!-- END TESTING -->
         <!--If bpel.home is not yet using env.BPEL_HOME, set it for JDev -->
         <property name="oracle.home" value="${env.ORACLE_HOME}" />
         <property name="bpel.home" value="${oracle.home}/bpel" />
         <!--First override from build.properties in process.dir, if available-->
         <property file="${process.dir}/build.properties"/>
         <!--import custom ant tasks for the BPEL PM-->
         <import file="${bpel.home}/utilities/ant-orabpel.xml" />
         <!--Use deployment related default properties-->
         <property file="${bpel.home}/utilities/ant-orabpel.properties" />
         <!-- *************************************************************************************** -->
         <target name="deployProcess">
              <tstamp>
                   <format property="timestamp" pattern="MM-dd-yyyy HH:mm:ss" />
              </tstamp>
              <!-- WRITE TO LOG FILE #tjas -->
              <record name="build_verbose.log" loglevel="verbose" append="true" />
              <record name="build_debug.log" loglevel="debug" append="true" />
              <echo></echo>
              <echo>####################################################################</echo>
              <echo>BPEL_AutoDeploy initiated @ ${timestamp}</echo>
              <echo>--------------------------------------------------------------------</echo>
              <echo>Deploying ${process.name} on ${http.hostname} port ${http.port} </echo>
              <echo>--------------------------------------------------------------------</echo>
              <deployProcess
                   user="${admin.user}"
                   password="${admin.password}"
                   domain="${domain}"
                   process="${process.name}"
                   rev="${rev}"
                   dir="${process.dir}/${path}"
                   hostname="${http.hostname}"
                   httpport="${http.port}"
                   verbose="${verbose}" />
              <sleep seconds="30" />
              <!--<echo message="${process.name} deployment logged to ${build_verbose.log}"/>
              <echo message="${process.name} deployment logged to ${build.log}"/> -->
         </target>
         <!-- *************************************************************************************** -->
    </project>
    SUMMARY OF ISSUE AT HAND:
    ~ Every bpel process w/ 1.0 revision deploys with no problems
    ~ At first I would get an invalid character error most likely due to the “!” preceding “Rev”, but then I decided to set rev=”false” in the build.xml file. That didn’t work quite well. In another attempt, I decided to leave the –Drev= attribute within the batch script blank. That still led to 1.0s going through. My next thought was deploying something other than a 1.0, such as 1.2 or 2.0 and that’s when I realized that if it wasn’t a 1.0, it refused to go through.
    QUESTIONS:
    1.     IS THERE A WAY TO HAVE ANT LOOK INTO THE BPEL PROCESS AND PULL THE REVISION ID?
    2.     WHAT ARE WE DOING WRONG? ARE WE MISSING ANYTHING?
    3.     DID WE GO TOO FAR? MEANING, IS THERE A MUCH EASIER WAY WE OVERLOOKED/FORGOT/OR DON’T KNOW ABOUT THAT EXISTS?
    Edited by: 793292 on Jul 28, 2011 12:38 PM

    Only thing i can think of is instead of using a MAC ACL , u cud jus use the default class
    Policy Map Test
    class class-default
    police 56000 8000 exceed-action drop
    Class Map match-any class-default (id 0)
    Match any
    You would be saving a MAC-ACL ;-).

  • Camel Query : Calender list : Get Items agains given date that must be greater than and eqaul to start date and greater less than or equal to end date ?

    Camel Query : Calender list : Get Items agains given date that must be greater than and eqaul to start date and greater less than or equal to end date ?
    A Snap of Employee holiday list
    Case : Anne juul Sondergaar is on leave from 05-06-2014 to 07-06-2014
    I need a query to check wheither Anne juul is on leave at 06-06-2014 ????
    I am using this query that return nothing
    SPQueryquery =
    newSPQuery();
                                query.Query =
    @"<Where>
    <And>
    <And>
    <Leq>
    <FieldRef Name='Til' />
    <Value Type='DateTime'>"
    + WorkingStartDate.ToString("yyyy-MM-dd")
    + @"</Value>
    </Leq>
    <Geq>
    <FieldRef Name='Fra' />
    <Value Type='DateTime'>"
    + WorkingStartDate.ToString("yyyy-MM-dd")
    + @"</Value>
    </Geq>
    </And>
    <Eq>
    <FieldRef Name='Medarbejdere' />
    <Value Type='Lookup'>"
    + EmployeeName.Trim() +
    @"</Value>
    </Eq>
    </And>
    </Where>"
                                query.ViewFields =
    " <FieldRef Name='ID' />";
    Ahsan Ranjha

    Hello,
    Download CAML query builder from below location and use it to build your query:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f7b36ebc-6142-404a-8b04-9c87de272871/where-can-i-download-the-u2u-caml-query-builder-for-sharepoint-2010may-i-know-the-exact-link?forum=sharepointgeneralprevious
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • Mapping ArrayList in java to Actionscript Problem

    Hi Guys, This is wrecking my head. Had this issue for the last two days and cannot for the life of me understand why. I have a service defined as with the following method; public List getIngredients(){           List list = null;           List ingr

  • Ios8 photo stream?

    Where is photo stream and photo library in my iPhone  5 after ios8 upgrade?

  • Safari 6.0.5 update == no variable speed feature on html5 video player.

    Today I installed the Safari 6.0.5 update and now I don't have the html5 video player variable speed feature -- this allows one to play videos at speeds from 0.5x to 2.0x.  My previous Safari was 6.0.4 and the html5 video var speed feature worked wel

  • Page navigation vs url

    What is different between page navigation and URL ? For example ,there are 2 pages , page1.jsp and page2.jsp . User can go from page1 to page2 ? I can use page naigation method to return to page2 or I put a image Hyperlink on page1 , the user click t

  • Assign keys to activate action

    OK, this is hard because I dont know the terms used to discribe what Im doing in Flash. The discription is, I have several boxes that are the stage and the finish product needs to interact with the boxes via keyboard. Meaning, 5 boxs, if someone chos