Short Version and Long Version

I can see that there are two different versions on http://www.adobe.com/products/captivate/buying-guide.html
Under pricing there is no mention of the option to purchase either version.
Or if there is I am missing it.
If I subscribe which version do I get ?
Incidentially it would be nice to be able to actually contact Adobe to ask this question but.....

I really have to ask an incredibly stupid question then.
Why do you have a version comparison chart when you only have one version ?
Just curious...
The versions on the site are called Full and Long and if they don't exist, it is a little confusing for customers.
( I am assuming you work for Adobe as you speak so confidently about this.)
A

Similar Messages

  • Currently running Adobe XI Standard, i have a PDF that i Save As excel however on my computer it converts it differently than my coworkers computer who has the same Adobe version and same version of Excel 2010. Is something different selected on mine than

    Currently running Adobe XI Standard, i have a PDF that i Save As excel however on my computer it converts it differently than my coworkers computer who has the same Adobe version and same version of Excel 2010. Is something different selected on mine than his? How can i troubleshoot?
    Can provide more information if needed...

    Hello nmohamm,
    To examine the conversion settings in Acrobat, do the following:
    1. Select Edit > Preferences
    2. In the preferences dialog, select the "Convert From PDF" category.
    3. In the "Converting From PDF" list, select "Excel workbook".
    4. Click the "Edit Settings" button to view your conversion settings.
    Regards,
    Charlene

  • Search Example Code inside for Versioned and non-Versioned Documents

    These may be of use to someone...
    File names:
    AttributeSearch.java
    AttributeContentSearch.java
    The AttributeSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", residing in the user "system"'s home directory.
    The AttributeContentSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", and document content containing the word "hello", residing in the user "system"'s home directory.

    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import java.util.Locale;
    import oracle.ifs.beans.DirectoryUser;
    import oracle.ifs.beans.PrimaryUserProfile;
    import oracle.ifs.beans.PublicObject;
    import oracle.ifs.beans.Document;
    import oracle.ifs.beans.Folder;
    import oracle.ifs.beans.ContentObject;
    import oracle.ifs.beans.Search;
    // SEARCH RESULT
    import oracle.ifs.beans.SearchResultObject;
    // CONTENT + ATTRIBUTE SEARCH
    import oracle.ifs.search.ContextSearchSpecification;
    // SELECT, FROM
    import oracle.ifs.search.SearchClassSpecification;
    // ORDER BY
    import oracle.ifs.search.SearchSortSpecification;
    // WHERE
    import oracle.ifs.search.SearchClause;
    import oracle.ifs.search.SearchQualification;
    import oracle.ifs.search.JoinQualification;
    import oracle.ifs.search.FolderRestrictQualification;
    import oracle.ifs.search.AttributeQualification;
    import oracle.ifs.search.ContextQualification;
    public class AttributeContentSearch
    public static void main(String args[])
    try {
    LibraryService ifsService = new LibraryService();
    System.out.println("Oracle iFS Version " + ifsService.getVersionString());
    CleartextCredential credentials = new CleartextCredential("system","manager");
    ConnectOptions options = new ConnectOptions();
    options.setLocale(Locale.getDefault());
    options.setServiceName("ServerManager");
    options.setServicePassword("ifssys");
    LibrarySession ifsSession = ifsService.connect(credentials,options);
    DirectoryUser thisUser = ifsSession.getUser();
    System.out.println("Connected as \"" + thisUser.getDistinguishedName() + (thisUser.isAdminEnabled() ? "\" (admin enabled)" : "\""));
    PrimaryUserProfile userProfile = thisUser.getPrimaryUserProfile();
    SearchResultObject[] sro = runSearch (ifsSession,"hello");
    if (sro != null)
    for (int i = 0; i < sro.length; i++)
    System.out.print (((PublicObject)sro.getLibraryObject()).getName());
    System.out.println (" (" + ((PublicObject)sro[i].getLibraryObject()).getId() + ")");
    } catch (IfsException e)
    public static SearchResultObject [] runSearch( LibrarySession ifsSession, String searchCriteria) throws IfsException
    ContextSearchSpecification ss = null;
    SearchClassSpecification scs = new SearchClassSpecification();
    SearchSortSpecification sss = new SearchSortSpecification();
    SearchQualification sc = null;
    ss = new ContextSearchSpecification();
    ss.setContextClassname(ContentObject.CLASS_NAME);
    scs.addSearchClass( PublicObject.CLASS_NAME );
    scs.addSearchClass( Document.CLASS_NAME );
    scs.addSearchClass( ContentObject.CLASS_NAME );
    scs.addResultClass( Document.CLASS_NAME );
    sss.add( Document.CLASS_NAME, "NAME", true );
    sc = buildSearchClause( ifsSession, searchCriteria);
    ss.setSearchClassSpecification( scs );
    ss.setSearchQualification( sc );
    ss.setSearchSortSpecification( sss );
    Search s = new Search( ifsSession, ss );
    s.open();
    SearchResultObject [] sro = s.getItems();
    s.close();
    return sro;
    public static SearchQualification buildSearchClause( LibrarySession ifsSession, String searchCriteria ) throws IfsException
    Folder f = ifsSession.getUser().getPrimaryUserProfile().getHomeFolder();
    FolderRestrictQualification frq = new FolderRestrictQualification();
    frq.setStartFolder( f );
    frq.setSearchClassname(PublicObject.CLASS_NAME);
    AttributeQualification aq = new AttributeQualification();
    aq.setAttribute(Document.CLASS_NAME, PublicObject.NAME_ATTRIBUTE);
    aq.setOperatorType(AttributeQualification.LIKE);
    aq.setValue("%txt%");
    ContextQualification cq = new ContextQualification();
    cq.setQuery(searchCriteria);
    cq.setName("Test0");
    JoinQualification jq1 = new JoinQualification();
    jq1.setLeftAttribute ( Document.CLASS_NAME, Document.CONTENTOBJECT_ATTRIBUTE );
    jq1.setRightAttribute( ContentObject.CLASS_NAME, null);
    JoinQualification jq = new JoinQualificatio n();
    jq.setLeftAttribute ( PublicObject.CLASS_NAME, PublicObject.RESOLVEDPUBLICOBJECT_ATTRIBUTE );
    jq.setRightAttribute( Document.CLASS_NAME, null);
    SearchClause sc;
    sc = new SearchClause(jq, jq1, SearchClause.AND);
    sc = new SearchClause(sc, cq, SearchClause.AND);
    sc = new SearchClause(sc, frq, SearchClause.AND);
    sc = new SearchClause(sc, aq, SearchClause.AND);
    return sc;
    null

  • The product version and database version are not compatible

    The following simple program gets an exception {The product version and database version are not compatible} its very hard to proceed from here. Does anybody know what cause this?  
    Best Regards
    Jan Isacsson
    using System.Collections.ObjectModel;
    using Microsoft.MasterDataServices.Deployment;
    using Microsoft.MasterDataServices.Services.DataContracts;
    namespace MdsDeploy
        class Program
            static void Main(string[] args)
                try
                    ModelReader reader = new ModelReader();
                    Collection<Identifier> models = reader.GetModels();
                    foreach (Identifier modelId in models)
                        Console.WriteLine(modelId.Name);
                catch (System.Exception ex)
                    Console.WriteLine("Error: " + ex.Message);
                Console.ReadKey();

    Hi Jan,
    For the error "The product version and database version are not compatible", as Emma said, the version number of the Service does not match the database schema version.
    In your scenario, which version of database are you using? Please note that MDS update required after SQL 2012 SP1 installation, please refer to the links below to see the details.
    http://byobi.com/blog/2012/11/mds-update-required-after-sql-2012-sp1-installation/
    http://msdn.microsoft.com/en-IN/library/gg488708.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Creation of short text and long text?

    Hi,
    We create short text by using oe_fnd_attachments_pub.create_short_text_document and oe_fnd_attachments_pub.add_attachment API and to create long text we use fnd_documents_pkg.insert_row .
    Why is it that we have different approaches for creation of short text and long text?
    I know that oe_fnd_attachments_pub.add_attachment is used to attach a short text to some entity,but then why we dont do the same for long text?
    Please lemme knw urgently ...
    Thanks and Regards
    Amar

    Thanks for the help,
    I looked into the document and i got to know few things as to how short and long text are created, but can u tell when the records are inserted into fnd_attached_documents, because i can see that records are inserted into fnd_attached_short_text and fnd_attached_long_text, fnd_documents but i dont see any insertion into fnd_attached_documents, can u lemme knw how and when it is done?

  • Short Text and Long Text for WBS

    HI All,
    I am working on Interface Project where I need to enter Short description and long text for a WBS with external text.
    Let me know if any FM Module is exist for same where I can Put this Short Description and Long Text seprately for a WBS Element.
    Regards,
    Atul R. Rajmane

    Hi Atul,
    I think you can enter short description & long text seprately for a WBS while creating entire struture of project in PS only. I don't think other than PS you will be able to enter short & long text for individual WBS.
    Regards,
    Sandeep

  • Tool versions and Application versions

    hi,
    i have a doubt in basic concept of peopleosft regarding the realtion between tool versions and application versions
    I have two systems..
    system1 : Application version 8.8 and tool version 8.49
    system 2: Application version 8.9 and tool version 8.46
    Now, the integration broker and webservices are completley different in these two tool versions...
    from whatever i know..when tool version is upgraded..navigations in application remain same but the way the process is done in background differ...
    so if we have webservices in application 8.8 and tools 8.46...the navigations are different and when we upgrade to 8.49 the whole concept of webservices change...so the navigations invariably change..how can it be possible..?
    Can someone explain me this or give a link to a doc for reference..
    Thanks in advance,
    Karthik
    Edited by: karthik tulasi on May 18, 2009 12:14 PM

    Well, you seems confuse, or I was not clear enough.
    Maybe I'm still not getting your question as it should, so you could try to rephrase it again.
    What's your concern exactly ?
    A new try on my side:
    The menu your are talking about is the Peopletools menu, so application does not interact with it.
    The only link between application and Peopletools are some calls. The application does NOT care about the Peopletools menu.
    The application/peopletools capabilities are embeded in the Peopletools which are ready or not ready to receive calls from differents Applications versions.
    Once more, menus are only frontend user GUI, but internally, this is an other stuff I tried to explain above.
    Basically, for the application point of view, Peopletools version are not know. This is the other way around, Peopletools are willing to receive application calls.
    Nicolas.

  • Why have byteValue in Short, Integer and Long?

    What good is the method byteValue() in Short, Integer and Long? It really only makes sense in Byte. This only helps if you are only interested in downcasting your number to a byte. It seems to me Number should also implement toByteArray() or something since all of the subclasses could at least return an array with one element.
    Maybe we should just have a method toChar() with no args in String and do away with toCharArray()!?
    Please help me out if I am missing something here.
    MR

    yeah, a toByteArray() method would be pretty damn useful!
    a little query regarding byteValue() it says it may involve rounding or truncation, but in none of the subclasses does it specify which of these will occur ;/
    would a short with the value 00000000 11111111
    be returned as 01111111(rounded) or 11111111(truncated)?
    rob,

  • Short, medium and long descriptions in BPC

    Hi all,
    I must have 3 types of descriptions in BPC members, short, medium and long.
    The only way to achieve this is using properties for two of them, or is there any other option?
    Many thanks in advance,
    JA

    Hello Ja,
    "The only way to achieve this is using properties for two of them, or is there any other option?"
    I don't understand what this mean... ?
    any how, If you are taking about master data loading from BW, then we have an option to choose description whether it is short, medium, long..
    while running the DM package in the set selection go to language tab. for reference see the below image...
    Regards,
    Saida Reddy G

  • Are there two versions of ipod (like US version, and EU version) or is there just one worldwide?

    Are there two versions of ipod (like US version, and EU version) or is there just one worldwide?
    I want to buy an ipod touch 5 from ebay (i'm from croatia) and i'm woried is there just one model that is worldwide or are there a few models ( like US and EU)?????

    Some features like FaceTime (prohibited in some middle eastern countries, lower volume limit is EU countries) is controlled by a unique identifier on the iPod based on where the iPod was officially sold, I would avoid getting one officially sold in a middle eastern country. A non-EU one would also be better too

  • What difference on ABAP language between 2004 version and before version

    Hi everyone,
    Does there exist difference about ABAP language between 2004 version and before version? If it does, what's that? For example, what's new keywords? Which old key words can't be applied on 2004 platform any more?
    Any suggestion is highly appreciated.
    Best Regards,
    Julian

    hi
    good
    to get all these details plz visit the SAP site where you ll get the release notes related to all the concepts.
    Thanks
    mrutyun^

  • Difference between UCOS restricted version and unrestricted version

    Hi to all,
    somebody knows which is the difference between restricted version and unrestricted version??
    Which are the main differences??
    Thanks
    David

    Hi.
    Basically restricted version has encryption enabled and unrestricted not.
    You may give a look to this thread.
    https://supportforums.cisco.com/discussion/11409366/restricted-version-and-unrestricted-version-ccm-comparison
    HTH
    Regards
    Carlo

  • I cant find my all files in new version and older version is better than new and fix this problem....!

    I can't find my all PDF in new version and older version is better than new and fix this problem as soon as possible....!

    Hi Manoj,
    what exact problem are you facing? Are you unable to locate your pdf files?
    Regards,
    Rahul

  • Display short, medium, and long text in a query

    Hi all, we have a requirement to display the short, medium, and long text of an info-object in our queries.  Currently, it seems that you can only select one text lenght at a time but not all three of them together.  Aside from creating texts as attributes, is there a way to display all of the texts of an info-object?
    For example, we have internal orders with 3 texts.  When we run the query, we need to see the order number, then the short text, medium text, and long text.  Is this possible?
    thanks
    Kory Squire

    yeah you are right, we can get all the texts as attributes. Other than that you can only get any one of them.

  • Active version and Inactive version in Product llocation plan

    Hi Gurus,
    We are using product allocation functionality, in which i would like to what is the importance of active and Inactive versions.
    Which is the version in which we need to maintain the product allocation (MC94).
    Regards,
    Babs.

    Hi dsk,
    Thank you for the feedback on active version and inactive version.
    My doubt is if you look in to transaction MC94 , we have two tabs one u201CActive versionu201D and other u201CInactive versionu201D.
    When I maintained product allocation in Active version u201CA00u201D and executed the sales order product allocation is not happening. And then I tried to maintain the allocation under Inactive Version u201C000u201D then executed the sales order. Now the product allocation is happening and even the structure is getting updated after saving the sales order. So I need to under stand under which version we need to maintain the allocation so that allocation functionality will work during sales order creation.
    Regards,
    Babs

Maybe you are looking for

  • Ask the Experts Live Chat - Home Hub 4

    Hello, Stephanie and I are pleased to announce our next live discussion with some of our BT experts! It's about one of our latest new products, the Hub 4. This will be a great chance to get our Hub 4 experts onto the community to tell you a bit more

  • Decklink Captures Frame Early

    We digitize dailies into a Final Cut using the Blackmagic Decklink HD Extreme 3 card. However we occasionally get events that digitize a frame early. This can vary from one event each reel to half of the entire reel. We do have a bit of a convoluted

  • Elements 11 and Nikon D610 Raw files?

    I have Photoshop elements 11 (mac) and have been importing raw files from NikonD70s for years without problem. I recently got a Nikon D610 and now get message saying unbuckle to read file. WHat options do I have. Will upgrading to elements 13 help?El

  • Is Oracle 9i comapatable with windows 7 ?

    Hi Experts, We are running a 9i database on Windows XP but our Organisation has come out with suggestions of upgrading all the machines to Windows 7 Enterprise in the next month. Can anyone let me know if Oracle 9i is comapatable with windows 7 OS ?

  • Emergency Services and infrequent use of Skype

    As a member of a small remote fire brigade with no mobile coverage and unreliable landline phone, I established a Skype account with credit.  The idea is to have the ability to call from a laptop via satellite Internet access in an emergency when the