Explanation needed for IAutomationObject

hi,
can anyone tell me when to implement the IAutomationObject
interface? when and why should we use that? It has been used in the
flexstore application but i'm not able to figure out the reason
behind that. can you tell me the effects of using that.
Thanks,
Shajahan

Hi, if you've just one Connector View (CV) and you want to synchronise entries from the CV to the MetaView (MV) then you need a "DN Mapping Rule". It's the purpose of the DNMappingRule to create the new DistinguishedName and entry in the target view. You do not have a DNMappingRule setup typically the rule would be something like uid=%uid% assuming uid is the RDN.
No not use Atomic where possible it's best practise to apply more control over the flow of attributes using an Attribute Flow Rule.
You don't need a Join Rule if there's only one datasource (ConnectorView) , the Join Rule is used to join entries that are split across multiple Data Sources say perhaps in Oracle and Directory Server.
Hope this helps,
Paul

Similar Messages

  • Explanation needed for Join rules

    I try to configure the join Engine for some days now, andf probably I got something completly wrong... Here is what I try:
    I have a "Participating View" (which is a NT Connector View) and a Meta View. When I enable the NT Connector View for the join engine, all entries flow from NT Connector View to the Meta View.
    But when I change something in Meta View, it does not flow to the Connector View. I don't understand why.
    Settings in Participant View are:
    Attribute flow:
    to connector atomic
    to meta view: atomic
    joinrules:
    to conn: atomic
    to mv: "testruleset"
    DN mapping rules:
    to conn: atomic
    to mv: atomic
    filters:
    to conn: none
    to mv: none
    entry default ownership:
    to conn: Meta View
    to mv: Connector View
    entry default membership:
    To connector: Not a member of CV
    to mv: Member of CV
    "testRuleset" has one join rule:
    1. Optional Token Assignments: <none>
    Selection Criteria: <none>
    givenname=%givenname%
    As I understood the documentation, this rule should join entries, which have the same givenname.
    So if I have two entries:
    in MV:
    dn: uid=test1,o=company
    givenname: jack
    sn: smith
    uid: test1
    telephonenumber: 123
    and in CV:
    dn: uid=test2,o=company
    givenname: jack
    sn: smith
    uid: test2
    mail: [email protected]
    This rule should (as I read the documentation) join both entries in the MV to one entry containing a mail address an a telephone number, but it does not.
    Could anyone correct tell me what part I got wrong or post a working example?
    Thanks!
    Florian

    Hi, if you've just one Connector View (CV) and you want to synchronise entries from the CV to the MetaView (MV) then you need a "DN Mapping Rule". It's the purpose of the DNMappingRule to create the new DistinguishedName and entry in the target view. You do not have a DNMappingRule setup typically the rule would be something like uid=%uid% assuming uid is the RDN.
    No not use Atomic where possible it's best practise to apply more control over the flow of attributes using an Attribute Flow Rule.
    You don't need a Join Rule if there's only one datasource (ConnectorView) , the Join Rule is used to join entries that are split across multiple Data Sources say perhaps in Oracle and Directory Server.
    Hope this helps,
    Paul

  • Explanation needed for how CTX_DDL.ADD_MDATA_SECTION works

    I am having difficulty understanding conceptually how the CTX_DDL.ADD_MDATA_SECTION procedure works. Its arguments are group name, section and tag. The group name I understand. What I don't understand is why is there both a section and tag arguments.
    The example in the documentation is:
    ctx_ddl.create.section.group('htmgroup', 'HTML_SECTION_GROUP');
    ctx_ddl.add_mdata_section('htmgroup', 'author', 'Gordon Burn');
    which the documentation explains
    creates an MDATA section called AUTHOR and gives it the value Gordon Burn (author of the novel Alma).
    I tried this example though with a basic_group and section called title and a tag called title. I then tried to search with CONTAINS(my_column, 'MDATA(title, title)') > 0 yet I did not get results. When I used the CTX_DDL.ADD_MDATA and added the word title I got back results.
    What is the significance of the tag argument in ADD_MDATA_SECTION? You cannot search on it and furthermore you don't use it in ADD_MDATA, you only use the section_name.

    It is difficult to understand exactly what you did without a full example and having only one tag with the same name as your section adds to the confusion. Please see if the following example, where I have used a fiction_titles tag and a computer_titles tag, makes things clearer. If it is still not clear, then please provide a copy and paste.
    SCOTT@10gXE> CREATE TABLE my_table
      2    (my_column  VARCHAR2 (25),
      3       title        VARCHAR2 (40))
      4  /
    Table created.
    SCOTT@10gXE> INSERT ALL
      2  INTO my_table (my_column, title)
      3    VALUES ('old classic', 'Alice in Wonderland')
      4  INTO my_table (my_column, title)
      5    VALUES ('new movie', 'Inside Man')
      6  INTO my_table (my_column, title)
      7    VALUES ('Tom Kyte''s first book?', 'expert one-on-one Oracle')
      8  INTO my_table (my_column, title)
      9    VALUES ('interesting reading', 'Oracle Database 10g PL/SQL Programming')
    10  SELECT * FROM DUAL
    11  /
    4 rows created.
    SCOTT@10gXE> BEGIN
      2    CTX_DDL.CREATE_SECTION_GROUP ('basic_group', 'BASIC_SECTION_GROUP');
      3    CTX_DDL.ADD_MDATA_SECTION    ('basic_group', 'title', 'fiction_titles');
      4    CTX_DDL.ADD_MDATA_SECTION    ('basic_group', 'title', 'computer_titles');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX my_index ON my_table (my_column)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('SECTION GROUP basic_group')
      4  /
    Index created.
    SCOTT@10gXE> DECLARE
      2    v_rowid ROWID;
      3  BEGIN
      4    SELECT ROWID INTO v_rowid FROM my_table WHERE title = 'Alice in Wonderland';
      5    CTX_DDL.ADD_MDATA ('my_index', 'title', 'fiction_titles', v_rowid);
      6    SELECT ROWID INTO v_rowid FROM my_table WHERE title = 'Inside Man';
      7    CTX_DDL.ADD_MDATA ('my_index', 'title', 'fiction_titles', v_rowid);
      8    SELECT ROWID INTO v_rowid FROM my_table WHERE title = 'expert one-on-one Oracle';
      9    CTX_DDL.ADD_MDATA ('my_index', 'title', 'computer_titles', v_rowid);
    10    SELECT ROWID INTO v_rowid FROM my_table WHERE title = 'Oracle Database 10g PL/SQL Programming';
    11    CTX_DDL.ADD_MDATA ('my_index', 'title', 'computer_titles', v_rowid);
    12  END;
    13  /
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> SELECT *
      2  FROM   my_table
      3  WHERE  CONTAINS (my_column, 'MDATA (title, fiction_titles)') > 0
      4  /
    MY_COLUMN                 TITLE
    old classic               Alice in Wonderland
    new movie                 Inside Man
    SCOTT@10gXE> SELECT *
      2  FROM   my_table
      3  WHERE  CONTAINS (my_column, 'MDATA (title, computer_titles)') > 0
      4  /
    MY_COLUMN                 TITLE
    Tom Kyte's first book?    expert one-on-one Oracle
    interesting reading       Oracle Database 10g PL/SQL Programming
    SCOTT@10gXE>

  • Help needed for THE decision

    Hi everyone ☺
    I’m finally planning to start recording what I play, and after some hours of wandering on the web I found some interesting possibilities. Now what I need is to decide which one is more suitable for my needs, and here comes the moment for apple discussions
    Basically, I will record my own music one track/instrument at a time (I’m still not able to play more than one…and I dont’ want to spend 2.000$ to buy a 24-ins device just to record drum tracks), I’d like to have a software with built-in effects for guitar/bass/voice, integrated soundtrack possibilities (to play with video recordings), mixing options for both stereo and surround mixing, and I don’t want any card to be placed into my mac. Well, and obviously the sound quality must be pro-like…as anyone probably wants.
    So, here’s what I came up with:
    a) getting logic pro studio 8 and apogee duet
    b) getting pro tools m-powered and mbox 2
    c) getting one of the two softwares and a Monster iStudioLink Instrument cable and plug instruments directly into the mac
    Now, the questions are:
    if I can plug an instrument directly into my mac and control all parameters via one of the two softwares, what do tools like duet and mbox2 serve for?
    In the case this tools are useful [ ☺ ], why ☺ … and which is the couple software/hardware that can best suit my needs?
    I assume that every software has a proprietary file extension in which audio tracks are saved, so that it should be impossible to record an audio track with one software and edit it with another that has different functions/plugins (ex. from logic to pro tools, from pro tools to cakewalk sonar which I have on a pc etc.). Am I right, or is there any “standard”, non compressed high quality file type in which track can be saved and exported to be edited with different softwares?
    I know that from this post it may easily seem that I’m a hopeless digital idiot, but I swear the situation is not really that bad so no need for the kind of explanations with drawings like the ones you find in the “for dummies” guides lol so every experts’ advice will be greatly appreciated
    Neptune

    Thank you Bee Jay and Pancenter for the lighting-fast and useful answers
    now I am aware that an interface IS NEEDED lol (that means they are not produced without a reasons, are they?). I know Pro Tools is the industry standard but I don't like anyone/anything to tie me to their choices/interests (so that's why I was asking about Pro Tools, knowing that there's some sort of "hardware threat"). What I look for is just quality and if I understood what you both mean, as far as this aspect is concerned, Logic and Pro Tools are substantially comparable...isn't it? On the interfaces side, I already checked the Saffire ones (they seem quite good, and cross-platform use is definitely a plus), I will check the others mentioned and will let you know In fact, I didn't consider the "platform problem" but, as I wrote, I also own a PC with an Audigy 2 soundcard (midi/analog/optical/digital inputs/outputs and firewire port...not Madonna's private studio, but not as sad as Mac's little hole) and Sonar 6 Producer Edition, so that has been a really good point to ponder. And now, in the middle of this software/hardware battle...any personal suggestions based on tests/personal experience?

  • Need for implementing Objects By Filter (OBF) method in ACE

    Hi All,
    i wanted to understand the significance of the OBF method in ACE. Can i implement my logic only using Actor from User (AFU) and Actor from objects (AFO). Does it impact the performace if OBF is not implemented. Please provide you inputs on this.
    Regards,
    Sudha

    Hi Nithish.,
    Thanks for explanation. Yes i understood the purpose of OBF. Let me tyr explain my doubt with an example.
    I have to determine acces for one-order objects having a specific custom  transaction type say ZABC.
    In OBF i will fetch all the one order objects where the transaction type is ZABC. This output of OBF will serve as input to my AFO.
    In AFO, i willl again fetch the same objects. I will loop through the output of OBF method for every object and check if the object fetched in AFO is present in output table of OBF. If yes then proceed further in determinig the actor for that objec. Repeat this process in a loop for every object in OBF.
    If my above understanding is correct, what is need for having specific  OBF method when I can directly write the logic of fetching one order object of transaction type ZABC in my AFO and dertermine the actors for them. without having to loop thourgh the outpu of OBF.
    Regards,
    Sudha

  • Configurations needed for Proxies.

    What are the all configuration steps for using a Server proxy.?

    Hi Soumyasanto Sen ,
    Proxy generation converts non-language-specific interface descriptions in WSDL into executable interfaces known as Proxies. Depending on the target programming language, you choose one of the following:1. Java Proxies. or 2. ABAP Proxies.
    We can interface to XI  through proxies. From WAS 6.20, proxy generation feature enables application systems to communicate with XI using proxies. Proxy generation enables you to create proxies in application systems. Proxies encapsulate the creation or parsing of XML messages and the communication with the relevant runtime components required to send or receive the messages.
    There are two types of Proxies.
    1. Java Proxies.
    2. ABAP Proxies.
    Java proxies are used when java applications needs to send and receive data and ABAP proxies are used when ABAP applications needs to send and receive data.
    The following websites contained detailed explanation (PDF & PPT docs) on Configurations needed for Proxies:
    Proxy Generation
    http://help.sap.com/saphelp_nw04/helpdata/en/86/58cd3b11571962e10000000a11402f/content.htm
    ABAP Proxy Runtime
    http://help.sap.com/saphelp_nw04/helpdata/en/02/265c3cf311070ae10000000a114084/content.htm
    To activate ABAP proxies
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Detailed step-by-step solution for ABAP proxies in XI
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    ABAP Server proxies
    /people/siva.maranani/blog/2005/04/03/abap-server-proxies
    Debugging of Inbound ABAP proxies
    /people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation
    File to R/3 via ABAP Proxy
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy
    How to push data from BI to XI using proxy
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e698aa90-0201-0010-7982-b498e02af76b
    How to push data into BW from XI using proxy
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21dfa9929c9
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    cheers!
    gyanaraj
    ****Pls reward points if u find this helpful

  • Which version of iPhoto you need for streaming?

    I have an iPhone 4, with iOS 5, streaming active. But there is no streaming of pictures towards my Mac. I read the explanations, the help pages in iCloud and Apple doesn't mention at all which version of iPhoto you need for this feature. It's sure that in the Sources I don't have "Streaming", as I can see in their image. I have iPhoto 8.1.2 and OS 10 6.8.

    Hi, thanks for the answer, but iCloud works on my Mac with Snow Leopard.
    From Safari I can access through icloud.com to Calendar, Contacts, Mail, iWork and Find my iPhone. Actually I don't have iWork for the iPhone, so I can't really use it, and I didn't activate Mail (in my iPhone), because all my accounts are IMAP and messages are saved forever.
    Well, the only other thing that interested me was Streaming (so is it called in Italian, but you are right, in the English version of the help pages it is called Photo Stream).
    I'm aware that the version of iPhoto that I need for that feature must be more recent than mine, but I still hope that there is a version of iPhoto which supports Photo Stream and requires only Snow Leopard. I think that after iLife 9 (my version) there is directly iLife 11 (the present version), and I know it requires only 10.6.3 and not Lion. If Photo Stream is supported by iLife 11 and iLife 11 requires 10.6.3.... But perhaps there is an exception for some features, like Photo Stream. I would like to know...
    I don't want to update to Lion, it is a slow system.
    Thanks again

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • XMLAGG structure, performance help needed for odd nesting in schema

    Hello,
    I have to produce XML to look like:
    <?xml version='1.0'?>
      <enterprise>
        <membership>
          <sourcedid>
            <id>PHYS_101_001_FA2007</id>
          </sourcedid>
        <!-- NOTE: absence of "members" level tag for XMLAGG! -->
        <member>
          <sourcedid>
            <id>D2LU0001</id>
          </sourcedid>
          <role roletype="Sample Role">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourcedid>
            <id>D2LU0002</id>
          </sourcedid>
          <role roletype="Sample Role">
            <status>1</status>
          </role>
        </member>
      </membership>
    </enterprise>This would be straightforward if the schema allowed for a "<members>" tag under which to nest the <member> tags. But, it does not allow for that tag or any other than those listed above.
    I have a query which does produce that output (except for the roletype attribute), but its performance is horrible; it takes about 40 minutes to return data:
    SELECT
         XMLROOT(
             XMLELEMENT("enterprise",
               XMLAGG(
                 XMLELEMENT("membership",
                   XMLFOREST( XMLELEMENT("id",cx.mapped_course_id) as "sourcedid"
                   (SELECT XMLAGG(
                     XMLELEMENT("member",
                       XMLFOREST(XMLELEMENT("id",spriden_id) AS "sourcedid",
                                 XMLELEMENT("status",'1') AS "role"
                      FROM enrollments_fall_sfrstca efs
                         , spriden sp
                         , gzv_tuid t
                     WHERE sp.spriden_change_ind IS NULL
                       AND sp.spriden_pidm       = t.pidm
                       AND t.tuid                = efs.user_name
                       AND efs.mapped_course_id  = cx.mapped_course_id
                       AND efs.term              = cx.semester
                , VERSION '1.0', STANDALONE NO VALUE)
      FROM courses_xt cx
    WHERE cx.semester = :term_code
    ;Similar queries are producing courses and users XML fine with no performance issues, but these are driven off either the courses view or the enrollments view, but not both.
    Is there some other way I can produce the nesting I need for the vendor's schema?
    The source views are basically as follows (showing relevant columns only):
    courses_xt:
    MAPPED_COURSE_ID       SEMEST
    AVFT209-13307-201210   201210
    AVFT210-13308-201210   201210enrollments_fall_sfrstca:
    MAPPED_COURSE_ID       USER_NAME
    AVFT209-13307-201210    FULLERC8
    AVFT209-13307-201210    SHUPEK
    AVFT209-13307-201210    NOMAN
    AVFT210-13308-201210    SHUPEK
    AVFT210-13308-201210    PELLONMWhen I have the query without the XML (with the subquery as a column of the outer query), this returns the correct data quickly (a couple of minutes).
    I have tried various permutations of XMLFOREST, XMLELEMENT, XMLAGG but either I get syntax errors, or the data is wrong (e.g. repeated '<membership>' for each '<member>', or I have to create an invalid tag '<members>' to be filtered later).
    Please advise!
    Thanks,
    Anita Lees

    Hi Anita,
    Have you tried with a GROUP BY and no subquery?
    Here's an example using SCOTT schema.
    I've used the same tag names and structure so that you can see the analogy :
    SELECT XMLElement("enterprise",
             XMLAgg(
               XMLElement("membership",
                 XMLElement("sourceid", xmlelement("id", d.deptno))
               , XMLAgg(
                   XMLElement("member",
                     XMLElement("sourceid",
                       XMLElement("id", e.empno)
                   , XMLElement("role",
                       XMLAttributes(e.job as "roletype")
                     , XMLElement("status", '1')
    FROM scott.dept d
         LEFT OUTER JOIN scott.emp e ON e.deptno = d.deptno
    WHERE d.deptno IN (10,20)
    GROUP BY d.deptno
    ;which gives :
    <enterprise>
      <membership>
        <sourceid>
          <id>10</id>
        </sourceid>
        <member>
          <sourceid>
            <id>7782</id>
          </sourceid>
          <role roletype="MANAGER">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7934</id>
          </sourceid>
          <role roletype="CLERK">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7839</id>
          </sourceid>
          <role roletype="PRESIDENT">
            <status>1</status>
          </role>
        </member>
      </membership>
      <membership>
        <sourceid>
          <id>20</id>
        </sourceid>
        <member>
          <sourceid>
            <id>7369</id>
          </sourceid>
          <role roletype="CLERK">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7902</id>
          </sourceid>
          <role roletype="ANALYST">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourceid>
            <id>7566</id>
          </sourceid>
          <role roletype="MANAGER">
            <status>1</status>
          </role>
        </member>
      </membership>
    </enterprise>

  • MSI ti 4200 128 MB and Problems with "Need for Speed: HighStakes"

    Does any one know of a fix for "Need for Speed: HighStakes" with the new 45.32 drivers. When trying to start this game it won't even load, the screen goes dark for a second and then falls back to the desktop. Did the same thing with 43.45, but if I install the drivers that came with the Video card ( I think they were 31.XX) then the game works fine. Haven't come across any other games that won't run except this one, some examples that work fine are UT 2003, C&C: Generals, Warcraft 3, Hot Pursuit 2.
    System:
    XP pro OS (sevice pack 1) DirectX 9
    Athlon 1800
    512 MB RAM
    MSI nforce 2 Main board
    MSI GeForce 4 4200 ti 128 MB 8X AGP
    Thanks for any info.

    well I "bugged" the game makers (EA) and the response is that the game doesn't suport Windows XP. Strange that the older nVidia 31.xx drivers work fine with the game. Also played it on my last machine which had XP and a ATI radeon video card. OH well who ever said Direct X was supposed to be backward compatible.
    Too bad the older drivers don't work so well with the newer games.

  • Hi! I can't upgrade my iTunes 10.3.1.55 on my Windows XP 2002 SP3 to the latest version of iTunes. Got the message: "A problem has occured with the Windows Installer-package. A program needed for this installation could not be run." What to do?

    Hi! I can't upgrade my iTunes 10.3.1.55 on my Windows XP 2002 SP3 to the latest version of iTunes. Got the message: "A problem has occured with the Windows Installer-package. A program needed for this installation could not be run." What to do?

    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • Hi have just purchased iphone 4s . my itunes on my mac is currently 10.4 . 10.5 is needed for the new iphone but when i download it and click on install the itunes about still says 10.4 . have tried to update through itunes but it says there is no softwar

    hi have just purchased iphone 4s . my itunes on my mac is currently 10.4 . 10.5 is needed for the new iphone but when i download it and click on install the itunes about still says 10.4 . have tried to update through itunes but it says there is no software available for me . please help . mr frustrated

    If your computer is running an OS X prior to Snow Leopard 10.6,
    the answer (if it is an Intel-based Mac; not old PowerPC model)
    would be to buy the retail Snow Leopard 10.6 DVD from Apple
    for about $20, and install it. Then update that to 10.6.8 by using
    the installed Snow Leopard online to get Combo Update v1.1 for
    Snow Leopard 10.6.8. After that is installed & updated, run the
    system's Software Update again, to see what else is available to
    that system.
    Later systems can then be looked into at Mac App Store, once
    the computer is running Snow Leopard 10.6.8.
    And if your computer is a Power PC (G4/G5, etc) and has no
    Core2Duo kind of CPU -- See "About this Mac" in apple menu
    to disclose the general info about your Mac. Also you can see
    even more by clicking on "More Info" when looking in there...
    If it isn't an Intel-based Mac, it can't run a system past 10.5.8.
    Hopefully this helps.
    Good luck & happy computing!

  • Can i use my creative cloud membership on laptop and desktop? Or is one membership needed for each device?

    Can i use my creative cloud membership on laptop and desktop? Or is one membership needed for each device?

    Yes you can!

  • I have an ipod touch 4g. I want to use our internet hdtv as a monitor so others can see my screen in 40". Sony guy said that can do it wirelessly through the internet router instead of Hdmi without the need for an apple tv.Is this true and how do I do it?

    As I said above, I want to view my iPod screen on our new 40" Sony Internet full HD TV.
    I know that you can do this via HDMI but a Sony guy said that you should be able to do this wirelessly by going through the router. Is this true and can I do this without the need for the Apple TV?
    We are soon going to get the airport extreme, so will it work with that?

    1. Is it a smart TV?
    2. If so.... Is the TV connected to the Internet?
    3. If it is.... Check if your iPod and your TV share the same IP address (Wi-Fi network)
    4. If they do.... Then you should go to wherever your "Other Media" tab is.
    5. After that.... Search for you iPod. Because it is connected to the same network, it should recognize the device they same way AirPrint does.
    6. If you happen to see this fail, then try this method:
    1. Do you have a Bluetooth-enabled computer/laptop?
    2. If so.... Enable the bluetooth on the computer/laptop as well as your iPod.
    3. After that.... Your iPod should be actively searching and it should find the computer/laptop.
    4. If it did.... Transfer the file onto Windows/Mac (preferably Mac) and find the program to open the file.
    5. After doing so.... Connect your computer/laptop to the TV via HDMI Output Cable.
    6. Now it should work!

  • How many Licenses of Acrobat Professional do I need for Adobe LC PDF Generator

    Hi,
    At our customer site we have purchased 6 licenses of Adobe LiveCycle PDF Generator and have recieved a license file with the keys for Adobe LiveCycle PDF Generator and Adobe Acrobat Professional. We bought the license from a reseller of the product. We understand that the Adobe LiveCycle PDF Generator is a server based software and needs 1 license per CPU. Each of our server (Dev, Val & Prod) have 2 CPU's so we have sufficient licenses (6). We are under the impression that this would suffice. How ever we are not sure on how many licenses we need for Acrobat Professional.
    Here is a brief description of the way we would use Adobe LiveCycle PDF Generator. We are deploying a PLM system and one of the requirement is to render Word documents to PDF so we are using PDF Generator for this capability. On our Adobe servers we will install Microsoft Word, Acrobat Professional V9 Extended and the Adobe Livecycle PDF Generator. We will have around 150 users for the PLM system being deployed. The PLM system is a Web based system which means the PLM application server will be running on a Solaris server in our case. As part of the workflows in the PLM system, at the end of the workflow process, the PLM server would trigger a request to the Adobe server to convert the word document to PDF. The Adobe server processess the request and returns the PDF file that gets generated.
    Based on the above usage of the system how many licenses of Acrobat Professional do we need? We will be installing Acrobat only on the server where we install the Livecycle PDF Generator. We had a call with our purchasing person today and she cautioned us that for Adobe Acrobat Professional we might need 1 license per user of the PLM system. She has asked us to check this with the Vendor of the product. Somehow I don't think it makes sense to purchase so many Acrobat Professional licenses even though we install only once.
    So can someone tell me How does the licensing for Adobe Livecycle PDF Generator work? How many Acrobat Professional licenses we actually need? Is it based on the number of users in the system that is triggering the request? Appreciate your response on this.
    Regards,
    Ragha

    You really should talk to your Adobe Sales Rep about this.  There are all kinds of special deals, licenses and such for customers using LiveCycle.  (For instance the license for PDFG may include Acrobat licenses for certain uses).

Maybe you are looking for