What's a maximal connections can be created?

I have to create several connections to DB2 using JDBC, in order that the pararrel executing statements don't collide with each other.
At moment I have 10 connections, hope to know is there any constraints on the number of connections? Will the too many connection result in performance problem?
Thanks a lot.

1. It's configurable at the database.
2. Java does not limit you.
3. Use a connection pool.

Similar Messages

  • Hello my name is Yasser Prnak.Email'm from Iran and I want to know What did a bad job Can not Create an Apple ID? Only Because It was born in Iran? Please create one Apple ID fir me  because I'm in Iran Born

    hello my name is Yasser Prnak.Email'm from Iran and I want to know What  did a bad job Can not Create an Apple ID? Only Because It was born in  Iran? Please create one Apple ID fir me  because I'm in Iran Born

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • When I want to create apple account in billing and card details page I am stuck and get the message contact itune store support to complete this transaction. Need to know what to do as I can't creat apple id

    When I want to create apple account for my new iphone5 with different apple id than this  in billing and card details page I am stuck and get the message contact itune store support to complete this transaction. Need to know what to do as I can't creat apple id

    The first step would probably be to contact iTunes support as you're being told to do.

  • What is menu area? can we create a menu exit with tht?

    Hi experts,
    what is menu area? can we create a menu exit with tht? is areamenu(se43n) diff frm menu exit?

    Hi
    Menu Exits
        Menu exits add items to the pull down menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
          SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    Menu exits allow you to add your own functionallity to menus. Menu exits are implemented by SAP, and are reserved menu entries in the GUI interface. The developer can add his/her own text and logic for the menu.
    Function codes for menu exits all start with "+"
    Example
    We want to create a new menu item in the Office menu. The text for the menu should be "Run ZTEST", and the menu will
    run report ZTEST.
    Goto transaction SE43 Area Menu Maintenance
    In Area Menu Paramenter type 'S000' (S triple Zero)
    Select Change and ignore all the warning screens
    Expand the office menu. In the buttom of the office tree you will find a menu named "Customer function"
    Double click on the text. In the pop-up screen change the text to "Run ZTEST". Note that the trsnaction code is +C01
    Goto transaction SE93 and create transaction +C01 that calls report ZTEST.
    Now you will se the menu displayed in the office tree. If you delete transaction +C01 again, the new menu will dissapear.
    There are 'only' 177 Menu exits in standard - I couldn't see the right one, too.
    But you could search the implemented exits, this should be only a small number. Go to transaction CMOD, enter * and F4, information system (F5), show all selections (Shift+F7) and then you can restrict to search only menu exits.
    Of course there is the possibility, that these are added in a different way...
    ... at least you can be sure, if it's a normal menu exit.
    Check this sap help..
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    http://www.sapbrainsonline.com/TUTORIALS/default.html
    You can achieve this functionality by configuring in IMG.
    Please find the info regarding User-Exit's in the following links:
    http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    Re: doubt on user exits
    user exits and Badis
    User exits is the enhancements provided by SAP
    You can use them in transactions. Each transaction will have user exits.
    If you want to use your own requirements by making your coding while the transaction is run you can use user exits.
    For example if you want to run the MRP in MD02 specific to MRP controller you can user exit.
    Please also refer the document below.
    USEREXIT
    Userxits allow us to add our own functionality to SAP standard program
    without modifying it . These are implemented in the form of subroutines and hence are also known as FORM EXITs. The userexits are generally collected in includes and attached to the standard program by the SAP.
    All Userexits start with the word USEREXIT_...
    FORM USEREXIT_..
    z..
    ENDFORM.
    The problem lies in finding the correct userexit and how to find it if one exists for the purpose. Once the correct userexit is found the necessary customer code is inserted in the customer include starting with the z.. in the form routine.
    e.g. USEREXIT_SAVE_DOCUMENT_PREPARE
    Certain application like SD still provide this form of enhancement using userexit but this practice is no longer being followed for newer extensions instead they are using EXITs which come bundeled in enhancement packages . Neverthiless existing USEREXITS will be supported by SAP an all the newer versions of SAP.
    HOW TO FIND USEREXITS
    Userexits can be found in number of ways:
    1) To find userexits in SD module , goto object navigator(SE80) and select
    development class from the list and enter VMOD in it. All of the userexits in SD are contained in the development class VMOD. Press enter and you will find all the includes which contain userexits in SD for different functions like PRICING, ORDER PROCESSING etc. Select the userexit according to the requirement and read the comment inserted in it and start coding .
    Some examples of userexits in SD(SALES & DISTRIBUTION ) are:
    1)ADDING OF NEW FIELDS IN PRICING
    In Pricing in SD the fields on the basis of which pricing is done are derived from the FIELD CATALOG which is a structure KOMG .This structure is used to transfer transaction data to the pricing procedure in SD and is also known as communication structure.This structure KOMG consists of two tables KOMK for Header related fields and KOMP for item related fields. The fields which are not in either of the two tables KOMK and KOMP cannot be used in pricing .Sometimes a need arises when the pricing is to be based on some other criteria which is not present in the form of fields in either of the two tables. This problem can be solved by using USEREXITS which are provided for pricing in SD. Pricing takes place both when the SALES ORDER ( Transaction VA01) is created as well as when INVOICING ( Transaction VF01) is done.Hence SAP provides 2 userexits ,one for sales order processing which is
    USEREXIT_PRICING_PREPARE_TKOMP or
    USEREXIT_PRICING_PREPARE_TKOMK
    Depending upon which table (KOMK or KOMP) the new fields were inserted we use either of the above two userexits.These userexits are found in include MV45AFZZ of the standard SAP sales order creation program SAPMV45A.
    In the case of userexit which will be called when invoicing is done ,these
    are provided in the include RY60AFZZ which is in the standard SAP program SAPMV45A. The name of the userexits are same. i.e
    USEREXIT_PRICING_PREPARE_TKOMP or
    USEREXIT_PRICING_PREPARE_TKOMK
    These userexits are used for passing the data from the communication structure to the pricing procedure, for this we have to fill the newely created field in the communication structure KOMG for this we fill the code in the above userexit using the MOVE statement after the data that has to be passed is taken from the database table by using the SELECT statement. The actual structure which is visible in these userexits and which is to be filled for that particular field is TKOMP or TKOMK.
    Before the coding for these userexits is done ,it is necessary to create a new field in either of the two tables KOMK or KOMP .For this purpose includes are provided in each of them .
    To create the field in header data(KOMK) the include provided is KOMKAZ
    and to create the field in item data(KOMP) the include provided is KOMPAZ.
    One possible example for the need of creating new fields can be e.g. Frieght to be based upon transportation zone ,for this no field is available in field catalog and hence it can be created in KOMK and then above userexits can be used to fill the transportation data to it.
    2)The other method of finding userexit is to find the word USEREXIT in the
    associated program of the transaction for which we want to determine userexit using SE38.
    3)The other method of finding userexits is to find the include in case of SD/MM applications where the userexits are located ,this can be found in the SAP reference IMG generally in the subfolder under SYSTEM MODIFICATION.
    Some other examples of userexits in SD are:
    USEREXIT_NUMBER_RANGE
    This userexit is used to assign a different internal document number to the
    sales order(VA01) when it is created depending on some criteria like a different SALES ORGANIZAION(VKORG) .
    USEREXIT_SAVE_DOCUMENT_PREPARE
    This userexit is used to insert the ABAP code which will be called when
    the document (sales order VA01) is just about to be saved.This userexit is used generally for custom checks on different fields , to display some information before the order will be saved or for making changes to certain fields before the sales order will be saved.
    Exits & Enhancements
    There are mainly six types of EXITs in sap which have been collected in the form of enhancement packages and attached to standard code in SAP.
    These are different from USEREXIT in the way that they are implemented
    in the form of FUNCTIONs while in USEREXITS we use form routines for their implementation. These are also sometimes known as function exits .
    These start from the word EXIT_ followed by the program name and then followed by a three digit number.
    e.g. EXIT_SAPMV45A_002
    This exit is found in SD in enhancement V45A0002.
    TYPES OF EXITS
    1)MENU EXITS
    2)FUNCTION EXITS
    3)TABLE EXITS
    4)SCREEN EXITS
    5)KEYWORD EXITS
    6)FIELD EXITS
    We use SAP transactions CMOD and SMOD to manage exits. Before implementing an exit , it is required to create the project by using CMOD
    selecting the enhancement e.g. V45A0002 and selecting the component
    (one which fulfills our need) i.e the exit which will be implemented in SMOD and after coding has been done the project has to be activated.
    An exit can be coded only once.
    FUNCTION EXITS
    These are used to add functionality through ABAP code . These start from the word EXIT_programname_NNN ending in a 3 digit number. No access code is required to implement any tupe of exit including function exits.
    The function exits are called from the standard SAP program in the form
    of ABAP statement
    CALL CUSTOMER-FUNCTION 'NNN'
    This is in contrast to USEREXITs where PERFORM statement is used to call
    the required userexit.
    To implement the FUNCTION EXITs first of all the project is created and a suitable enhancement package is selected and from its compnents the function exit to be implemented is selected and on double clicking it the exit code will appear in ABAP EDITOR(se38) where a Z include will be found and the customer code should be entered in this include.
    e.g.
    ADDING A DEFAULT SOLD-TO-PARTY in Sales Order Creation
    To show a default sold-to-party in this field when the user creates a sales order (VA01) we can use a function exit .This function exit is located in enhancement no V45A0002 . Before we can choose the exit we have to create a project in CMOD after that enter V45A0002 in the enhancement field and click on the components . In the components you will see the exit EXIT_SAPMV45A_002 . This exit is used for our purpose.
    Double clicking on this exit will takes us to function builder (SE37) . This
    function exit has one exporting parameters and two importing parameters, we are interested in exporting parameter which is E_KUNNR of type KNA1-KUNNR i.e if we move the desired customer name to this structure(E_KUNNR) it will be shown in the field as the default value when we create the sales order. This function also contains a customer include ZXVVA04 . This include will be used to write our custom code .
    Double clicking on this include and it will prompt us that this include does not exists do you want to create this object ,select yes and the include will be created .In this include we can write our own code that will fill the field E_KUNNR.
    e.g. E_KUNNR = 301.
    Activate the include and Activate the project. Now when ever the SALES ORDER will be created , sold-to-party field will come up with a predefined customer .
    FIELD EXITS
    The field exits are managed,created,activated through program RSMODPRF. The field exit is associated with a data element existing in ABAP dictionary and hence to the screen field using that data element.
    The format of field exit is :
    FIELD_EXIT_dataelement_A-Z or 0-9
    If a particular screen and program name is not specified than the field exit will effect all the screens containing that data element.
    The function module associated with field exit shows two parameters
    INPUT and OUTPUT. Input parameter contains the data passed to the field exit when the field exit was invoked by the R/3 , We can write our own code to change the output parameter depending upon our requirements.
    Before the field exit can have any effect the system profile parameter
    ABAP/FIELDEXIT in all the application servers should be set to YES
    ABAP/FIELDEXIT = YES.

  • How many users for remote connection can I  create, from support SAP

    Dear all
    I have a doubt with how many users can be created in my system ERP 6.0 for the remote connection, for the error product  messages on the marketplace SAP,without this counts as user license.
    I have not found any notes or documents from SAP to explain this.
    I appreciate your help.
    Best Regards,
    Erika

    Ok...I will reply to myself. I can use more than 10 simultaneous connection, using vnc.

  • What??? You Can't Create New  Mailboxes on an iPhone???

    How incredibly stupid is that???
    So I finally decide to buy one of these things (two, actually, since I can't get one unless my wife gets one too...) and one of the first things I tried to do is... move a message from the inbox to.... ANY other folder. There, at the bottom of the message, is the icon... a folder with an arrow. Tap that... and... what's this?? You can't create a new mailbox?
    Oh wait, maybe you have to create the mailboxes in Mail on your MacBook, an then sync them to the iPhone. Nope, that doesn't work either.
    So maybe you wind up on the phone with some charmin lass in Bangalore and you listen incredulously as she tells you that this INCREDIBLY SIMPLE AND S.O.P. CAN'T BE DONE with an iPhone!!!
    And then you tell her... but... there it is, right in the user manual I downloaded. Three mailboxes in addition to "inbox" "sent" and "trash." Where did they come from???
    Then you spend 10 minutes on dead silence, on hold, and she comes back and says, oh, you can only do that with an iMap account! Like, hotmail or gmail or something.
    Well, I don't have hotmail or gmail (I do have Yahoo Mail but don't actually use it for anything) I have Apple Mail on my MacBook. Are they telling me that the mail program on this most-expensive-smartphone in the world is really so stupid that it can't create a mailbox?? That every message I want to keep on the thing has to be kept in the inbox? How stupid IS THAT???
    So, please, somebody.... tell me I'm wrong about this -- that lovely Ms. Bangalore is wrong about this... and tell me how I can create an additional mail box on my iPhone so that I don't wind up with 1,000 messages in my inbox.
    Really, how hard, how fundamental, is a task like that?
    Thanks,
    --PS

    With .Mac you get 10GB of storage, you can divide that between email, and web/iDisk space by logging in and going to your account settings on www.mac.com.
    EDIT: When my mailbox on an IMAP server that limits to 200MB starts to get full, I move old messages to a "local" or "On My Mac" folder on my computer.
    Thanks again for all the patient counsel around this issue. Here's the latest, in case anybody's still paying attention.
    I've been able to convert my primary e-mail account from POP to IMAP, so that it is now fully syncable with my iPhone. However, I'm still a long way from migrating my entire e-mail operation to Mac Mail.
    That is actually something that I would like to do. But I'm having a hard time now figuring out what exactly will be my "e-mail strategy" going forward.
    Presently, I am still doing most of my e-mail (which is a large part of my work) using Eudora in Windows on the Mac (via Parallels). I have had to do that mostly because I have thousands of messages in folders in Eudora, and I have been relying heavily on Eudora's robust search functions to find material that has formed the basis of a book I've been writing. For that and other reasons I have had to continue running Windows even as I've been migrating to the Mac platform.
    Now that a first draft of the book is done, I would love to abandon Windows altogether. I'm much happier in a pure Mac environment.
    But switching to IMAP for MacMail has actually made the prospect more difficult, because the service that hosts my primary e-mail account only allows 100MB of storage on their IMAP servers. I have hundreds of folders and several GB of files and folders in Eudora; with that kind of limit, I really can't see moving all those files and folders into MacMail, and having them sync'd to the server. It's impossible, actually.
    I do not need access to 98% of what I have stored in Eudora from more than one client. So it really doesn't need to be part of my IMAP scenario.
    What I do need is a way to clear from the server e-mail that I want to keep locally. How do I do that if everything in an IMAP client is duplicated on the server?
    As it is, the next time I start Eudora in Windows, it is going to download all the e-mail and delete it from the servers. Then the next time I start MacMail, it will all disappear from MacMail because it's been deleted from the server, right? That's not such a bad thing, because it clears the servers and because MacMail is not (yet) the permanent repository of my vast e-mail archives.
    This gets confusing to even contemplate, let alone write about. Bottom line is a) how do I make MacMail my main e-mail program when there is surely going to be more than 100MB of data I want to maintain, and/or b) how do I preserve the e-mail that I do want to save locally if my primary account is IMAP and I don't want to keep everything on the server.
    Remember, this whole issue arises because 98% of what arrives on my handheld (previously a Treo 650) I could just delete, and the other 2% I could save to a separate folder. But that was a POP account. Now I've had to alter my entire e-mail regimen JUST so I can have a folder for "keepers" on my handheld. And I SURE don't need those those thousands of e-mails in my permanent archives on the hand held (even if there is room for them).
    Sorry, I keep trying to boil it down to a simple question, and it keeps getting complicated. Is there a primer on IMAP management that somebody can refer me to?
    Thanks,
    --PS

  • How many connections can be created with apex ??

    Using SQLPLUS I can create many concurrent connections to a database. But using APEX only one. What is a problem??
    thanks

    Hi Jonny
    It isn't a database problem - it's a browser problem.
    Try it with 2 different browsers - or on 2 different computers.
    Which browser do you use?
    Oracle - is they a problem with session handling?
    Greetings
    Sven

  • Can't share my Internet connection - Can't create Wifi network

    Hi!
    I'm struggling to get my Mac Mini A1176 with 10.7 to create a Wifi hotspot. When I try, either through Internet Sharing or by manually choosing create network, it says "can't connect", and fails to create the hotspot.
    The only strange thing I can find, is that when I get the screen where I can choose network name, channel and security, channel is blank. I can't choose channel, the only option is the sign: -
    Anyone else seen this? Doesn't the A1176 support Adhoc networks?

    It's actually even easier than that....
    I never had to create an adhoc network.
    Look Here

  • What no of concurrent connections can each server serv?

    Ok we're a startup and currently thinking about whether to use flash media streaming server or red5, or progressive streaming with lighttpd.
    In order to make a decision I would like to know how many concurrent streams can flash media server server stream until one has to purchase another license. Do any of you guys have some numbers.
    We will be streaming mp3 at low bit rates, service will be hosted within AWS EC2 (with whatever instances are available there). So if you can post some performance specs that would be great....
    Oddly enough Adobe Sales does not even know the answer... I have heard rumors that high number of concurrent connections is not a really a feature that this product is developed towards.
    Thanks for you answers.

    I'd do some more research before commiting to EC2/S3 at all. I'd also confirm that comment about Wowza streaming from S3... I've never worked with it, but if you're streaming, chances are S3 is just storage, and you're actually streaming from EC2 (I don't think you can run an application on S3... but maybe I'm wrong there)
    The trouble is, regardless of the software, you're still in competition for bandwidth. There's only so much capacity at the network interface of each shared server, and if you happen to land on a busy server, you may find there isn't enough to go around. For stateless applications like HTTP request/response, that's fine, but for apps that require statefull client/server connections, bandwidth and latency issues can prove catastrophic.
    The biggest problem I have with running a streaming server on EC2 (virtualization issues aside), is that they won't disclose hardware or network specs. So, while you can be sure you'll have the memory and processor allocation, it's a crapshoot when it comes to disk time and bandwidth, as you have no real idea how many other instances you're sharing a server with, or what those other instances are doing in terms of bandwidth and disk usage.
    While I don't know any of the specs on the cloudfront service, I suspect those servers are load balanced in such a way that bandwidth is accounted for. In the general population EC2 servers, that's not the case.
    My advice... really research this before you make your deployment decisions. I've come to find that while scaling out is a bit more challenging, dedicated hardware and bandwidth isn't all that much more expensive than EC2, and when you go dedicated, you can actually count on your resources being available to you.

  • What is the maximum iviews can I create in Netweaver portal

    Hi ,
    Is there any limitation for creating iviews in netweaver EP. I have created about 100 KM Navigation iviews. Suddenly my system got crashed. whenever I try to restart it ..
    J2ee server is dying out. with status -2.
    when I checkced I got the error meesage something like this "VM Heap size is insifficient and increase the heap size"
    after checking , Limitation is 192MB which is already set there.
    THis is the value I have in my j2ee configuration(....\j2e\configtool\ume_config.xml)
    Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:UseParNewGC -Xms512M -Xmx512M -XX:MaxNewSize=85M -XX:NewSize=85M -XX:DisableExplicitGC -<b>XX:MaxPermSize=192M -XX:PermSize=192M</b> -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90">
    I am using EP6 SP9
    How to come out of this ?
    thanks
    pk

    Your heap size already is 512.
    Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:UseParNewGC <b>-Xms512M -Xmx512M</b> -XX:MaxNewSize=85M -XX:NewSize=85M -XX:DisableExplicitGC -XX:MaxPermSize=192M -XX:PermSize=192M -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90">
    This is very limited for a portal.  I would increase these values to 1024MB

  • What is universe ? how can we create report using universe ?

    Post Author: Lingaraj Patra
    CA Forum: General Feedback
    Hi,
    Please Let me know exactly the use of universe in report.
    i would like to create a report using universe in BO XI.
    Thanks.
    Lingaraj
    Mumbai, India

    Post Author: sugumar
    CA Forum: General Feedback
    hi
       Linga raj....universe is semantic layer between user and the data base .....its a business oriented mapping structure found in data base
    with regards
    sugumar.N

  • Can I create connection pool by oracle oci driver?

    Can I create connection pool by oracle oci driver?My weblogic's version is 6.1 sp2 and oracle is 9.0.1.2.
    I have some trouble with connection pool created by weblogic jDriver.
    I try to read Timestamp from table and I always get the exception.It told me that ORA-00932: inconsistent datatypes.
    So I created another pool by oracle thin driver and everything was right.Then I created other pool by oracle oci driver,but something were wrong. 'Could not create pool connection. The DBMS driver exception was:java.sql.SQLException: ORA-06401: NETCMN:Invalid driver designator'
    The oci pool's parameters are below lines.
    url: jdbc:oracle:oci:@COCO
    Driver Classname: oracle.jdbc.driver.OracleDriver
    Properties: user=scott;password=tiger;protocol=oci
    If I get connection directly,don't use connection pool,I can get right connection.But why didn't I create pool by oci driver?Maybe weblogic7 or weblogic8 will work good?

    Venkat Amirineni wrote:
    Hi Joe,
    I am also trying to create a connection pool using Oracle Oci XA. Weblogic
    type 2 oci threads hanging on native calls and suggested to go for thin drivers.
    But we want to try with Oracle Oci drivers.. Can you please tell us how to
    create a conn pool using Oracle Oci.. Just the driverclass and url is enough
    or need any classpath settings etc..
    Thanks in advance for your quick reply.Hi. As far as driver properties, just use what Oracle says to. Any pool properties
    that we recommend for XA would still apply. Note that Oracle themselves recommends
    the thin driver over their OCI one:
    http://download-west.oracle.com/docs/cd/B14117_01/java.101/b10979.pdf
    Joe

  • Pairing Garmin with BT: Can't create connection: Input/output error

    I'm learning how to use BT in linux.  I have a Garmin and a CE device that has bluetooth capability.  Both are in discovery mode.
    Running "hcitool cc [macaddr]" to pair the Garmin looks promising, the Garmin receives the, well, transaction (what's this called?), and says the passkey is 1234.  However, I press OK on the Garmin, and it shows a second message that the connection failed.  Looking at my PC, I see this in the terminal:
    Can't create connection: Input/output error
    What am I doing wrong?

    Check here. Also have you done a TimeMachine back up?
    http://support.apple.com/kb/TS2570

  • I can't create mi Apple ID and can't connect into iTunes Store HELP PLEASE NEW USER

    Hi, im new with this. I just got a new MacBook Pro 13" with IOs X Lion. Im having a big trouble with my apple ID. I cant create an ID. first was the credit card security code. Somebody told me to follow the instructions in this link to solve the problem ( iTunes Store: My credit card's security code or zip code does not match my bank's records ) but i cant even connect to Itunes Store. PLEASE I NEED SOME HELP URGENT!!
    P.D: I created an ID on apple page but it seems that doesnt work for nothing. I tried using that ID on both (Itunes an App Store) but doesnt work.

    First and foremost, I agree with gdgmacguy about using the support link. That is most likely your best bet. But, I have read posts from other users that had issues with their Apple ID that you must enter your address exactly like it appears on you credit card statement. Don't abbreviate "street" or "road" - things like that - unless that matches your statement exactly. Have you moved and maybe not changed your address on your credit card statement yet...??
    I am not saying that is the reason you can't create the ID, but it has been an issue for some. You could try what I suggest, but the support link is the best way to go if you can't get it accomplished on your own.
    here is the support link.
    http://www.apple.com/support/appleid/

  • I want to use wifi for Apple TV, but it doesn't prompt for a password, so never connects.  What am I missing?  Can I only use it via a non-password-protected wifi connection?

    I want to use wifi for Apple TV, but it doesn't prompt for a password, so never connects.  What am I missing?  Can I only use it via a non-password-protected wifi connection?

    Hi - you might want to post this question on the Apple TV area - you would probably get a quicker response - if you have a specific question relating to Apple routers then post back here

Maybe you are looking for

  • Is there a way to create a variable referenced to a prompt on the report side?

    Post Author: Martensa CA Forum: Desktop Intelligence Reporting First I am querying current and prior year on the query builder by two prompts that are asking for the current and prior year. Then I am creating a variable on the report side that pulls

  • Setting FAQ's in CRM

    Hi, i need a clarification on catalogs, i need to setup FAQ's in the system where i need to do it , what is the catalog codes codegroup, i need to classify the queries according to the catalog catagoery,codes&code groups, i am going to develop this i

  • Is CEP 5.2 backwards compatible with Photoshop CC 2014 / 2014.1 ?

    Hello all ! I saw adobe just released CEP 5.2 (http://blogs.adobe.com/cssdk/2014/10/introducing-cep-5-2-now-available.html) and I was wondering if I using the new CSInterface-5.2.js in my extension would break it if it is used in Photoshop CC 2014 /

  • HT201318 how to cancel an icloud upgrade within 15 days

    I've recently bought an icloud upgrade but now I dont need it. I know I can contact apple for a full refund within 15days of purchase but whats the best way to do this online?

  • 2 things with the Zen Microph

    . Will the Zen Wired Remote - http://www.creative.com/products/pro...y=27&product=2 - work with the ZMP? And I'm curious how it works. In the picture it looks like it only connects to the Headphone jack. How can it send play/pause/next etc signals th