Can you add people to a team if they only need one program (InDesign)?

We have the Creative Cloud for Teams and would like to add a member but he only uses INDD. I know we can purchase INDD separately but I didn't know if he could be added to our team.

If you have enough open invitations left, this doesn't matter. Nobody is forced to install programs he doesn't use. The rest I would consider irrelevant - buying a single app team license and contacting the sales team just for 1 person? Makes no sense to me.
Mylenium

Similar Messages

  • HOW CAN VERIZON EXPECT TO SELL 4G PHONES WHEN THEY ONLY RELEASED ONE SO FAR?

    I don't get it but why is Verizon even selling 4g service when they only have released one 4g phone...the HTC Thunderbolt so far?  I think they jumped the gun on wanting to be a provider but not having the goods to do so. 

    what happens when you change the subject line in an existing thread - let's see  Answer:  It does not change the subject of the original post (thread).   Too bad,  i  hate all caps posts -  other than vision issues - which happened once when I asked why , and should be addressed on the client screen using the accessibility options available on most system.  I just find it plain rude to post that way.  So if you don't have problems seeing,  be polite!    If you want to yell at a Verizon employee, do it privately.   IMHO,  This here is not a place for disgruntled customers - it's for customers who want to help each other with genuine technical and Verizon policy issues.   These issues are best addressed in a constructive, civil manner.   The final redress for any individual vs. a mega-corporation is  a,.  not doing biz with them,  b.  filing a complaint with the relevant federal, state or local regulatory agency.   And of course,  via the press or an independent website. 
    Now, onto the question,   there's no reason to push the limts of technology on a device with a tiny screen and limited silicon horsepower.    Watching HD video on a 3" screen with earbuds, is not my idea of a good time.   And how fast to I need to download two minute mp3's.     For on-the-go business people,  fast mobile , wireless connectivity is a great tool. Wi-fi is not a true mobile technology - it's wireless in your living room.   At least I ranted in lower case. albeit a long-winded rant. 

  • Can you add People Picker with multiple values to Word Document using Quick Parts?

    Hi all, I've been trying to develop a form in Word that takes a bunch of metadata from the SharePoint library. Most of it works okay, but when I try to add any fields that have been set up to take multiple entries in a people picker, they don't show up
    in the add quick parts list. Any ideas, or is this a limitation?

    Hi NREL,
    According to your description, my understanding is that the people picker column with multiple values was missing in Word Quick Parts.
    This is by design that we are unable to use the fields which is allowed multiple selections.
    As a workaround, you can use a text field(Single line of text) to store the multiple values of the people column. When you create a document, start a workflow to update the text field using the values of the people column, then use the
     text field in Word Quick Parts.
    You can do as the followings:
    Open your library, and create a new column using Single line of text.
    Open your site with SharePoint 2010 Designer, create a workflow based on your library.
    Add the action “Set Field in CurrenItem”, and set it like the screenshot.
    Set the Start Options is “Start workflow automatically when an item is created”.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Compressor Audio plug-ins (can you add third party audio plug-ins?)

    Compressor Audio plug-ins
    Can you add third party audio plug-ins? Just need a simple audio compressing/mastering solution for a lot of non-technically minded producers. So trying to avoid using soundtrack.
    cheers
    steve

    Hi B
    Really sure You are looking into Your "user" folder ?
    In this there is a folder with in my case "my account" eg "Bengt"
    in this ther IS a library folder
    and in this ther should be an iMovie folder. If not I would make one
    and into this put a folder "Plug-ins" and in this put Your plug-ins.
    Restart Your Mac and open iMovie and see if it found the new plug-ins.
    Yours Bengt W

  • How can you add a where clause using "OR" with applied ViewCriteria?

    [JDeveloper 10.1.3 SU4]
    [JHeadstart 10.1.3 build 78]
    I am using JHeadstart, but have a question probably more in the ADF area. On the JHeadstart forum I asked:
    "I am overriding JhsApplicationModule's advancedSearch in order to be able to search in childtables. I created transient attributes, display those in advanced search and in the overridden method I check if any of these are filled by the user and create a where clause like 'EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>)'. I add this whereclause using ViewObject.setWhereClause.
    So far so good and it works. However, if the user selects 'Result matches any criteria', combining setWhereClause and the normal advancedSearch QueryByExample implementation using ViewCriteriaRow do not provide the desired result, since the ViewCriteria and the setWhereClause are AND-ed together, which is fine if the user selects the (default) "Results match all criteria" (everything is AND-ed) but not the "Result matches any criteria", since then every criterium is OR-ed together, except for the setwhereclause criteria and the set of ViewCriteriaRows, they are AND-ed.
    I looked if I could specify that a WhereClause will be OR-ed to existing applied ViewCriteria, but no luck. Do I have to rewrite also advancedSearch's ViewCriteria implementation and write an entire setWhereClause implementation to be able to "OR" every criterium? Or any other suggestions? Can I look at the entire Where clause and rewrite it (after applyCriteria and setWhereClause are called on the VO)?
    Toine"
    Sandra Muller (JHeadstart Team) told me today: "This sounds like a JDeveloper/ADF issue that is not related to JHeadstart. The question is: how can you add a where clause using "OR" if there are already one or more ViewCriteria applied?
    To simplify the test case, you could create a simple ADF BC test client class in a test Model project without JHeadstart (in the test class, use bc4jclient + Ctrl-Enter), in which you first apply a few ViewCriteriaRows to a View Object and also add a where clause.
    Can you please log a TAR at MetaLink ( http://metalink.oracle.com/ ), or ask this question at the JDeveloper forum at http://otn.oracle.com/discussionforums/jdev.html ? (This what I am doing now ;-))
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting"
    Anyone knowing the answer or am I asking for an enhancement?
    Toine

    Hi,
    Can you SET your whereclause as follows ?
    ('Y' = <isAnd>
    and EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>))
    OR ('N' = <isAnd>
    AND EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> OR <another column in childtable> LIKE '<value supplied by user>))
    )

  • How do you add people to photo share album on iPad?

    How do you add people to photo share album on iPad?

    Are you trying to email to iPhone cell numbers?  If yes, you can't.  That would require SMS, but iPad is MMS only.  This means you would need to text from your iPad to someone's email address who has an iPhone.  Also, they have to be on iOS 5 or higher.

  • Hello, we have both Creative Cloud and Creative Cloud for teams. Can you help me with the difference and if i need to have both?

    Hello, we have both Creative Cloud membership and Creative Cloud for team. Can you help me with the difference and if i need to have both? We have 9 employees that are using it. Just not sure if i'm paying for something i don't need.
    Thank you

    Please refer to Creative Cloud Help | Creative Cloud / Common Questions
    CC is for retail use with 20 GB of storage space, CCT is where number of seats are purchased & assigned by one program admin where each seat gets 100GB of storage space.
    You can not have both the CC & team in one account as it will only provide you added storage space of 120 GB but you can activate the CC any of them or either of them twice as CC is based on Adobe ID.
    Regards
    Rajshree

  • Text editing  - can you add text editing options on the 'in-browser editing'

    Text editing  - can you add text editing options on the 'in-browser editing' tool?

    You can only replace existing content, not edit the page structure. Refer to the respective help sections.
    Mylenium

  • How many devices can you add to icloud?

    How many devices can you add to your icloud account? 

    How many devices can you add to your account? 

  • I have an ipod touch and the contacts icon is missing.  How can you add it to the home screen?

    I can't find the contacts icon... How can you add this to the home screen

    Every iPod touch has a contacts icon. It might be hiding. You can try Settings > General > Reset > Reset Home Screen Layout.

  • How can you add an image in Mail without being an attachment?

    How can you add an image in Mail without being an attachment?
    In otherwords I'd like to put my logo in the email not as an attachment but as an image.
    Is there a simpel solution to this problem?

    PBN1 wrote:
    How can you add an image in Mail without being an attachment?
    You don't.
    It's not possible. The e-mail protocol is designed for text; anything else has to go as an attachment.
    Different mail clients (such as Mail.app, the mail client bundled with Mac OS X) may have different ways of handling such attachments, but they are still attachments. Each mail client has its own rules and methods, so one may display a picture as if it were in the body of the message, but another client may do something completely different.
    A way of faking it is to format your message in HTML (which is a kind of text). The image is hosted on a remote server, not added to the message; instead, you include a link to it in the body of the message, as you would when building a web page. (This is also what the two tips helpfully provided by X423424X do, except that the link to the image is added in the signature, rather than the body of the message.) What exactly happens to it is, again, at the discretion of the mail client. In my case, for instance, displaying images in HTML messages is turned off, and will stay resolutely off.

  • Can you add page numbers to the PDF version?

    Can you add page numbers to the PDF version?

    Hello saradianapasik,
    If you start with a document created with Acrobat Pro, or exported from your word processor as a .pdf, then you should include page numbers in that originating application. After you have exported a .pdf form from FormsCentral, it is no longer editable.
    I hope that helps,
    Brian

  • Can you add apps to iPad open in list

    Can you add apps to the open in list of an iPad

    As far as I know, you cannot add apps to the Open In list using any setting or built in feature in iOS. This is controlled by the iOS itself. IIRC, you can delete apps from the iPad that appear in the Open In list in order to make room for apps that you would like to appear in there, and if you continue to use the apps that you want to add to that list, eventually they will appear in the list. I believe that the more that you use one particular app, the more likely it will be for it to appear in the Open In list.

  • Can you add vids from a camra to Ipad

    Can you add vids from camra to ipad 2 (to make vids on imovie)

    surely. You need to sync the files to your camera-roll in iOS, use itunes/iphoto. IMovie in iOS can access all videos that are in the camera-roll ( photos.app ) .
    The Apple iPad camera connection kit will also be a big help  : With it you can insert a digital cameras SD-Card into the iPad and mass-import the footage . Using this you avoid the iTunes/PC/OSX procedure to load material into the ipad.

  • Can you add a function sort of like spam, but for websites. So I can put website to spam bucket

    Can you add a totally new functionality, which would be similar to email spam.
    If I get to a website I don't ever want to see in any of my searches or anything I would just click WEBSPAM button and the site is gone from my web viewing experience.
    It is sort of an opposite of favorites or bookmarks. Negative bookmarks could be a good concept name.
    So again, the negative bookmark site would not show in any of my searches. The idea is to make this simple.
    A one click solution.

    You can make suggestions for new features here:
    https://input.mozilla.org/en-US/feedback

Maybe you are looking for

  • Mpavcontroller error domain error 3  when trying to download a movie

    I am trying to get on to Apple support as when I try and download a movie it saysmpavcontroller error domain error 3 . But I cant get on to Apple support as it says unsupported browser but my iPad software is up to date. Any solutions for both? My so

  • Corrupted audio

    I've been using a Samson C01U USB microphone to record vocal audio files using Audacity 1.2.6, they are saved as 16 bit AIFF files for playback using Quicktime PRO. Two days ago I noticed the quality was starting to degrade and was sounding muffled w

  • HT4356 I have a Lexmark pro901 wireless printer, how do I get my iPad to print to it?

    I have a Lexmark pro901 wireless printer, how do I get my iPad to print to it?  How do I know if I have an iPad or ipad2?

  • Defective HP 15-d004tu Notebook PC

    Product description: HP 15-d004tu Notebook PC (ENERGY STAR) Product number: F6D24PA Serial number: [Thank you for visiting the HP Support Forums. I am sorry to inform you that your post has needed some editing to remove personal information.] Purchas

  • What year is this? Limited to 2mb, are you kidding...

    Hi  my bill does not reflect the service im getting (2mb) My local exchange is rose street https://www.samknows.com/broadband/exchange/ESROS ADSL max is availible as is 21cn wbc 21cn psdn due I am getting most of the maximum download rate of 2mb. I c