SOD Library in AACG 8.6

Hi All,
Is the best-practice SOD Library pre-loaded during installation of AACG 8.6? The xml files in /contents directory contains all laguages except english.
Can someone please guide me through the navigation?
Thanks in advance :-)

Hi,
You are correct. In AACG version 8.6, content in English is missing for EBS and PeopleSoft.
You can download this missing content file from the following note ID.
NOTE: 1214394.1 GRCC 8.6 Content- Where to Download Content for PeopleSoft and Enterprise Business Suite in English?
Sharvil

Similar Messages

  • Best practice SOD Library in AACG 8.5.1.278

    Hi,
    We require best practice SOD Library in AACG 8.5.1.278 for EBS R12. I have searched Oracle edelivery but could only find library for AACG 8.6 . We are using Windows X-64 platform.
    Can someone provide a download for the same in English language?
    Thanks.
    Abhishek Jain

    Hi,
    The best practice library files will be available in the directory you have downloaded and unzipped the GRC media pack from edelivery. Go to the specific directory in the system / server and select "Content" folder. You can copy the files on to your desktop and upload the same into AACG.
    Hope this helps. Let me know if you need any further assistance.
    Best Regards,
    Manjunath

  • ICloud Photo Library: How to sync iPhoto/Aperture albums?

    After installing iOS 8 and trying to access Photos, users are presented with a notification titled, "iCloud Photo Library (Beta)." A subsequent message warns, "Photos synced from iTunes will be removed. Syncing photos via iTunes is not supported when iCloud Photo Library is turned on. (#) photos will be removed."
    What is this supposed to mean?
    Mac users may currently organize photos into events and albums using iPhoto or Aperture. Until now, they could also select specific albums and events to sync to specific iOS devices via iTunes. According to this message, if the user turns on iCloud Photo Library then these synced photos will be deleted from the iOS devices and they will no longer be able to sync them with iTunes. However there is no explanation of whether, when, or how this functionality will be replaced.
    My hope and expectation is that the upcoming Photos app for OS X will allow users to import their iPhoto or Aperture library with all events, albums, and meta data intact, provide the option to upload their collection to iCloud Photo Library, and then allow specific photos, albums, and/or events to be viewed and/or downloaded on to specific OS X and iOS devices.
    Assuming this assumption is correct, though, we'll have to wait until next year's release of Photos for OS X to regain this functionality.  If that's the case, this advisory should explicitly say so.

    Because IMO Apple has never cracked photo management, I organise all my photos on my MacBook and sync the photo's folder to my iPad and iPhone via iTunes. This gives me the organisation I require, but it means I cannot do much at all with the synced folder except view the photos on my iPad and iPhone.
    I just enabled the iCloud Photo Library on my iPhone, this deleted all the iTunes synced folders from my device, I expected it to upload all those photos to the cloud and then delete them from the device, but it actually just deleted them all and uploaded a few odd's and sods I had in my camera roll.
    I am currently unsure how to get my main photo library into the cloud as the Photos app is not yet available for Mac!
    So do not enable it if you manage your photos like me and you want your back catalogue!!
    I am very hopeful that Apple is about to crack photos management in an MASSIVE way, but until the Mac Photos's app come out continuity between iOS and Mac OS is still very broken.

  • Javascript to upload a file to SharePoint 2010 document library

    Please share your ideas. I am using SharePoint 2010. Currently when uploading files to a document library, first the upload form is opening to upload the document and then the edit form. I would like to have both this in the same form. I am trying to
    create a webpart page with the controls to upload the file to document library and assign values to the fields in the library. I am looking for some javascript for doing this. Is there any other way of achieving this? Please share any sample
    code.
    <label for="title">Enter the title for this document:</label> <input type="text" id="title"><br/><br/>
    <input id="inputFile" type="file"/><br/><br/>
    <input id="uploadDocumentButton" onclick="UploadDocument()" type="button" value="Upload Document"/><script type="text/javascript">
            function UploadDocument() {
                //javascript to upload the file to MyLibrary and update the title field
    </script>

    Use the below code step by step :) 
    (1) Html
      <input type="file" id="attafh"  class="AlltextAccount"  />
          <input type="button" value="upload" onclick="rundCode()" />
    (2) JS File 
    function rundCode() {
        var file = document.getElementById('attafh').files[0];
        if (file) {
            UploadMe(file);
    (3) 
    function UploadMe(readFile) {
        var reader = new FileReader();
        reader.readAsArrayBuffer(readFile); //array buffer
        reader.onprogress = updateProgress;
        reader.onload = loaded;
        reader.onerror = errorHandler;
    (4)
    function loaded(evt) {
        var fileString = evt.target.result;
        var X = _arrayBufferToBase64(fileString); // this is the mothod to convert Buffer array to Binary
            var fileInput = document.getElementById('attafh');
            var fileDisplayArea = document.getElementById('fileDisplayArea');
                var file = fileInput.values;
                 var filePath = $('#attafh').val(); // "c:\\test.pdf";
            var file = filePath.match(/\\([^\\]+)$/)[1];
            var soapEnv =
                "<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'> \
                    <soap:Body>\
                        <CopyIntoItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'>\
                            <SourceUrl>" + filePath + "</SourceUrl>\
                                <DestinationUrls>\
                                    <string>http://intranet/sites/English/DocumentLibrary/" + file + "</string>\
                                </DestinationUrls>\
                                <Fields>\
                                    <FieldInformation Type='Text' DisplayName='Title' InternalName='Title' Value='Test'  />\
                                      <FieldInformation Type='Text' DisplayName='BudgetId' InternalName='BudgetId' Value='8'  />\
                                </Fields>\
                            <Stream>" + X + "</Stream>\
                        </CopyIntoItems>\
                    </soap:Body>\
                </soap:Envelope>";
            $.ajax({
                url: "http://intranet/_vti_bin/copy.asmx",
                beforeSend: function (xhr) { xhr.setRequestHeader("SOAPAction", "http://schemas.microsoft.com/sharepoint/soap/CopyIntoItems"); },
                type: "POST",
                dataType: "xml",
                data: soapEnv,
                complete: processResult,
                contentType: "text/xml; charset=\"utf-8\""
        SP.SOD.executeOrDelayUntilScriptLoaded(initialize, 'SP.js');
        SP.SOD.executeOrDelayUntilScriptLoaded(test, 'SP.js');
    function errorHandler(evt) {
        if (evt.target.error.name == "NotReadableError") {
            // The file could not be read.
    function _arrayBufferToBase64(buffer) {
        var binary = ''
        var bytes = new Uint8Array(buffer)
        var len = bytes.byteLength;
        for (var i = 0; i < len; i++) {
            binary += String.fromCharCode(bytes[i])
        return window.btoa(binary);
    (5)
    function updateProgress(evt) {
    http://www.abdulazizfarooqi.wordpress.com Abdul Aziz Farooqi [BizTalk & SharePoint Consultant] MCPD Web & MCPD SharePoint 2010

  • IPhone video sync quality to iphoto after iCloud photo library enabled

    I'm still trying to wrap my head around how this works.
    Since I opted to enable my iPhone 6 to optimize videos and photos that are stored locally on my phone, I presume this means that after I record a video, this will be synced to iCloud photo library in full quality, and thereafter removed from my phone, only to be replaced by a compressed version of the same video, and thereby reducing the amount of space needed on the phone to store the video in question. Correct?
    If so, why is the result of a manual sync with iPhoto a couple days after enabling the feature, all my videos in full resolution? I mean framerate, data rate and resolution is the same as it always has been and doesn't seem compressed in any way. I know how iCloud would compress the file because of the current download bug on iCloud.com also discussed on this forum that only makes it possible to download the compressed version of the videos even though it seems to store them in full quality. The compressed version is only 720p and about 3500kb data rate.
    Any clues? Maybe it's just a beta bug. I mean the videos on my phone should all be a compressed since I can see the at iCloud.com and thereby also sync to iPhoto in compressed form.

    Because IMO Apple has never cracked photo management, I organise all my photos on my MacBook and sync the photo's folder to my iPad and iPhone via iTunes. This gives me the organisation I require, but it means I cannot do much at all with the synced folder except view the photos on my iPad and iPhone.
    I just enabled the iCloud Photo Library on my iPhone, this deleted all the iTunes synced folders from my device, I expected it to upload all those photos to the cloud and then delete them from the device, but it actually just deleted them all and uploaded a few odd's and sods I had in my camera roll.
    I am currently unsure how to get my main photo library into the cloud as the Photos app is not yet available for Mac!
    So do not enable it if you manage your photos like me and you want your back catalogue!!
    I am very hopeful that Apple is about to crack photos management in an MASSIVE way, but until the Mac Photos's app come out continuity between iOS and Mac OS is still very broken.

  • What is Sod?What is it Responsibilities?

    Hi All,
    I am Prasad new to this group.
    Could anyone tell me about Sod and its Responsibilities.
    Thanks in Advance
    Prasad

    Shiva,
    Are you asking about Segregation of Duties?
    http://www.big4guy.com/index.php/2006/04/08/segregation_of_duties_in_sap_r_3_environ
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f02855c9-2091-2a10-8682-af41abe087ba
    Thanks,
    Sri

  • SoD entitlement sync with OIM

    Hi guys,
    I'm currently developing a high-level solution architecture for a custom SoD engine integrated to OIM through Oracle SoD Invocation Library (SIL). Reading through the SIL documentation I can see that the proposed way of loading & updating the existing entitlements in the SoD engine is to use some ETL tool on the resource (target system). My question is, is it possible to extract, transform and load the entitlements directly from OIM or Oracle Role Manager instead from the resource? I imagine it would be a lot easier to develope a single "connector" module for grabing entitlements from OIM/ORM rather than separete ones for every resource that needs to be SoD compliant. Anyone with experience in this area? Thanks in advance!
    Edited by: user12133307 on Nov 5, 2009 4:04 PM
    Edited by: user12133307 on Nov 5, 2009 4:21 PM

    OIM 11.1.1.3 is the version that we installed. USR_PASSWORD is not empty, after BP03 this appears to be a random password. it appears to be generated by oracle.iam.reconciliation.impl.ReconUserPasswordHandler. From the sequence of events it also appears that UserCreateLDAPPostProcessHandler is not getting called.
    password was same as AD username before bp03. it looks like your issue is different in this case.
    Below is the error stack that i see in oim diagnostic log.
    oracle.iam.platform.kernel.EventFailedException: Enabling failed because user SYNCTEST5 is not synchronized to the LDAP directory.
    at oracle.iam.ldapsync.impl.eventhandlers.user.util.LDAPUserHandlerUtil.enableUser(LDAPUserHandlerUtil.java:79)
    at oracle.iam.ldapsync.impl.eventhandlers.user.UserEnableLDAPHandler.execute(UserEnableLDAPHandler.java:143)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runPostProcessEvents(OrchProcessData.java:1153)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:703)
    at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:220)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:674)
    at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:705)
    at oracle.iam.platform.kernel.impl.OrhestrationAsyncTask.execute(OrhestrationAsyncTask.java:108)
    at oracle.iam.platform.async.impl.TaskExecutor.executeUnmanagedTask(TaskExecutor.java:100)
    at oracle.iam.platform.async.impl.TaskExecutor.execute(TaskExecutor.java:70)
    at oracle.iam.platform.async.messaging.MessageReceiver.onMessage(MessageReceiver.java:68)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

  • Meaning of SOD......

    Hi All,
    What is meant by SOD in SAP Security.Please explain in detail...
    Thank You.
    Regards,
    Swapna.D.

    please refer to below links:
    http://www.*********************/sox_sod/sox_sod.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f02855c9-2091-2a10-8682-af41abe087ba
    Sarbanes Oxley is a US law passed in 2002 to strengthen Corporate Governance and restore investor confidence.Sarbanes Oxley Act was sponsored by US Senator Paul Sarbanes and US Representative Michael Oxley.. Sarbanes-Oxley (or more popularly Sarbanes Oxley) law passed in response to a number of major corporate and accounting scandals involving prominent companies in the United States. These scandals resulted in a loss of public trust in accounting and reporting practices. Sarbanes Oxley legislation is wide ranging and establishes new or enhanced standards for all US public company boards, management, and public accounting firms.
    The passing into law of the Sarbanes-Oxley Act of 2002 regulates how financial data must be handled and protected in all publicly held corporations.
    SOD stands for seggrigation of duties.Basically you need to understand what is SOD. If you want to know little bit of information go to the standard SAP roles copy to Z or Y roles check out each role and transactions to have initial idea.
    Regarding SAP Authorization you find the details in the following link.
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/671285439b11d1896f0000e8322d00/content.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/52/671126439b11d1896f0000e8322d00/frameset.htm
    This is very small bit of information to share to start. There is very long way to understand each business area.
    i hope it will help you.

  • Javascript to move page from page library to document library

    hi friends
    my scenario is.
    i have to move page from page library to another library using only javascript.
    is it possible please help me.

    my working code
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script type="text/javascript">
    var _ctx;
    var _sourceFile;
    var _destinationlibUrl;
    var _destinationFile;
    var targetListItem;
    var itemId=10;
    $(document).ready(function () {
    $("#Archive1").on("click", function(){
    SP.SOD.executeFunc('sp.js', 'SP.ClientContext', CopyFile);
    function CopyFile() {
    //_ctx = new SP.ClientContext(siteUrl);
    _ctx = new SP.ClientContext.get_current();
    // Get the Web site that is associated with the client context.
    this.web = _ctx.get_web();
    _ctx.load(this.web);
    // Returns the list with the specified title from the collection.
    this.sourceList = this.web.get_lists().getByTitle('Pages');
    _ctx.load(this.sourceList);
    // Get the list items being selected.
    //var selectedDocuments = SP.ListOperation.Selection.getSelectedItems(_ctx);
    //this.currentItem = sourceList.getItemById(selectedDocuments[0].id);
    this.currentItem = sourceList.getItemById(itemId);
    _ctx.load(this.currentItem);
    // Get the file that is represented by the item from a document library.
    _sourceFile = this.currentItem.get_file();
    _ctx.load(_sourceFile);
    _ctx.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded),
    Function.createDelegate(this, this.onQueryFailed));
    // Delegate that is called when the query completes successfully.
    function onQuerySucceeded(sender, args) {
    if (_sourceFile != null) {
    _destinationlibUrl = web.get_serverRelativeUrl() +'/PageArchive/' + _sourceFile.get_name();
    alert('Now moving to: ' + _destinationlibUrl);
    //_sourceFile.moveTo(_destinationlibUrl, 1);
    _sourceFile.copyTo(_destinationlibUrl, 1);
    notifyId = SP.UI.Notify.addNotification('Moving file ' + _sourceFile.get_serverRelativeUrl() + ' to ' + _destinationlibUrl, true);
    _ctx.executeQueryAsync(
    function (sender, args) {
    SP.UI.Notify.removeNotification(notifyId);
    SP.UI.Notify.addNotification('File copied successfully', true);
    // window.location = web.get_serverRelativeUrl();
    function (sender, args) {
    SP.UI.Notify.addNotification('Error copying file', false);
    SP.UI.Notify.removeNotification(notifyId);
    alert('Error occured: ' + args.get_message());
    // Delegate that is called when the destination file checkout completes successfully.
    // Delegate that is called when server operation is completed with errors.
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>

  • Which products/modules 4 auditing/testing current SOD & process controls ?

    What GRC modules and products will i need to test and audit (functional only):
    i) key controls of business process (P2P, O2C etc)
    ii) SOD (segregation of duties) violations for various users
    iii) core business cycles (inventory, expenditure, revenue etc)

    What GRC modules and products will i need to test and audit (functional only):
    i) key controls of business process (P2P, O2C etc) - All the GRC modules starting with eGRCM for all your documentation and test cycles, AACG,PCG, and CCG & TCG for continuous control monitoring
    ii) SOD (segregation of duties) violations for various users - AACG
    iii) core business cycles (inventory, expenditure, revenue etc) - All the GRC modules starting with eGRCM for all your documentation and test cycles, AACG,PCG, and CCG & TCG for continuous control monitoring
    My first approach will e the testing objectives to determine what module will be appropriate. Again, all GRC modules help complement each other understanding the products and how they can be leverage will address all your questions in detail.
    I hope the information above is helpful.
    Thanks,

  • SoD Analysis with Portal functions

    HI all:
    Can anyone point me to a place where i can find information on proces of creating SoD rules for Portal functions?  We want to perform SoD analysis on Portal functions which do not necessarily have transaction codes.
    We have iviews that we have restricted by role placement, very basic.
    However, we would like to be able to analyse SoD based on Webdynpro execution.  Is this possible and if so, how can we do this?
    Thanks,
    Margaret

    Hi Margaret,
    the Portal SoD Analysis is either based on UME actions or iView names, that's it.
    Here you will find a guide:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/502a14db-6261-2c10-22b5-95117ab0e5ed
    Best,
    Frank

  • SoD Review Guide

    Dear Forum goers,
    It has been a long time coming, but we just released the SoD Review Guide on BPX.
    You can find it here:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f01947f3-80d6-2c10-36a6-d4dad7cf1649?quicklink=index&overridelayout=true
    Thanks!
    Ankur
    SAP GRC RIG

    Alpesh,
    To answer your questions,
    Page 17: 1. Admin
    Changes are not accepted from 'Track Changes' feature of Word. The changes still show up in 'RED'.
    I do not understand this response.  The document looks fine to me on Page 17.
    **Page 20: Lock, Forward To Next Stage:**
    *Is "Lock, Forward To Next Stage" same as "Deactivate; Forward To Next Stage" or the users are only locked in "Lock, Forward To Next Stage"?
    Yes, you are correct, the users are only locked in "Lock, Forward to Next Stage."  "Deactivate, Forward To Next Stage" sets the User assignment to the current date.
    Page 43: Are the links for config guide etc. under Related Content suppossed to work?
    We submit our documents to BPX as a word document, and then they convert it to PDF, so the links do not work after the conversion is done.  If you are interested in a link, let me know, and I will point you to the correct place.
    Thanks!
    Ankur
    SAP GRC RIG

  • I am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier

    i am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier photo please help me to recover my photos

    Well I'll guess you're using iPhoto 11:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • How can a family of 6 share the same itunes library?

    My family has a major problem on our hands. We are new to ipods and itunes. We have 1 itunes account. My sons are too young to have their own accounts. They are too young for a credit card, and can't have a paypal account until they're 18. We want to keep our music separate from each others. How do we do this with only one library? Thanks in advance for any suggestions.
    Go Buckeyes47
    Dell Dimension 2400   Windows XP  

    One thing not mentioned is that if you decide on the multiple user approach, you can have your music folder in Shared Documents so you only store the tracks once.
    Each user is free to choose which of those tracks they want in their library.
    There is an Apple help article on multiple users.
    http://docs.info.apple.com/article.html?artnum=300432

  • How can multiple computers have the same library?

    My family has one iTunes account, but our iTunes library is different on every computer. Our iPods are each synced with a different computer. How can we have one library with all of our purchases together? We use the same account, so it doesn't make sense that the music purchased on my laptop won't show up on our home desktop. Each of our iPods are synced to a different computer.

    No.
    Iphone will sync with one and only one computer a a time.  Syncing to another will erase the current content from the iphone and replace with content from the new computer.

Maybe you are looking for

  • How can I make a form show complex composite data?

    How can I make a form show complex composite data? We would like a form to display the following information: Employee Names as the columns, 1 row for each calendar day, and each item in the block containing the total sales amount (and other informat

  • HTML not working correctly.

    Hi, I made HMTL document in Text Editor and I saved it as an HTML file, then I opened it, then Safari opens, then it shows the HTML I typed! How do you view it correctly? I saved "<html><body><+font size=90>HI</+font.></body></html>" in Text Editor..

  • Problem in creating jar for ejb

    hi, I want just to try to compile and deploy my ejb in the new version of bea weblogic server (version 8.1 trial version), but I have the problem when using weblogic.ejbc to create the jar file. There is no such problem when using weblogic 6.x, I can

  • Is it possible to convert a FHD(full HD) recording to VGA quality?

    I have made a video for a history website. This has been done in Full HD.Upload is becoming a problem. I need to convert the recording to VGA format. Or max HD format. Any guidance if this can be done on iMovie.? Thanks for all help

  • Single Edition only available in North America

    Hi, I have a problem trying to publish a magazine in Viewer Builder. I am in UK and I see the following message "Single Edition only available in North America" in Viewer Builder. All the certificates and provisionings are valid from Developer Apple.