History of SDK changes and patches

Is there a document that lists SDK patches and updates to the SBO 2007A SDK? I need to know what patches of the SDK have been released and what changes were addressed.
Thanks

Hi Peter,
The document you need is available from the "info" link in the download center. It details all changes to the the application as well to the DI/UI API.
Regards,
Vítor Vieira

Similar Messages

  • How to track DDL Changes and source code changes

    How can I track the DDL Changes and the Source code (Functions,Procedures,Packages & views) changes made for selective schemas?.
    I mean I want to maintain the history of DDL changes and the sourcecode change history. How to do that? Please provide your guideline with some example...

    Hi,
    you could use a DDL trigger (before create)
    to maybe capture the code and do the audit as well?
    Try this:
    SQL>create table old_code
    2 as
    3 select user username, 0 version, sysdate date_changed, user_source.*
    4 from user_source
    5 where 1=0
    6 /
    Table created.
    SQL>create sequence version_seq;
    Sequence created.
    SQL> create or replace trigger create_trigger
    2 before create on schema
    3 declare
    4 l_date date := sysdate;
    5 l_ver number;
    6 begin
    7 if (ora_dict_obj_type in ( 'PACKAGE', 'PACKAGE BODY', 'PROCEDURE',
    'FUNCTION' ) )
    8 then
    9 select version_seq.nextval into l_ver from dual;
    10
    11 insert into old_code
    12 select user, l_ver, l_date, user_source.*
    13 from user_source
    14 where name = ora_dict_obj_name
    15 and type = ora_dict_obj_type;
    16 end if;
    17 end;
    18 /
    Trigger created.
    SQL> create or replace function f return number
    2 as
    3 begin
    4 return 0;
    5 end;
    6 /
    Function created.
    SQL> select * from old_code;
    no rows selected
    SQL> create or replace function f return date
    2 as
    3 begin
    4 return sysdate;
    5 end;
    6 /
    Function created.
    ops$[email protected]> select * from old_code;
    USERNAME VERSION DATE_CHAN NAME TYPE LINE TEXT
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 1 function f return number
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 2 as
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 3 begin
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 4 return 0;
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 5 end;

  • [svn] 3189: Accepted patch supplied in SDK-16641 and SDK-16643 to fix bad text measurement when the textIndent style is non-zero (as reported in SDK-16454 and SDK-15558).

    Revision: 3189<br />Author:   [email protected]<br />Date:     2008-09-11 17:33:50 -0700 (Thu, 11 Sep 2008)<br /><br />Log Message:<br />-----------<br />Accepted patch supplied in SDK-16641 and SDK-16643 to fix bad text measurement when the textIndent style is non-zero (as reported in SDK-16454 and SDK-15558). The reported width should include the indent.<br /><br />Although this fixes the problems reported with Accordion and Button labels (and some other components like Panel that appeared in the bug examples), it doesn't fix the Text component (even though it appeared in the bug eaxmple for SDK-15558). For example, the following still is truncated for some reason:<br /><br /><mx:Text text="This mx:text gets truncated" textIndent="50"/><br /><br />This is presumably a separate bug, so I'm accepting the patch as being a step forward even if not a complete solution to textIndent-related measurement problems.<br /><br />Reviewer: N/A<br />Bugs: Patch SDK-16641 for SDK-16454; Patch SDK-16643 for SDK-15558<br />QA: Please file a new bug for the <mx:Text> problem.<br />Doc: No<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/SDK-16641<br />    http://bugs.adobe.com/jira/browse/SDK-16643<br />    http://bugs.adobe.com/jira/browse/SDK-16454<br />    http://bugs.adobe.com/jira/browse/SDK-15558<br />    http://bugs.adobe.com/jira/browse/SDK-15558<br />    http://bugs.adobe.com/jira/browse/SDK-16641<br />    http://bugs.adobe.com/jira/browse/SDK-16454<br />    http://bugs.adobe.com/jira/browse/SDK-16643<br />    http://bugs.adobe.com/jira/browse/SDK-15558<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/core/UITextFormat.as

  • Change log and Patch notes

    Hi,
    Could anyone help me to a web page or document like there is with flash of the changes in the versions.
    like new fetures, change log, patch notes, release notes.
    with flash we've got several of those pages like:
    http://www.adobe.com/products/flashplayer/features/
    and
    http://www.adobe.com/support/documentation/en/flashplayer/
    I can't find it for shockwave.
    Thanks in advance,
    ClasH

    I have a 3.x object on an upgraded BW System to 7.1 . It looks like to (still) delete both requests (change log + PSA) while executing the Change log deletion request.  My point is: Inside the Process chain may I leave just the Change log request's deletion process and remove the PSA deleteion step or do I have to stay and exute both steps aniway?  
    thank you,
    Alessia

  • [svn:fx-trunk] 13288: Changing the workaround for custom whitespace preservation in spark components in order to cater for fixes to SDK-24699 and SDK-24611 .

    Revision: 13288
    Revision: 13288
    Author:   [email protected]
    Date:     2010-01-05 15:21:57 -0800 (Tue, 05 Jan 2010)
    Log Message:
    Changing the workaround for custom whitespace preservation in spark components in order to cater for fixes to SDK-24699 and SDK-24611.
    We now preserve whitespace for all of the spark "text" tags at compile time (but not only-whitespace content if an alternate text attribute was specified).
    QE notes: Please ensure that whitespace preservation continues to work, including for the scenarios mentioned in previous issues SDK-22601, SDK-23160, SDK-23972.
    Doc notes: N/A
    Bugs:
    SDK-24699 - Binding does not work with Spark TextInput "text" property
    SDK-24611 - MXML compiler should preserve whitespace in FlowElement tags (such as
    Reviewer: Paul
    Tests run: checkintests, mustella RichText, List, TextArea (the 2 baseline position failures existed prior to these changes)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24699
        http://bugs.adobe.com/jira/browse/SDK-24611
        http://bugs.adobe.com/jira/browse/SDK-22601
        http://bugs.adobe.com/jira/browse/SDK-23160
        http://bugs.adobe.com/jira/browse/SDK-23972
        http://bugs.adobe.com/jira/browse/SDK-24699
        http://bugs.adobe.com/jira/browse/SDK-24611
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/MxmlScanner.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/Node.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • [svn:fx-trunk] 9407: Reordering the if-statement in isMeasureFixed() exposed that hostFormat can be null when measure() is called if styles changed and measure is done before the next commitProperties .

    Revision: 9407
    Author:   [email protected]
    Date:     2009-08-19 15:11:34 -0700 (Wed, 19 Aug 2009)
    Log Message:
    Reordering the if-statement in isMeasureFixed() exposed that hostFormat can be null when measure() is called if styles changed and measure is done before the next commitProperties.  This states test exposed this.
    We should rethink if we want to clear hostFormat rather than have a hostFormatChanged flag.  If there is no hostFormat at measure then it has to be fixed because there is no line break format to check for auto-size.
    QE notes:
    Doc notes:
    Bugs: SDK-22779
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22779
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/RichEditableText.as

    Oh my god, it is too long! You definitely check out types, casting and especially ODP.Net (it does everything for you)... etc. They can help you to simplify your code. I do not have enough time to copy paste it to Studio and understand and solve your issue, so I got title of your message as your main question.
    In Oracle, you can create an autonumber field by using sequences object. This is really useful when you need to create a unique number to act as a primary key.
    Basically you can create a sequence simply typing;
    CREATE SEQUENCE MY_SEQUENCE;
    now you have a sequence called "MY_SEQUENCE"... Then, I advice you select a number from sequence;
    select MY_SEQUENCE.nextval from dual;
    I said I advice actually kinda must, although it called sequence, I cannot be sequential. Do not even try to predict the value. You can be sure that it is unique number so you can use it.
    Then insert you record and use that number part of your primary key. I think that's it. Have fun.

  • I can not open the history even of today and see

    5/8/10
    Dear ladies and gentlemen,
    • I thank you all each and every person, ladies and gentleman who are connected with Mozilla Firefox in any manner and who have contributed for its development and any other who is in any way even concerned and every well wisher of Mozilla. My good wishes for all of them and for their work that it has become so popular and every one of them has laboured selflessly and without any money angle for that and that is the best thing. Such selfless work must be appreciated by each and all.
    • My earlier suggestion for accepting cheques from those who like me do not have any cr. card has still not been accepted.
    • You please incorporate features from other good programmes as these are still not there in FireFox and I am using only this since when I first installed it and I do not intend to use any other but these features as I remember were available few years back are still not there in Mozilla so today there should be many more features which can be incorporated in Firefox.
    • When the connection is on but not opened i.e. the connection has been switched on but not opened i.e. the modem lights are on and not off then if I go back to a page opened then the Firefox shows loading problem but if I switch off the modem then I can access that very same page. This should be taken care of so that even if I switch on the modem but the connection is not on even then I should be able to see the page 1 or 2 or many pages backwards.
    • Then I can not open the history even of today and see that page whereas earlier I could click any history page and it showed even if it was 5 days old (which is my setting) and I have not changed any setting.
    • I also thank the all add-on creators because I have installed very few but even then these are very useful.
    • I would also suggest that you incorporate these add-ons in the FireFox itself for example I suggested many moons back that let there be a system of any number of tabs being opened (and a few more suggestions) and it is available as add –on in tab mix plus which I have now installed.
    • I also request to everyone concerned to give his ideas as to what other features can be incorporated in Firefox and these suggestions be on your website and after a certain number of well wishers and users select the idea you please either develop it yourselves or any well wisher can do it and then it can be incorporated in the Firefox.
    • I also give you my suggestion which is not available presently to my knowledge in the browser or add-ons this is that if I move a window in tab mix plus then it is always in a window for each tab but instead of that my suggestion is that I should be able to move any no. of tabs or any other tab to one particular window only and that too in any manner I like in any sequence like at a particular No. of tab say 15th etc.
    • I also feel presently having some problem that when I shut down the computer after save and quit pages that are there are not reopened. Loading problem in those pages appears I do not know the reason but Firefox should be able to show all the last page/pages/window/windows I was perusing after I saved and quit.
    Thanking you,
    Best wishes for all of you.
    Yours sincerely,
    DS

    Hi,
    Please provide more details about your computer along with the graphics card. Also, A log file might help identify the cause of the crash. Please right-click 'My Computer', select "Manage," look under 'Event Viewer->Windows Logs->Application' to see if there's an event there from Premiere Pro. If so, copy the contents of that log and paste them here.
    Thanks,
    Rameez

  • How can I view my full billing history for the app and music stores without iTunes installed?

    I just received an email receipt from Paypal showing a $12.99 purchase from iTunes. I almost NEVER purchase anything over around five dollars in the app or music store. Since PayPal does not show what this purchase was for, I have not received the receipt from Apple yet, and I cannot find anyway to look up online what this purchase was for....I need help to find out ASAP what this purchase was. If my account has been compromised or if I have been incorrectly charged for something, I would like to get the issue handled immediately. I do not want to install iTunes on my PC (nor should I have to for Pete's sake), but I cannot see anything recent at all in my app or music history on my iPad (not that I would ever purchase anything for $12.99 anyway...I just don't). Thanks in advance for any tips!

    How can I view my full billing history for the app and music stores without iTunes installed?
    No.
    If my account has been compromised
    If you even think this may have happened, immediately change your password.
    See this -> Apple ID: Changing your password

  • My safari preferences/ security screen has changed and no longer addresses cookies.  There is now a Preferences/Privacy screen that allows one to delete cookies, although it is harder to do than the older security screen.  Was this an update?

    My Safari Preferences/Security screen has changed and no longer addresses cookies. Rather, there is a new Preferences/Privacy screen that allows you to manipulate cookies, but it is not as easy to use as when cookies were on the security screen. Was this an update?  Has this change affected anyone else? This is strange, because  Safari Help still states cookies are manipulated on the Security screen, even though the screen has changed and no longer addresses cookies.

    Presuming you're referring to Safari 5.1, yes, it's moved, but I don't see it as being harder. Now you can clear all privacy-related items - cookies, cache and history - with one button, the "Remove All Website Data" button. If you want to work with individual cookies, it's still just one button, the "Details" button. So no, I don't see it as being more difficult.
    Regards.

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • Difference between service pack and Patch in XI

    What is the difference between Service Pack(SP) AND Patch ??
    e.g SP12, Patch8.
    Is it like that when there is a major change they will issue SP and
    for a small change they will issue patch ?? or after number of patches
    they will issue SP combining all the patches ??
    Service Pack level can be seen from SAP gui system..>status.
    But Patch level where can we see ?? what is the Tcode for that ?? or just we got
    to go through below links ??
    http://<host>:<j2ee_http_port>/sap/monitoring/ComponentInfo
    also
    http://<host>:<j2ee_http_port>/sap/monitoring/SystemInfo for core system info (J2EE or JVM patch level, etc.)
    thanks
    kumar

    Hello,
    A service pack (in short SP) is a collection of updates, fixes and/or enhancements to a software program delivered in the form of a single installable package. Service packs are usually numbered, and thus shortly referred to as SP1, SP2, etc. It is notable that they may bring, besides bug fixes, entirely new features
    A patch (sometimes called a "fix") is a quick-repair job for a piece of programming. During a software product's beta test distribution or try-out period and later after the product is formally released, problems (called bug) will almost invariably be found. A patch is the immediate solution that is provided to users; it can sometimes be downloaded from the software maker's Web site. The patch is not necessarily the best solution for the problem and the product developers often find a better solution to provide when they package the product for its next release.

  • Update and Patch download errors (CC 2014)

    Hi all, this was initially meant to be a customer support chat, but it seems to be unavailable currently, so I'll ask on here instead.
    The issue is happening on Creative Cloud (1.7.1.418)
    I am running Mac OSX Mavericks (version 10.9.4), early 2011 model, 2GHz Intel Core i7 Processor, 4 GB 1333 MHz DDR3 Memory
    The Creative Cloud app is showing 6 updates. The updates are as follows...
    Premier Pro CC (2014) : Adobe Premier Pro CC 2014.0.1 Update
    Photoshop CC (2014) : Photoshop Camera Raw 8.5 (CC)
    InDesign CC (2014) : DPS Desktop Tools CC2014 31.0.1 Update
    Flash Professional CC and Mobile Device Packaging (2014) : Flash Professional CC Update - July 2014, as well as Photoshop Camera Raw 8.5(CC)
    Media Encoder CC (2014) : Adobe Media Encoder CC (2014.0.1)
    After Effects CC (2014) : Photoshop Camera Raw 8.5(CC)
    When I click the update button on any of these updates, I almost instantly receive an 'Update Failed' message.
    Upon clicking the 'Learn More' option, it reads 'Update Failed - Download Error. Press Retry to try again or contact customer support.(49).
    When Retrying, the same happens every time.
    It also affects newly installed apps. This morning when installing Bridge CC, the app itself downloaded fine, but an error message saying 'Instillation Succeeded, but a patch failed - Download Error. Press Retry to try again or contact customer support.(49).' appeared.
    It has been doing this for a fair few months now, having hoped upgrading from the CC apps to the new CC 2014 apps would fix it.. These updates themselves are also quite sporadic in their appearance. When I shut down my Mac and restart it, the updates often disappear, with an 'all apps are up to date' message in their place. They only then reappear when downloading a new app, or a more up-to-date update becomes available.
    I have tried uninstalling and reinstalling the apps multiple times, but nothing changes. In the past, I have tried manually downloading and installing the updates and patches through the website, though that too gave me an error message. I have switched off my firewall on occasion, as well as allowed all Adobe apps to be allowed through, though this does not seem to have any effect. I have tried it in multiple locations, being connected to multiple routers, so I do not believe it is a router issue. I am a student, so not connected to any companies that may be blocking access. I have also had a brief look at install logs in the past, though I am not particularly tech savvy when It comes to that sort of thing. I have also seen people recommend trying to update in root user mode, though I am not particularly comfortable with that, as I have been told It's not a good idea to mess about as a root user when you don't really know what you're doing
    Any help would be greatly appreciated
    Cheers
    James

    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Using A Key To Change A Patch

    I'm using MainStage in a scenario that requires a number of quick patch changes in tightly scripted music.
    In one particular situation that change is so tight that I want to assign one of the keys on the (piano) keyboard to change the patch. That is, I want one of the notes in a passage that I'm playing to cause the patch to change to the next in line.
    This was pretty simple to accomplish.
    The problem is that when the command was mapped to the MIDI note at the patch level (not at the Concert or Set level) it disabled that note's ability to trigger audio from the soft-synths. This happened not only for that note in that patch, but for that note for all the patches in the concert.
    I want the key to both change the patch and continue to function as a playable note.
    Any idea on how to do this?

    The main thing that I'm trying to figure out is this:
    If I map a parameter to a note played on the keyboard, why does it disable that note from triggering a pitch as well? Keep in mind that the patch change command was set at the 'patch level' (not the 'concert' or 'set level'. I don't know why the mapping would affect anything outside of that patch.
    I haven't considered the multi-channel solution. It's not an important enough problem for me to search out a solution that could impose other unknown issues at this point.
    I know that Kurzweill's can easily use a MIDI note as a 'patch increment' command without disabling that note's sound-triggering function. I wonder how to do it in MainStage.

  • Can Markers (or anything else) automatically change the patch?

    I've been looking all over to try and figure out how to have MainStage automatically change to the next patch when a new Marker comes up on the backing track through PlayBack.
    Basically, when i'm playing to a backing track, i sometimes play the pads and keys on my Akai MPK49, and when a new section comes up and i need need to change my synth sound, i don;t physically have enough hands to change to the next patch. I've read a load guides, but using the AIC driver in Logic seems far too complicated and I'm getting a bit out of my depth.
    The whole point of me using markers is to identify different sections with different instruments, but I have to change between them manually anyway?
    Is there a way to have the Marker automatically change the patch? The only other way i can see of getting round this live is having a midi footswitch to automatically cycle through the patches, which means Markers are of no use to me in my 'Perform' view really.
    Any help would be amazing!

    Hi
    Currently, there is no 'super easy' way to have MS change patches automatically, and definately NOT directly from Playback markers.
    It may be possible to make use of the MIDI file 'send' capability per patch or set, routing out and back in to MS, but frankly, NOT a great workaround.
    CCT

  • BOE 3.1 Service Pack 2 SDK changes

    We are getting ready to install Service Pack 2 in our BOE 3.1 environment.  In a test VM I have installed the SP and noticed that the dsws.jar files that are in the SDK directory (common\4.0\java\lib) are, in general, older than the dsws..jar file that are in webapps\dswsbobje\WEB-INF\lib directory.  Does this mean that the SDK did not get updated when the service pack was installed?  Can we continue to use the older files?

    Hi Ted,
    my post is about the same subject - BOE 3.1 SP2 SDK changes
    >> PromptsUtil isn't deprecated for BusinessObjects Enterprise SDK.
    PromptsUtil is marked as deprecated in 3.1 SP2 SDK. This is what I see in eclipse:
    @deprecated Class PromptsUtil is deprecated
    public class PromptsUtil
    Regards,
    Alexey

Maybe you are looking for