Adding SP Group to Folder using JSOM in O365

Hi,
Is it possible to add a SharePoint Group to a folder in a Document Library using client side javascript?
We can't use the normal methods because SP.Folder object doesn't have get_roleAssignments() method. I'm looking to run a script from a page within a Script Editor wp to get this done from a button click.
I'm not creating an app but trying to achieve this from an aspx page using a script editor webpart.
PS: I have posted this query to another forum here but haven't got an answer hence thought I'll check with the developer forum
-- The opinions expressed here represent my own and not those of anybody else -- http://manojvnair.blogspot.com

I have cracked it now and here is how we can add SPGroup to a Folder in SharePoint using JSOM:
var rdContribute = currentWeb.get_roleDefinitions().getByName('Contribute');
var collContribute = SP.RoleDefinitionBindingCollection.newObject(clientContext);
collContribute.add(rdContribute);
var myFolder = currentWeb.getFolderByServerRelativeUrl(folderUrl);
var assignments = myFolder.get_listItemAllFields().get_roleAssignments();
var roleAssignmentContribute = assignments.add(mySpGroup, collContribute);
clientContext.load(myFolder);
clientContext.executeQueryAsync(Function.createDelegate(this, this.AddingGroupToFolderSuccess), Function.createDelegate(this, this.AddingGroupToFolderFailed));
Here I'm adding mySpGroup with Contribute rights to folder called folderUrl
-- The opinions expressed here represent my own and not those of anybody else -- http://manojvnair.blogspot.com

Similar Messages

  • How to get latest added file from a folder using apple script

    Hi..
    I am trying to get a latest added file from a folder..and for this i have below script
    tell application "Finder"
        set latestFile to item 1 of (sort (get files of (path to downloads folder)) by creation date) as alias
        set fileName to latestFile's name
    end tell
    By using this i am not able to get latest file because for some files the creation date is some older date so is there any way to get latest file based on "Date Added" column of a folder.

    If you don't mind using GUI Scripting (you must enable access for assistive devices in the Accessibility System Preference pane), the following script should give you a reference to the last item added to any folder. Admittedly not the most elegant solution, but it works, at least under OS X 10.8.2.
    set theFolder to choose folder
    tell application "Finder"
        activate
        set theFolderWindow to container window of theFolder
        set alreadyOpen to exists theFolderWindow
        tell theFolderWindow
            open
            set theInitialView to current view
            set current view to icon view
        end tell
    end tell
    tell application "System Events" to tell process "Finder"
        -- Arrange by None:
        set theInitialArrangement to name of menu item 1 of menu 1 of menu item "Arrange By" of menu 1 of menu bar item "View" of menu bar 1 whose value of attribute "AXMenuItemMarkChar" is "✓"
        keystroke "0" using {control down, command down}
        -- Sort by Date Added:
        set theInitialSortingOrder to name of menu item 1 of menu 1 of menu item "Sort By" of menu 1 of menu bar item "View" of menu bar 1 whose value of attribute "AXMenuItemMarkChar" is "✓"
        keystroke "4" using {control down, option down, command down}
        -- Get the name of the last item:
        set theItemName to name of image 1 of UI element 1 of last scroll area of splitter group 1 of (window 1 whose subrole is "AXStandardWindow")
        -- Restore the initial settings:
        click menu item theInitialSortingOrder of menu 1 of menu item "Sort By" of menu 1 of menu bar item "View" of menu bar 1
        click menu item theInitialArrangement of menu 1 of menu item "Arrange By" of menu 1 of menu bar item "View" of menu bar 1
    end tell
    tell application "Finder"
        set current view of theFolderWindow to theInitialView -- restore the initial view
        if not alreadyOpen then close theFolderWindow
        set theLastItem to item theItemName of theFolder
    end tell
    theLastItem
    Message was edited by: Pierre L.

  • Adding iview to role/folder  using wd

    I am working on requirement  to add  iview to Role/Folder using
    webDynpro.I have developed following code based on forums.
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Constants.REQUESTED_ASPECT, IPcdAttribute.PERSISTENCY_ASPECT);
    //env.put(Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
    env.put(Context.SECURITY_PRINCIPAL,
    WDClientUser.getCurrentUser().getSAPUser());
    env.put(IPcdContext.PCD_PERSONALIZATION_PRINCIPAL,
    WDClientUser.getCurrentUser().getSAPUser());
    InitialContext iCtx = new InitialContext(env);
    String iViewID =
    "pcd:portal_content/wb.bidash.bi_dashboard/java_sap_com_km_com_kmapp_KmApp";
    String iRoleID =
    "pcd:portal_content/wb.bidash.bi_dashboard/com.wb.testRole";
    try
    IRole myrole = (IRole)iCtx.lookup(iRoleID);
    IiView myIView =(IiView)iCtx.lookup(iViewID);
    // add iview to role
    // Here i need some code like  add iview to role
    //myrole.addMember(myIView);
    catch(NamingException e4)
         e4.printStackTrace();
    it is giving  following exceptions    java.lang.ClassCastException
    java.lang.ClassCastException
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:174)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:

    Hello ,
    im getting similar issue can u got any solution .../
    Regards ,
    subbu

  • Creating publishing page in specific folder and with custom page layout using JSOM

    Hi!
    I have a site collection under my root, in which I have a page library with a folder inside. I want to create a publishing page inside the folder using JSOM. The API provides the following information on the three possible ways of how you can create a publishing
    page.
    PublishingPageInformation with all defaults.
    PublishingPageInformation.Name and PublishingPageInformation.PageLayoutListItem.
    PublishingPageInformation.Name, PublishingPageInformation.PageLayoutListItem and PublishingPageInformation.Folder.
    Source - SP.Publishing.PublishingPageInformation Properties (sp.publishing)
    Since I want to create the page in a specific folder in the page library, I have to go for the last option.
    I have a function call chain that look as follows:
    getLanguageID(webUrl, languageID)
    .then(function(resolveVal) {
    language = resolveVal;
    return checkPageExist();
    .then(getEditorialNewsFolderJSOM)
    .then(getAssociatedPageLayoutListItem)
    .then(addPublishingPage)
    The first two methods, 
    getEditorialNewsFolderJSOM
    getAssociatedPageLayoutListItem
    fetches the required data as SP.Folder- and SP.ListItem-objects.
    The problem occurs when
    addPublishingPage
    is called. This method, in turns calls this function. 
    var pageInfo = new SP.Publishing.PublishingPageInformation();
    pageInfo.set_name(publishPage.title);
    pageInfo.set_pageLayoutListItem(pageLayoutListItem);
    pageInfo.set_folder(editorialNewsFolder);
    pageCreationContext.newPage = pubWeb.addPublishingPage(pageInfo);
    clientContext.load(pageCreationContext.newPage);
    clientContext.executeQueryAsync(function() {
    publishPage.isPageCheckOut = true;
    resolve();
    }, function(error) {
    reject(precio.intranet.resource.errCreateContent_addPublishPage);
    The error happens when this function is called with the page information object.
    SP.Publishing.PublishingWeb.addPublishingPage(pageInformation)
    Error:
    Cannot read property '$2t_0' of undefined
    and it happens in SP.Runtime.js.
    I've tried this
    sample code from the MSDN-team, and added the pagelayout and folder properties, but it renders the same error.
    Creating a page directly in the page library with a blank SP.PublishingPageInformation object works perfectly fine!
    What could possibly be wrong? The error isn't something that I can debug myself since it happens in SP.Runtime.js, and the documentation for this is very sparse!
    Any help on how to resolve this issue would be helpful!

    Hi Vinay,
    This may be useful:
    https://blogs.oracle.com/jdevotnharvest/entry/remote_task_flow_vs_wsrp

  • Creating a workflow to give permissions to a SharePoint folder using Impersonation Step

    Hi There,
    I have been tasked with creating a workflow in my organise that will allow our users with (Contributor access) to grant people access upon creating a folder in our Shared Documents library.
    Currently when our users create a folder, they need to logged a call with site administrators to granted the relevant people access to the folder and its contents.
    Is it possible to create a solution that will kick off automatically upon creation of a folder and allow the Creator Only to grant a subset of users permissions to the folder using the Impersonation Step?
    Any suggestions would be highly appreciated.
    Regards
    Tibz
    regards Tibz

    Hi There
    Thank you for your response.
    I managed to create a workflow that can be started automatically upon the creation of a folder in my document library. I then added an Impersonation step where I used the "Remove list Item Permissions" & "Add List Item Permissions" actions.
    The challenge I am faced with is on the Remove Permissions action, I want to remove all inherited permissions for all existing users and only leave Users with Full Control. Is there a way to select All Existing Users in one function and perhaps
    pass that as a "Selected Users" parameter? Currently I have to select the users/groups individually and there are over 100 existing users/groups to choose from.
    Any thoughts on how I can work around this?
    regards Tibz

  • Question:  any recommendation on how to delete (or group to folder) numerous  duplicates in iPhoto. I create a folder, only to find it empty, and the photos in another unrelated folder, sometimes combined with those photos but other times bumping that alb

    Question:  any recommendations on how to delete (or group to folder to burn) many duplicate photos in iPhoto?   I had considered using  D Annhilator, but I saw several comments re: same to make me rethink this.  I have thousands, literally, duplicates.  It's like they reproduce overnight.  I cannot get a reasonable explanation re: why this is happening.  I thought I would start with "albums" and try to drag those to a burn folder, but that will take a long time. I hate to mess with "library" or "events" at this time.  Any help would be greatly appreciated.
    BrendaS

    Question:  any recommendations on how to delete (or group to folder to burn) many duplicate photos in iPhoto?   I had considered using  D Annhilator, but I saw several comments re: same to make me rethink this.  I have thousands, literally, duplicates.  It's like they reproduce overnight.  I cannot get a reasonable explanation re: why this is happening.  I thought I would start with "albums" and try to drag those to a burn folder, but that will take a long time. I hate to mess with "library" or "events" at this time.  Any help would be greatly appreciated.
    BrendaS

  • Material group updation by using function modules

    Hello All,
    I would like to add , update and delete material group From  database tables T023 and T023T  according to the given Excel input file.Could you please suggest me any function modules are there apart form MATL_GROUP_UPDATE .
    if i am using this function module i am getting the follwing error
    'Class does not exist or is not valid on this date'.
    Could you please send me any sample code.
    Thanks in advance,
    Arvind.

    Hello Narendran,
    Thanks for your quick reply.
    i need to do the following fucntions to the tables t023 and t023t.
    1) adding material group
    2) Updating the material group
    3) Deleting the material group
    according to the status field in the excel input file as shown below
    Status     ungültig     Referenzen     MGS     Beschreibung deutsch     Beschreibung englisch     中文     Beschreibung russisch
    N               H4***     Kohlen     Carbon     炭     Уголь
    N               H4100     Kohlebürsten                                                               Carbon brushes     炭刷     Угольные щетки
    N               H4900     Sonstige Teile aus Kohle, techn. Kohle                                     Other parts made from carbon, techn. carbon     由炭,工程用炭制成的其他零件     Прочие виды изделий из угля, технический уголь                     
    U               J2100     Polyphenylenether (PPESIB)                                                    Polyphenylene oxide (PPO)     聚苯氧化物(聚苯撑氧,聚苯撑氧化物)(PPO)     Полифенилэфир (PPESIB)                                              
    D     x          J2400     Sonstige styrolhaltige Polymere                                 Other Polymers Containing Styrene     其他含苯乙烯聚合物     Прочие виды полимеров, содержащие стирол                  
    Note:Status :N means add the corresponding material group H4***
                               U means update the material group Description in t023t
                               D means delete the material group form  the table t023t
                                in all languages
    Could you please tell me any other fucntion modules are there.
    As per your suggession we can add the material groups then what about Updation and deletion of material groups.
    Also suggest me shall i go for normal modify , delete and update  statements in my program to aceive the above functionality
    2) The excel file format is also not constant they can change the columns
    as per their wish i mean for exp in the above excel  at col1 Status field is there and  at col4 (MGS ) material group and remaining columns are description of the material group in different languages(sorry the excel alignment is not clear above)  .
    They can change this and they can place status at col5 and MGS at col6 .
    Could you please advice me how to handle this situation in my program
    Thanks in advance,
    Arvind.

  • Adding new groups to weblogic

    Is there a way of adding new groups to weblogic without using the console ? I need to add a list of group names (~100) from a flat file to weblogic. Is there a way I could automatically add those groups instead of me creating each of those groups from the console. Any suggestions would be helpful. Thanks.

    This is likely not the forum to get an answer to this question - check the BEA support fora.
    IIRC groups are defined in weblogic.xml - unless you are talking about some other groups, in which case it depends on your authorization provider, right?
    Good Luck
    Lee

  • How check page level permission on SharePoint pages library using JSOM

    Hi,
    Can anyone tell me how check page level permission on SharePoint pages library using JSOM.
    Tanks in advance .
    Regards,
    Hari
    Regards, Hari

    Hi,
    According to your post, my understanding is that you want to check the page level permission on SharePoint Pages library via JSOM.
    I have made a simple code demo to check whether current user has edit permission for the pages in Pages library, it works like a charm.
    You can re-write it to fit your environment.
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    var web;
    var list;
    $(function(){
    $("#Button1").click(function()
    console.log(1);
    getListItems('Pages',success_Items,error_Items);
    console.log(2);
    function getListItems(listTitle,success,error)
    var context = SP.ClientContext.get_current();
    this.web = context.get_web();
    this.list = context.get_web().get_lists().getByTitle(listTitle);
    this.items = list.getItems(SP.CamlQuery.createAllItemsQuery());
    this._currentUser = web.get_currentUser();
    context.load(this._currentUser);
    context.load(web,'EffectiveBasePermissions');
    context.load(items);
    context.executeQueryAsync(
    function() {
    success(items);
    error
    function success_Items(items){
    var e = items.getEnumerator();
    while (e.moveNext()) {
    this.item = e.get_current();
    console.log(this.item.get_item('FileLeafRef')); //print File or Folder Name
    console.log(this.item.get_item('FileRef')); //print File or Folder Url
    if (this.web.get_effectiveBasePermissions().has(SP.PermissionKind.editListItems)) {
    console.log('Nice, edit list item permissions!');
    else {
    console.log('Boo, no edit list item permissions!');
    function error_Items(sender,args){
    console.log(args.get_message());
    </script>
    <input id="Button1" type="button" value="Check Permissions"/>
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • IDK automatically adding Everyone group to collab community project

    Hi,
    I deleted Everyone group from the community project members. I tried to read the properties of community project of collab using the IDK. What I observed is IDK call automatically adding Everyone group in the members. Can anybody tell me the reason why its happening.
    Note: I am 100% sure that i am not changing any property of the community project using portal collab ui or using the IDK.

    Hi Juan,
    I just made a test with my Project Online instance and when I create a new user, the team member group is already selected in the user's creation interface. Thus by default, any user will be in the team member group.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, MCP |

  • Site structure using JSOM

    Hi,
    What I am trying to do is write some Javascript that will  display A site collection on top and all its descendant sites below using JSOM.
    Parent child relation ship should be indicated either by indentation or by Collapse / Expand functionality. Is this possible using JSOM?
    Please help..
    I have following code but this displays all subwebs as a flat structure, instead i want some sort of differentiation between a parent web and a child web.
    <script type="text/ecmascript" language="ecmascript">
    ExecuteOrDelayUntilScriptLoaded(runCode, "sp.js");
    var webCollection = null;
    function runCode() {
    var clientContext = new SP.ClientContext.get_current();
    if (clientContext != undefined && clientContext != null) {
    var web = clientContext.get_web();
    this.webCollection = web.getSubwebsForCurrentUser(null);
    clientContext.load(this.webCollection);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded() {
    var webInfo = '';
    var webEnumerator = this.webCollection.getEnumerator();
    while (webEnumerator.moveNext()) {
    var web = webEnumerator.get_current();
    webInfo += "<a class='list-group-item' title='click to navigate' href=\'" + web.get_serverRelativeUrl() + "\' target='blank'>" + web.get_title() + "</a>";
    $(".list-group").append(webInfo);
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>
    techie

    Hi,
    According to your description, my understanding is that you want to display subsite with Collapse / Expand style under the root site.
    I suggest you can do  some customization with Jquery and CSS to achieve it.
    Here is a code snippet for your reference:
    <script type="text/javascript">
    // Expand/Collapse Buttons
    // Feedback and questions: [email protected]
    function WPToggle(thisId, ImageId)
    if (document.getElementById(thisId).style.display=="none")
    document.getElementById(thisId).style.display="";
    document.getElementById(ImageId).src = "/_layouts/images/minus.gif";
    else
    document.getElementById(thisId).style.display="none";
    document.getElementById(ImageId).src = "/_layouts/images/plus.gif";
    function ExpandCollapseBody()
    var i = 1;
    var WPid = "WebPartWPQ1" ;
    var WPtitleid = "WebPartTitleWPQ1" ;
    var Toggleid = "ToggleImage1" ;
    do
    try
    document.getElementById(WPtitleid).innerHTML = '<IMG id="' + Toggleid + '" onClick="WPToggle(\'' + WPid + '\',\'' + Toggleid + '\')" alt="Expand/Collapse" style="margin:6px 5px 0px 2px; float:left; cursor:pointer;" src="/_layouts/images/minus.gif" />' + document.getElementById(WPtitleid).innerHTML ;
    if (document.getElementById(WPid).style.display=="none")
    document.getElementById(Toggleid).src = "/_layouts/images/plus.gif";
    catch(err) {}
    i = i + 1;
    WPid = "WebPartWPQ" + i ;
    WPtitleid = "WebPartTitleWPQ" + i;
    Toggleid = "ToggleImage" + i;
    } while (document.getElementById(WPid))
    _spBodyOnLoadFunctionNames.push("ExpandCollapseBody()");
    </script>
    Here is a detailed code demo, I suggest you can take a look for reference:
    http://blog.pathtosharepoint.com/2008/10/25/expandcollapse-buttons-for-your-web-parts/
    Best Regards
    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]
    Zhengyu Guo
    TechNet Community Support

  • Robocopy deleted SOURCE folder using MIR option

    I am migrating a customer file server share from a windows 2003 server to a windows 2012 R2 server.  This is the second time I've found some source folders missing when using the MIR option.
    I did an initial copy last weekend, all went fine.  I then did a second copy, which should do a file/directory compare and re-copy or delete in destination server's root folder if needed.  Both copy operations were performed on the destination
    server.  Below is the command I used:
    \\xenshare\publicreadonly" d:\PublicReadOnly\ *.* /E /ZB /SEC /COPYALL /MIR /R:2 /W:30 /V /ETA /LOG+:d:\filecopy-publicreadyonly.log /TEE
    I checked this morning to find 6 missing folders on the source server under the root folder I specified, which I was trying to preserve before decommissioning the old server.  The log file shows no indication that anything was deleted.  Can anyone
    explain why the instruction specifies nothing would be deleted in the source folder using MIR option but I have files missing?  And NO, I did not have any empty source or destination folders either and the domain admin account I used had full rights to
    all folders.  

    Hi Ronnieshih,
    If you want to audit what was happening to those deleted folders, and to make a further troubleshoot, I would like to recommend you to create a test folder, If this issue can be reproduced, please refer to these steps to monitor:
    1.  please try to enable audit on the source folder:
    [1] Configure "audit object access" in AD Group Policy or on the server's local GPO. This setting is located under Computer Configuration-->Windows Settings-->Security Settings-->Local Policies-->Audit Policies. Enable success/failure auditing
    for "Audit object access."
    [2] Configure an audit entry on the specific folder(s) that you wish to audit. Right-click on the folder-->Properties-->Advanced. From the Auditing tab, click Add, then enter the users/groups whom you wish to audit and what actions you wish to audit
    - auditing Full Control will create an audit entry every time anyone opens/changes/closes/deletes a file, or you can just audit for Delete operations.
    2.  Please run process monitor on the source machine to capture the activities against the source files, since this issue is random with time, this method may produce a large size of log file.
    Best Regards,
    Anna Wang

  • Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoyi

    Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoying. What happened? Internet Explorer 8.0 did the same thing. This was one of the reasons why I started using Firefox to download all images. I went into Tools>Options and it only lets me set another folder. I dont want to set a specific folder I want it to always go to the last folder used. So what gives?
    == This happened ==
    Every time Firefox opened
    == possibly when the most recent updates were installed, a few days ago

    Thanks jscher 2000. I guess I didn't make it clear. "It restarts with all the addons activated, and resumes with the tabs that were open before closing it." IE, it's running fine now with all the extensions activated. Everything is OK now.
    So something in the Firefox code was causing the bad behavior. It's not essential that I find out what the problem was - I'm just curious. And if anybody else has this same problem, it might be nice to have it corrected at the source.

  • Can't save files to Last Folder Used

    I'm scanning items with a Kodak iQsmart3, running under Kodak's oXYgen 2.6.1 scan application. Late last week, the application suddenly stopped saving files to the last folder used. Now I have to re-select the destination folder for each scan.
    I have rebooted the computer several times, and have also re-installed the scan application, but nothing helps the problem. It seems now that the problem may be with OS 10.4.11. I've searched and searched for a solution within the OS, but can't find anything that helps.
    Does anyone have a suggestion on how to proceed? Is there a place where you can check to see if the saving options can be changed?

    Thanks for your suggestion. However, I did as you advised and still cannot save files to the last folder used, as I used to be able to do.
    This is the first time in the 2 1/2 years I've been using this system that I've had any trouble with it. When I opened Disk Utility, it showed me the size and type of three different drives, all identical in manufacture. The first holds the Operating system, and the other two are set up in a Raid Striped set. I selected Macintosh HD under the name of the first drive, since that's the name of the disk on my desktop, and ran the Repair Permissions function, moving the recentitems.plist file to the desktop and rebooting, as per your instructions. Was that the proper area to use or should I have selected the disk description above that?
    (Below is the disk information from the Disk Utility application)
    Disk Description : Hitachi HDS725050KLA360 Media Total Capacity : 465.8 GB (500,107,862,016 Bytes)
    Connection Bus : Serial ATA 2 Write Status : Read/Write
    Connection Type : Internal S.M.A.R.T. Status : Verified
    Connection ID : "Bay 1" Partition Scheme : GUID Partition Table
    (Below is the information on the Macintosh HD folder of that drive.)
    Mount Point : / Capacity : 465.4 GB (499,763,888,128 Bytes)
    Format : Mac OS Extended (Journaled) Available : 226.2 GB (242,855,989,248 Bytes)
    Owners Enabled : Yes Used : 239.3 GB (256,907,898,880 Bytes)
    Number of Folders : 133,296 Number of Files : 684,567

  • Adding data to multiple tables using one form in Access 2010?

    Hi All,
    I have a access database with two tables and I want to create a single form to enter data into that tables.
    How to adding data to multiple tables using one form in Access 2010?
    I don't have to much knowledge of access database?
    Please help me
    Thanks
    Balaji

    You really don't enter identical data into 2 tables.  You enter dat into one single table, and then you have an unique identifier that maps to another table (you have a unique relationship between two tables). 
    Maybe you need to read this.
    http://office.microsoft.com/en-001/access-help/database-design-basics-HA001224247.aspx
    Think about it this way...  What is you update data in 2 tables, and then the data in one of those tables changes, but the data in the other table does NOT change.  WHOOPS!!  Now, you've got a BIG problem.  For instance, you have a customer
    named Bill Gates.  In one Table you update Bill's address to 1835 73rd Ave NE, Medina, WA 98039 and in the other table you accidentally update Bill's address to 183 73rd Ave NE, Medina, WA 98039.  Now you have 2 addresses for Bill.  Why would
    you want that???  Which is right?  No one knows.  If you have one address, you just have to update one address and if there is a mistake, you just have to update one address, but you don't have to waste time trying to figure out which is right
    and which is wong...and then update the one that is wrong.
    Post back with specific questions.
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

Maybe you are looking for

  • How can I hide a subvi in the hierarchy window?

    I want to hide a subvi of my top level vi in the hierarchy window. I know by calling it dynamically that it won't be in the hierarchy window until it is called but I want to keep it in the hierarchy. I just don't want to display it in the hierarchy w

  • After using Overdrive Media Console for Mac to listen to book on my iPod, my iPod won't work!

    The book went on my iPod and played fine. BUT after trying to update my podcasts and put on more books (from Audible.com) I found that NOTHING would go back on my IPod. I reformatted it, and now I have my music, but only some of my books, and NONE of

  • Call transaction in test mode

    Dear Folks! Is there a way to do something like a call transaction in test mode? What I need is to check the data of the file and return a log of the errors that this file would give if executed in call transaction, before executing it for real in th

  • ORA-20998: Transaction Failed on Headstart Utilities 6.5 installation

    Hello, I am having problem when running insthsu.sql script to install Headstart utilities 6.5. We are doing client/server approach. The server is Sun 450 - Oracle 8.1.7.0.0 Designer 6i Release 4 repository was installed on the server. How far was the

  • How Hard for FCP User

    For the last 10 years I've been using Final Cut Pro as my NLE, but with the release of CS5 I'm seriously looking into moving to it.  My question is a simple one: how difficult will it be to move from FCP to Premiere CS5?  I figure there will be a sma