Put objects on artboard that are enclosed by a path in one layer

I have several maps of the world with various adminstrative boarders. The states/provinces their own sub-layer but the counties/districts are not within layers of the corresponding state/provinces in which they are contained. Basically, I'd like to put all the smaller objects within the biger object (compound path).  Is it possible to do this with a script.

Hi, Last week i got into same problem. But this a bug in one of the patches we applied. We uninstalled the patch and its working fine. Did you applied any patches recently.
and also check about any special characters like & , ( in presentation layer table/column names of subject area which is not working. I do have some, not sure that might caused some problem. Try to remove them and test.
and One more thing, check access permission on the columns, hope every one has read access.
If nothing worked/relevant then try to create a new subject area and add table by table /column by column and test it. So that you will know where is the problem.

Similar Messages

  • Why does Livecycle Designer need to lock scripting on objects with children that are fragments??

    Can someone tell me why Livecycle need to lock scripting on objects with children that are fragments??
    I mean, just because I have a fragment (which you can't edit the script for), why does Livecycle need me to NOT edit say the initialise event on the Main form.
    Yes, I can remove my fragments, edit and reinsert.  Also if the event already has a script, I can edit the xml.  But neither of these are terribly convenient.
    Couldn't there be a better way?

    The purpose of the fragment is to create re-usable or standard components. In most cases the fragment is not created by the same person designing the form and they do not want the from designer to modify any part of the fragment (it is a separate XDP file). There may be code in that fragment that relies on the structure that exists. If you have the rights you can always edit the fragment and when your PDF is created the changes will be picked up.
    If you want to be able to modify the fragment while it is in Design mode sounds to me like you want to add a component to the object library. This will allow you to have a reusable piece of a form that you can modify on a form by form basis. To do this simply build the piece that you want. Lasso the entire form and drag it onto the Custom library. When you release it a dialog will pop up allowing you to name your component. Now on any form design you can drag your new component onto the canvas and all methods/properties and code will come with that component (allowing you to modify it for that form as you see fit).
    Note that you can create your own libraries to hold your components if you see fit. Also if you put your libraries on a shared drive, you can share components between Designers.
    Paul

  • Is there any way that I can put the 600 songs that are stored on my old PC onto my new PC?  My iPod has the 600 songs on it but my iTunes will not let me add the songs onto the iTunes on the new computer.

    Is there any way that I can put the 600 songs that are stored on my old PC onto my new PC?  My iPod has the 600 songs on it but my iTunes will not let me add the songs onto the iTunes on the new computer.

    Yes.
    You should have copied everything from the old computer to the new one.
    Type "move itunes library" into the google search bar

  • Viewing Object-Level Permissions that are Granted in a Schema

    I have a user A and user B in my database. User B has around 1000 objects that constist of tables, views triggers, procs, packages, etc. We need to verify that user A was not explicity granted any write permissions on objects in user B's schema. What query and tables would give me insight into the object-level permissions that would have been granted on user B's objects?
    Thank you in advance!

    user11340104 wrote:
    I have a user A and user B in my database. User B has around 1000 objects that constist of tables, views triggers, procs, packages, etc. We need to verify that user A was not explicity granted any write permissions on objects in user B's schema. What query and tables would give me insight into the object-level permissions that would have been granted on user B's objects?
    Thank you in advance!appropriate code is available at URL below
    http://www.petefinnigan.com/tools.htm

  • Script to find users that are a member of more than one of a list of specific groups

    Hi,
    I need to generate a list of users that are members in more than one group, out of a list of specific security groups.  Here's the situation:
    1) We have about 1100 users, all nested under a specific OU called CompanyUsers.  There are sub-OUs under CompanyUsers that users may actually be in.
    2) We have about 75 groups, all directly under a specific OU called AppGroups.  These groups correspond to a user's role within an internal line of business application.  All these groups start with a specific character prefix "xyz", so the group
    name is actually "xyz-approle".
    I want to write a script that tells me if a user from point 1) is a member in more than one group in point 2).  So far, I've come up with a way to enumerate the users to an array:
    $userlist = get-qaduser -searchroot 'dq.ad/dqusers/doral/remote' | select samaccountname |Format-Table -HideTableHeaders
    I also have a way to enumerate all the groups that start with xyz that the user is a member of:
    get-QADMemberOf -identity <username> -name xyz* -Indirect
    I figure I can use the first code line to start a foreach loop that uses the 2nd code line, outputting to CSV format for easy to see manual verification.  But I'm having two problems:
    1) How to get the output to a CSV file in the format <username>,groupa,groupb,etc.
    2) Is there any easier way to do this, say just outputting the users in more than one group?
    Any help/ideas are welcome.
    Thanks in advance!
    John

    Here is a PowerShell script solution. I can't think of way to make this more efficient. You could search for all groups in the specfied OU that start with "xyz", then filter on all users that are members of at least one of these groups. However, I suspect
    that most (if not all) users in the OU are members of at least one such group, and there is no way to filter on users that are members of more than one. This solution returns all users and their direct group memberships, then checks each membership to
    see if it meets the conditions. It outputs the DN of any user that is a member of more than one specfied group:
    # Search CompanyUsers OU.
    strUsersOU = "ou=CompanyUsers,ou=West,dc=MyDomain,dc=com"
    $UsersOU = New-Object System.DirectoryServices.DirectoryEntry $strUsersOU
    # Use the DirectorySearcher class.
    $Searcher = New-Object System.DirectoryServices.DirectorySearcher
    $Searcher.SearchRoot = $UsersOU
    $Searcher.PageSize = 200
    $Searcher.SearchScope = "subtree"
    $Searcher.PropertiesToLoad.Add("distinguishedName") > $Null
    $Searcher.PropertiesToLoad.Add("memberOf") > $Null
    # Filter on all users in the base.
    $Searcher.Filter = "(&(objectCategory=person)(objectClass=user))"
    $Results = $Searcher.FindAll()
    # Enumerate users.
    "Users that are members of more than one specified group:"
    ForEach ($User In $Results)
        $UserDN = $User.properties.Item("distinguishedName")
        $Groups = $User.properties.Item("memberOf")
        # Consider users that are members of at least 2 groups.
        If ($Groups.Count -gt 1)
            # Count number of group memberships.
            $Count = 0
            ForEach ($Group In $Groups)
                # Check if group Common Name starts with the string "xyz".
                If ($Group.StartsWith("cn=xyz"))
                    # Make sure group is in specified OU.
                    If ($Group.Contains(",ou=AppsGroup,"))
                        $Count = $Count +1
                        If ($Count -gt 1)
                            # Output users that are members of more than one specified group.
                            $DN
                            # Break out of the ForEach loop.
                            Break
    Richard Mueller - MVP Directory Services

  • HT5527 If I have an IPhone, IPad, and  Macbool Pro That are all synced do I need one icloud for all three or individual iclouds?

    Do all my devices use the same ICloud, or do they each have there own?

    Assuming these are all your personal machines (with no sharing), you should use the same iCloud area to populate each and every machine.  --- One iCloud, as you say.

  • Can you use two ipods on one itunes account. It let me transfer my purchases, but can i put songs that are on one ipod onto the other that are already on my itunes?

    i had an ipod classic and used it for a few years until i got an iphone.
    Now I want to return to use it to fit all my songs on, however i now use a different itunes on a different computer.
    It let me transfer all my purchases, but won't let me put the songs on that i downloaded from albums, and it won't let me put songs onto it that are on my iphone.
    do i have to redownload all the songs again, or is there a simple method to solve this?

    See the How To Sections Here
    http://www.apple.com/support/ipod/earlier/
    And Here
    http://www.apple.com/support/ipodclassic/
    Also see this
    Download Past Purchases
    http://support.apple.com/kb/HT2519
    Log into iTunes using the account the Purchase was made with... Click on Buy... and a notice will come up saying you already have it... do you wish to download it again... Click Yes...

  • How to find out FICO user exits that are used by User

    How to find out the FICO user exits that are used by user.

    Go to tcode CMOD. In the project field drop down your list there. Put a Z* there and run the list. These should be all the exits that are activated. Search for the ones that pertain to FI. You can also search by development class. You need a little ABAP knowledge to search easily. You get this by going to the tcode then to status then to the program then to the attributes. There you find the development class. Ie FBAS.
    pls assign points if helpful as a way to say thanks.

  • Hiding reports that are used by dashboards

    Hi:
      We are using some Webi reports for use in Live Office/Xcelsius. While we want the users to be able to consume the data from these reports in the Xcelsius dashboards (which reside in InfoView as well as on Desktops), we don't want them to be able to see these reports in InfoView. Is there a way to "hide" these reports from the users but still give the users the ability to refresh the dashboard data that uses these reports? Thanks.
    -Nishant

    Go to tcode CMOD. In the project field drop down your list there. Put a Z* there and run the list. These should be all the exits that are activated. Search for the ones that pertain to FI. You can also search by development class. You need a little ABAP knowledge to search easily. You get this by going to the tcode then to status then to the program then to the attributes. There you find the development class. Ie FBAS.
    pls assign points if helpful as a way to say thanks.

  • How do i stop two processes that are running in activity monitor

    how do i stop two processes that are running in Activity Monitor took one out of trash and it says preparing to move desktop still running with another one been running for hrs now want to stop these many thanks jen.

    Select each one and Force Quit it.
    But be careful there are many processes that are run by the OS that if quit will cause problems possibly even crash the system.
    regards

  • I need an Email I can contact for itunes questions that are for apple.

    I need an Email I can contact for itunes questions that are for apple. Please post one I will greatly appreciate it. Thanks.

    iTunes is a free program consequently any support is via these user forums or the on-line documentation. Apple do not provide free technical support except for purchased products. They don't provide email support for iTunes.
    If you post your questions and/or any problems giving clear details of what you are attempting to do and any error message(s) you are getting etc. I'm sure someone here will be happy to help.

  • How do I preview objects that are outside of artboard.

    Hello,
    When I placed an illustrator file in Indesign, I would select command+D > select "Show Import Options" and we have a preview of the image. On some occasions, the preview will include all extraneous objects that are outside of the artboard and other times, it will display only the image within the artboard or bounding box. (Please see attached samples)
    Does anyone know the reason behind this?
    Thanks,
    Sutagami

    The only way I can reproduce what you are experiencing is if I save out as an .eps and am not mindful of the Artboard check box on the save dialog. If you deselect this check box you will get all of the file content, if you select this check box you will only get the designated Artboard bounding area. But you never said what file format your are saving or what version of Illustrator you are using. I have to assume you are in CS4.

  • HT1473 Im having a problem with adding cds to my library when some of the discs in a set have Gracenote information and other discs don't. iTunes in this situation puts the css that are part of a set into different albums, and I don't know how to combine

    I'm having trouble adding "spoken word" CDs that are in a set to my library. When some of the discs have "gracenotes" info the album gets broken up as if each cd was a separate album. I haven't been able to figure out how to have all the cds in the set appear as one album. I have entered each one in the "get info" page as "1 of 7" and "2 of 7" etc, but the ones with gracenote info get put into a separate album. It's frustrating so far! Also, when I want copy an album to the burn folder so i can share it with a friend, it moves the songs as songs, not as albums. Any way around this? Thanks very much!

    See Grouping tracks into albums.
    PS, you don't have the right to burn copies of the songs you've bought/ripped to give away to your fiends...
    tt2
    Message was edited by: turingtest2

  • My iTunes account no longer has everything on my iPod-5th gen. I want to put everything on my iPod on my iTunes on my new laptop without losing new purchases that are on the iTunes account or the old data on the iPod.

    My iTunes account no longer has everything on my iPod-5th gen. I want to put everything on my iPod on my iTunes on my new laptop without losing new purchases that are on the iTunes account or the old data on the iPod.

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How to Put together all SAP Transactions that are used a single User

    Dear Friends,
    In our client place, each user will be given a set of transaction codes, (like Sales Order Creation, Invoice Creation etc....). Each user role differs with other user role.
    Our client requirement is to put together all transaction codes on which his role is assigned, for instance transaction coeds like VA11, VA15N, VA21, VA25N, VL01N, VL06O, Print command. and customer generated report 'Z' codes should be placed together in a single transaction.
    I heard about area menus but I dont know how to call that functionality within the Sales Transactions. Could any one of you help me to resolve this issue. Your suggestions will be highly appreciated.
    Thank you,
    Raghu Ram

    HI,
    In case of your requirement , you can create an Area Menu (SE43) based on the role and assign all the required transactions.
    Later you can assign that Area Menu as the default parameter to the User ID (SU01).
    Whenever the user will logon he will see that area menu instead of initial SAP screen.
    Please check with the same and confirm.
    Regards,
    Harsh

Maybe you are looking for

  • IMovie for iOS not finding videos since update to iOS 5.1

    Hello everybody, I just updated my iPhone 4 to iOS 5.1 to be able to get the newest iMovie for iOS update. The iOS Update as the iMovie Update went fine so far. But when I try to open projects I have made, iMovie just shows a yellow triangle and says

  • Cannot implicitly convert type 'int' to 'DocumentFormat.OpenXml.StringValue'

    Hi, I have a write code-behind in infopath form to convert word document using openXML Below code i have used to convert: I underlined the code which is getting error!!! using Microsoft.Office.InfoPath; using System; using System.Xml; using System.Xm

  • Keyboard can't write Latin-1 diacritics on e63, e7...

    All my previous Nokia phones with numeric keypad had a large set of diacritics avilable through multitap, but I am really dissapointed to discover that my e63 has a limited (to non-existant) set avialable when typing. I am reluctant to put my dissapo

  • Recording loses brilliance from the studio to the car

    I have a non RTFM question! LOL! I just finished a song that sounds really good on my recording monitors......all the brilliance and clarity in the sounds are there. Then when I crunch it to MP3 and put the CD in my car it sounds like a cheap demo. L

  • Leave unit of measure for calculation type A empty

    Hi Gurus, We are in SRM Extended classic scenario with 5.0 version. Here in SRM we have Procurement contact with process type Global Outline Agreement (GCTR). Currently we are facing problem while amending the condition type in the contact line item.