Deleting workspace

Hi All,
We have created many tracks with different UserID and Passwords in our system which leads to many inconsistencies. So Finally, we have decided to delete all the tracks and the assigned workspaces for the same.
Deletion of Track in CMS is successful but the workspaces in DTR remain as such.
1) How to delete all these workspaces?
      For this we tried out the following link <a href="http://help.sap.com/saphelp_nw70/helpdata/en/94/f4de3f68d48f15e10000000a155106/frameset.htm">Deleting Workspaces</a> . But we were unable to do it.
It is told that we can run the dtr.bat file in the eclipse folder to delete the Workspace. When we run this file the command prompt just opens and gets disappeared. What should be done for this to open it up and execute the commands?
2) Should we need to install NWDS in the Server machine or just the dtr.bat file can be copied to server and executed or this can be done from the developers machine?
3) How can this be achieved? Any step by step reference document should do.
Awaiting for replies...
Thanks and Regards,
Arun.

Hi Arun,
I believe this can be easily a misunderstanding.
Please confirm that you basically refer to the DTR workspaces which are still visible in the DTR webui via browser.
Those can be removed this way:
#855537 - How to delete workspace folders in DTR
(http://service.sap.com/sap/support/notes/855537)
Best Regards,
Ervin

Similar Messages

  • How to delete workspaces

    I was experimenting with workspaces.  So, I ended up with more than I now need.
    I can't find anywhere in help on how to delete a workspace.
    I did not see anything helpful in Preferences.
    If I delete a workspace within DOS, it comes back when I restart FlexBuilder3.
    Is there a way to delete a workspace?
    thanks,
    --- john

    @jherr22
    My apologies, I thought you were referring to projects.
    I'm not entirely sure since I'm relatively new to Flex but here a few resource links that might contain the answer you're looking for.
    http://livedocs.adobe.com/flex/3/html/help.html?content=projects_5.html
    http://www.yapiodesign.com/blog/2008/10/13/flex-builder-deleting-workspace-from-the-list/
    http://www.nutrixinteractive.com/blog/?p=202
    http://www.verysimple.com/blog/2008/07/18/delete-an-unused-workspace-from-flex-builder-3/
    Good luck!
    DK

  • Restoring a deleted workspace

    Is there any ability to restore a deleted workspace? If so, whom should I contact and what is the process?

    John,
    Recovery of a workspace would have to be done by restoring the complete system to the last backup and then extracting the content from the Workspace - this is the reason the delete workspace has the caveat that once you have deleted the workspace it is gone so are you sure. So the answer is no we cannot recover the Workspace for practical reasons.
    Phil

  • Deleted workspace still shows in dock Xcode application menu

    I deleted a workspace, but still shows on the dock app menu (just above Options and/or Open Developer Tool), if I click on it nothing happens...because it has been deleted of course.
    How can I get remove it from menu?

    Did you followed this while deleting
    http://technet.microsoft.com/en-us/library/gg195768(v=ocs.14).aspx
    http://technet.microsoft.com/en-us/library/gg195768(v=ocs.14).aspx
    http://technet.microsoft.com/en-us/library/gg617964.aspx
    Whenever you see a helpful reply, click on Vote As Helpful & click on Mark As Answer if a post answers your question.

  • Deleting Workspace not reclaiming the tablespace

    Hi David ,
    Ran below query after deleting my workspace just to make sure alll the space consumed by AW is deleted (in my case ~140GB) .
    SELECT d.tablespace_name name, substr(d.contents, 1, 1) ttype,
    substr(a.autoextensible, 1, 1) auto, substr(d.segment_space_management, 1, 1) segm,
    substr(d.plugged_in, 1, 1) plg, decode(d.logging,'LOGGING','Y','NOLOGGING','N','?') lgg,
    decode(d.status, 'ONLINE', 'Y', 'OFFLINE', 'N', '?') status,
    NVL(o.ownr,0) ownr, NVL(a.bytes/1024/1024,0) sz,
    ((NVL(a.bytes/1024/1024,0))-(NVL(NVL(f.bytes,0),0)/1024/1024)) usd,
    NVL(g.bytes/1024/1024,0) awsz, NVL(g.awcnt,0) aws, NVL(g.segcnt,0) segs
    FROM sys.dba_tablespaces d,
    (select tablespace_name, autoextensible, sum(bytes) bytes
    from dba_data_files group by tablespace_name, autoextensible) a,
    (select tablespace_name, sum(bytes) bytes from dba_free_space group by tablespace_name) f,
    (select dbas.tablespace_name, count(distinct table_name) as awcnt,
    count(*) as segcnt, sum(dbas.bytes) bytes from dba_lobs dbal, dba_segments dbas
    where dbal.column_name = 'AWLOB' and dbal.segment_name = dbas.segment_name
    group by dbas.tablespace_name) g,
    (select tablespace_name, count(distinct owner) ownr
    from dba_segments group by tablespace_name) o
    WHERE d.tablespace_name = a.tablespace_name(+) AND d.tablespace_name = f.tablespace_name(+)
    AND d.tablespace_name = g.tablespace_name(+) AND d.tablespace_name = o.tablespace_name(+)
    AND NOT (d.extent_management = 'LOCAL' AND d.contents = 'TEMPORARY')
    UNION ALL
    SELECT d.tablespace_name name, substr(d.contents, 1, 1) ttype,
    substr(a.autoextensible, 1, 1) auto, substr(d.segment_space_management, 1, 1) segm,
    substr(d.plugged_in, 1, 1) plg, decode(d.logging,'LOGGING','Y','NOLOGGING','N','?') lgg,
    decode(d.status, 'ONLINE', 'Y', 'OFFLINE', 'N', '?') status,
    NVL(o.ownr, 0) ownr, NVL(a.bytes /1024/1024, 0) sz,
    ((NVL(a.bytes/1024/1024,0))-(NVL((a.bytes-t.bytes), a.bytes)/1024/1024)) usd,
    NVL(g.bytes/1024/1024,0) awsz, NVL(g.awcnt,0) aws, NVL(g.segcnt,0) segs
    FROM sys.dba_tablespaces d,
    (select tablespace_name, autoextensible, sum(bytes) bytes
    from dba_temp_files group by tablespace_name, autoextensible) a,
    (select tablespace_name, sum(bytes_cached) bytes
    from gv$temp_extent_pool group by tablespace_name) t,
    (select dbas.tablespace_name, count(distinct table_name) as awcnt,
    count(*) as segcnt, sum(dbas.bytes) bytes from dba_lobs dbal, dba_segments dbas
    where dbal.column_name = 'AWLOB' and dbal.segment_name = dbas.segment_name
    group by dbas.tablespace_name) g,
    (select tablespace_name, count(distinct owner) ownr
    from dba_segments group by tablespace_name) o
    WHERE d.tablespace_name = a.tablespace_name(+) AND d.tablespace_name = t.tablespace_name(+)
    AND d.tablespace_name = g.tablespace_name(+) AND d.tablespace_name = o.tablespace_name(+)
    AND d.extent_management = 'LOCAL' AND d.contents = 'TEMPORARY'
    ORDER BY ttype, name;
    Results below:
    NAME TTYPE AUTO SEGM PLG LGG STATUS OWNR SZ USD AWSZ AWS SEGS
    SYSAUX P Y A N Y Y 12 820 772.3125 30.75 6 6
    SYSTEM P Y M N Y Y 3 720 714.5625 0 0 0
    USERS P N A N Y Y 1 96626.75 -51276.5625 139726 1 16
    USERS P Y A N Y Y 1 78336 -69567.3125 139726 1 16
    USERSIND P N A N Y Y 1 26624 25393.0625 0 0 0
    USERSIND P Y A N Y Y 1 3072 1841.0625 0 0 0
    OLAP_TEMP T Y M N N Y 0 15360 9359 0 0 0
    UNDOTBS2 U Y M N Y Y 1 2048 693.875 0 0 0
    So it seems my AW is still not removing the old used space . Any advice please ?
    Moreover under USD columen I can see negative (-) value against tablespace which consumed space by AW Workspace.
    Many thanks,
    DxP
    Edited by: e_**** on Aug 1, 2011 8:40 PM

    It's a logic error. Since some datafiles in a tablespace may or may not individually autoextend this is where the problem comes in. Here's a rewritten copy.
    set lines 150 pages 500 feedback off head on
    clear bre col comp buff
    col name for a16 hea "Tablespace"
    col ownr for 990 hea "Users"
    col ttype for a1 hea "T|Y|P|E"
    col bigf for a1 hea "B|I|G|F"
    col lgg for a1 hea "L|O|G|G"
    col extmgt for a1 hea "E|X|T|M"
    col segm for a1 hea "S|E|G|M"
    col plg for a1 hea "P|L|U|G"
    col comp for a1 hea "C|O|M|P"
    col status for a1 hea "L|I|V|E"
    col sz for 999,990.9 hea "(MB)|On Disk"
    col usd for 999,990.9 hea "(MB)|Occupying"
    col awsz for 999,990.9 hea "(MB)|AW Size"
    col aws for 990 hea "AW|CNT"
    col segs for 990 hea "AW|PTN"
    bre on REPORT;
    comp sum lab total of aws on REPORT;
    comp sum lab total of awsz on REPORT;
    comp sum lab total of fr on REPORT;
    comp sum lab total of segs on REPORT;
    comp sum lab total of sz on REPORT;
    comp sum lab total of usd on REPORT;
    -- optional create a view definition
    -- create or replace view aw_storage as
    select d.tablespace_name name, substr(d.contents,1,1) ttype
    , decode(d.bigfile,'YES','Y','NO','N','?') bigf
    , decode(d.logging,'LOGGING','Y','NOLOGGING','N','?') lgg
    , decode(d.extent_management,'LOCAL','L','DICTIONARY','D','?') extmgt
    , substr(d.segment_space_management,1,1) segm, substr(d.plugged_in,1,1) plg
    , decode(d.def_tab_compression,'ENABLED','Y','DISABLED','N','?') comp
    , decode(d.status,'ONLINE','Y','OFFLINE','N','?') status
    , NVL(o.ownr,0) ownr, NVL(a.bytes/1024/1024,0) sz
    , ((NVL(a.bytes/1024/1024,0))-(NVL(NVL(f.bytes,0),0)/1024/1024)) usd
    , NVL(g.bytes/1024/1024,0) awsz, NVL(g.awcnt,0) aws, NVL(g.segcnt,0) segs
    from sys.dba_tablespaces d
    , (select tablespace_name, sum(bytes) bytes
    from dba_data_files group by tablespace_name) a
    , (select tablespace_name, sum(bytes) bytes
    from dba_free_space group by tablespace_name) f
    , (select dbas.tablespace_name, count(distinct table_name) as awcnt
    , count(*) as segcnt, sum(dbas.bytes) bytes
    from dba_lobs dbal, dba_segments dbas
    where dbal.column_name = 'AWLOB' and dbal.segment_name = dbas.segment_name
    group by dbas.tablespace_name) g
    , (select tablespace_name, count(distinct owner) ownr
    from dba_segments group by tablespace_name) o
    where d.tablespace_name = a.tablespace_name(+) and
    d.tablespace_name = f.tablespace_name(+) and
    d.tablespace_name = g.tablespace_name(+) and
    d.tablespace_name = o.tablespace_name(+) and d.contents != 'TEMPORARY'
    union all
    select d.tablespace_name name, substr(d.contents, 1, 1) ttype
    , decode(d.bigfile,'YES','Y','NO','N','?') bigf
    , decode(d.logging,'LOGGING','Y','NOLOGGING','N','?') lgg
    , decode(d.extent_management, 'LOCAL', 'L', 'DICTIONARY', 'D', '?') extmgt
    , substr(d.segment_space_management, 1, 1) segm, substr(d.plugged_in, 1, 1) plg
    , decode(d.def_tab_compression, 'ENABLED', 'Y', 'DISABLED', 'N', '?') comp
    , decode(d.status, 'ONLINE', 'Y', 'OFFLINE', 'N', '?') status
    , NVL(o.ownr, 0) ownr, NVL(a.bytes /1024/1024, 0) sz
    , ((NVL(a.bytes/1024/1024,0))-(NVL((a.bytes-t.bytes), a.bytes)/1024/1024)) usd
    , NVL(g.bytes/1024/1024,0) awsz, NVL(g.awcnt,0) aws, NVL(g.segcnt,0) segs
    from sys.dba_tablespaces d
    , (select tablespace_name, sum(bytes) bytes
    from dba_temp_files group by tablespace_name) a
    , (select tablespace_name, sum(bytes_cached) bytes
    from gv$temp_extent_pool group by tablespace_name) t
    , (select dbas.tablespace_name, count(distinct table_name) as awcnt
    , count(*) as segcnt, sum(dbas.bytes) bytes
    from dba_lobs dbal, dba_segments dbas
    where dbal.column_name = 'AWLOB' and dbal.segment_name = dbas.segment_name
    group by dbas.tablespace_name) g
    , (select tablespace_name, count(distinct owner) ownr
    from dba_segments group by tablespace_name) o
    where d.tablespace_name = a.tablespace_name(+) and
    d.tablespace_name = t.tablespace_name(+) and
    d.tablespace_name = g.tablespace_name(+) and
    d.tablespace_name = o.tablespace_name(+) and d.contents = 'TEMPORARY'
    order by ttype, name;
    Columns Explained:
    Tablespace = Tablespace Name
    TYPE = Undo (U), Temporary (T) or Permanent (P)
    BIGF = Bigfile Tablespace: Yes (Y) or No (N)
    LOGG = Logging: Yes (Y) or No (N)
    EXTM = Extent Management: Local (L) or Dictionary (D)
    SEGM = Segment Space Management: Auto (A) or Manual (M)
    PLUG = Plugged In: Yes (Y) or No (N)
    COMP = Compression: Yes (Y) or No (N)
    LIVE = Status: Online (Y) or Offline (N)
    Users = Count of Schemas with Objects in Tablespace
    On Disk = Total Size of Tablespace in MB on Disk
    Occupying = Total Space occupied in MB by objects in Tablespace
    AW Size = Space is consumed in MB by Analytic Workspaces in Tablespace
    AW CNT = Count of Analytic Workspaces in Tablespace
    AW PTN = Count of Partitions for Analytic Workspaces in Tablespace

  • Cannot delete Workspace in DTR

    Hello All,
      i was trying to delete the workspace fromt the DTR, initially i have deleted the track and now am trying to delete the workspace.
    I tried to delete using the IE's Open as Web folder option but it failed, then i tried to delete it with the help of Command Line tool.
    I have navigated to the dtr folder in the cmd and i have entered the following command
    dtr.bat deleteworkspace -w "//TRACK/sap.com_SAP_ESS/dev/inactive"
    but it displays Could not retrieve folder item //TRACK/sap.com_SAP_ESS/dev/inactive.
    Is the syntax is correct? What could be the problem?

    Hi Ashutosh...
    Thanks for your reply..
    When i tried to load the development configuration using loadconfig
    :dc> loadconfig u2013r C:\Dev\.dtc\0 u2013c C:\Documents and Settings\<user_name>\.dtr u2013u <nwdi_administrator_name>
    It displays
    Directory "C:\Documents" does not exist
    Directory "C:\Documents" does not exist
    But the Directory "C:\Documents and Settings"  exist..... Even the error message displays "C:\Documents" and not as "C:\Documents and Settings"
    What could be the problem?
    Thanks
    Gopal

  • How do I restore a deleted workspace in Auditon CS6?

    In learning Auditon CS6, I inadvertnly deleted the Classic Workspace.  It is gone, and can not be restored.
    How do I go about loading it again?
    Thank you,
    Jackson

    If you delete or rename the file "WorkspaceManagerConfig.xml" in C:\Users\Username\AppData\Roaming\Adobe\Audition\5.0\Workspace Audition will recreate it as the original default when you next open Audition. Should get you your Classic workspace back again.
    P.S. The folder path may be different depending on what OS you are using.

  • Cannot delete workspaces

    We are using
    Marvel version 1.4.0.00.21
    Apache version 10220 (Linux)
    Database 9.2.0.2.0 on Linux.
    We are not able to delete any workspaces using the Marvel admin interface. We are getting as far as "Verify Applications" step. After that the application hangs and we get a page not found error.
    The url it tries to access at this point is :
    http://gts245.us.oracle.com:2200/pls/marvel/wwv_flow.accept
    We have the following error in the apache error_log:
    [Tue Nov  4 05:36:46 2003] [info] [client 141.144.78.143] send a2o call trace timed out.
    Could someone comment on this.
    Thanks

    it turns out that the page that your instance is unable to show has a query on it that's a bit sort-intensive. it checks to see if other schemas have data in the tablespaces associated with your workspace. it's possible that your instance has many schemas associated with the tablespace(s) to which your workspace is associated. if that's the case, our query could be taking too much time, and that's what's giving your page not found error. we tried to reproduce this on one of our larger boxes, though, and still couldn't get the page to not come back. another possibility is that your TEMP tablespace isn't big enough to handle that busy query we're running for that not found page. let the record show that we've fixed the query for release with later versions of html db, but the suggestions below should get you by on your current version:
    1) try first deleting the mappings for all schema to your html db workspace except the first one provisioned with your workspace. then try re-attempting to drop your workspace. the idea here is that the query in question would run much faster if it only had one schema with one tablespace to consider. (you can drop those schema mapping from the "Manage Schema to Workspace Assignments" section that's available as a link off the html db administrator's interface)
    2) if the above suggestion doesn't work, go for the brute force approach. log into sqlplus as the current html db engine owner (flows_010400 in your case) and run this pl/sql...
    declare
    l_sgid number default null;
    begin
    select provisioning_company_id
    into l_sgid
    from wwv_flow_companies
    where short_name = 'CASE_SENSITIVE_NAME_OF_WORKSPACE_TO_BE_DROPPED';
    wwv_flow_provisioning.terminate_service_by_sgid( l_sgid);
    for c1 in (select id
    from wwv_flow_provision_company
    where security_group_id = l_sgid ) loop
    wwv_flow_provisioning.delete_provision_request(c1.id);
    exit;
    end loop;
    end;
    ...you'd of course want to substitute the above CASE_SENSITIVE_NAME_OF_WORKSPACE_TO_BE_DROPPED string for the case-sensitive name of your workspace to be dropped.
    please try the suggestions above in the order presented and let us know if you need further assistance.
    thanks,
    raj

  • Error when building dimension or deleting workspace

    I am just starting to work with AW and trying to get past some initial bumps. I initially created 2 AWs but did all of my work in just one of them, using a small, 20 row dataset that I created. But soon I was getting too many errors in that AW and figured something was corrupted so I deleted it.
    But now, when I try to create a simple dimension (with 2 levels) in the remaining AW, I get the error:
    Errors have occurred during xml parse
    <Line 3, Column 15>: <Line 3, Column 15>: XML-20210: (Fatal Error) Unexpected EOF.
    Also the error:
    The transaction is not committable: "An error has occurred on the server
    Error class: Express Failure
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::generic<CommitRoot>
    INI: Unable to parse XML string sent from the client to the server, Generic at XML Parser Errors:
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Then when I try to DELETE this second AW and start completely afresh I get the error:
    An error has occurred on the server
    Error class: Express Failure
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::generic<CommitRoot>
    INI: Unable to parse XML string sent from the client to the server, Generic at XML Parser Errors:
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Error processing subelement: <StandardDimension><Attribute><BaseAttribute><Classification>
    Error processing tag: Classification:
    Error returned by xsOqXmlParserExecute.
    Does anyone have any ideas what is causing this? Thanks. John

    David. Thanks very much. The patch would not take to the database (just hung) so I was given a brand new box and fully upgraded DB. Works fine so far. A bit of a silver lining I guess. {:>) -John                                                                                                                                                                                                                                                                                                                                                                                                       

  • Why do I have to reset workspace everytime I start premiere pro cc 2014?

    Since the latest update my situation with premiere have been bad to say the least; random crashes for no spceific reasons, adobe media encoder doesnt start or when it starts i cant encode anything with it.
    And the most annoying part is this:
    Everytime i start premiere it opens up with this useless workspace. Of course i can go to window/workspace/reset current..
    It also has different timelines opened everytime i open the same projects. I dont know whats going on..
    I´ve done a complete removal with the adobe cleaner tool, removed my preference files etc. it worked normally for 30 minutes. and now its back to where i was before..
    Any suggestions?

    Hi Simon,
    Did you already manage to fix this problem? I have the exact same issue and it's driving me nuts. Started when I updated a few days/weeks (can't remember) ago.
    Unchecking 'Import Workspace from Projects' didn't work. Also, I've tried deleting workspaces etc. but that didn;t work either.
    By the way; how many displays are you using on what videocard? Maybe that's an issue? I have 3 monitors on a GTX680 4Gb. Working on Windows 8.1.

  • Saving and Workspace issues

    I'm new to using a Mac. Last week I bought an iMac and installed the trail version of CS5. Prior to that I worked with CS4 on a PC.
    My default screen mode is transparent. I find this distracting to see Bridge or some other app in the background of the workspace. If I select "full screen with menu bar" from the View/Screen Mode option I loose the tabs. As well, this option is not saved when you create a new Workspace. How can I create a workspace that is similar to the default CS4 on a PC? BTW how do you delete Workspaces you have created?
    Also, when I attempt to save a image, the "save as" window opens but the "where" pull down tab will only let me select the storage location eg Computer, Macintosh HD, external HD etc. I can not open these locations to select a folder.
    I suspect that these problems maybe related to my lack of familiarity with the Mac OS.
    Any suggestions would be greatly appreciated.
    Joe

    1) Try Window – Application Frame.
    2) Click on the triangle right of the name (see screenshot).

  • Workspace completely gone.

    First off, 13" retina MAC. I recently got a external monitor(24" 1080p tv) i connect to with a hdmi port. I detatched some of the panels (the playback window, audio levels panel, and timecode) and put them on my second monitor so i could better edit on my main monitor. After editing and such i saved the project and went to hit reset workspace and hit delete workspace instead. Now no matter if i open that project, an old one, or a new one, i have zero workspace. nothing. It acts like it is going to open a new project but then just shows me nothing. I have tried it with the external monitor  connected and disconnected, I updated both my software and OS to no avail. Please help i need this resolved before i go back to college.

    Reset Corrupted Preferences = https://forums.adobe.com/thread/1567425 may help

  • Deletion of DCs

    Hi,
    I have followed all of the instructions in the document "How To ... Manage DC Operations with the DC Command Line Tool".
    Everything seemed to work fine and I also logged on to SLA to Remove Name Reservation so I can re-use the DCs names.
    The only artifact I see are folder names in the DTR in the dev and cons workspaces under the DCs folder name (in both active and inactive workspaces).. I see the whole folder structures of the original DCs.  I would have expected these to be cleaned up.
    Any ideas? I cannot find any reference in SAP docs about this as it relates to the usage of the dctool.

    Hi,
    for future search:
    the DC deletion works always however it is indeed a complex scenario, but the solution you are looking for is rather this:
    #855537 - How to delete workspace folders in DTR -- http://service.sap.com/sap/support/notes/855537
    Best Regards,
    Ervin (http://wiki.sdn.sap.com/wiki/display/TechTSG/%28NWDI%29Home)

  • Can a workspace-viewer post a question or reply to a forum?

    I assume that anyone who is a workspace-viewer can post to an existing forum?
    I cannot find a description of the different types of workspace participant roles (sorry I mean other than where the roles themselves are listed when adding a new member) - I looked in Help but it doesn't specify who can post to a forum.
    Edited by: user777311 on Jan 4, 2012 12:16 PM
    Edited by: user777311 on Jan 4, 2012 12:18 PM

    Table 6-2 Summary of Default Team Workspace Roles
    The Workspace roles and their privileges and access types are outlined below:
    Role Granted                                         Privileges Granted                                                                                           Access Types workspace-coordinator [ADDRESS_BOOK_MGR, CALENDAR_MGR, CONF_MGR, CONTENT_MGR,
                                                               EMAIL_MGR, FORUM_MGR, IM_MGR, MARKER_MGR, MODIFY_ACL,
                                                               NOTIFICATION_MGR, POLICY_MGR, PREFERENCE_MGR, READALL,
                                                               ROLE_MGR, SECURITY, SUBSCRIPTION_MGR, USER_MGR, VERSION_MGR,
                                                               WORKFLOW_MGR, WORKSPACE_MGR] discover, read, write, execute, delete
    workspace-participant-coordinator MODIFY_ACL, ROLE_MGR, USER_MGR read, discover
    workspace-document-coordinator CONTENT_MGR, FORUM_MGR, MARKER_MGR, MODIFY_ACL,
    VERSION_MGR, WORKFLOW_MGR discover, read, write, execute, delete
    workspace-viewer none discover, read
    workspace-member none discover, read, write, execute, delete
    workspace-commenter FORUM_WRITER discover, read
    Workspace-viewer is just that " look don't touch" so no they cannot write anything anywhere in the workspace but can find things in search and read them. Workspace-members have full access.
    Phil

  • Deleting project files

    Hi,
    Can anyone guide me to delete the file from local repo .
    detailed description :
    deleted a file from project explorer  and verified file is deleted from the local disk .
    but the file is present in repo TAB  even I can do check out the file .
    I am surprised where the file is come from ?? 
    How do I delete a file permanently ?
    please find the screenshot attached.

    Hi Gobi,
    You may want to have a look on the below mentioned threads:
    Delete project package!!!
    Delete workspace and projects from repository in HANA
    How to delete workspace and projects from repository
    Regards,
    Krishna Tangudu

Maybe you are looking for