Message variable initialization

Hello,
We had this ridiculous situation a while ago where out service instances create their variables with multiple nodes.
For example if we have xsd looking like this:
<element name="Response">
<complexType>
<sequence>
<element name="Result">
<simpleType>
<restriction base="string">
<enumeration value="OK"/>
<enumeration value="ERR"/>
</restriction>
</simpleType>
</element>
<element name="Comment" minOccurs="0" type="string"/>
</sequence>
</complexType>
</element>
In BPEL we have message variable which part is this "Response" element. Everything is fine till the moment we start getting initial variable looking like this:
<outputVariable>
<part name="payload" >
<Response>
<Result/>
<Result/>
<Result/>
<Result/>
<Result/>
<Result/>
</Response>
</part>
</outputVariable>
Of course we have no reason for this, no logs, no info and so on. Any idea anyone?
Everything is normal concerning the BPEL, no errors are raised till the moment we need to populate the variable. The process is working correctly but we cannot return result to the caller.
WL version: 10.3.5.0
SOA version: 11.1.1.5.0
BPEL version: 2.0
Best regards.

could you please send your test case to our support team? this doesn't look right. bpel engine would initialize the variable based on the xpath usage in to-spec expressions. you can try turning of variable initialization for that particular component using bpel.config.initializeVariables to false. and go with literal xml variable initiation. [http://docs.oasis-open.org/wsbpel/2.0/OS/wsbpel-v2.0-OS.html#SA00038]
http://docs.oracle.com/cd/E28271_01/dev.1111/e10224/bp_manipdoc.htm#BABHDFBJ
here is the sample for that property
in composite.xml, find the component, under that component add this property, and re-deploy with your literal variable init.
<property name="bpel.config.initializeVariables">false</property>

Similar Messages

  • Photoshop CC2014 does not launch. Error message ' cannot initialize photoshop because of program error

    Hi, I get this error message (cannot initialize) after the splash screen.
    I have chatted with Adobe staff and spoke to one. I have un-installed and re-installed, created new administrator and installed, fixed permissions, deleted preferences, you name it.
    In previous chat on a forum I read about the PsErrorLog.txt file.
    Mine says:
    2014:08:23 10:50:20 : /Volumes/workarea/PS_15_Mac_Daily_Retail/20140730.r.148/photoshop/main/photoshop/sources/ UColorState.cpp : 737 : REQUIRE failed
    2014:08:23 10:54:42 : /Volumes/workarea/PS_15_Mac_Daily_Retail/20140730.r.148/photoshop/main/photoshop/sources/ UColorState.cpp : 737 : REQUIRE failed
    I cannot locate the ColorSettings.csf in the photoshop preferences folder  and my System Preferences / displays / color says iMac.
    Any tips how to solve this issue?

    Either your default color settings files are corrupted, or they are missing (they're in the system application support folder).
    Uninstalling and reinstalling should put the default files back in place.

  • Variable initialization

    Hello guys,
    Is there anybody know how and when java checks for variable initialization?For example if we change a value, assume a without initializing it we get variable a might not have been initialized.I wish to know how java checks that the variable is already assigned or not.
    int a;
    a++;//How java checks this
    regards,
    Haddock

    Rules is:
    To variables of instance - It's default value attribute automatically if not initialize with value.
    To local variable (methods for example) - It's default value in initialization has been MUST attributed
    Instance variables has a folliwing default value:
    class A{
    int i; //default value is 0
    char c; //default value is '\u0000'
    byte b; //default value is 0
    short s; //default value is 0
    long l; //default value is 0
    float f; //default value is 0.0
    double d; //default value is 0.0
    boolean bl; //default value is false
    String str; //Object is always null
    int x[]; // null. It's Object's array
    int x[5]; // 5 times default value 0.
    void testInitializeValue(){
    int x; // Compiler error; This variable has been initialized
    if(x == 5){
    return;
    Ok..Thanks!!

  • In trying to install a Flash update on my Mac (version 10.7.5), I'm getting an "unable to install metafile" message after initialization starts (at the 25% point)-regardless of the site from which I download the installation folder.

    In trying to install a Flash update on my Mac (version 10.7.5), I'm getting an "unable to install metafile" message after initialization starts (at the 25% point)—regardless of the site from which I download the installation folder.

    Hello everybody, good news: after upgrading to Mountain Lion 10.8.5 I've been able to run the installer and all went fine.
    Mountain Lion allows user to force execution through the context-menu (CTRL-click) Open command and it does work, just that simple.
    So my advice is: if you want to install or re-install Flash Builder 4.6 on a Mac with Lion installed, upgrade to Mountain Lion or better to avoid problems.
    Apple introduced some (not all) Gatekeeper functionalities in 10.7.3 and following, but apparently you need a full-fledged 10.8 to have also what you need to circumvent a Revoked Certificate error.
    Since usually OS X has auto updating active, if you are running Lion you end up with 10.7.5 and won't install FB46. If you manage somehow to hold 10.7.2 I suppose you should be able to install FB46, sincerely I didn't check it out. Anyway it's simpler and safer to move on to 10.8.x.
    Bye

  • JavaMail error in getting message variable

    Hi SDN,
    try{
              PrintWriter out=response.getWriter();
              InitialContext ctx=new InitialContext();
              Session session = (Session) ctx.lookup("java:comp/env/mail/Email");
              Properties props = session.getProperties();
              out.println("Mail From >>" + props.getProperty("mail.from")); //senders email id
              out.println("SMTP Server >>" + props.getProperty("mail.smtp.host")); // SMPT mail server name
              Message message = new MimeMessage(session);
              message.setFrom(new InternetAddress(props.getProperty("mail.from")));
              message.setRecipients(Message.RecipientType.TO, new InternetAddress[]{new InternetAddress(request.getParameter("Receipient"))});
              essage.setSubject(request.getParameter("Subject"));
              message.setContent(request.getParameter("Msg"),"text/plain");
              out.println("Message variable value" + message.getRecipients(Message.RecipientType.TO));     
              Transport.send(message);
              out.println("<br><b>Thank U. Your Message to "+request.getParameter("Recipient")+"was succesfully sent.<b>");
              catch(Exception e)
                   e.printStackTrace();
    We could not able to send a mail to the specified address using SMTP . Actual problem is the message variable in the above coding could not set the specified "from" address or "receipient" address . When we tried to display the set value it is returning the address as "Ljavax.mail.internet.InternetAddress;@57cd1b" . So suggest me how to overcome this.

    Hi bshannon
    I think the problem is not with the content method . when we try to set from address and To address using the corresponding methods , the value is not set. When we tried to get back internet address (TO, FROM) it is returning some other unknown address.
    Regards
    Basha

  • Error message: variable might not have been initialized

    i am doing java programming and keep getting error messages: variable might not have been intitialized, the variables are 'one', 'two', and 'three' ,but at the very beginning i already had typed in String one,two,three...how do i fix this? this is part of my program:
    public class Titles
    public static void main(String[] args)
    String book1,book2,book3,the,a,first3,first,ffirst3,ffirst,fffirst3,fffirst,one,two,three;
    System.out.println("Enter the title of the first book");
    book1=IO.readString();
    book1=book1.trim();
    System.out.println("Enter the title of the second book");
    book2=IO.readString();
    book2=book2.trim();
    System.out.println("Enter the title of the third book");
    book3=IO.readString();
    book3=book3.trim();
    the="the ";
    a="a ";
    first3=book1.substring(0,4);
    ffirst3=book2.substring(0,4);
    fffirst3=book3.substring(0,4);
    first=book1.substring(0,2);
    ffirst=book2.substring(0,2);
    fffirst=book3.substring(0,2);
    if (first3==the)
    book1=book1.substring(4);
    else
    book1=book1.substring(0);
    if (ffirst3==the)
    book2=book2.substring(4);
    else
    book2=book2.substring(0);
    if (fffirst3==the)
    book3=book3.substring(4);
    else
    book3=book3.substring(0);
    if (first==a)
    book1=book1.substring(2);
    else
    book1=book1.substring(0);
    if (ffirst==a)
    book2=book2.substring(2);
    else
    book2=book2.substring(0);
    if (fffirst==a)
    book3=book3.substring(2);
    else
    book3=book3.substring(0);
    int comp=book1.compareToIgnoreCase(book2);
    int comp1=book1.compareToIgnoreCase(book3);
    int comp2=book2.compareToIgnoreCase(book3);
    if (comp<0 && comp1<0)
    one=book1;
    else if (comp>0 && comp1>0)
    three=book1;
    else
    IO.reportBadInput();
    if (comp2>0 && comp1<0)
    two=book3;
    else if (comp2<0 && comp1<0)
    three=book3;
    else
    IO.reportBadInput();
    if (comp2<0 && comp>0)
    one=book2;
    else if (comp2>0 && comp<0)
    three=book2;
    else if (comp2<0 && comp<0)
    two=book2;
    else
    IO.reportBadInput();
    if (comp1>0 && comp2>0)
    one=book3;
    if (comp1<0 && comp>0)
    two=book1;
    IO.printString(one);
    IO.printString(two);
    IO.printString(three);

    It says "not initilailized", not "not declared". The code you posted is highly unreadable, but it's likely that the compiler complains that not in every case "one" will get assigned any value.
    At least do it like:
    String one = null;
    String two = null;
    ...

  • Class variable initialization

    I have noticed that class variable initialization occurs AFTER the constructor is called.
    Why is this, and is this intentional?
    It has caused strange behaviour in my SE java applications I am porting to MIDP.
    Thanks
    - Adam

    Hi,
    Error 1:
    The problem only arises if you use the unassigned variable:
    int i;
    int y = i; // Use of unassigned variable here
    you can just assign a value to i to solve this:
    int i = 0;
    int y = i; // Use of unassigned variable here
    Error 2 and 3 have to do with static and non-static, not with the initialization per se. This is how it works:
    static members (e.g. fields) can be accessed using this syntax: <Classname>.<FieldName>, e.g:
    public static class Helpers
    public static int SomeDataValue { get; set; }
    class Program
    static void Main(string[] args)
    Helpers.SomeDataValue = 22;
    On the other hand, non-static members are accessed like this: <instance>.<fieldname>. So you always need an instance of a class to access the field:
    public class Order
    public int OrderNumber { get; set; }
    class Program
    static void Main(string[] args)
    Order o = new Order();
    o.OrderNumber = 12;
    Rgds MM

  • PartnerLink Input Variable initialization error for xsd:any datatype

    I have a web service which use the xsd:any for the message type( segment of the wsdl given below):
    - <message name="post_ps_apg_services0Request">
    <part name="fa_form" type="**xsd:any**" />
    </message>
    <portType name="ps_services_wsPortType">
    - <operation name="post_ps_apg_services">
    <input name="post_ps_apg_services0Request" message="tns:post_ps_apg_services0Request" />
    <output name="post_ps_apg_services0Response" message="tns:post_ps_apg_services0Response" />
    </operation>
    <binding name="ps_services_wsBinding" type="tns:ps_services_wsPortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="post_ps_apg_services">
    <soap:operation soapAction="" style="rpc" />
    - <input name="post_ps_apg_services0Request">
    <soap:body use="literal" namespace="ps_services_ws" />
    </input>
    - <output name="post_ps_apg_services0Response">
    <soap:body use="literal" namespace="ps_services_ws" />
    </output>
    </operation>
    <service name="ps_services_ws">
    - <port name="ps_services_wsPort" binding="tns:ps_services_wsBinding">
    <soap:address location="http://spider.apollogrp.edu:4400/sst/runtime.asvc/ps_services" />
    </port>
    </service>
    I have created a Partnerlink Invoke_ps_apg_services with Input Variable 'Invoke_ps_apg_services_post_ps_apg_services_InputVariable'.
    During Compilation of the process I get the following exception:
    Error: Couldn't initialize variable.
    Error occurred while initializing BPEL variable "Invoke_ps_apg_services_post_ps_apg_services_InputVariable" at line 51, the schema processor could not find type "{http://www.w3.org/2001/XMLSchema}any" for part "fa_form", in the following schemas:
    Schema 0 ---> namespace=http://edu.apollogrp.ws.ps_services/Ips_services_ws.xsd
    location=file:/C:/BPELProjects/FAPP/FAPP_PS_Service/bpel/PostFAFormsPSSchema.xsd.__OAUX_GENXSD_.TOP.XSD
    Schema 1 ---> namespace=http://xmlns.oracle.com/pcbpel/adapter/jms/
    location=file:/C:/BPELProjects/FAPP/FAPP_PS_Service/bpel/jmsAdapterInboundHeader.wsdl.__OAUX_GENXSD_.TOP.XSD
    Schema 2 ---> namespace=null
    location=file:/C:/BPELProjects/FAPP/FAPP_PS_Service/bpel/FAPPService.wsdl.__OAUX_GENXSD_.TOP.XSD
    Please make sure that the type "{http://www.w3.org/2001/XMLSchema}any" is valid in your wsdl.
    Has anyone have seen this error ? What is the fix/workaround ?
    Thanks in advance

    The "any" type is not defined in the standard http://www.w3.org/2001/XMLSchema namespace. Try changing the type name to "anyType" and it should not give that error anymore.
    The valid types defined under that namespace are located at [http://www.w3.org/TR/xmlschema-2/#built-in-datatypes|http://www.w3.org/TR/xmlschema-2/#built-in-datatypes].

  • Variable initialization error

    import java.io.*;
    import java.util.*;
    import java.sql.*;
    public class ReadCSVFile
    public void StatementQuery(String Version , String Doctype_id)
    String docfamilyid,docfamilyid_upd;
    String sqlstr = "select DOCFAMILYID_ID from master table where doctypeid=\""+Doctype_id+"\"";
    public static void main(String[] args)
    ReadCSVFile obj = new ReadCSVFile();
    String str,doctype=null,version=null,doctype_id=null;
         int i=0;
         String prevdoctype,prevdoctype_id;
    try
    BufferedReader in = new BufferedReader(new FileReader("RecordsNet_DocType_List1.csv"));
    while ((str = in.readLine()) != null)
    String s[] = str.split(",");//splitting string based on ','
    if (s[1]!=null)
         doctype_id=s[1];
              if (s[5]!=null)
    doctype=s[5].trim();
    if (s[8]!=null)
    version=s[8];
    if (s[1].length()==0 && s[5].length()==0)
         System.out.println("Another version for "+ prevdoctype_id);
    if ( doctype.equalsIgnoreCase("Statement")) {
              obj.StatementQuery(version,doctype_id);
              prevdoctype_id=doctype_id;
         if ( doctype.equalsIgnoreCase("Report Class A")) {
                        //System.out.println("Report Class A"+ i + doctype);
                        prevdoctype_id=doctype_id;
         if ( doctype.equalsIgnoreCase("Report Class B")) {
                        //System.out.println("Report Class B"+ i + doctype);
                        prevdoctype_id=doctype_id;
         if ( doctype.equalsIgnoreCase("Report Class D")) {
                                  //System.out.println(doctype);
                                  prevdoctype_id=doctype_id;
         if ( doctype.equalsIgnoreCase("Trade Confirm")) {
                                  //System.out.println("Trade Confirm"+ i + doctype);
                   prevdoctype_id=doctype_id;
    in.close();
    catch (IOException e)
    }//class main end
    }// class ReadCSVFile end
    error is
    variable prevdoctype_id might not have been initialized
    if i initialize it then it get's initialized everytime..but when some parameters are blank in a file i just want to resuse the value stored in variable prevdoctype_id

    if i initialize it then it get's initialized everytime.You only need to initialize it one time outside of the while loop for example by setting it to null then the variable is initialized and it will not be overwritte each time.
    btw. the
    if (s[X]!=null)seems to be wrong.
    a) array indices are 0 based. i.e. the first index is 0
    b) split returns an array of Strings based on the regular expression
    so will split return a one element array for the String "token 1" containing ["token 1"]
    a three element array for the String "token 1, token 2, token 3", containing ["token 1", "token 2", "token 3"]
    You should replace your
    if (s[X]!=null) {
    }by
    if (s.length > X) {
    }

  • Message Mapping - Initialize counter every context change

    Hi all,
    is there any way to develop a counter customer function in a graphical message mapping so every context change of a field the counter initializes?
    Imagine i have the following structure:
    1 DATA
    1.1 DETAIL
    1.2 DETAIL
    2 DATA
    2.1 DETAIL
    2.2 DETAIL
    and i wanna count DETAIL fields but initialize the counter every DATA field. Is there any way to do it?
    Thanks a lot.

    Hi,
    If your Source structure is
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_DATA xmlns:ns0="http://yash.com.YH1309">
       <DATA>
          <DETAIL/>
          <DETAIL/>
       </DATA>
       <DATA>
          <DETAIL/>
          <DETAIL/>
          <DETAIL/>
       </DATA>
    </ns0:MT_DATA>
    and You want the Target as
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_DATA xmlns:ns0="http://yash.com.YH1309">
       <DATA>
          <DETAIL>COUNTER=1</DETAIL>
          <DETAIL>COUNTER=2</DETAIL>
       </DATA>
       <DATA>
          <DETAIL>COUNTER=1</DETAIL>
          <DETAIL>COUNTER=2</DETAIL>
          <DETAIL>COUNTER=3</DETAIL>
       </DATA>
    </ns0:MT_DATA>
    Create the below UDF with one argument (DETAIL)  and select Execution type all values of a Context
    for (int i =1;i<=DETAIL.length;i++)
    result.addValue("COUNTER=" + i);
    but if you want Your Target as
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_DATA xmlns:ns0="http://yash.com.YH1309">
       <DATA>
          <DETAIL>1</DETAIL>
          <DETAIL>2</DETAIL>
       </DATA>
       <DATA>
          <DETAIL>1</DETAIL>
          <DETAIL>2</DETAIL>
          <DETAIL>3</DETAIL>
       </DATA>
    </ns0:MT_DATA>
    So please Follow abhishek salvi's reply

  • Row-Wise Session Variable Initialization Block (Max Rows)

    Hi, we have a problem with Row-Wise Session Variable.
    We'll try to implemented the security with a External Query and a Row-Wise Initialization Block. But when we'll try to open the Web Obiee and the rows of result of the query is more than 3000 rows, the browser is broken. The access is very slowly.
    When the result of Query to Row-Wise Variable is more than 3000 rows and we'll try to open the Web Obiee, we have to close NQServer.EXE process of Obiee Server.
    Is there a best practise or a limit rows in the Row-Wise Initialization Block?.
    Thanks.

    You're Right, the people can't be in 3000 groups.
    Is possible I don't explain my problem correctly.
    We use this Row-Wise Variable for implement Data Level Security. .
    For Example :
    I have a fact table with Offices and Office's Sales.
    And each Obiee User can see many Offices according to their level of security.
    I want filter the fact table using a external SQL table implemented in a Session Row-Wise Variable and a User can have X Offices (In the worst case, 3000 Offices).

  • Inheritance - instance variable initialization

    Hi all.
    I have a question regarding inherited instance variables.
    class Animal {
       int weight;
       int age = 10;
    class Dog extends Animal {
       String name;
    class Test {
       public static void main(String[] args) {
          new Dog();
    }This is just an arbitrary code example.
    When new Dog() is invoked, I understand that it's instance variable "name" is give the default
    type value of null before Dog's default constructor's call to super() is invoked.But Im a little perplexed about
    Animals instance variables. I assume that like Dog, Animals instance variables are given their default type values
    of 0 & 0 respectively, before Animals invocation of super(); What im unclear about is that at the point that weight and age are given their default type values, are Dog's inherited weight and age variables set to 0 aswell at that exact moment? Or are Dog's inherited weight and age variables only assigned their values after Animals constructor fully completes because initialization values are only assigned to a classes instance variables after it's call to super().
    Many thanks & best regards.

    Boeing-737 wrote:
    calvino_ind wrote:
    Boeing-737 wrote:
    newark wrote:
    why not throw in some print statements and find out?Super() or this() have to be the very first statement in a constructor..
    Also you cannot access any instance variables until after super or this.
    :-S
    Kind regardsbut if you add the "print" statement in animal constructor, you can easily see what happened to the attributes of Dog ; that s the trick to print "before" super()You can never add a print before super(). It's a rule of thumb, super() and this() must always be the first statements
    in a constructor, whether added implicitly by the compiler or not. In this case there are 2 default constructors (inserted by the compiler), each with a super() invocation. Even if i added them myself and tried to print before super(), the compiler would complain.
    Thanks for the help & regards.you didn't understand what i meant ; take a look at that:
    class Animal {
       int weight;
       int age = 10;
       public Animal() {
           Dog thisAsADog = (Dog) this;
          System.out.println(thisAsADog.name);
          System.out.println(thisAsADog.x);
    class Dog extends Animal {
       String name;
       int x = 10;
    public class Test {
       public static void main(String[] args) {
          new Dog();
    }this way you will know what really does happen

  • [OT] surprising instance variable initialization exception behavior

    No real question here. Just something that caught me quite off guard. I thought I understood the object instantiation process pretty well, but there's clearly at least one significant gap in my knowledge.
    Not surprisingly, the following gives "Error:Error:line (4)unreported exception java.lang.Exception; must be caught or declared to be thrown" for the new WTF2() line.
    public class WTF1 {
      private final WTF2 wtf2 = new WTF2();
      WTF1() /* throws Exception */ {}
    class WTF2 {
      WTF2() throws Exception {}
    }Quite surprisingly (to me at least) if we uncomment "throws Exception" in the WTF1() c'tor declaration, the compiler is happy.
    Reading [JLS 12.5 Creation of New Class Instances|http://java.sun.com/docs/books/jls/third_edition/html/execution.html#12.5], I can see that executing the instance initializers is step 4 of "the indicated constructor is processed to initialize the new object using the following procedure", so I guess I can see how executing the initializer can be considered "part of" executing the c'tor, and hence covered by its catch block. It just looks a little weird, and I always thought that the initializer executed before the c'tor, and had to catch checked exceptions.
    Now that I've learned something, I'm ready to count this day as a win and head to the pub. :-)

    BIJ001 wrote:
    wtf2 is an instance variable, so (the appropriate copy) must be initialized in (every) constructor.Eh? No.
    It's final, so therefore it must have it's value set by every normal completion of every ctor. But that's irrelevant to what I'm looking at. I'm talking about the fact that the declaration/initialization line complains or doesn't based on the throws clause of the c'tor.
    I see now why it works that way, but I just thought the initializer execution was "outside of" the c'tor execution. I thought that if new WTF2() could throw a checked exception, I'd have to do something like we do for static initializers:
    private final WTF2 wtf2;
      try {
        wtf2 = new WTF2();
      catch (Exception e) {
        throw some unchecked exception
    }As it turns out, the initializer is executed "inside" the c'tor in a way I didn't expect.

  • Multiple variable initialization using arrays

    Hi,
    In my program I want to initialize some 20 odd variables(all of the same type) to the same value having their names as Input1, Input 2 .. Input 20. Want I want to do is to use an array to do this rather than writing the 20 variables one after the other. Is there any way to do so ?
    Please help.
    Thanx in advance,
    Gaurav

    Hi Again,
    I am sorry for framing the question wrongly. What i want exactly is this :
    I want to create a variable no. of arrays (the number of arrays will be inputed by the user). I want to initialize them ,something like this
    int Input1 [] = new int [400];
    int Input2 [] = new int [400];
    After this initialization I will then fill these with some info. from a file and then use it in my program.
    So I want to use a for loop or some other loop so that I can achieve this.
    Please help,
    Thanks
    Gaurav

  • Shared Variable Initializa​tion

    For whatever reason if I use shared network variables over the network they take 20 seconds each to initialize... after all of them initialize they are very fast.  Does anyone know why it would take exactly 20 seconds for this to occur?  If i look at the variables in variable manager i can see the update values and they are exactly 20 seconds apart.  This occurs weather i'm using a library with 20 variables or one with only 1 variable. 

    Hi Tak321,
    You can change the gateway address in the network properties on Windows (if that is the operating system you are using), however, doing so could disrupt your communications to your building network.  It does sound like it is possible that the shared variables are routing through the other network.  You could try disabling that network adapter to be sure.  It is also possible to bind shared variables to a specific network card: http://digital.ni.com/public.nsf/allkb/D358BABAE2F​61F1A862571570056867D?OpenDocument
    Regards,
    Jeremy_B
    Applications Engineer
    National Instruments

Maybe you are looking for

  • How do i change my country on the app store

    So my country currently is canada but i want to change it to the us for a bit because i want the app abc family but the app is only availble for americans. I know how to do it but when i press country/region is says i have to use all the money on my

  • How to keep my Aperture library from showing up in other user's iPhoto?

    I use an iMac 24 with OS 10.8.2  I use Aperture on my account and my wife and kids use iPhoto on their separate accounts on the same computer. For some reason, over the last few months, everytime they open thier iPhoto, my Aperture photos show up fir

  • How can I shut off the reminders in iCal?

    OK, there is a topic in the preferences and there I set the remindung-options to „off" (or „without") – but if I import a .ics I'll find in every date of the imported calender the reminding-option set on „1 day before at 9 a.m." When I opened the cal

  • Attachments to Purchase order via e-mail

    Hi, Im working on SRM5.5, Extended classic scenario, I have a requirement where : Right now , users can send Purchase Orders by mail to vendors but apart from the PDF version of the Purchase Order no other document can be attached to the email. I hav

  • Itunes backup function on older Mac operating systems

    Is there a way to use the new itunes backup function on an older Mac running OS X 3.1? Or am I stuck transferring files the old way by using the ipod as a hard drive?