Share Sessions for two or more Users ?

Hi,
im new on this site.
Now we like to use SGD and stumbling over a problem, im not sure that sgd can handle this.
We like to share Sessions like a open Terminal between users. That means if User one open a terminal at home and he like that user2 go ahead with his work, he like to "give" user2 his own terminal (with history or anything else). We found the "Shadow-Funktion", but this is only for the Administrator...but thats what we mean/search.
Is it possible to share praticular terminals/browsers/GUIs between users if they are opend?
I hope i you understand wat i try to explain :-)
regards

I haven't tried this - it's actually a change to how the classroom shadowing scripts are usually set up, but it may work - if it does feel free to award me a lot of duke stars ;-)
1. Set the login script to be �unixclass.exp� on the X application you want to share and then make multiple copies - on for each user (e.g. daves terminal, freds terminal, etc.).
Assign these objects only to the specific users
2. For each terminal object create a new X application object named something like 'dave's shared terminal' and set the Application Command of the object to �/opt/tarantella/bin/bin/ttashadow�.
Set the Arguments for command of the object to �-silent -pointer $SHADOWDISPLAY�
Set the height & width to be identical to the master object and the color depth to at least 16bit
Set the Login Script of the object to �pupil.exp�.
Set the Environment Variable 'MYCLASS' to the ENS object name of the terminal object - e.g. �MYCLASS=.../_ens/o=Applications/cn=daves terminal�
Assign these objects to all the other users.
Then how it should work is 'dave's terminal' can be viewed and used by anyone running 'daves shared terminal' as long as dave keeps it running
To force dave to allow access to his terminal remove the '-silent' option from the ttashadow command.
fingers crossed....

Similar Messages

  • How do I maintain a single iTunes library for two separate iMac user accounts?

    How do I maintain a single iTunes library for two separate iMac user accounts?...without having to manually do something every download?

    Pardon me, I am brand new at using an iMac.  I understand the concept but I don't know exactly how to "move" the library.  I found a shared folder under users on the hard drive.  If I move it, won't I have to redirect each iTunes user to the new shared location?
    If I point iTunes to anything other than the music folder under that user name, it shows as a "shared library".  Preferences still shows it as that users library, regardless of where the advanced gear button says it is pointing to.
    Am I asking for too much to have each user control the exact same music files, apps and playlists?  I just want the two different itunes sessions to mirror each other without any frequent updating or copying.
    We use the same id for itunes music and apps so we could just sync all devices under one iMac user id and not use it under hers.

  • Microsoft Intune was unable to set the desired mobile device policy for one or more users due to the following error: A2CE0100

    Hi!
    We have fatal or critical error message on Microsoft Intune Portal but all agents are working just fine. Before opening support ticket we would like to hear comments from the experts on this forum. We would also like to fix this error before starting to
    manage mobile devices with Intune.
    Error message on Intune Portal:
    "Microsoft Intune was unable to set the desired mobile device policy for one or more users due to the following error: A2CE0100"
    Repeated: 19 times.
    Class: (System) Policy
    Random Fatal error message on C:\Program Files\Microsoft\OnlineManagement\Logs\PolicyAgent.log found from one Windows 8.1 client:
    2015-02-21 08:49:20:704 2852 1ab0 FATAL: DocumentProvider::IndicateToConsumer/pp->ProcessPolicies(NULL, NULL, NULL, NULL) failed with error 0x800704d5.
    That said, we are not facing any specific problem but we would like to find symptom of this repeating error message on Intune Portal . We would appreciate to get any thoughts about this case.
    Br.
    Jukka

    Hi Jukka,
    Mobile policy doesn't apply to clients using the Full Client download.  Please open a support case so the team can assist in further troubleshooting.
    Thanks,
    Jon L. - MSFT - This posting is provided "AS IS" with no warranties and confers no rights.

  • WHERE clause creating a join for two or more tables

    The CS3 Dreamweaver book says that the WHERE clause can
    create a join for two or more tables. The join was created, but the
    data is repeating. I have searched the web and this forum and have
    not found the answer.
    My Master page filters the recordset by Style No and when a
    customer clicks on a particular style, it sends him to the Detail
    page. All the records are showing from all tables on the detail
    page from the Dynamic List, except they are showing multiple times
    (ex. Size table has 4 sizes and Color table has 2 colors - my Size
    Drop Down list is showing 8 options and my Color Drop Down List is
    showing 8 options) I have a Master Page with a recordset pointing
    to a Detail Page using the same recordset.
    Master page works perfectly.
    Master Recordset SQL:
    SELECT products.itemID, products.category, products.styleno,
    products.name, products.description, products.ourprice,
    products.imageTH, products.image, coloroption.color,
    sizeoption.size
    FROM products, coloroption, sizeoption
    WHERE category = 'chefcoats' AND
    products.styleno=sizeoption.styleno AND
    products.styleno=coloroption.styleno
    GROUP BY products.styleno
    ORDER BY styleno ASC
    The Detail Recordset:
    SELECT products.itemID, products.category, products.styleno,
    products.name, products.description, products.ourprice,
    products.imageTH, products.image, sizeoption.size,
    coloroption.color
    FROM products, sizeoption, coloroption
    WHERE itemID=colname AND products.styleno=sizeoption.styleno
    AND products.styleno=coloroption.styleno
    I tried using the GROUP BY on the detail page, but then it
    only showed one size and color from the dynamic drop down list. I
    tried changing the field name "styleno" in the other tables to be
    unique, however, I was using the table identifer. I tried using the
    JOIN command instead of the WHERE clause and that didn't help
    either.
    On the detail page, the customer is supposed to click on the
    Size box and see sizes XSM - 6XL ONLY ONE TIME. and then be able to
    click on the Color option and see White, Black, Red ONE TIME.
    Is this possible?
    Thank you for giving your time to read this.!
    Evie

    Do you have a link we can look at to see what you are trying
    to do?
    Dave
    "EviePhillips" <[email protected]> wrote in
    message
    news:[email protected]...
    > The CS3 Dreamweaver book says that the WHERE clause can
    create a join for
    two
    > or more tables. The join was created, but the data is
    repeating. I have
    > searched the web and this forum and have not found the
    answer.
    >
    > My Master page filters the recordset by Style No and
    when a customer
    clicks on
    > a particular style, it sends him to the Detail page. All
    the records are
    > showing from all tables on the detail page from the
    Dynamic List, except
    they
    > are showing multiple times (ex. Size table has 4 sizes
    and Color table has
    2
    > colors - my Size Drop Down list is showing 8 options and
    my Color Drop
    Down
    > List is showing 8 options) I have a Master Page with a
    recordset pointing
    to a
    > Detail Page using the same recordset.
    >
    > Master page works perfectly.
    > Master Recordset SQL:
    > SELECT products.itemID, products.category,
    products.styleno,
    products.name,
    > products.description, products.ourprice,
    products.imageTH, products.image,
    > coloroption.color, sizeoption.size
    > FROM products, coloroption, sizeoption
    > WHERE category = 'chefcoats' AND
    products.styleno=sizeoption.styleno AND
    > products.styleno=coloroption.styleno
    > GROUP BY products.styleno
    > ORDER BY styleno ASC
    >
    > The Detail Recordset:
    > SELECT products.itemID, products.category,
    products.styleno,
    products.name,
    > products.description, products.ourprice,
    products.imageTH, products.image,
    > sizeoption.size, coloroption.color
    > FROM products, sizeoption, coloroption
    > WHERE itemID=colname AND
    products.styleno=sizeoption.styleno AND
    > products.styleno=coloroption.styleno
    >
    > I tried using the GROUP BY on the detail page, but then
    it only showed
    one
    > size and color from the dynamic drop down list. I tried
    changing the
    field
    > name "styleno" in the other tables to be unique,
    however, I was using the
    table
    > identifer. I tried using the JOIN command instead of the
    WHERE clause and
    that
    > didn't help either.
    >
    > On the detail page, the customer is supposed to click on
    the Size box and
    see
    > sizes XSM - 6XL ONLY ONE TIME. and then be able to click
    on the Color
    option
    > and see White, Black, Red ONE TIME.
    >
    > Is this possible?
    >
    > Thank you for giving your time to read this.!
    > Evie
    >
    >

  • I have a problem, my wife has an ipad with photos , emails etc etc, she has recently got herself a new iPad Air, has now been using that for two or more months, more photos (new) more emails and other stuff. Will send next query as running out of room to

    I have a problem, my wife has an ipad with photos , emails etc etc, she has recently got herself a new iPad Air, has now been using that for two or more months, more photos (new) more emails and other stuff. What she wants to do is get all she wants from ipad 1 to new ipad without finishing up with 2 of everything which happen on previous occasion. I realise that she needs to tidy up ipad 1 first and get rid of thousands of emails etc. I need help.
    Thanks kiwihdrider

    Hi yes that works well when the new ipad hasn't been used. Trouble new one has been used for two months or more, has lots photos email etc etc. I am worried that these will go. When we did iPhone thru same process finished up with two of most things pics and emails. The emails alone were over 2 thousand and wife reluctant to delete them all. I would and just sort pics. Any other ideas
    Ta

  • Vertically sync time position for two or more 2D axis systems?

    In DIAdem: VIEW,
    Is it possible to vertically sync the time position for two or more 2D axis system charts placed above each other?
    I have displayed several channels on one 2D chart, and one channel of particular interest on a separate chart above, which was very easy to do. It would be really useful to sync the time position on both charts, such that scrolling one chart also scrolls the second chart, or zooming one chart also zooms the second chart to the same area, which seems like a fairly basic thing to want to do, but I haven't found a way to do it yet.
    Any help greatly appreciated!
    Solved!
    Go to Solution.

    Hi Brad,
    Yes, I have been using that method, which works fine up to a point.
    But, say you have several curves displayed on the bottom chart, with the Y-Axis set to "n Y-axes", then the start of the x-axis will be further across to the right than the top chart which has only one curve displayed.
    It is possible to add an empty area to the left of the top chart, to push the start of the x-axis across into alignment (see attached), but every time you add or remove a curve on the bottom chart, or the scale changes enough to add a digit, the start of the x-axis moves and the top chart needs aligning again.
    I'm really after a method to lock both ends of both x-axes to the same vertical screen position, so everything stays aligned automatically?
    Attachments:
    chart - full.JPG ‏152 KB
    chart - detail.JPG ‏145 KB

  • Two or more users editing the same script file in cq5, is it possible?

    In cq5 is possible two or more users editing the same jsp file? There is a lock system preventing simultaneous editing of the same file?
    Thanks,
    Gabriel

    you really should use eclipse and maven to work with multiple developers. something like [1] will be helpful
    [1] http://www.cqblueprints.com/xwiki/bin/view/Blue+Prints/The+CQ+Project+Maven+Archetype

  • How can I use two "Status profile" for two categories of users?

    Hi friends,
    I tried to configure two categories of users :
    1 - First category (User1) can process the message and access to the standard Status profile (SLFC0001),
    2 - The second category (User2) can process the message using another status profile (ZSLFC001).
    To do this, i process like following :
    1 - I created ZSLFN autorization key by copying of SLFN (Tcode :BS52).
    2 - I created the Status Profile "ZSLFC001" by coping the SLFC0001(TCode : CRMBS02).
    3 - I suppress some user status (ex : send to sap) and I replace SLFN autorization key by "ZSLFN"
    4 - I created Transation type "ZLFN" assigned to ZSLFC001 status profile.
    5 - I created a ZSAP_SUPPDESK_PROCESS rôle and I set the ZSLFN as authorization key in "B_USERST_T" and in "B_USERSTAT". This role is affected to the User2
    Unfortunately, the User2 see and access to the "Send to SAP" user status. I think that the status profile ZSLFC001 is not used!!!
    Tank you for your help,
    Samad

    Hello Xavier,
    I changed the Process Type in DNO_CUST04, and I had a error message : "The system could not create the message because of an RFC connection "NONE " error Message was not created".
    Furthermore, The change of process type will affect all users.
    I think that there are two possibilities :
    - Using process type (SLFN or ZLFN) according to the user processor,
    - or using the same process type (SLFN) and according to the processor to load the appropriate "status profile".
    Please find below more informations about the role:
    - the Manually   Status Management: Set/Delete User Status                    B_USERSTAT
       Activity                  :    01, 06                                
       Authorization key   :    ZSLFN                               
       Object Category     :     *                                          
       Status Profile         :    *                                          
    Thank you
    Best regards
    Samad

  • Itunes for two (or more)?

    Just got my Nano today, and want to know if I can share the previously installed itunes that my daughter has been using? When she plugs her ipod into the computer, it automatically downloads her changes from itunes. How does it work with two or more units? Let's face it, I don't want her music and she doesn't want mine. Thanks.

    OR you could each make separate playlists for each person and only have each individual playlists selected for each ipod. http://www.apple.com/support/ipod/tutorial/ipgettingstartedt2.html
    or for more on using manual mode http://www.apple.com/support/ipod/tutorial/ipgettingstartedt3.html
    Another option would be in Windows every windows account gets it's own itunes library.

  • How can I separate playlists from different libraries when two or more users do login in the same computer?

    We've got two computers. I access my iTunes on both of them. I've got an iPod nano. But another user access his own iTunes account in one of these computers. He's got an iPhone. When I login in this one, I share all my playlists with him, and vice-versa. How do I do to separate these libraries without deleting one of them?

    check out method one in this support article: How to use multiple iPods, iPads, or iPhones with one computer

  • CProjects - Partition for two or more groups on the same system

    Hi,
    Our business requirement for cProjects implementation is such that we have two groups (two companies infact) under an umbrella brand. We have already impemeneted cProjects for one of them. It's time now to have this implemented for the other group.
    How can we ascertain that there's a partition in the system by which one group is completely independent of the other? One group should not see the projects/data of the other group and vice versa. Authorizations to projects helps but in a system, a user can fetch (in project search) the names of all projects in the system (irrespective of whether one has authorization). How can we take care of this?
    Summary:
    We are looking for the ssytem where one group of cProjects users works in the system as if it were the only group working. We intend to ensure the same for the second group as well.
    Please suggest.
    Regards...

    Hi Zhenbo,
    You get points for the "very helpful answer". Thanks.
    I have not been able to make a complete breakthrough though. Please see if you can help.
    There are three steps under "Structural Authorization"
    1. Create Authorization Profile: I see this defined in my system (comes from HR)
    2. Save user in SAP Memory (IMG has enough documentation on this.
    3. Assign Autorization profile to users: Here, I assigned one of the "Auth. Profiles" to the user (myself). At this, I see that the system (cProjects front end) returns an empty list.
    This means that the system expects the Business Partners, pertainig to that "Auth. Profile" (which I set in step 3 above). And because it does not find any, it returns an empty list.
    What I am not looking for is:
    How to bring in the Business Partners (we are using the HR Master Employees) under this "Auth. Profile" such that the system picks them when we do a resource search at cProjects front end?
    So... what I am looking for is: relation between this "Auth. Profile" assigned to the user and the Business Partners corrresponding to this "Auth. Profile".
    Please see if you can help.
    Regards,
    Bittu.

  • How to Clear the history in Front End for one or more users

    Hi All,
    Need small help. Can any body tell how to clear/delete the history for a user in the BW front ends for example for a Query Designer or a Reporting user.
    I tried, but didn't work.
    Thanks for the help.
    Regards,
    Venkat

    Venkat,
    History is stored in DSO 0PERS_BOD. You can do a selective delete of data based on the user name from this DSO to delete history.
    HD

  • Dynamic file naming for two or more files in same mappin

    Hello,
    I am working with Dynamic file naming on receiver files...
    Here two files are coming as output files...
    I am using JAva UDF to handle the two file name....
    But  one one file is formed and another is missing as its 505 file aleady existing error is coming in Receivr Communication channel monitoring...
    How to name different dynamic names for the two differenet files

    Hi Sunil,
    Go thru this blog:
    The specified item was not found.
    Use this Variable Substitution method as an alternative option:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/frameset.htm
    SAP NetWeaver XI: Variable Substitution with Adapter-Specific Message Attributes via DynamicConfigurationBean
    OR
    The specified item was not found.
    Regards,
    Vinod.

  • One single account for two or more devices??

    I'm about to buy the new iPod Touch 4. I really liked the last version of iPod Touch 3 and I became a big fan of it. So when I knew about the new iPod 4 I start to think to "upgrade" my old iPod Touch 3.
    I'm wondering if there's any way to transfer all my apps that I bought in my iPod 3 to the new iPod 4 and keep my account intact. The old one I'll give it to one of my little brothers and I'm wondering if I have to reset the iPod in order to transfer my account to the new one.
    Thanks for your time and help!

    I'm wondering if there's any way to transfer all my apps that I bought in my iPod 3 to the new iPod 4 and keep my account intact.
    Just sync the new iPod, using the Transfer Purchases command in iTunes while the older one is connected if the purchases aren't in the iTunes library.
    (54880)

  • One prompt for two or more subject area

    Does someone knows how to resolve this problem?
    I have two subject areas. And I need to create prompt that will work on dashboard that contain requests from two different subject areas (one request from one subject area). I hope that I was clear with this problem, if not I would try to explain it again.
    Thanks

    Hi,
    Another way is to have the same naming in both subject areas. So the names of the items you can pick should be: both presentation table name as well as presentation column name. i.e.:
    Subject Area A:
    Product Dim
    Product Group
    Product Name
    Subject Area B:
    Product Dim
    Product Group
    Product Name
    Then you can create a prompt on either Product Group name and it will affect reports from both subject area's
    Regards

Maybe you are looking for