I had a doubt in jdeveloper11g

first watch out the example.
eg : select starting_number from tablename1;
starting_number // field name
1000 // user defined.
after saving the data. perform increment operation.
starting number // field name
1001 //auto increment takes by with help of code.
Most often peoples using sequence number for generating unique number.
My idea is :
i will define the start number as 1000 and perform increment operation .does not mention end number(i.e) it will be infinity.
this starting number field is in defined in a table. while am commit the data in the UI . unique number must be generated.(number generation based on the field what it contains)
how to handle this?
but i tried in the following manner:
In SessionEJBClient - In the main function
table_ name b; //b - object of that table;
String str1 = b.getNextnum(); // getting number from the table
int num = Integer.parseInt(str1); // convert it.
num = num+1; // increment one by one
String str2 = new Integer(num).toString();
b.setProsNextId(str2); // assign to the table
by using
tx.commit // update the newly generated number to corresponding table.
it's working .
but it unable to show in user interface.
how can i communicate Session Client - UI. Is it Possible to do this.
how to show the generated number in UI. if any one know.please guide that will be great.
Edited by: 871573 on Jul 11, 2011 4:05 AM
Edited by: 871573 on Jul 11, 2011 7:56 AM
Edited by: 871573 on Jul 11, 2011 8:05 AM

sir,
i tried it. its fine. in previous post.something i tried. itz working unable to complete it. sessionclient and ui interaction is not takes places.
if you don mine can u say?
can u guide? or suggest any other ideas. for my previous post.

Similar Messages

  • Doubt on technical systems and fault message types

    Hi,
            I had still doubt & i'm not clear to answers i got yesterday , plz clarify my doubts
             1.what are fault message types and   how  do we catch any exceptions  in file to  proxy scenario , can any one give simple example ?
             2.How do we register a non-sap system(FTP SERVER) in SLD  ? what steps  should we follow? Does any one have blogs regarding this?
               Plz answer to this questions, good answers will be rewarded.

    Hi Smitha,
    <i>1. what are fault message types and how do we catch any exceptions in file to proxy scenario , can any one give simple example</i>
    Fault Message are Msg type that provided whenever u create a namespace..they are usually used to get the exception or error mapped which has occured while execution of Application at the sender/receiver end....
    One scenario where i had used it from Soap to RFC where i defined the exception in rfc source code at r/3 end...I mapped that exception to Fault msg type that i created of my own type(didnt used the default)..
    Refer this for Fault msg usage in Asynch scenarios.
    /people/shabarish.vijayakumar/blog/2006/11/02/fault-message-types--a-demo-part-1
    Refer this for Fault msg usage in Synch scenarios.
    /people/sap.user72/blog/2006/01/16/xi-propagation-of-meaningful-error-information-to-soap-client
    Refer this for Handling Exceptions
    http://help.sap.com/saphelp_nw04/helpdata/en/33/4a773f12f14a18e10000000a114084/content.htm
    <i>2.How do we register a non-sap system(FTP SERVER) in SLD ? what steps should we follow? Does any one have blogs regarding this?</i>
    For this you have to define the 3rd Party TS & BS in sld.
    Have a look at the following links...
    http://help.sap.com/saphelp_nw04s/helpdata/en/fa/0aad3efa11b300e10000000a114084/frameset.htm
    Cheers...
    Vasu
    <b>** REward POints if found useful **</b>

  • Doubt on Sync-Async  bridge using BPM

    Hi Experts,
                     I had a doubt on Sync-Async  bridge using BPM,
       1. If sender system is SAP system and receiver system is non-sap system then while configuring in Integration Directory how many  Receiver Determinations should be done ?
    2.Plz explain if we have 2 receivers i.e one sender SAP system and 2 non-sap systems then what will be the no. of receiver determinations?
    3.How we have to count no. of receiver determinations if we have 2 receivers and 1 receiver system? If so what is the no. of receiver determinations in case of 1 receiver syst and 2 receiver systems?
    Plz clarify above questions  good answers will be definetly rewarded.
                                                                                    Regards,
                                                                                    Vinod.

    vinod,
    ... Sync-Async bridge and Recievr determination are not related....
    Sync-Async bridge means.. u r sending some request syncronously...and u r expecting the response also in synchronous way... but u r not getting the response  directly...u r getting it via BPM..i.e asynchornously.....
    see here what is the  Use of Synch - Asynch bridge in ccBPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi
    and here if u have 2 reciver... u have to create 2 receiver determination and ofcourse for BPM one reciver dtrmination is required.... since in BPM related scenario BPM will act as a reciver...BPM(IP) wil first recive the message then it will be forwarded to Receiver system!!! so total 3.
    <b>3.How we have to count no. of receiver determinations if we have 2 receivers and 1 receiver system? If so what is the no. of receiver determinations in case of 1 receiver syst and 2 receiver systems?</b>
    r u telling that u r having two recivers and each receiver is receiving messages using 2 interaces???
    u have 2 use 2 receiver determination and 4 interface determination.
    regards
    biplab

  • Clarification of doubt in File-XI-JDBC scenario

    I had one doubt in this scenario.can anybody Plz clarify in this scenario File-XI-JDBC.
    1)where we have to specify the table name in the receiver JDBC comm channel to insert the data into sql database from file.My doubt is,there are so many tables in existence.in the comm channel i am not mentioning the table name any where.
    currently i am using SQL server and created one table name "EMP" with n columns.
    2)Is i need to configure this sql driver to the J2ee server or by default this will be shipped with XI?
    3)Generally,what are the datbase drivers shipped with XI?
    Thanks in Advance
    Sridhar Raju

    Hi Sridhar
    1) You dont require to mention the name of table in comm channel. You specify it in your data type . your xml format should be
    <root>
      <StatementName1>
    <dbTableName action=”UPDATE” | “UPDATE_INSERT”>
        <table>realDbTableName</table>
    <access>
    <col1>val1</col1>
    <col2>val2new</col2>
    </access>
    <key1>
    <col2>val2old</col2>
    <col4>val4</col4>
    </key1>
    <key2>
    <col2>val2old2</col2>
    </key2>
    </dbTableName>
      </StatementName1>
    Please refer the link for more detail
    http://help.sap.com/saphelp_erp2004/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm
    2) Basically there is an driver file which has to be deployed to the server. But it may be there by default.
    You configure and check your scenario, if driver file is not deployed you will get the message in RWB-> Adapter Monitoring.
    Regards,
    Mitesh.

  • Doubt on scenario involving idocs

    Hi,
         Thankz for ur replies for my questions,i had some doubt in file to idoc scenario
    plz give replies as briefly as possible best answers will be rewarded.
    1.Once XI receives the File, the BAD records needs to put aside in a different file and only the good records needs to be sent to the Adapter.
    Whether Module Processing is the Best Solution?
    What would be Technical approach for the above scenario?
                                                                                    Regards,
                                                                                    Smitha.

    If there is an error in the mapping if a sender sends wrong format, the complete processing will be stopped.
    <i>Once XI receives the File, the BAD records needs to put aside in a different file and only the good records needs to be sent to the Adapter.</i>
    U can go for enhanced interface and receiver determination. BCoz based on input data, u have to choose Idoc receiver or File Receiver
    <i>Whether Module Processing is the Best Solution?</i>
    Not the <b>Best</b> option. but could be used
    Regards,
    Prateek

  • Doubt in SIT ..

    Dear Friends
    Thanks you for the prompt reply, i had a doubt in SIT .See basically client requirement his Over time request has go from manager self service, so I had created an SIT (Overtime Request), and I had enable other check box in special information type (HRMS Resp --> Other Definition -->special Information types), But it was appearing in both the responsibility that is in ESS and MSS. But client requirement is it has to appear only in manager self service. So I had created one custom SIT Function for Mgr self service and I had attached that to the menu and menu to the responsibility.. I am wondering that how to restrict that overtime request in ESS and how to enable only for MSS.. Can anyone help me out to sort out this issue..
    with regards
    Surya

    Hello there,
    Thanks for using Apple Support Communities.
    If you would like to sync music to your iPhone, you will need to use iTunes on your computer, and then follow the directions in the article linked to below.
    Sync your iPhone, iPad and iPod with iTunes using USB - Apple Support
    Cheers,
    Alex H.

  • An doubt about Sun PKCS#11

    Hi , everyone
    I had an doubt when I read "Sun PKCS#11 Reference Guide". here is the url: http://java.sun.com/j2se/1.5.0/docs/guide/security/p11guide.html
    I found these codes:
    KeyStore.Builder builder = new KeyStore.Builder("PKCS11"); the question is I cannot found such a constructor in class KeyStore.Builder. so, why? is that a mistake ? or something I don`t know?
    is there anybody know about this? please tell me, thank you.

    Can I ask you one question?
    Which driver did you specify? I mean the smarcard reader driver or the smartcard itself driver?
    If the second, does it come along with the card? because as far as I know I just got the smart card but no software at all (apart the smartcard reader driver).
    Can you help me out with this?
    thanks in advance,
    Marco

  • Doubts regarding the CTTYP field after a PU12 run

    Hi Everyone,
    I had some doubts regarding PU12. When I maintain the IT16 data for an employee belonging to Employee Group/Subgroup E/52, I want to keep the contract type blank. However, when I do this, CTTYP is not sent through in the IDoc after PU12 processing. I would like to know if this is standard behaviour. (If it is maintained as say unlimited contract, the field is sent through with the value 01) If I would like to send CTTYP through as 00, can I do it? Would I have to maintain a conversion? As of now, this field is configured as a key field in my system.
    Regards,
    Alpana.

    I presume that you cave a template for your documents with unsigned signature fields. Add a text filed (or other field type that you wish to use) to this template. Then you will be able to fill in this field after signing.

  • BAM deployment doubts

    I had gone through the Oracle BAM Deployment Document. I had some doubts in that. Can any one clarify the following.
    1. The document says, "Client IE browsers are responsible for rendering the report on the client machine. This document does not address client systems or performance. It is recommended that client machines should be at least 2GHz CPU, 1 GB RAM and located on the same network domain as the report server. "
    Doubts:
    - Does BAM supports only clients belong to the same domain.
    - Is it for development environment.
    2. At the end of document it says, "Client System Requirements:
    1 CPU at 1.2 GHz or faster, 1GB RAM minimum, 5 MB of disk space with Windows XP Professional, Service Pack 1 or higher, or Microsoft Windows 2000, Service Pack 4. Installed software should include: Microsoft Internet Explorer 6.0, Service Pack 1 or higher, with 1024 x 768 minimum resolution"
    Doubt:
    - Does BAM support only IE 6. What about IE 5+ ?

    1. For better response, it is advised that we limit network hoops and have (if possible) clients and servers on same network domain. BAM will also work across network topologies.
    2. BAM only supports IE6+, definitely not IE5+
    Please engage a local Oracle representative for BAM deployment sizing. It is very important to share your sizing and deployment (perf needs) early on with us.

  • Doubt  on RFC at receiver side

    Hi,
           I had some doubts in FILE to RFC scenario plz kindly answer to this questions ur help will be more valuable.
           1. Is it necessary to create RFC destination on ISERV pointing towards receiver syst?or on receiver syst pointing towards XI?
           2.i'm using BAPI_GOODS_MVT_CREATE so what will be the bapi returning parameter values for that?
           3.in FILE to RFC scenario after registering senders non-sap syst in SLD ,can i create B.SERVICE directly in I.D?
           4.canbody give info on REGISTERING OF QUEUES what is this concept ?
    we have to check this in SMQR  or SXMB_ADMIN?
    what we have to do in realtime REGISTER or UNREGISTER them?
              Plz kindly answer to this questions as many as possible?
               points will be awarded for most valuable answers.
                                                                                    Regards,
                                                                                    smitha.

    <i>> 1. Is it necessary to create RFC destination on
    > ISERV pointing towards receiver syst?or on receiver
    >  syst pointing towards XI?</i>
    You do not need any RFC destinations when using the Receiver RFC adapter. You just create a Receiver RFC adapter with the details pointing to your R3 system.
    <i>> 2.i'm using BAPI_GOODS_MVT_CREATE so what will
    >  be the bapi returning parameter values for that?</i>
    In the IR, you can check the Response XML of the same BAPI or execute the BAPI from SE 37 and check it out.
    ><i>> 3.in FILE to RFC scenario after registering
    > senders non-sap syst in SLD ,can i create B.SERVICE
    >  directly in I.D?</i>
    This is optional . if you have created a 3rd Party Business System you can use this as bioth the sender and receiver or you can use a Business Service created in the Integration Directory.
    Regards
    Bhavesh

  • Enhanced VPC doubt

       Hi,
    I was going through the documentation for enhanced VPC and had some doubts
    A FEX can be:-
    1) Single homed to  N5K/N7K
    2) Dual homed to  N5K/N7K
    If scenario 1, Do i have to create a VPC just to connect a server that has 2 NICs homed to FEX1 and FEX2 with active/active?
    If scenario 2, Do i have to create a VPC just to connect a server that has 2 NICs homed to FEX1 and FEX2 with active/active?
    If scenario 1, Do i have to create a VPC just to connect a server that has 2 NICs homed to FEX1 and FEX2 with active/standy?
    If scenario 2, Do i have to create a VPC just to connect a server that has 2 NICs homed to FEX1 and FEX2 with active/standy?
    What is the condition that must be met in order to call a VPC an 'enhanced VPC'?
    Regards

    1) It is not EvPC in this set up. Just a regular vPC since the FEX is straight through.
    2) It is true for the N5K but not N7K. N7K doesn't support vPC FEX.
    Q1. On the server, it is a regular PO. on the FEX 1 and FEX 2, it will be vPC.
    Q2. This will consider EvPC on the N5K ONLY. You will need to configure vPC for the FEXs and regular PO toward the server.
    Q3. This is not EvPC. Just regular connections.
    Q4. This is not EvPC, just regular connections.
    To simiply vPC vs EvPC. vPC is also known as single-layer vPC, meaning the followings:
    or
    EvPC also known as dual-layer vPC and it looks like the following:
    HTH,
    jerry

  • Some Doubts about Event Handlers

    Hi,
    I had some doubts on Event handlers in OIM 11.1.1.5 ........
    1) I want to use the same event handler for both Post Insert and Post update task.... Can I use the same event handler for that... If yes then how can I do that....
    2) Can I create the single Plugin.xml class and add the all jar files in single say lib folder and zip them all together.. if yes then What changes I need to do?? Need to add only the plugin tags for different class files in plugin.xml file? OR need to do some thing extra also...?
    3) If i need to change any thing in any class of event handler.. Is there need to unregister the plugin and again register...??
    If yes.... Is there need to delete the event handler using the weblogicDeleteMetadata command???
    4) As we Import the event handler from path like event handler/db/... If we add all the evetn handler.xml files in that folder..... As During Import weblogicImportMetadata recursively call all the files in that folder.... Now if i need to change anything in any one of event handler class... then if we import from the same folder event handler/db/... What will it do............Create the duplicate copy of all the eventhandlers????? OR i need to add only those Eventhandler.xml files for those class files i made the changes.....
    5) As I need to create email on user creation during recon and also email id get updated as first name or last name updates..... What I had to use in Event handler.xml (entity-type="User" operation="CREATE") or Some thing else....
    Help me clarify my doubts...

    Anil Bansal wrote:
    Hi,
    I had some doubts on Event handlers in OIM 11.1.1.5 ........
    1) I want to use the same event handler for both Post Insert and Post update task.... Can I use the same event handler for that... If yes then how can I do that....Yes, you can have the same. Just have two event handlers in the same MDS file and the operation should be CREATE for one while MODIFY for another. The class and version and name remains the same.
    2) Can I create the single Plugin.xml class and add the all jar files in single say lib folder and zip them all together.. if yes then What changes I need to do?? Need to add only the plugin tags for different class files in plugin.xml file? OR need to do some thing extra also...?Yes, in the single plugin xml you can define multiple eventhandlers and the jar will contain multiple event handlers class.
    3) If i need to change any thing in any class of event handler.. Is there need to unregister the plugin and again register...??
    If yes.... Is there need to delete the event handler using the weblogicDeleteMetadata command???No, if you are just changing the class, then you need to update the class only in the plugin. For this, first delete plugin and then update plugin and then purgecache.
    4) As we Import the event handler from path like event handler/db/... If we add all the evetn handler.xml files in that folder..... As During Import weblogicImportMetadata recursively call all the files in that folder.... Now if i need to change anything in any one of event handler class... then if we import from the same folder event handler/db/... What will it do............Create the duplicate copy of all the eventhandlers????? OR i need to add only those Eventhandler.xml files for those class files i made the changes.....If won't create duplicate copies but would overwrite the ones which are there in MDS at the same location. So effectively, if the xml is not changing you should not be worried about overwritting.
    5) As I need to create email on user creation during recon and also email id get updated as first name or last name updates..... What I had to use in Event handler.xml (entity-type="User" operation="CREATE") or Some thing else....For recon and event handler, you will need to have post process event handler on User CREATE and UPDATE. On Create construct the email address and populate it in the email field. For update check if the firstname/lastname are changing and if yes, then update the email id on the profile.
    >
    Help me clarify my doubts...

  • Doubt on Alerts

    Hi ,
            I had a doubt regarding 'ALERTS':
    1.How do we test alerts ? Is it through report 'RSALERTTEST' , if so any mandatory parameters should be given while testing alerts ?
    2. what are these "alert dumps" how to trace them in transaction ST22, any example for clear understanding purpose?
    3. In case of alerts what is use of transaction "SLG1"?
    plz answer to above questions & ur help will be more valuable .
                                                                                    Regards,
                                                                                    Smitha.

    >         I had a doubt regarding 'ALERTS':
    > o we test alerts ? Is it through report 'RSALERTTEST'
    > , if so any mandatory parameters should be given
    > while testing alerts ?
    You give the name of the Alert Category here.
    > 2. what are these "alert dumps" how to trace them in
    > transaction ST22, any example for clear understanding
    > purpose?
    Basically, if an Alert is not triggered in the runtime due to some error where youe expected an Alert to be triggered,  you should be able to see the trace statements on why the Alert was not triggered here in St22.
    > 3. In case of alerts what is use of transaction
    > "SLG1"?
    SLG1 is the transaction that is used to monitor all Trace Staement of your alerts. It will also contain info like when an Alert was triggered, the recipeient of the alert etc.
    In ALRTCATDEF you would need to select option Write Log for this.
    ST22 contains only error dumps, SLG1 is similar to MoNI . To understand what alert was triggered etc.
    Regards
    Bhavesh

  • Schema doubt

    Hi all,
                i had a doubt about time schemas thought of asking to u.there r 2 schemas for negative TM01 and TM04 what is the differance between them if there is one schema TM04 then why SAP has made a second schema what is the differance betn both of them ?
    another is how to take no of hrs  of a attendance type into some time type please explain this.
    Thanks ,
    Sunil.

    Hi Sunil,
    TM01 is only for Negetive time management...means if there are any deviations.
    TM04 is for both negative and positive time management.
    For Ex : In any company if we have requirement of Positive and Negetivee time management then we can use Schema TM04...
    Means for some employees if it is Positive and Negetive then we use TM04....
    I think it will be use ful for U...
    Regards...
    If U give points it is Appreciated....

  • CC 2014.1 error 5 crash on load, how to fix?

    I get this every time I try to load after effects:
    Configuration error
    Please uninstall and reinstall the product.
    If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of this screen.
    Error: 5
    http://www.adobe.com/support/
    What you'll need to know:
    The issue is only on my iMac 27-inch, Late 2013 3.4 GHz Intel Core i5 8GB 1600 MHz DDR3 NVIDIA GeForce GTX 775M 2048 MB running OSX Mavericks 10.9.5
    I have a full creative cloud monthly subscription
    Every other program I use (Photoshop, Premiere, Media Encoder, Bridge, etc) works just fine
    I have removed / refreshed AE preferences by both cmd + alt + shift start and also by deleting directories
    preferences folder has both read + write permission for my osx account which is admin
    I have UNINSTALLED and reinstalled After Effects 5 or 6 times including using the Creative Cloud gear option next to AE as well as manually via the uninstall app in the program folder.
    I have tried installing AE CC (pre 2014) and it does not work either
    I have tried removing EVERY plugin from library media core and doing so does not fix the problem.
    Mediacore DOES initialize every time I try load after effects,
    I can get to the point that After Effects loads, I have just a couple of seconds to make a menu selection and open a dialog such as preferences, in which I have time to change any preference. When I hit okay... I get the error above I posted in the beginning of the post. If I have the preferences dialog box open and do not exit it I will not get the error, but of course I can't use AE when in that dialog box. If I let AE load and just wait and not touch anything... I will get the same error after a few seconds.
    After Effects CC 2014 DID WORK on this machine before the CC2014.1 update.
    How do I believe this happened?
    During the AE CC2014.1 update CC app showed AE frozen at 99% of install for over 30 minutes... I had some other issues and had to shut down the computer...
    when booting back up I had no need to run AE but since I had to shutdown at a 99% install I figure I better uninstall and reinstall.
    CC had a hard time reinstalling AE, it took a couple of times but eventually it did a full install of AE... A few days later I needed to use AE, then I get this error.
    I repeat... AE WORKED before this CC2014.1 update.. and even rolling back to CC2014 or CC no longer works either.
    I need help resolving this Adobe Team...
    AE works on my macbook pro with the exact same programs, setup, and plugins as the iMac.
    I need help fixing this please.
    P.S.
    every time I reinstall AE, for whatever reason.. it takes nearly 30 minutes and gets hung up at 99% for at least 15 minutes before completing the install... just so you know.. this does not seem normal.. it shouldn't take that long to install.. same situation for uninstalling.. takes forever.
    Disk Utility shows HDD is fine btw..
    I have THOROUGHLY exhausting all the options I could fine online short of wiping Adobe off the iMAC completely which I am NOT wanting to do ... less the other apps that do work stop working or something crazy like that.

    So I used to Clean Tool to completely wipe After Effects,
    Then I thought.... screw the cloud app! why not do direct download/manual updating...
    So I downloaded AE CC 2014 directly:
    http://trials3.adobe.com/AdobeProducts/AEFT/13/osx10-64/AfterEffects_13_LS20.dmg
    and I double checked for any individual updates:
    Adobe - After Effects : For Macintosh
    which the only update I saw was 13.2... seems to be no 13.1
    Installing AE 13 took less than 5 minutes with the install file!
    Installing the 13.2 patch got really slow starting from 40% installed and then these popped up again in the console:
    1/15/15 5:49:48.272 AM mdworker[9939]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 8. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    1/15/15 5:50:38.785 AM mdworker[9892]: zip importer encountered an error (2) scanning "/Applications/Adobe/AdobePatchFiles/{AA97C46A-23AF-4B1A-BF1C-681522994961}.zip".
    1/15/15 5:50:40.505 AM mdworker[9939]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 8. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    1/15/15 5:53:09.026 AM mdworker[9976]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 8. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    1/15/15 5:53:09.131 AM mdworker[9976]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 8. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    The update reported it successfully installed... I had my doubts..
    And SURE ENOUGH! Error 5 crash!
    1/15/15 5:54:21.612 AM After Effects[10001]: objc[10001]: Class NSSoundDeleter is implemented in both /Applications/Adobe After Effects CC 2014/Adobe After Effects CC 2014.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui and /Applications/Adobe After Effects CC 2014/Adobe After Effects CC 2014.app/Contents/Frameworks/AfterFXLib.framework/Versions/A/AfterFXLib. One of the two will be used. Which one is undefined.
    1/15/15 5:54:26.274 AM After Effects[10001]: There was an error parsing the Info.plist for the bundle at URL Contents/Info.plist -- file:///Applications/Adobe%20After%20Effects%20CC%202014/Plug-ins/Effects/Keylight/Keylig htPro.plugin/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x6000006771c0 [0x7fff702ddf00]>{type = immutable dict, count = 2,
    entries =>
      0 : <CFString 0x7fff702c0e00 [0x7fff702ddf00]>{contents = "NSDebugDescription"} = <CFString 0x600000677200 [0x7fff702ddf00]>{contents = "Found non-key inside <dict> at line 23"}
      1 : <CFString 0x7fff702c33a0 [0x7fff702ddf00]>{contents = "kCFPropertyListOldStyleParsingError"} = Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Malformed data byte group at line 1; invalid hex) UserInfo=0x600000678d80 {NSDebugDescription=Malformed data byte group at line 1; invalid hex}
    1/15/15 5:54:30.555 AM After Effects[10001]: -[NSMenu menuID]: unrecognized selector sent to instance 0x60000007e400
    1/15/15 5:54:30.634 AM After Effects[10001]: invalid drawable
    1/15/15 5:54:30.647 AM After Effects[10001]: invalid drawable
    1/15/15 5:54:30.650 AM After Effects[10001]: invalid drawable
    1/15/15 5:54:31.210 AM After Effects[10001]: .sdef warning for argument 'FileType' of command 'save' in suite 'Standard Suite': 'saveable file format' is not a valid type name.
    1/15/15 5:54:31.452 AM After Effects[10001]: CFUserNotificationDisplayAlert:  called from main application thread, will block waiting for a response.
    1/15/15 5:54:32.771 AM After Effects[10001]: -[NSMenu menuID]: unrecognized selector sent to instance 0x60800007fdc0
    1/15/15 5:54:32.772 AM After Effects[10001]: -[NSMenu menuID]: unrecognized selector sent to instance 0x60800007fdc0
    So then I thought... why not just try the AE 13 straight install without the 13.2 update....
    I reused the Adobe Creative Cloud Cleaner Tool to remove all traces of AE again.
    Here's the console log while installing:
    1/15/15 5:57:12.000 AM kernel[0]: hfs: mounted Aftr Efcts CC 2014 on device disk4s2
    1/15/15 5:57:12.310 AM mds[43]: (Normal) Volume: volume:0x7f81b10c7e00 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Aftr Efcts CC 2014
    1/15/15 5:57:12.313 AM coreservicesd[76]: SFLEntryBase::ListHasChanged mach_msg returned 10000004d
    1/15/15 5:57:13.515 AM DiskImages UI Agent[10060]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    1/15/15 5:57:18.205 AM CoreServicesUIAgent[10057]: Error: qtn_file_apply_to_path error: Read-only file system
    1/15/15 5:57:26.578 AM PDApp[10074]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    1/15/15 5:57:26.578 AM PDApp[10074]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    1/15/15 5:57:29.613 AM PDApp[10074]: CoreText performance note: Client called CTFontCreateWithName() using name "Lucida Grande" and got font with PostScript name "LucidaGrande". For best performance, only use PostScript names when calling this API.
    1/15/15 5:57:43.747 AM launchservicesd[59]: Application App:"Adobe Application Manager" asn:0x0-2da2da pid:10074 refs=7 @ 0x7fb69977b740 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x2db2db pid=10080 "SecurityAgent"")), so denying. : LASSession.cp #1481 SetFrontApplication() q=LSSession 100005/0x186a5 queue
    1/15/15 5:57:43.747 AM WindowServer[95]: [cps/setfront] Failed setting the front application to Adobe Application Manager, psn 0x0-0x2da2da, securitySessionID=0x186a5, err=-13066
    1/15/15 5:57:43.759 AM authexec[10082]: executing /Users/davidlevy/Applications/Adobe/OOBE/PDApp/DECore/Setup.app/Contents/MacOS/Setup
    1/15/15 5:57:55.000 AM kernel[0]: hfs: mounted 101685137D9D81FD on device disk7s2
    1/15/15 5:58:06.000 AM kernel[0]: hfs: unmount initiated on 101685137D9D81FD on device disk7s2
    1/15/15 5:58:07.000 AM kernel[0]: hfs: mounted 459A876A8DE8CEFD on device disk7s2
    1/15/15 5:58:19.000 AM kernel[0]: hfs: unmount initiated on 459A876A8DE8CEFD on device disk7s2
    1/15/15 5:59:00.000 AM kernel[0]: hfs: unmount initiated on Aftr Efcts CC 2014 on device disk4s2
    1/15/15 5:59:00.506 AM coreservicesd[76]: SFLEntryBase::ListHasChanged mach_msg returned 10000004d
    Hopefull... I thought maybe it would finally work....
    NOPE!
    1/15/15 6:00:09.763 AM After Effects[10190]: objc[10190]: Class NSSoundDeleter is implemented in both /Applications/Adobe After Effects CC 2014/Adobe After Effects CC 2014.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui and /Applications/Adobe After Effects CC 2014/Adobe After Effects CC 2014.app/Contents/Frameworks/AfterFXLib.framework/Versions/A/AfterFXLib. One of the two will be used. Which one is undefined.
    1/15/15 6:00:10.473 AM PDApp[10194]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    1/15/15 6:00:10.474 AM PDApp[10194]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    1/15/15 6:00:15.352 AM After Effects[10198]: objc[10198]: Class NSSoundDeleter is implemented in both /Applications/Adobe After Effects CC 2014/Adobe After Effects CC 2014.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui and /Applications/Adobe After Effects CC 2014/Adobe After Effects CC 2014.app/Contents/Frameworks/AfterFXLib.framework/Versions/A/AfterFXLib. One of the two will be used. Which one is undefined.
    1/15/15 6:00:19.918 AM After Effects[10198]: There was an error parsing the Info.plist for the bundle at URL Contents/Info.plist -- file:///Applications/Adobe%20After%20Effects%20CC%202014/Plug-ins/Effects/Keylight/Keylig htPro.plugin/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x618000a6bbc0 [0x7fff702ddf00]>{type = immutable dict, count = 2,
    entries =>
      0 : <CFString 0x7fff702c0e00 [0x7fff702ddf00]>{contents = "NSDebugDescription"} = <CFString 0x618000a6b6c0 [0x7fff702ddf00]>{contents = "Found non-key inside <dict> at line 23"}
      1 : <CFString 0x7fff702c33a0 [0x7fff702ddf00]>{contents = "kCFPropertyListOldStyleParsingError"} = Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Malformed data byte group at line 1; invalid hex) UserInfo=0x618000a608c0 {NSDebugDescription=Malformed data byte group at line 1; invalid hex}
    1/15/15 6:00:23.942 AM After Effects[10198]: -[NSMenu menuID]: unrecognized selector sent to instance 0x610000265980
    1/15/15 6:00:24.034 AM After Effects[10198]: invalid drawable
    1/15/15 6:00:24.051 AM After Effects[10198]: invalid drawable
    1/15/15 6:00:24.054 AM After Effects[10198]: invalid drawable
    1/15/15 6:00:24.597 AM After Effects[10198]: .sdef warning for argument 'FileType' of command 'save' in suite 'Standard Suite': 'saveable file format' is not a valid type name.
    1/15/15 6:00:24.837 AM After Effects[10198]: CFUserNotificationDisplayAlert:  called from main application thread, will block waiting for a response.
    1/15/15 6:00:26.392 AM After Effects[10198]: -[NSMenu menuID]: unrecognized selector sent to instance 0x600000262b40
    1/15/15 6:00:26.393 AM After Effects[10198]: -[NSMenu menuID]: unrecognized selector sent to instance 0x600000262b40
    Same crap over...and over... and over again.

Maybe you are looking for