Copy many objects to their own unique layer?

I know I have seen this once but I am not sure if Illustrator had it.
Is there a way to "copy to layers"? Like if I make a selection of a bunch of objects (on one layer), is there a way to copy and paste so each pasted object is in its own layer? Like if I had 1 layer and 5 objects, copy and pasting would then give me 5 more layers, with an object in each. (I actually have more than 5)
Thanks.

Layer's Palette flyout menu>Release to Layers.
JET

Similar Messages

  • Using one azure table storage account for many customers with their own data

    I'm developing app that will allow the customers to store their data in azure. However, currently I have no idea how to split  accounts of the customers in azure. Yes, I'm just started to read the documentation, but maybe someone can point me to the
    right topic?

    It seems like it might be worth starting from the general guidance to developing multitenant cloud applications - this resource might help: http://msdn.microsoft.com/en-us/library/ff966499.aspx
    The patterns covered in this guidance might apply to data storage mechanism chosen for the application - whether it's Azure Storage , Azure SQL DB or else.

  • I connected a friends ipod to my computer without syncing it. Now my apple ID is on their ipod. How do they delete my iD and create their own to be  able to facetime and use apple store

    I connected a friends ipod to my computer without syncing it. Now my apple ID is on their ipod. How do they delete my iD and create their own to be  able to facetime and use apple store?

    For Apple store go to Settings>iTunes and App Stores and sign out and sig in with correct ID
    For messages go to Settings>FaceTime>You can be reached at and ad an their own unique email address and delete the common Apple ID address.
    Similar for Messages too.

  • IPad 1 Safari crashes frequently. I went to many Apple stores in different countries and each Apple staff member had their own different opinions with no help. I had upgraded my iOS to 5.1.1 and the Safari crashing started about one year

    IPad 1 Safari crashes frequently. I went to many Apple stores in different countries and each Apple staff member had their own different opinions with no help. I had upgraded my iOS to 5.1.1 and the Safari crashing started about one year after the upgrade and some Apple staff blame this- but this started one year later after the iOS upgrade. Recently at the Apple Store in Vancouver an Apple staff reset my computer (erased everything and sent to iCloud to reset the iPad) and I hoped this would fix the problem. IPad Safari still crashes. Short of booking an appointment for taking it for repair to Apple technicians which will cost me money can anyone help me to fix this Safari crashing.

    Hi,
    You might have a 3rd party plugin that isn't compatible with Safari 4.0.4. Go here for help...
    Safari add-ons can cause performance issues or other situations
    If you are using a USB hub, try disconnecting and restarting with just your keyboard and mouse connected.
    From the Safari Menu Bar, click Safari / Empty Cache. When you are done with that...
    from the Safari Menu Bar, click Safari / Reset Safari. Select the top 5 buttons and click Reset.
    Mac OS: Web Browser Quits Unexpectedly or Stops Responding
    Also, you could download and install the 10.5.8 combo update (PowerPC) available here.
    http://support.apple.com/downloads/MacOS_X_10_5_8_ComboUpdate
    It contains fixes that might help. Then repair disk permissions.
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn

  • Do sub classes get their own copy of base class static members?

    Hi,
    I am sub classing a certain classwhich has a static member boolean used for status updating. I have two sub classes, each needing its own static copy of the boolean. Do they get their own copy, or must I redeclare the member in each sub class?
    AC

    You must re-declare them (hiding the superclass member) if you wish the subclass members to be "independent".
    class Coin {
        public static int FOO;
        public static int BAR;
    class Coin2 extends Coin {
        public static int BAR = 2;
        public static void main(String[] args) {
            FOO = 1;
            System.out.println("Coin FOO  = " + Coin.FOO);  // 1
            System.out.println("Coin2 FOO = " + Coin2.FOO); // 1
            System.out.println("Coin BAR  = " + Coin.BAR);  // 0
            System.out.println("Coin2 BAR = " + Coin2.BAR); // 2
    }HTH! :o)

  • Trying to keep track of how many objects I create

    Hello everyone I'm trying to keep track of how many message objects I created and Assign them to a data member.
    Right now it assigns all the Message objects the same number at the end which is 3. I wanted it to assign 1 to the first object it create, 2 for the 2nd, and 3 for the 3rd.
    here's a small version of my code:
    package ss;
    import java.util.ArrayList;
    import java.util.Iterator;
    public class MainTest {
         public static void main(String [] args)
              Message msg = null;
              ArrayList<Message> msgList = new ArrayList<Message>();
              for(int i = 0; i < 3; i++)
                   msg = new Message();
                   msgList.add(msg);
              System.out.println(msgList);
    package ss;
    //this class will hold the Event/Message
    import java.util.List;
    import java.util.HashMap;
    import java.util.Map;
    import java.util.ArrayList;
    import java.util.Set;
    import java.util.Iterator;
    public class Message {
         //these are datamembers that will be used during
         //the sending of the message to the reciever
         //PacketID should be incremented each time a new message is created
         static int PacketID = 0;
         Message()
              PacketID +=1;
         public String toString() {
              return("PacketID: " + this.PacketID
                        + "\n");
    }output:
    [PacketID: 3
    , PacketID: 3
    , PacketID: 3
    Any ideas what I'm doing wrong?
    Thanks!

    Thanks BigDaddyLovehandles,
    Well there's the problem, I just posted a simpler problem to a bigger one. So I am keeping them in a collection as you can see below.
    I'm keeping these message stored in a multi map, and it is multi-threaded. Everytime a user connects to my server I create a new thread, and start adding the "messages" to the database.
    But I must have a packetID, meaning every new message created I need to assign that number to the message object.
    I also see a problem with this like you said, its not thread safe, if 2 clients connect to the server, and both send me events, there are going to be 2 different maps, copying events from the client and storing them in their own seperate databases.
    This might not be a problem because after I get the events on each thread, i send them to another server for processing.
    Here's an example of what my database looks like that stores the messages:
    //this class should store all the Messages or "Events" and
    //you can access them based on their Serial key.
    public class MessageDB {
         //database to hold the information
         //     holds the Alerts/messages
         Map<String, List<Message>> AlertMap;
         //Constructor
         MessageDB() {
              AlertMap = new HashMap<String, List<Message>>();
         //print, outputs the contents of the hashMap
         public void print() {
              //want to print out the Key and all the Messages
              //associated with that key
              //print, outputs the contents of the hashMap
                   for (String key : AlertMap.keySet())
                        System.out.println("\n\nSerial (key): " + key
                                  + "\nValues in Map: \n" + AlertMap.get(key));
         void add(Message msg) {
              //getting the position of the List by EntityID if avaiable
              List<Message> AlertList = AlertMap.get(msg.Serial);
              //checking to see if there is a unique Key already in the Map.
              if (AlertList == null) {
                   //if there isnt a key in the map, add a new key, and a new List mapping
                   //to the key EntityID;
                   AlertList = new ArrayList<Message>();
                   AlertMap.put(msg.Serial, AlertList);
                   AlertList.add(msg);
              } else {
                   //adding message to List
                   AlertList.add(msg);
         }Any suggestions on what I can to number all these messages and it will be thread safe?

  • I would like to use one library but with multiple ipods, but because they are my kids Ipods, and they each have their own gift cards, I'd like to be able to add money to their "profiles" without them having their own account - what is the best way

    So here is my delima - I want one Ipod account - because I only want one library - since we all like the same music - but my kids, who have their own IPODS, have gift cards, who want to be able to keep track of their balance without the other child affecting the balance - meaning - each gift card should be seperate and not totalled to the single account - Beacuse the library is fairly large, having three libraries of large amounts would be a waste.  I would also like to restrict their purchased to the gift cards only and not my credit card on file.  Does this make sense?  Once this is resolved, I'm assuming they would use their own playlists to copy their favorites to each Ipod.  Or would I set up an account for each child - which I dont want to do, because I dont want them having access to my Credit Card, and only gift card balances.  With multiple accounts, I'm assuming that would also build seperate libraries?  We also have multiple computers, but I share the library to those computers -
    What is the best way?  I'd like to be able to add credit to a specific child (birthdays, etc) without the other child being able to access that credit.  For simplicity sake.
    We are new to IPODS and lack any MAC skills.
    Thoughts?

    Not going to happen the way you want it to.
    When you add a gift card balance to the Apple ID, it's available for the Apple ID.
    Probably best to create unique Apple ID's for each... this will also make things easier in the future as purchases are eternally tied to the Apple ID they were purchased with.

  • Im having problems with my Kids facetime accounts that seem to be because they are both using my itunes and there are conflicts with multiple email addresses? Is it possible to now set the kids up with their own accounts without losing their apps etc

    Hi All,
    I have my kids using iTunes via thier ipods etc through my own account and this hase been the case for some time?
    This has started to cause issues lately with imessaging and facetime, as there seems to be a limit on email addresses that can be associated with one account?
    I wonder if I would be best off setting the kids up with their own accounts, but want to be able to do this without them losing their existing apps, music etc?
    Is this possible, if so is there a simple process cos I can seem to find anything relating to this?
    many thanks, Jim

    Not going to happen the way you want it to.
    When you add a gift card balance to the Apple ID, it's available for the Apple ID.
    Probably best to create unique Apple ID's for each... this will also make things easier in the future as purchases are eternally tied to the Apple ID they were purchased with.

  • External Harddrives disconnecting on their own

    Ok, so, I've got this very goofy problem where I have 2 seperate external hard drives that disconnect themselves from the usb all on their own. So basically what happens is I'll be working and then get the error pop up to make sure I eject my external device blah blah blah.... Does any one know what is causing this? is it software or is there something royally messed up with my usb ports?
    thanks,
    James

    I would first contact  Seagate's tech support for a possible solution. If that doesn't prove successful then I would try a different product or consider building your own.
    Basic Backup
    Get an external drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    Silver Keeper
    Retrospect
    Super Flexible File Synchronizer
    SuperDuper!
    Synchronize Pro! X
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.
    Although you can buy a complete external drive system, you can also put one together if you are so inclined.  It's relatively easy and only requires a Phillips head screwdriver (typically.)  You can purchase hard drives separately.  This gives you an opportunity to shop for the best prices on a hard drive of your choice.  Reliable brands include Seagate, Hitachi, Western Digital, Toshiba, and Fujitsu.  You can find reviews and benchmarks on many drives at Storage Review.
    Enclosures for FireWire and USB are readily available.  You can find only FireWire enclosures, only USB enclosures, and enclosures that feature multiple ports.  I would stress getting enclosures that use the Oxford chipsets especially for Firewire drives (911, 921, 922, for example.)  You can find enclosures at places such as;
    Cool Drives
    OWC
    WiebeTech
    Firewire Direct
    California Drives
    NewEgg
    All you need do is remove a case cover, mount the hard drive in the enclosure and connect the cables, then re-attach the case cover.  Usually the only tool required is a small or medium Phillips screwdriver.

  • Is it possible to sync and share iTunes (specifically purchases,songs,playlists) with 2 computers having their own apple id? ,movies

    Is it possible to sync, combine and share iTunes (specifically purchases,songs,playlists) with 2 computers having their own apple id?
    I have been trying to find the answer to this for awhile now.

    No it's not stealing. They have an allowance that you can share with so many computers/devices. You'll have to authorize her computer to play/use anything bought on your acct. You can do this under the Store menu at top when iTunes is open on her computer.
    As far as getting it all on her computer....I think but I am not sure (because I don't use the feature) but I think if you turn on Home Sharing in iTunes it may copy the music to her computer. I don't know maybe it just streams it. If nothing else you can sign into your acct on her computer and download it all to her computer from the cloud. Not sure exactly how to go about that, I haven't had to do that yet. I wonder if once you authorize her computer and then set it up for automatic downloads (under Edit>Preferences>Store) if everything would download. Sorry I'm not much help on that.

  • 2 computers, 5 family members with their own iTunes accounts. How do we share purchased iTunes and downloaded CDs with homeshare? (I can't get my old iPod music to all go onto my iPad)

    I have 2 computers - Windows Based
    My husband, myself and the kids all have our own "accounts" on the home computer. This was done to limit certain access when the kids were younger.
    The laptop is pretty much mine. I use both computers for my iTunes music.
    Everyone has their own iTunes account for their music and games. I have been able to get music purchased by my other family members on my iPod in the past if I logged in the home computer under their IDs and attached my iPod. Or, if a family member downloaded a CD, I could get that music thes same way without having to download the CD again under my own login ID. However, I now have an iPad, and I can't transfer music from the iPod to the iPad - specifically that which was downloaded from CDs - not iTunes. And I couldn't get it to go from my iPod to my laptop, although both are authorized computers in the Home Sharing.
    It doesn't seem like the Home Sharing works with the different computer login IDs. The iTunes is universally available regardless of who is logged in, but the libraries vary based on who's user name you are under. I have strugged with importing from one User ID to another, which led me to simply log in under a different family member to get the desired music. There has got to be an easier answer and I'm just not figuring it out.
    I've read the support answers, I've read many of the other responses here as well to those with similiar questions, but I am still struggling.
    Any suggestions?

    If you are completely confident that you didn't hide it, then you purchased those with different apple id. If you completely confident that you purchases with same apple id then you have hidden it. One of the other or you are speaking about a miracle. While miracles are possible they are not very likely. Remember
    Occam's razor?

  • Is this the start... Verizon is blocking Google Wallet which is very nice, and you probably don't know they are creating their own Verizon Wallet

    I have been with this company for over 10 years and frankly I always overlooked one thing wasn't to keen on and that was some of the services Verizon offered on their website which many of the account related services they have as apps so you can view from your phone are good and useful.  I have been an Android user since the first Moto Droid to the Incredible and Inc2, then I though I was gonna go iphone, until I was able to use one for a month.  Don't get me wrong it wasn't bad it was my brothers 4G on another network when he upgraded to the 4GS.  Anyway no real problems other than Android just has more to offer so I went with the Nexus Galaxy and stayed with Verizon, after I was flipping a coin to go to Sprint.  Anyway the reason I am leaving Verizon is due to their attempt to create apps to try to compete with googles apps and Verizon charges...  you can find most for free from the droid market(which is the Play store now) such as Navigation.  The free Google Nav is awesome, I also have google voice(free)  so I get text messages emailed to me and vmails emailed and texted to me as well as being able to listen straight from phone by pushing play by the missed call.  Verizon continutes to create these apps that also cost money and aren't near as good.  I actually feel bad for the people who think the VZ nav is in fact the google nav.  Now they are blocking a new service of Google's called Google Wallet.  It's free and really cool, but Verizon blocks you from installing it or using it and Verizon is spending over a 100,000,000 dollars to create their own Wallet APP  that i'm sure won't be free.  So it's not that one app as to why I am leaving, its a number of things that as an experienced user and add the fact that  I work in the tech industry, in sales that I Verizon taking advantage of customers, and I don't work that way or like it.   Okay you go buy a verizon phone, it will have the VZ Nav right there on the home screen, however there will be no google Nav, and for newbies they usually think this is the navigation everyone talks about.  You have to go download the Google Maps which is a turn by turn navigation always up to date and is awesome.  I watch my kid driving down the road at all times for free.   My point is now that their blocking Google Wallet because they are creating there own wallet, which won't be as good, and probably cost money to even spend money meaning they will charge for it.  What is the next brilliant thing that Google comes out with  that you can intergrate into your Google services.    So what is the point of trying to compete with Google on apps, I mean the Verizon wallet?  Why it makes no sense.  Why block an app thus not giving you the luxery.  They have their reasons of course such as security, and other reasons that it could cause problems but, hey if you dare to spend the outrageous amount of money to activate your hostspot to connect your computer wirelessly in a park.  75% of the people who do this are going to be on an unsecured network that anyone can connect to even with security turned on.  So they say there worried about security on the wallet app, because someone may cold get access to your small amount that most people keep on the google wallet but the wireless hotspot is putting much more that money out there. it's putting personal things and files on your computer out there.  I just dont' get why they can't provide their songs and ring tones and apps that allow you to see you data usage and leave the apps for the Google market.  For you who don't know please download google maps and you will have an awesome navivation.  Also google talk, voice, chat, and there apps on the google market for free such as a punch clock for time.  I saw one for over $14 on the verison app store.  So stick to what you are good at ,and don't block apps that other companies aren't blocking including at&T now, and they were in on the $100,000,000 to create this app along with Tmoblie and Verizon.  I use an android because of the capapbilites that google gives you, and the apps that they offer for free or no money.  Go look in the Verizon apps and see how much you will pay.  Most that cost money come preinstalled on your phone so all you have to do is use it and you start getting charged.  This is a 3 year decision making.  I don't like that people can easily get charged for services without even knowing just because the app was installed and they used it once.  Just stay with what your good at and let the android users rightly use the google apps.  After all Google Saved your business if you really want to think about it.  If you didn't have the android OS, how many sales would you be getting?  Where would your company be.  This app was developed by Google which means it ties into everything else such as making online payments with the google card.  Blocking APPS developed by the developer of the Operating System that single handedly changed  the game, and has Made  you as a company far better off than you would have ever been had they not developed android.  Not a good Idea.  Bite the hand that feeds you.

    I have been with this company for over 10 years and frankly I always overlooked one thing wasn't to keen on and that was some of the services Verizon offered on their website which many of the account related services they have as apps so you can view from your phone are good and useful.  I have been an Android user since the first Moto Droid to the Incredible and Inc2, then I though I was gonna go iphone, until I was able to use one for a month.  Don't get me wrong it wasn't bad it was my brothers 4G on another network when he upgraded to the 4GS.  Anyway no real problems other than Android just has more to offer so I went with the Nexus Galaxy and stayed with Verizon, after I was flipping a coin to go to Sprint.  Anyway the reason I am leaving Verizon is due to their attempt to create apps to try to compete with googles apps and Verizon charges...  you can find most for free from the droid market(which is the Play store now) such as Navigation.  The free Google Nav is awesome, I also have google voice(free)  so I get text messages emailed to me and vmails emailed and texted to me as well as being able to listen straight from phone by pushing play by the missed call.  Verizon continutes to create these apps that also cost money and aren't near as good.  I actually feel bad for the people who think the VZ nav is in fact the google nav.  Now they are blocking a new service of Google's called Google Wallet.  It's free and really cool, but Verizon blocks you from installing it or using it and Verizon is spending over a 100,000,000 dollars to create their own Wallet APP  that i'm sure won't be free.  So it's not that one app as to why I am leaving, its a number of things that as an experienced user and add the fact that  I work in the tech industry, in sales that I Verizon taking advantage of customers, and I don't work that way or like it.   Okay you go buy a verizon phone, it will have the VZ Nav right there on the home screen, however there will be no google Nav, and for newbies they usually think this is the navigation everyone talks about.  You have to go download the Google Maps which is a turn by turn navigation always up to date and is awesome.  I watch my kid driving down the road at all times for free.   My point is now that their blocking Google Wallet because they are creating there own wallet, which won't be as good, and probably cost money to even spend money meaning they will charge for it.  What is the next brilliant thing that Google comes out with  that you can intergrate into your Google services.    So what is the point of trying to compete with Google on apps, I mean the Verizon wallet?  Why it makes no sense.  Why block an app thus not giving you the luxery.  They have their reasons of course such as security, and other reasons that it could cause problems but, hey if you dare to spend the outrageous amount of money to activate your hostspot to connect your computer wirelessly in a park.  75% of the people who do this are going to be on an unsecured network that anyone can connect to even with security turned on.  So they say there worried about security on the wallet app, because someone may cold get access to your small amount that most people keep on the google wallet but the wireless hotspot is putting much more that money out there. it's putting personal things and files on your computer out there.  I just dont' get why they can't provide their songs and ring tones and apps that allow you to see you data usage and leave the apps for the Google market.  For you who don't know please download google maps and you will have an awesome navivation.  Also google talk, voice, chat, and there apps on the google market for free such as a punch clock for time.  I saw one for over $14 on the verison app store.  So stick to what you are good at ,and don't block apps that other companies aren't blocking including at&T now, and they were in on the $100,000,000 to create this app along with Tmoblie and Verizon.  I use an android because of the capapbilites that google gives you, and the apps that they offer for free or no money.  Go look in the Verizon apps and see how much you will pay.  Most that cost money come preinstalled on your phone so all you have to do is use it and you start getting charged.  This is a 3 year decision making.  I don't like that people can easily get charged for services without even knowing just because the app was installed and they used it once.  Just stay with what your good at and let the android users rightly use the google apps.  After all Google Saved your business if you really want to think about it.  If you didn't have the android OS, how many sales would you be getting?  Where would your company be.  This app was developed by Google which means it ties into everything else such as making online payments with the google card.  Blocking APPS developed by the developer of the Operating System that single handedly changed  the game, and has Made  you as a company far better off than you would have ever been had they not developed android.  Not a good Idea.  Bite the hand that feeds you.

  • HT4436 we have 5 devices on one itunes account how do I give them each their own icloud account and still share the itunes account?

    we have 5 devices on one itunes account how do I give them each their own icloud account and still share the itunes account?

    You need a unique AppleID for each iCloud account.  So grab some free gmail, hotmail, aol, yahoo or whatever email addresses to make five new AppleIDs.  Now, everybody make an iCloud account for themselves, and keep the existing shared AppleID and password just for use in the iTunes and App Stores.  You can also each use your own unique AppleIDs to make iMessage accounts and keep those separate as well.

  • I have an Apple ID, and shared purchases with my 3 kids devices. Now they want to have their "own accounts" so when they get iTunes gift cards, they can pay for their own things. Can we share these purchases? My household is as follows:

    I have Mac Mini with Lion Server running 10.8.2 and an iPhone 4.
    Wife has iPad 2 and iPhone 4s. (We share Apps)
    Each kid (12 and under) has iPod Touch 4th Gen.
    So far all purchases made under my Apple ID/iTunes ID.
    Is there a way to let the kids have their own account- they get giftcards.... but if I buy an App they can still share it?
    so if Child 1 buys an App, or song, can we all enjoy it, but it's purchased from his 'own' account?

    @survivethestorm.
    Firstly thanks for the blog, I think it has saved me time contacting customer support?  I too am going thru the introduction of several kids devices, along with my wifes, onto the one iTunes account and on one PC computer (currently we have 3 x iPhones, 2 x iPod touches, 2 older iPods and soon to have iPad).  Syncing all devices hasn't been a problem to date as far as music, apps etc but I too have discovered the texting problem you described above, with my sent texts showing on the kids devices, and vice-versa, much to my horror!  It appears this is now only becoming a problem with the later iOS software and/or devices?
    It appears as you have described above, customer support has indicated by creating a separate Apple Account for each person, this fixes the texting problem?  Have there been any issues then with syncing apps, music etc after creating the accounts?  I currently dont use iCloud, I simply sync each device on connection via usb to the computer, and choose what is being synced to each device.  I like to control (at this point anyway) what is actually going on to the kids devices.  Do you know if there is a limit as to how many 'Apple Accounts' can share the one iTunes Library?  I realise the number of devices is unlimited to the one account, but just wondered if the number of Apple Accounts changes things?
    Once an Apple Account has been created for each person, do you then have to share your iTunes Library (Apps, Music etc) or does it do it automatically do so when they log in? 
    Also I presume you don't need credit card details for the Apple Account?  It was a long time ago I set my original one up.
    Sorry for the 'long winded' reply, just very confused and want to make sure I am doing the right thing.
    Many thanks.

  • Can we split accounts so each person can spend their own money, but still share the same librar

    right now we have one itunes library, one apple id and 2 devices. so when we put an itunes card on the account, it is a race for who can use up the $ first.  We are adding a 3rd device.   I want to split the accounts so each person can spend their own money, but i still want them to share the same library(the library is in a shared area on the computer)
    we have been thinking about just setting up a new apple id for the new device.  i am worried that when we sync, that it will wipe out all the existing stuff.
    Thanks for your help.

    You can create as many individual user accounts on a Mac as you like. Then, any one or more of those users can remotely log in from another Mac and use that Mac as their own, simultaneously. Each account will remain separate from all others.
    However, since each user needs to have a Mac to do that, I'm not sure how you could effectively double the number of users as you describe.

Maybe you are looking for

  • Receiver AS2 Adapter issue.....Failed to get configuration from DATABASE. S

    Hi, Iam doing prototyping for File -AS2 adapter and ended up with below erros. Error type: COMPONENT_ERROR >> Error date: 6/17/11 8:04 AM >> Description: AS2 Adapter failure Outbound configuration error: Failed to get configuration from DATABASE. Sen

  • Command Link doesn't work - may be a bug

    Hi all, I'm using JDev 11g. I added two pages to the adfc-config.xml file and a controlFlowCase from one to another. Page1--> Page2 The action name is "aaa". And then i added a command link to the Page1 and selected the action name "aaa". Now i'm cli

  • Flash 8 Application consuming lots of Memory!!

    Hi There, I just developed an Application using Flash 8 Professional. Unfortunately Im finding a bad memory usage when i run the Application. Visual Studio acts as the container for the SWF. The memory usage rises upto 80% and its really not acceptab

  • Alert Configuration in PI 7.1

    Hi, I have done Alert Configuration as per Michal's blog 2328. Though I am getting notified in RWB alert inbox,email is not getting triggered. Thanks in advance, Geetha

  • How to Process a Multi-Line Form

    Hi: I've created a pl/sql portlet that displays a multi-line html form. The desired functionality is: user enters data into one or more lines, clicks a button, and all lines get inserted. Currently, to perform the insert I have a Javascript function