How to use minus ?

Hi Everyone,
My issue,
1)select count(1) from ((select * from udm_po_headers_r) --9783387
minus
((select * from nzprod..udm_po_headers_r po_headers
where po_headers.source_id = 1 and po_headers.org_id in (84,316,356,414,874,894,1074,1214,1234,1314,1754,1774,1934,2594,2734,2994,3014,3374,3996,4356,4416,4516,4576,715))
union all
(select * from nzprod..udm_po_headers_r po_headers--9783054
where po_headers.source_id = 3 and po_headers.org_id =715)))c
2)select * from udm_po_headers_r it has 9783387 records
3)select * from nzprod..udm_po_headers_r po_headers
where po_headers.source_id = 1 and po_headers.org_id in (84,316,356,414,874,894,1074,1214,1234,1314,1754,1774,1934,2594,2734,2994,3014,3374,3996,4356,4416,4516,4576,715))
union all
(select * from nzprod..udm_po_headers_r po_headers
where po_headers.source_id = 3 and po_headers.org_id =715 it has --9783054 records
if we minus both the record count, the difference is 333. Now, i want to retrieve that 333 records using minus function.
if i use the step 1: am getting record count has 9783387 instead of 333.
Can anyone please help me in these issue.it might be a grateful.
Regards,
Madhusudhanan

Hi, Madhusudhanan,
Rather than doing UNION and/or MINUS operations involving the same table, it will be more efficient just to do a simple query, with a WHERE clause that gets just the rows you want.
It's very hard to tell without some sample data, but I think what you want is:
SELECT     *
FROM     udm_po_headers
WHERE     (    source_id     != 1
     OR   ordg_id     NOT IN (   84,  316,  356,  414,  874
                      ,  894, 1074, 1214, 1234, 1314
                      , 1754, 1774, 1934, 2594, 2734
                      , 2994, 3014, 3374, 3996, 4356
                      , 4416, 4516, 4576,  715
AND     (    source_id != 3
     OR   org_id    != 715
;I hope this answers your question.
If not, post a little sample data (considerably less than 9783387; maybe 10 rows). Post CREATE TABLE and INSERT statements for the sample data, and the results you want from that data.

Similar Messages

  • How to use minus in a interface ?

    Hi,
    we use ODI in an application ,and want use minus in a interface.
    Can anyone please help me with this.
    viking
    Thanks in advance for your feedback.

    I find it.
    The simplest way of setting up an SQL request using the MINUS operator is to create a view containing the MINUS operator.
    The created view may then be reverse-engineered as an ODI Model Datastore and may be used in Integration Interfaces as a Source.
    If the goal is to generate the difference between a Source table and a Target table, then, the IKM Incremental Updates Knowledge Modules implement this already. That is to say :
    1. determine the differences between Source and Target Datastores
    2. apply the changes to the Target
    Note that the 11g release of ODI will allow the use of UNION/MINUS/etc. operators natively in Integration Interfaces.
    Infact, I am very disappoint to ODI.

  • How to  use  Stylesheet (XSL) with JSPX ?

    Hi!
    How to use XSL stylesheets with JSPX pages?
    I want use an xsl transformations with jspx pages, I tried using the following syntax, but it didn't work....
    <?xml version='1.0' stylesheet type="text/xsl" href="mathml.xsl" encoding='UTF-8'?>
    <tr:html xmlns="http://www.w3.org/1999/xhtml">
    what is the best way to use xslt with jspx pages?
    Thanking you in advance,
    Samba

    Thanks Ric,
    But My problem is not solved..
    I'm getting the transformation working in plain HTML
    The file given below :
    <?xml-stylesheet type="text/xsl" href="mathml.xsl"?>
    <!--
    Copyright David Carlisle 2001, 2002.
    Use and distribution of this code are permitted under the terms of the <a
    href="http://www.w3.org/Consortium/Legal/copyright-software-19980720"
    W3C Software Notice and License</a>.-->
    <html xmlns="http://www.w3.org/1999/xhtml"
    >
    <head>
    <title>Content MathML Examples</title>
    </head>
    <body>
    <div style="border-style:solid; border-width:1px; margin: 1em 1em 1em 1em; padding: 1em 1em 1em 1em;color:gold;background:grey;">
    <pre><![CDATA[<math xmlns="http://www.w3.org/1998/Math/MathML">
    <apply>
    <eq/>
    <apply>
      <abs/>
      <ci> x </ci>
    </apply>
    <piecewise>
      <piece>
          <apply><minus/><ci> x </ci></apply>
          <apply><lt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <cn> 0 </cn>
          <apply><eq/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <ci> x </ci>
          <apply><gt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
    </piecewise>
    </apply>
    </math>]]>
    </pre>
    <math xmlns="http://www.w3.org/1998/Math/MathML">
    <apply>
    <eq/>
    <apply>
      <abs/>
      <ci> x </ci>
    </apply>
    <piecewise>
      <piece>
          <apply><minus/><ci> x </ci></apply>
          <apply><lt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <cn> 0 </cn>
          <apply><eq/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <ci> x </ci>
          <apply><gt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
    </piecewise>
    </apply>
    </math>
    </div>
    </body>
    </html>But the same thing is not working when put in jspx page..
    And I tried to use JSTL as you have suggested :
    But the content is not getting transformed.
    Here is the jspx page :
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:c="http://java.sun.com/jsp/jstl/core"
              xmlns:x="http://java.sun.com/jsp/jstl/xml"
              xmlns:m="http://www.w3.org/1998/Math/MathML"
              xmlns:xh="http://www.w3.org/1999/xhtml">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document binding="#{backing_xsltTest.document1}" id="document1">
    <div style="border-style:solid; border-width:1px; margin: 1em 1em 1em 1em; padding: 1em 1em 1em 1em;color:gold;background:grey;">
    <f:verbatim>
    <pre><![CDATA[<math xmlns="http://www.w3.org/1998/Math/MathML">
    <apply>
    <eq/>
    <apply>
      <abs/>
      <ci> x </ci>
    </apply>
    <piecewise>
      <piece>
          <apply><minus/><ci> x </ci></apply>
          <apply><lt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <cn> 0 </cn>
          <apply><eq/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <ci> x </ci>
          <apply><gt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
    </piecewise>
    </apply>
    </math>]]>
    </pre>
    </f:verbatim>
    <c:import var ="mathml" url="/mathml.xsl"/>
    <x:transform  xslt="${mathml}">
    <math xmlns="http://www.w3.org/1998/Math/MathML">
    <apply>
    <eq/>
    <apply>
      <abs/>
      <ci> x </ci>
    </apply>
    <piecewise>
      <piece>
          <apply><minus/><ci> x </ci></apply>
          <apply><lt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <cn> 0 </cn>
          <apply><eq/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
      <piece>
          <ci> x </ci>
          <apply><gt/><ci> x </ci> <cn> 0 </cn></apply>
      </piece>
    </piecewise>
    </apply>
    </math>
    </x:transform>
    </div>
          <af:form binding="#{backing_xsltTest.form1}" id="form1">
          </af:form>
        </af:document>
      </f:view>
      <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_xsltTest-->
    </jsp:root>Can you please suggest where I'm doing wrong?
    Thanking you in advance,
    Samba

  • IChat AV 3.1.9 (v446) HOW 2 USE IT? - NEVER USED IT - I'D LIKE 2 USE IT!

    Till today, I separately use msn messenger and yahoo messenger. I'd like to only use iChat AV 3.1.9 (v446) I already have installed but got no idea how to use it.
    When I click iChat the Buddy List window opens together with AOL Instant Messenger Login which informs me that "iChat was unable to login to the AOL Instant Messenger service because your screen name or password was incorrect." In the Login ID section there's my every day used e-mail; [email protected] and the password section is empty. The thing is that I got no idea when I gave those info to AOL and I can't remember my password... so I can't login.
    Then I go to iChat preferences, click Accounts and I see 3 of them. The first one is an AOL Instant Messenger account named George Nikas, the second another AOL Instant Messenger account and the third another Bonjour account. At the last account I open My Address Book Card and among my info I also see an e-mail I have never used (created like all the other info ages ago); [email protected]
    As I said in the first paragraph I'd like to use iChat, rearrange all my info and delete anything which isn't useful.
    1) I would like to edit my .Mac account but how?
    2) Also edit my AIM and Bonjour account. Maybe delete one of them? (As I said I found two AIM accounts). How?
    3) Embody my msn and yahoo messengers in iChat.
    Please don't laugh at all my stupid questions!
    I KNOW I'M A MESS AND SOUND LIKE A CHILD!
    THANK GOD THERE'S APPLE DISCUSSIONS.
    THANX A LOT!
    George Nikas

    Hi,
    The Detailed Version http://www.ralphjohns.co.uk/versions/ichat3/howtos3.html
    Use the Second menu for the first three items.
    iChat 3 can login in to one AIM Buddy List and one Jabber List and the Bonjour option giving you a max of three Buddy Lists at any one time.
    AIM Screen Names and Apple IDs (Email type for @mac.com or MobileMe) can be used for the AIM Buddy List.
    GoogleTalk is a Jabber Server and can be made to work in iChat 3
    You Can have other Jabber IDs from other servers.
    If you have more than one AIM valid name or Jabber account set up in iChat 3 then you have to Log one out before you Login another.
    There is only ever one Bonjour list if you have Enabled this and it is essentially Mac to Mac only on your LAN.
    This can only be edited as such via your Address Book.
    It uses the Name on the "My Card" to send that as your Buddy Name to other Macs on your LAN.
    IF there are other Macs on your LAN with iChat Open and Bonjour Enabled then you will see people as their own Address Book Entry
    If you cannot remember telling AIM your Hotmail Email name (It is possible to register Email IDs as Screen Names at AIM) then it would be best to delete that Account in iChat > Preferences > Accounts (Highlight then use the Minus button lower left).
    For your @Mac.com type name you may get some Progress here https://iforgot.apple.com/cgi-bin/WebObjects/DSiForgot.woa/wa
    Type in the @Mac.com name and you will be led through the retrieval Process.
    However it may want to send the response to an Email address you no Longer have access to.
    (and just to complicate things you can't change the reply Email address until you have access to the Account).
    Summary
    For 1) try the Paragraph above.
    For 2) just delete the Hotmail name as an AIM name. You cannot edit the Bonjour Stuff in iChat but can change your Name in the Address Book (This will also effect Mail as it "Sends" your Name as part of the Headers linked to the Email Address you use).
    I have left 3) until now.
    This can be done but only for Text Chats.
    With a Jabber Account you do some background/workaround stuff that enables that Jabber account to login to what is called A Transport on an Jabber server that then links that Jabber ID to MSN or Yahoo.
    Resources.
    http://www.jabberes.org/servers/ A list of Jabber Servers and the options they have like Transports.
    Some allow you to login via any other Jabber server (After your set it up you don't have to use the Jabber account but can use another such as GoogleTalk)
    Instructions on how to make iChat use these Transports http://allforces.com/2005/05/06/ichat-to-msn-through-jabber/
    As I have pointed out it pays to know which Jabber Server you are going to use first before doing this bit. The Instructions make more sense if you are doing it as you go.
    Instructions for Getting your GoogleMail Account to work in iChat 3 http://google.com/support/chat/bin/answer.py?hl=en&answer=24076
    These pics and Instructions are for iChat 3
    If you have a GoogleMail ID (@Gmail.com or @Googlemail.com) then you have to go to your account settings at Google and Enable Talk first.
    Hope this helps.
    8:57 PM Monday; June 21, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • How to use case when function to calculate time ?

    Dear All,
    May i know how to use case when function to calculate the time ?
    for the example , if the First_EP_scan_time is 12.30,  then must minus 30 min.  
    CASE WHEN FIRSTSCAN.EP_SHIFT <> 'R1' AND FIRSTSCAN.EP_SHIFT <> 'R2'
    THEN ROUND(CAST((DATEDIFF(MINUTE,CAST(STUFF(STUFF((CASE WHEN SHIFTCAL.EP_SHIFT = 'N1'
    THEN CONVERT(VARCHAR(8),DATEADD(DAY,+1,LEFT(FIRSTSCAN.EP_SCAN_DATE ,8)),112) + ' ' + REPLACE(CONVERT(VARCHAR(8),DATEADD(HOUR,+0,SHIFTDESC.EP_SHIFT_TIMETO + ':00'),108),':','')
    ELSE LEFT(FIRSTSCAN.EP_SCAN_DATE ,8) + ' ' + REPLACE(CONVERT(VARCHAR(8),DATEADD(HOUR,+0,SHIFTDESC.EP_SHIFT_TIMETO + ':00'),108),':','') END),12,0,':'),15,0,':') AS DATETIME),CAST(STUFF(STUFF(LASTSCAN.EP_SCAN_DATE,12,0,':'),15,0,':') AS DATETIME)) / 60.0 - 0.25) AS FLOAT),2)
    ELSE ROUND(CAST((DATEDIFF(MINUTE,CAST(STUFF(STUFF(FIRSTSCAN.EP_SCAN_DATE,12,0,':'),15,0,':') AS DATETIME),CAST(STUFF(STUFF(LASTSCAN.EP_SCAN_DATE,12,0,':'),15,0,':') AS DATETIME)) / 60.0) AS FLOAT),2) END AS OTWORK_HOUR

    Do not use computations in a declarative language.  This is SQL and not COBOL.
    Use a table of time slots set to one more decimal second of precision than your data. You can now use temporal math to add it to a DATE to TIME(1) get a full DATETIME2(0). Here is the basic skeleton. 
    CREATE TABLE Timeslots
    (slot_start_time TIME(1) NOT NULL PRIMARY KEY,
     slot_end_time TIME(1) NOT NULL,
     CHECK (start_time < end_time));
    INSERT INTO Timeslots  --15 min intervals 
    VALUES ('00:00:00.0', '00:14:59.9'),
    ('00:15:00.0', '00:29:59.9'),
    ('00:30:00.0', '00:44:59.9'),
    ('00:45:00.0', '01:00:59.9'), 
    ('23:45:00.0', '23:59:59.9'); 
    Here is the basic query for rounding down to a time slot. 
    SELECT CAST (@in_timestamp AS DATE), T.start_time
      FROM Timeslots AS T
     WHERE CAST (@in_timestamp AS TIME)
           BETWEEN T.slot_start_time 
               AND T.slot_end_time;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • How to use MapDepthPointToCameraSpace

    This is a public-service post. There was so little documentation available about MapDepthPointToCameraSpace -- and no code examples available at all, in the SDK Browser or elsewhere -- that I was compelled to reverse-engineer the method, just to figure out
    how to use it, and here is what I discovered.
    Here is the syntax of the method:
    public CameraSpacePoint MapDepthPointToCameraSpace (
    DepthSpacePoint depthPoint,
    UInt16 depth
    The critical thing to understand about this method, and the source of much boondoggling until I figured it out, is that the input is in
    millimeters, while the output is in
    meters.
    Uint16 depth -> This is a depth value, unsigned integer (two bytes wide), in units of
    millimeters.
    DepthSpacePoint depthPoint -> This is a struct containing an [x,y] coordinate. The [x,y] describe a 2D coordinate location on the incoming depth-map from the Kinect, with [0,0] at upper-left corner. This struct contains two properties,
    X and Y, which are signed floats (four bytes wide); however, you should assign only positive integers to these X and Y properties. There is no constructor for this struct, so you must create a DepthSpacePoint in several steps, shown in the code example below.
    CameraSpacePoint -> This is a struct containing an [x,y,z] coordinate. The [x,y,z] describe a 3D coordinate location in the reference space established by the Kinect sensor itself. This struct contains three properties, X and Y and Z,
    which are signed floats (four bytes wide), representing coordinates in physical space, in units of
    meters. Although z will always be positive (a zero value indicates an unknown depth value or error), each of x and y may be positive, zero, or negative. If MapDepthPointToCameraSpace cannot complete its calculation
    successfully -- for example, an object is too close to the sensor -- then any of the [x,y,z] values may be set to +Infinity or to -Infinity. Attempting to use these infinite values will not throw an exception -- instead, you'll find your variables being
    set to MAXINT or -MAXINT and you will be completely confused by the end results. So you must carefully screen for infinite values when using MapDepthPointToCameraSpace.
    Example usage:
    CoordinateMapper m = myKinectSensor.CoordinateMapper;DepthSpacePoint d = new DepthSpacePoint(); // no constructor is availabled.X = 100; // in pixelsd.Y = 200; // in pixelsCameraSpacePoint p = m.MapDepthPointToCameraSpace(     d,     // in pixels 2500); // in millimeters
    The above code queries the coordinate mapper for pixel-coordinate [x,y] = [100,200] in the Kinect depth map, with input depth value of 2500
    millimeters. The output is as follows:
    p.X, p.Y, and p.Z contain the mapped 3D coordinate in the Kinect's reference spatial system, in floating-point
    meters, where:
    X and Y will be positive, zero, or negative if calculation succeeds. They will be plus or minus infinity if a calculation error occurs.
    Z will be positive if the calculation succeeds. It will be zero or plus or minus infinity if a calculation error occurs.
    I hope that this information is helpful to others!
    - ZMK

    This is a public-service post. There was so little documentation available about MapDepthPointToCameraSpace -- and no code examples available at all, in the SDK Browser or elsewhere -- that I was compelled to reverse-engineer the method, just to figure out
    how to use it, and here is what I discovered.
    Here is the syntax of the method:
    public CameraSpacePoint MapDepthPointToCameraSpace (
    DepthSpacePoint depthPoint,
    UInt16 depth
    The critical thing to understand about this method, and the source of much boondoggling until I figured it out, is that the input is in
    millimeters, while the output is in
    meters.
    Uint16 depth -> This is a depth value, unsigned integer (two bytes wide), in units of
    millimeters.
    DepthSpacePoint depthPoint -> This is a struct containing an [x,y] coordinate. The [x,y] describe a 2D coordinate location on the incoming depth-map from the Kinect, with [0,0] at upper-left corner. This struct contains two properties,
    X and Y, which are signed floats (four bytes wide); however, you should assign only positive integers to these X and Y properties. There is no constructor for this struct, so you must create a DepthSpacePoint in several steps, shown in the code example below.
    CameraSpacePoint -> This is a struct containing an [x,y,z] coordinate. The [x,y,z] describe a 3D coordinate location in the reference space established by the Kinect sensor itself. This struct contains three properties, X and Y and Z,
    which are signed floats (four bytes wide), representing coordinates in physical space, in units of
    meters. Although z will always be positive (a zero value indicates an unknown depth value or error), each of x and y may be positive, zero, or negative. If MapDepthPointToCameraSpace cannot complete its calculation
    successfully -- for example, an object is too close to the sensor -- then any of the [x,y,z] values may be set to +Infinity or to -Infinity. Attempting to use these infinite values will not throw an exception -- instead, you'll find your variables being
    set to MAXINT or -MAXINT and you will be completely confused by the end results. So you must carefully screen for infinite values when using MapDepthPointToCameraSpace.
    Example usage:
    CoordinateMapper m = myKinectSensor.CoordinateMapper;DepthSpacePoint d = new DepthSpacePoint(); // no constructor is availabled.X = 100; // in pixelsd.Y = 200; // in pixelsCameraSpacePoint p = m.MapDepthPointToCameraSpace(     d,     // in pixels 2500); // in millimeters
    The above code queries the coordinate mapper for pixel-coordinate [x,y] = [100,200] in the Kinect depth map, with input depth value of 2500
    millimeters. The output is as follows:
    p.X, p.Y, and p.Z contain the mapped 3D coordinate in the Kinect's reference spatial system, in floating-point
    meters, where:
    X and Y will be positive, zero, or negative if calculation succeeds. They will be plus or minus infinity if a calculation error occurs.
    Z will be positive if the calculation succeeds. It will be zero or plus or minus infinity if a calculation error occurs.
    I hope that this information is helpful to others!
    - ZMK

  • How to use one email adress for multiple recipients

    Hello,
    I'd like to know how to use one email adress for multiple recipients. 
    this would be very useful or projects. for example;
    if i send one mail to [email protected], all people in this project get an email.
    I will add the people in this project myself. 
    I know it is possible, but I don't know how to do it ;-)
    please help me! 

    Hope this help.
    _http://technet.microsoft.com/en-us/library/cc164331(v=exchg.65) .aspx

  • Can't figure out how to use home sharing

    Since the latest couple iTunes updates, my family and I can not figure out how to use home sharing. Everyone in our household has their own iTunes, and for a long time we would just share our music through home sharing. But with the updates, so much has changed that we can no longer figure out how to use it.
    I have a lot of purchased albums on another laptop in the house, that im trying to move it all over to my own iTunes, and I have spent a long time searching the internet, and everything. And I just can't figure out how to do it. So.... how does it work now? I would really like to get these albums from my moms iTunes, onto mine. I would hate to have to buy them all over again.
    If anyone is able to help me out here, that would be great! Thanks!

    The problem im having is that after I am in another library through home sharing, I can't figure out how to select an album and import it to my library. They used to have it set up so that you just highlight all of the songs you want, and then all you had to do was click import. Now I don't even see an import button, or anything else like it. So im lost... I don't know if it's something im doing wrong, or if our home sharing system just isn't working properly.
    Thanks for the help.

  • How to use the same POWL query for multiple users

    Hello,
    I have defined a POWL query which executes properly. But if I map the same POWL query to 2 portal users and the 2 portal users try to access the same page simultaneously then it gives an error message to one of the users that
    "Query 'ABC' is already open in another session."
    where 'ABC' is the query name.
    Can you please tell me how to use the same POWL query for multiple users ?
    A fast reply would be highly appreciated.
    Thanks and Regards,
    Sandhya

    Batch processing usually involves using actions you have recorded.  In Action you can insert Path that can be used during processing documents.  Path have some size so you may want to only process document that have the same size.  Look in the Actions Palette fly-out menu for insert path.  It inserts|records the current document work path into the action being worked on and when the action is played it inserts the path into the document as the current work path..

  • How to use airport time capsule with multiple computers?

    I'm sure there are some thread about this but i couldn't find it... so sorry for that but hear me out! =)
    I bought the AirPort Time Capsule to back up my MBP
    And so i did.
    then i thought "let give this one a fresh start" so i erased all of it with the disk utility and re-installed the MBP from the recovery disk.
    I dont want all of the stuff i backed up just a few files and some pictures so i brought that back.. so far so good.
    Now i want to do a new back up of my MBP so i open time machine settings, pick the drive on the time capsule and then "Choose" i wait for the beck up to begin, and then it fails.  It says (sorry for my bad english, im swedish haha) "the mount /Volume/Data-1/StiflersMBP.sparsebundle is already in use for back up.
    this is what i want:
    i want the "StiflersMBP.sparsebundle" to just be so i can get some stuf when i need them. it's never to be erased.
    i want to make a new back up of my MBP as if it's a second computer...
    so guys and girls, what is the easiest and best solution?
    Best regards!

    TM does not work like that.
    If you want files to use later.. do not use TM.
    Or do not use TM to the same location. Plug a USB drive into the computer and use that as the target for the permanent backup.
    Read some details of how TM works so you understand what it will do.
    http://pondini.org/TM/Works.html
    Use a clone or different software for a permanent backup.
    http://pondini.org/TM/Clones.html
    How to use TC
    http://pondini.org/TM/Time_Capsule.html
    This is helpful.. particularly Q3.
    Why you don't want to use TM.
    Q20 here. http://pondini.org/TM/FAQ.html

  • How to use multiple ipods on one account

    I have an Ipod classic and just bought my sons two nano's how do I use these on the same account without changing my account info?

    Take a look here:
    How to use multiple iPods with one computer
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Discussions page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums, in the User Tips Library and in the Apple Knowledge Base before you post a question.
    Regards.

  • How to use a Table View in AppleScriptObjC

    How can I use a table view and add data to it? And how can I display a button cell and image cell in the table? Thanks.

    Hi all,
    Actually i need some more clarification. How to use the same select statement, if i've to use the tabname in the where clause too?
    for ex : select * from (tab_name) where....?
    Can we do inner join on such select statements? If so how?
    Thanks & Regards,
    Mallik.

  • How to use '|' delimited as seprator in GUI_DOWNLOAD ? Plz suggest me ,,

    how to use '|' delimited as seprator in GUI_DOWNLOAD ? Plz suggest me ,,
    i want the output should be seprated by '|' delimited when i download the file.

    Hi,
    We will pass the seperator to the WRITE_FIELD_SEPARATOR parameter as
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    filename = v_file
    write_field_separator = '|'
    TABLES
    data_tab = itab[] . "Our internal talbe filled with data
    Re: Why Function GUI_DOWNLOAD can create XML file but not a flat file?
    Award points if useful
    Thanks,
    Ravee...

  • ** How to use TO_DATE function in Stored Proc. for JDBC in ABAP-XSL mapping

    Hi friends,
    I use ABAP-XSL mapping to insert records in Oracle table. My Sender is File and receiver is JDBC. We use Oracle 10g database. All fields in table are VARCHAR2 except one field; this is having type 'DATE'.
    I use Stored procedure to update the records in table. I have converted my string into date using the Oracle TO_DATE function. But, when I use this format, it throws an error in the Receiver CC. (But, the message is processed successfully in SXMB_MONI).
    The input format I formed like below:
    <X_EMP_START_DT hasQuot="No" isInput="1" type="DATE">
    Value in Payload is like below.
    <X_EMP_START_DT hasQuot="No" isInput="1" type="DATE">TO_DATE('18-11-1991','DD-MM-YYYY')</X_EMP_START_DT>
    Error in CC comes as below:
    Error processing request in sax parser: Error when executing statement for table/stored proc. 'SP_EMP_DETAILS' (structure 'STATEMENT'): java.lang.NumberFormatException: For input string: "TO_DATE('18"
    Friends, I have tried, but unable to find the correct solution to insert.
    Kindly help me to solve this issue.
    Kind Regards,
    Jegathees P.
    (But, the same is working fine if we use direct method in ABAP-XSL ie. not thru Stored Procedure)

    Hi Sinha,
    Thanks for your reply.
    I used the syntax
    <xsl:call-template name="date:format-date">
       <xsl:with-param name="date-time" select="string" />
       <xsl:with-param name="pattern" select="string" />
    </xsl:call-template>
    in my Abap XSL.  But, its not working correctly. The problem is 'href' function to import "date.xsl" in my XSLT is not able to do that. The system throws an error. Moreover, it is not able to write the command 'extension-element-prefixes' in my <xsl:stylesheet namespace>
    May be I am not able to understand how to use this.
    Anyway, I solved this problem by handling date conversion inside Oracle Stored Procedure. Now, its working fine.
    Thank you.

  • Sender Mail Adapter - S/MIME - How to use it?

    Hi guys,
    I am trying to figure out how to use the S/MIME security parameter of the Sender Mail Adapter in PI 7.1.
    Could anyone point me to some useful documentation/examples/blogs ?
    Or perhaps explain what steps are involved when configuring this parameter?
    We are pulling emails from an Microsoft Exchange server.
    Many thanks,
    Aldo

    First of all one sender mail adapter has to be tight with a specific sender email address.
    The email has to be decrypted as whole, you cannot decrypt parts of it.
    Then you store certificates to secure store in J2EE server and point to it in send agreement, this should be equal to HTTPS setup
    Check security guide:
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/f7/c2953fc405330ee10000000a114084/frameset.htm

Maybe you are looking for

  • Customer Aging Report by Highest Due Sorted List

    Hi Can any one tell me is there any report where i get Customer Aging Details like S_ALR_87012178 - Customer Open Item Analysis by Balance of Overdue Items. and sorted by highest Due balance Accounts first rather than by Account No. Thanks Sivaram

  • 2 edi question

    hi, 1) i have 2 programs which create idoc using master_idoc_distribute. what i not understand is that, for program 1, it checks edidc, if found the entry, checks against the nast entry. if no then insert and followed by submit rsnast00 whereas anoth

  • Map Builder - Fenced Center Line

    Hi everyone In order to depict depressed contours using Map Builder (ver 11.1.1.0.0), I would like to use a fenced center line with a pattern similar to this: ___|___|___|___|___ . However, Map Builder seems not to be able to create a fenced line wit

  • Where can I find the xsd file for SQL2012 .dtsx files?

    Where can I find the xsd file for SQL2012 .dtsx files? Tom G.

  • I cant get the screen brightness to stay at full bringhtness

    how do I keep the brightness to stay at it's brightest setting. i t always goes back to the middle setting