Custom workflow - props file service name change

All,
I created a custom workflow and registered with OIM with serviceName value as the service name from the SOA composite. I realized that this needs to be changed to RequestApprovalService.
Has anyone done this, if you can you please list the steps.
Thanks in advance,
Prasad.

I thought of this as well. It may be possible this way also. Since the composite was primarily generated by the OIM provided template, I didn't prefer to do this. The above mentioned method is working, but i will try this as well when i get a chance.
Regards,
Prasad.
Edited by: pk**** on Jun 8, 2011 12:21 PM

Similar Messages

  • Sap Message Service Name change

    hello guys,
    i need you help with something.
    I would like to change the sap Message Service Name from sapms<SID> to sapms<SID>_new.
    Is this possible?
    i am thinking to do this in RZ11 and change rdisp/msserv value... am i on the right path?
    Are there some limitations in message server service name?
    Thank you for answer.

    Hi Oliver,
    Does those same SID SAP systems , carries same instance number?
    As per SAP Note # 99435 , you should not edit SAPLOGON.ini file manually , instead carry out all changes via SAPLOGon PAD.
    Pls add both systems with different IP specifications and respective instance number details.
    Check if you are able to connect to correct instance
    Regards

  • Database service name changed after streams configuration

    Hi All,
    I test setting streams replication in my database 10g from a stand-alone database to a RAC database.
    Replication worked fine but i sow strange thing, my service names in the target database (RAC environment) has changed like the following output:
    SQL> sho parameter service
    NAME TYPE VALUE
    service_names string SYS$STRMADMIN.STREAMS_QUEUE.AB
    DATAWH
    So the value of my service names has changed, i don't know why. I tried to remove streams configuration and restart the database but it's not changed and it cause connexion problem from client.
    Does anybody can help me to solve this problem, why it's changing and how to take it back to the old service names.
    Thanks for your help
    raitsarevo

    Nona has any idea about my problem
    Please

  • Lightroom Looses Files After Name Change by Bridge

    If I use Bridge to change the names of files in my Lightroom DB when I open Lightroom those file's thumbnails have a "?" on them and Lightroom says it can't find them.
    I look for them manually and they are in the Lightroom storage folder with their new name.
    Is there a way for Bridge and Lightroom to tell each other what they have done to save this extra step of locating the files and IDing for Lightroom one by one?
    Or should I just stop using bridge and stay with Lightroom only?
    Thanks,
    Tom

    Or should I just stop using bridge and stay with Lightroom only?
    I'd say: yes, of course! (But this will certainly start a heated debate ; - )
    Alexander.
    Canon EOS 400D (aka. XTi) • 20" iMac Intel • 12" PowerBook G4 • OS X 10.4 • LR 1 • PSE 4

  • Batch Classification error - re Customer name change

    Dear all,
    We have a problem with Batch classification for one customer who has had a name change.
    Name of customer changed and search term changed in customer master.
    The NEW search term then added as a 'customer suitability Value'  into the Batch classification for material, plant and batches.
    However when entering these batches onto the delivery note, SAP comes up with BATCH CLASSIFICATION ERROR.
    IN order to resolve this, we have had to add the OLD customer suitability/Search term value into the Batch classification
    This does not seem to be correct, is there some other change that we need to do ???
    Please advise
    Thanks
    Tony

    Hi
    We put this to SAP via Service marketplace
    and they kindly told us where our error was
    We needed to update the new searchterm in transaction VCH3 - Batch search strategy
    this involves SHip to, materials
    when you hi-lite the grade and click on the selection criteria
    The customer suitability in here , which is the search term in customer masterdata, had never ever been updated
    problem resolved now
    Tony

  • BPEL Custom Workflow (DocumentReviewWorkflow) with Content Services

    Hi All,
    Anybody working on BPEL Custom Workflows got Success in using the DocumentReviewWorkflow with the Content Services Development Kit 10.1.2.3.0
    Please update..
    Many Thanks in advance..!!!
    Prasant

    The DocumentReviewWorkflow that ships with the Content Services web services places the documents in the comments field.
    There are examples in the sample code - DocumentReviewWorkflowAction.java file demonstrates how to get the URLs from Oracle Content Services
    // Initialize the various Web Service Manager classes.
    StringBuffer sb = new StringBuffer(100);
    String endpoint = session.getServiceEndPoint();
    setUpManagers(session);
    try
    // Obtain the new/updated document items.
    Item[] documents = WorkflowUtils.getTargetDocuments(session,
    m_WorkflowId);
    int len = (documents == null) ? 0 : documents.length;
    for (int i = 0; i < len; i++)
    AttributeRequest[] pathar = WsUtil.newAttributeRequestArray(
    Attributes.URL);
    Item tmp =
    (Item) m_CommonManager.getItem(documents.getId(), pathar);
    String filepath = (String) WsUtil.getAttributesMap(
    tmp)
    .get(Attributes.URL);
    // Convert the String list to a single string for convenience.
    sb.append(filepath);
    sb.append("\n");
    finally
    session.logout();
    You can then add the document links as attachments by creating a list of attachments and then inserting the URLs for the documents in the URI - I've done it using a combination of Java and BPEL. Here is an excerpt
    <bpelx:exec name="countAttachments" language="Java" version="1.4"><![CDATA[/*Write your java code below e.g.
                   System.out.println("Hello, World");
              // Note that the documents come back as a list of
              // documents with a line break between them
              String filename = (String) getVariableData("filename");      
              String[] docnames = filename.split("\n");
    setVariableData("numberofdocuments", new Integer(docnames.length));
    ]]>
    </bpelx:exec>
    <assign name="initCounter">
    <copy>
    <from expression="0"/>
    <to variable="counter"/>
    </copy>
    <copy>
    <from>
    <attachment xmlns="http://xmlns.oracle.com/pcbpel/taskservice/task">
    <name/>
    <URI/>
    <content/>
    </attachment>
    </from>
    <to variable="ParallelVar1" query="/task:task/task:attachment"/>
    </copy>
    </assign>
    <while name="While_1" condition="bpws:getVariableData('counter') &lt; (bpws:getVariableData('numberofdocuments') - 1)">
    <assign name="createAttachmentList">
    <bpelx:append>
    <bpelx:from>
    <attachment xmlns="http://xmlns.oracle.com/pcbpel/taskservice/task">
    <name/>
    <URI/>
    <content/>
    </attachment>
    </bpelx:from>
    <bpelx:to variable="ParallelVar1" query="/task:task"/>
    </bpelx:append>
    <copy>
    <from expression="bpws:getVariableData('counter') + 1"/>
    <to variable="counter"/>
    </copy>
    </assign>
    </while>
    <bpelx:exec name="AddAttachmentsToList" language="Java" version="1.4"><![CDATA[/*Write your java code below e.g.
                   System.out.println("Hello, World");
              String filename = (String) getVariableData("filename");
              checkpoint();
              String[] docnames = filename.split("\n");
    for (int i = 0; i < docnames.length; i++) {
    int strlen = docnames[i].length();
    int slash = docnames[i].lastIndexOf('/');
    String filenameonly = docnames[i].substring(slash + 1, strlen);
    int item = i + 1;
    String varname = "/task:task/task:attachment[" + item + "]/task:name";
    String varuri = "/task:task/task:attachment[" + item + "]/task:URI";
    setVariableData("ParallelVar1", varname, filenameonly);
    setVariableData("ParallelVar1", varuri, docnames[i]);
    ]]>
    </bpelx:exec>
    This uses the fact that the document URLs are returned as a \n delimited string.

  • InDesign CS4: File names change to string of numbers

    Occasionally, one of our users will save an InDesign CS4 file, only to have the file name change.  For example, a file originally named "#kwn25501.bcbsNM.indd" was saved as "#kwn25501.bc157-1223857848."
    If the user is not aware that this has happened, things can go horribly, terribly wrong in our production environment. The "numbered" file may be missing key elements, or be somehow be corrupt in some fashion. In one case, this led us to having to reprint a job because the "numbered" file was missing a photo; somehow, that file was used (and perhaps renamed after the fact) to create the final output.
    We use Macs running InDesign CS4 6.0.5. Some of our Macs are running Tiger 10.4.11, while others are running Leopard 10.5.8. The problem seems to related to the Leopard machines, although that is not 100 percent certain at this point. All of these Macs are bound to Active Directory and save files to a Windows 2003 server. I know Adobe recommends against working on files over a network, but perhaps there is an explanation for this file renaming aside from network issues.
    Any light that can be shed on this issue will be greatly appreciated. Thanks!
    Kevin Stauffer

    Check to see if maybe your original filename is the problem.
    You may need that particular name for a workflow reason, but some of the symbols in the middle of your filename are generally not a good idea. Especially working off of a server, file names should be ONLY alpha-numeric characters, no symbols, no periods (except for the file type) and only underscores or dashes to separate words, no spaces.
    The reason is some of those symbols get picked up as machine language and all sorts of bad can happen as a result.
    Message was edited by: Michael Riordan

  • Listener name in the listener.ora file is getting change from GPROD to %s_

    Dear Experts,
    Please note that after doing the R12.1 upgrade, When i bounce the database i have noted that my database listener name in the listener.ora file is getting change from GPROD to %s_db_listener%. Again every time after changeing the listener log file i am able to start the listener.
    Please advise.
    [oracle@upgrade 11.2.2]$ lsnrctl start GPROD
    LSNRCTL for Linux: Version 11.2.0.2.0 - Production on 07-OCT-2011 10:07:33
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Starting /u04/d01/tech_st/11.2.2/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.2.0.2.0 - Production
    System parameter file is /u04/d01/tech_st/11.2.2/network/admin/GPROD_upgrade/listener.ora
    Log messages written to /u04/d01/tech_st/11.2.2/log/diag/tnslsnr/upgrade/gprod/alert/log.xml
    TNS-01151: Missing listener name, GPROD, in LISTENER.ORA
    Listener failed to start. See the error message(s) above...
    [oracle@upgrade 11.2.2]$ vi /u04/d01/tech_st/11.2.2/log/diag/tnslsnr/upgrade/gprod/alert/log.xml
    [oracle@upgrade 11.2.2]$ cd network/admin/GPROD_upgrade/
    [oracle@upgrade GPROD_upgrade]$ ls
    listener_ifile.ora listener.ora listener.ora_bkpaug2911 sqlnet_ifile.ora sqlnet.ora tnsnames.ora
    [oracle@upgrade GPROD_upgrade]$ vi listener.ora
    (SID_DESC =
    (ORACLE_HOME= /u04/d01/tech_st/11.2.2)
    (SID_NAME = GPROD)
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u04/d01/tech_st/11.2.2)
    (PROGRAM = extproc)
    STARTUP_WAIT_TIME_%s_db_listener% = 0
    CONNECT_TIMEOUT_%s_db_listener% = 10
    TRACE_LEVEL_%s_db_listener% = OFF
    LOG_DIRECTORY_%s_db_listener% = /u04/d01/tech_st/11.2.2/network/admin
    LOG_FILE_%s_db_listener% = %s_db_listener%
    TRACE_DIRECTORY_%s_db_listener% = /u04/d01/tech_st/11.2.2/network/admin
    TRACE_FILE_%s_db_listener% = %s_db_listener%
    ADMIN_RESTRICTIONS_%s_db_listener% = OFF
    IFILE=/u04/d01/tech_st/11.2.2/network/admin/GPROD_upgrade/listener_ifile.ora

    Step 1- Run the autoconfig on the db tier.
    Step -2 Automatically it is changing the setting in the database listener log file and it is showing 4 database listeners are up .
    [oracle@upgrade 11.2.2]$ ps -ef |grep inh
    oracle 756 1 0 11:01 ? 00:00:00 /u04/d01/tech_st/11.2.2/bin/tnslsnr GPROD -inherit
    oracle 757 756 0 11:01 ? 00:00:00 /u04/d01/tech_st/11.2.2/bin/tnslsnr GPROD -inherit
    oracle 758 757 0 11:01 ? 00:00:00 /u04/d01/tech_st/11.2.2/bin/tnslsnr GPROD -inherit
    oracle 759 757 0 11:01 ? 00:00:00 /u04/d01/tech_st/11.2.2/bin/tnslsnr GPROD -inherit
    oracle 1721 31038 0 11:02 pts/2 00:00:00 grep inh
    applmgr 31380 1 0 10:53 ? 00:00:00 /u04/d02/apps/tech_st/10.1.2/bin/tnslsnr APPS_GPROD -inherit
    Step - 3
    Again down the apps tier services.
    Step -4
    Reset the listener.ora file in the database tier
    Please advise.
    Regards
    Mohammed.

  • Custom WS-Policy Files in Console Service Endpoint Polices List

    hi
    Not sure which WLS newsgroup for this so here goes.
    I want to assign custom WS-Policy files to a web service via the console (i.e. post-deployment).
    By default, the Service Endpoint Policies list only shows a small subset of default policy files within weblogic.jar and none of the Wssp1.2-* policy files. (i.e. only the proprietary WLS 9.0 WS-Policy files)
    Is this correct behaviour? I want to experiment with policies based on the current WS Security Policy Standard without hard-coding the names of files into the service.
    Is there a way to make these other supplied WSSecurityPolicy 1.2 policies appear in the list?
    Thanks
    Jim Nicolson

    Hi,
    Below are the steps followed
    - OSB Proxy service has 'oracle/wss_username_token_service_policy' attached to it.
    - Iam invoking this from BPEL. BPEL process has 'oracle/wss_username_token_client_policy' attached.
    - I can invoke the osb proxy from bpel by passing credentials - No Issues.
    Now I need to put some authorization restriction to the proxy service, so only specific users can access that.
    -I used Role=Admin as a policy condition restriction under security in Proxy service.
    -Then I went to proxy test console and I added the 'oracle/wss_username_token_client_policy' credentials and weblogic/xxxxx at Transport section and I was able to invoke the process. Here weblogic has a Admin Role.
    -I cannot invoke the same proxy service from BPEL in Jdeveloper now.
    All Iam trying to do is to protect my proxy by authrorization policy.
    Thanks
    Jagan.

  • Is there a proper way to name files?

    I know that folders can have spaces in the name, but what about actual file names themselves? Is it OK to name our files with a space or should we just use a "_" to be safe? What could go wrong if we use a space in the file name? What other characters should we avoid in file names?
    Thanks!

    The article I refer to was somewhat vague to me and I guess my first statement of "adopting a new standard" is incorrect/misleading as I believe it was an adoption of the rest/more of the current standard as opposed to an all adopting an "all new" standard. Standards don't need to be followed 100% for something to be "compliant". This is an area that is gray to me as I understand it is also some sort of proprietary Apple code. The trade names and underscore situation I have discovered on my own.
    I am quite certain I have a copy somewhere on an external HD but I am waiting for my third power-cord for my G4. I gave up on replacing battery connectors and now it heats the cables until the insulation melts away shorting it out. I will not connect externals to the MBP as they don't work properly and must be repaired when I try to use them in 3.9. I have already lost one HD and can't afford to lose another at the moment. Unfortunately if it doesn't arrive today or tomorrow I will not be able to post it as my .Mac trial is about up and I have no use for it to warrant purchasing a full account.
    None of these files have been named pre OS X and all of these HD's, folders, files and my file naming convention I have used since 10.0. OS X.4 and Quick time have tightened their adherence, and not necessarily changed, to different standards, ISO, IEEE, MPEG, ASCII etc. One that I believe to be a major problem in 10.4 is with the ISO time-codes as equipment and apps alike do not convert or correct the "normal errors" properly.
    I'm quite certain even this problem is caused in this "I/O Kit" as at least two separate OS architectures come together here possibly 3 (I am clueless how/if classic fits into the picture here). Then it's supposed to run on three different processors w/ various supported and "unsupported" HW configurations. Quite an incredible accomplishment IMO. Something was bound to be overlooked/misplaced/added/deleted especially when one looks at the speed at which all this conversion took place. I just wish that kernel panics made others as nervous as I and would cause one to report them to Apple. The amount of HW destroyed on my PB G4 running 10.4 and a MBP that wants to act like a PPC is enough for me to be convinced me that the situation is very serious.
    Here's what others experience as well, in this situation I believe it is the extensions creating the problem. Unfortunately I read hundreds of pages a day as my MBP is useless for what I bought it for (iMovie) and I have nothing to do but to try and fix it. A lot of the self proclaimed experts on the various Apple boards believe that OS X.4 and a MBP are supposed to be slow and sluggish and that the problems that abound are "normal" or acceptable. IMO the iMovie board in particular is full of outdated or misinformation.
    http://discussions.apple.com/message.jspa?messageID=3742429#3742429
    I believe I may have stumbled across it from this email or in another Apple link if not a Developer Reference Manual. Adobe has issues with characters at the moment as well. I have thousands of files that can't be browsed in the PS browser as certain file names are shutting it down. No report being produced anywhere so I can't narrow it down. These files and folders were all named and organized in PS and I have used them, cross platform, for years without a problem. The only way to access these folders/files are by booting into 10.3.9 or less on my G4.
    http://docs.info.apple.com/article.html?artnum=301984
    http://docs.info.apple.com/article.html?artnum=302231
    Hello from Apple!
    Christopher at Apple Service & Support thought that you might find this article useful. We hope that it helps resolve your technical issue.
    Link: http://www.info.apple.com/kbnum/n106272
    You can't empty the Trash or move a file to the Trash in Mac OS X
    In Mac OS X, each user account has a separate, invisible Trash folder that is in the home folder. When you view contents of the Trash, you see only items you placed there and not the Trash folder of any other accounts. If other writable volumes are present, you may also have individual Trash folders on these volumes.
    How to delete a file
    Drag an item's icon to the Trash (in the Dock), or select the item and press Command-Delete.
    Choose Empty Trash from the Finder menu.
    Tip: If you're trying to delete a file that wasn't completely downloaded or copied, check out this document.
    Tip: In Mac OS X 10.3 Panther or later, you can securely delete items by choosing Secure Empty Trash from the Finder menu.
    If you change your mind about deleting the item before you choose Empty Trash:
    Click the Trash icon in the dock.
    Drag the item out of the Trash.
    If you can't empty the Trash or move a file to the Trash
    For example, this message might appear when you try to empty the Trash: "The operation could not be completed because the item '(item name)' is locked."
    First, try holding the Option key as you choose Empty Trash from the Finder's File menu.
    Otherwise, you can check for these conditions:
    Is the file locked?
    If files are locked, unlock them before deleting or delete using the tips in the "Deleting locked files" section below. Also, see Mac OS X: Unable to Move, Unlock, Modify, or Copy an Item .
    Do you have correct permissions to modify the file?
    Every file and folder in Mac OS X has some permission settings to help define what you or other users can do with the file or folder, for example whether you may modify it or not. If see an alert box with a message that says you do not have "sufficient" privilege or permission, see the tips in the "Emptying the Trash" section of "Mac OS X: Troubleshooting Permissions Issues".
    Does the file or volume have special characters?
    Usually, Mac OS X can delete files whose names contain special characters, but sometimes you might need to follow this advice.
    Note the name of the volume which the files are being deleted from. If you are not sure of the item's location, you can verify that by selecting it then choosing Show Info from the File menu. If the name of the volume contains any special ASCII characters, such as a bullet or trademark character, temporarily rename the volume so that it does not contain these characters.
    Example: If you cannot delete files from a volume named "·Dox", rename the volume to "Dox". After the Trash is empty, restore the volume's original name as desired.
    Examine the name of the files or folders you cannot delete. They should not contain a solidus ("slash", "/") character or any other special ASCII character such as a trademark, quotation mark, or copyright symbol. If the file does, remove the special character or slash from its name, then delete it.
    Example: If you cannot delete a file named "Things/Stuff·", rename the file to just "t", then delete it.
    Deleting locked files
    Locked files can easily be deleted if you press Shift-Option or Option key combination while emptying the Trash (in Mac OS X 10.1 and later). For Mac OS X versions 10.0 to 10.0.4, use Show Info to deselect the item's Locked checkbox.
    If you still cannot delete the item, start up your computer from the Mac OS X CD-ROM and choose Disk Utility from the Installer menu of the first screen. Use Disk Utility to verify and, if necessary, repair your disk.
    Tip: When started up from CD, do not click Continue. Disk Utility is only available in the first screen. If you click Continue, restart the computer from the CD.
    If a file can't be unlocked, you may not have permission to unlock it. See "Mac OS X: Troubleshooting Permissions Issues" to learn how to get write permissions.
    If the issue persists, use Disk Utility's Repair Permissions feature to check your Mac OS X volume. For Mac OS X 10.1.5 only, download and use Repair Privileges Utility 1.1 instead.
    Advanced tip about deleting locked files
    If there are several locked files in the Trash, you can unlock them all at the same time at the command line. Follow these steps:
    Open Terminal. It's located in /Applications/Utilities.
    Type: chflags -R nouchg
    Note: Type one space (not pictured) after nouchg in the line above, so that it ends in "nouchg ". Do not press Return yet.
    Double-click the Trash icon in the Dock to reveal the contents of the Trash. If necessary, arrange the Finder window so that a portion of the Terminal window is still visible.
    Press the Command-A key combination to select all files in the Trash.
    Drag the files from the Trash to the Terminal window.
    Note: This automatically enters the pathname for each file. This eliminates the need to individually empty multiple Trash directories, particularly when multiple disks or volumes are present.
    Press Return. No special text message will be shown indicating that the command was successful.
    Empty the Trash.
    If the Trash does not empty or if you see a message in Terminal that says "usage: chflags [-R [-H | -L | -P]] flags file..." you most likely did not type the text in step 2 as indicated or did not leave a space. Repeat the steps if this happens.
    Related documents
    106237 Mac OS X: Unable to Move, Unlock, Modify, or Copy an Item
    106712 Troubleshooting permissions issues in Mac OS X
    Thank you,
    Apple
    FWIW

  • Change service name

    Hi,
    I recently installed oracle 11g in my system.I would like to change the service name in my TNSnames.ora to something simpler.Is there a way to do this??
    Thanks.

    Before you can change the SERVICE_NAME in your TNSNAMES.ORA file you have to make sure that the SERVICE_NAMES parameter on the database is configured appropriately. You can display the current value as follows:
    SQL> show parameter service_namesBy default the SERVICE_NAMES parameter is a concatenation of the DB_NAME and DB_DOMAIN parameters. However, you can change it to whatever you'd like and it can take multiple values. For example:
    ALTER SYSTEM SET SERVICE_NAMES='application_a.your.domain','application_b.your.domain' SCOPE=BOTH;Using SERVICE_NAMES is a good way to isolate applications for tracing and metrics measurement.

  • HT4974 Changing file service location for Groups

    Who has found the "separate interfaces" for File Service data mentioned in the referenced article?  I cannot figure out how to get Mountain Lion OS X Server to move away from the /Groups folder for Group Services.
    TIA,
    Tim

    Hi there
    I have been looking at this also and am also very annoyed that Apple has chosen not to surface this functionality in the Server administration GUI for system administrators. It must be part of their drive to 'prettify' OS X Server — a terrrible mistake and the persons responsible should be sacked and some people with real (painful) sysadmin experience be put in responsibility. Strong words I know, but read on...
    The minute someone decides to install OS X Server they go from being a 'user' to being, whether they like it or not, a 'sysadmin'. It is no trivial thing being a systems administrator, and sysadmins very quickly, with respect to touching systems, become familiar with this sentiment : "Be afraid, be very afraid..."
    The functionality to change the location of the File Sharing  — Groups, Server Public (Shared Items) & Users — mount points exists in OS X Server. In fact it can (should be able to I believe — I have not tried it... yet) be changed with one command... if necessary preparations have been done.
    To view all the server settings for file sharing issue this command in Terminal:
    sudo serveradmin settings sharing
    we will then see the following for Groups (there is more listed for users etc. folders I haven't shown), I have blanked out some site specific information.
    sharing:sharePointList:_array_id:/Groups:dsAttrTypeStandard\:GeneratedUID = "xxx"
    sharing:sharePointList:_array_id:/Groups:smbName = "Groups"
    sharing:sharePointList:_array_id:/Groups:afpIsGuestAccessEnabled = no
    sharing:sharePointList:_array_id:/Groups:smbDirectoryMask = "0755"
    sharing:sharePointList:_array_id:/Groups:ftpIsShared = no
    sharing:sharePointList:_array_id:/Groups:afpName = "Groups"
    sharing:sharePointList:_array_id:/Groups:smbCreateMask = "0644"
    sharing:sharePointList:_array_id:/Groups:ftpIsGuestAccessEnabled = no
    sharing:sharePointList:_array_id:/Groups:nfsExportRecord = _empty_array
    sharing:sharePointList:_array_id:/Groups:path = "/Groups"
    sharing:sharePointList:_array_id:/Groups:smbIsGuestAccessEnabled = no
    sharing:sharePointList:_array_id:/Groups:name = "Groups"
    sharing:sharePointList:_array_id:/Groups:smbInheritPermissions = no
    sharing:sharePointList:_array_id:/Groups:ftpName = "Groups"
    sharing:sharePointList:_array_id:/Groups:smbIsShared = yes
    sharing:sharePointList:_array_id:/Groups:afpIsShared = yes
    sharing:sharePointList:_array_id:/Groups:isIndexingEnabled = yes
    sharing:sharePointList:_array_id:/Groups:dsAttrTypeNative\:sharepoint_group_id = "xxx"
    sharing:sharePointList:_array_id:/Groups:mountedOnPath = "/"
    This is based on, in my installation, of having the Groups folder in the original default location of "/Groups". One of the lines shows clearly what needs to be changed to move (change mount point) '/Groups' to a new location...
    The concern I have with the way you moved the Groups folder is it may not work cleanly long term because just symbolically linking the folder may not be sufficient.
    Also using rsync with '-avvE' options copies the extended attributes (ACLs) but setting/copying the (traditional) Unix owner and group ownership & permissions (which are also used by OS X) are not done. If the command is executed as root then all the copied files & directories will change owner & group to root's. The following rsync switches should be used
    --owner
    --group
    --perms
    preferably though the Unix 'cp' command should be used with the '-a' switch, something like this:
    cp -a /Groups /Volumes/VolumeName/SomeNewFolder
    N.B. no trailing '/' is used.
    Of course this is untested by myself as yet, and you should check and confirm yourself. I have a Parallels OS X virtual machine I will install OS X Server on to try this, I will not do on my production server.
    You will note that I have not listed the the serveradmin settings command to change where OS X Server should look for the '/Groups' folder can you see what it should be? I can post what I believe it should be if you wish, let me know.
    Of course all of the above relies on the fact that OS X Server will not get 'upset' with us changing a setting outside of a, non-existant in the first place, GUI surfaced settting function. Which again is why I would like to test this on a virtualised server. Of course you can give it a try, I would be obviously interested to hear how it goes — I would do a full backup first though. After making the serveradmin settings change I would reboot the server.

  • How to change the default password file's name and path when the database created?

    how to change the default password file's name and path when the database created?
    null

    Usage: orapwd file=<fname> password=<password> entries=<users>
    where
    file - name of password file (mand),
    password - password for SYS and INTERNAL (mand),
    entries - maximum number of distinct DBA and OPERs (opt),
    There are no spaces around the equal-to (=) character.

  • How to display imaged documents on EP (.prop file name extension)

    Hello All
    Situation is, the business desires ability to display and optionally print multiple imaged invoices at one time. These images are stored on the Content Server as ".prop" files. On R/3 these files are displayed through the SD Viewer.
    Since these imaged documents are'.prop' files, I'm wondering 1) if the portal can handle and 2) the best means to accomodate through the portal.
    Can KM be utilized for this or ir webdynpro the best alternative? 
    Can the portal retrieve these documents and display and/or print?
    Can they be converted to .pdf files?
    Does anyone have suggestions as to what would be best procedure to accomodate this?
    Or can anyone direct to some helpful links for this scenario.
    Thanks.

    Hi,
    KM could be used to show files but reading your requirements I would go for Webdynpro development.
    In the WD program you could use all the services you need like ADS for formatting to PDF and even KM services when needed.
    Good Luck,
    Benjamin Houttuin

  • Running CS6 on Mac OS 10.9.5 - File Name Change - Flash

    - When one of my students was working with Flash they some how managed to save their name to the program so that when you create a new file their name is part of the file name. I am unsure how to remove this as I don't see anything in the preferences panel to change this so the example would be ** joe smith : untitled-1.fla** Suggestions???? Thanks!!

    reset preferences -
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    photoshop:  https://forums.adobe.com/thread/375776

Maybe you are looking for

  • Bonjour for Windows no longer works after SP3 is installed

    Bonjour for Windows was working fine until SP3 came out. Now I can see the printer and Bonjour goes through the motions to set it up, but I can't print to the printer. The whole construct of "Printer.local" or "AirPortExpress.local" doesn't seem to w

  • Purchase order table

    hello everyone, does anyone know if there is any table for purchase order , where i cal get all purchase order and then i can sort them as per my requirement. Thnaks in adnavce, Honey

  • How application module helps for performance improve

    Hi Everyone, I have a sample web-application in which I am connecting with single AM instance (AM for database view object), retrieving some information and then close the connection. I am doing this as, // making AM instance <application module inst

  • OraOledbous10.dll Specific module could not be found

    To Any Oracle experts, I have downloded the latest Oracle 10g Vista\XP client 10.2.03 which includes the OraOledb ADO drivers. I am getting a spuradic error : "OraOleDBpus10.dll .. Specific module could not be found." My Oracle database is 9i .. Stra

  • External Mini SAS port/card on a UCS

    Hello, I'm using a HP Tape Storage ( Ultrium 3280). This tape storage has a SAS cable and I want to connect it on my UCS 220 M3.. Question : What it the Mini-SAS (SFF-8088) card that is compatible with a UCS 220 M3. i.e have an external SAS port. Reg