Oracle TCA different customer address based on Purpose

Hello Everyone,
We have the following requirement:
A customer has a bill-to, ship-to addresses.
In addition to that, we need to capture additional information for the purpose 'Install At'.
But the information that we need to capture for 'Install At' purpose is different from the Ship-to or bill-to address structure.
So my question is, can we have a different address style based on the Purpose?
As per my analysis, it looks like we can only have 1 address style? Because even when i attach a different style to another country, when i select that country during customer site address creation, i still see the address style that is for the original country of installation.
Any ideas how can i achieve my requirement.
Regards,
Jay

http://download.oracle.com/docs/cd/B16981_04/current/acrobat/115hztig.pdf
Plz refer.

Similar Messages

  • TCA multibyte Customer Addresses

    We have a requirement to store addresses and customer names in local languages (including multibyte languages) in our 11i implementation.
    Business in various countries will be conducted/transacted in their local language (ie order entry, invoicing, etc) by people who do not read English.
    However, for some of our products, the items have to ship from a different country and in those cases we have to be able to have those addresses in English.
    One proposal is to store the multibyte addresses in DFF fields and have the English translations in the standard Oracle address fields. The problem we're having with this idea is that the people in the local countries don't speak English, and won't be able to look up addresses in their local language as the DFF fields are not searchable (in the iStore for example).
    Another idea is to store the multibyte address in the standard Oracle address fields, and to store the English translations in DFF fields, but then we'll have to modify the shipping/fulfilment forms to be able to access the DFF fields.
    Is there a standard way to handle/store and transact business in multiple languages that will allow local users to conduct business in their local language, but then easily be able to access and transact (ie shipping labels) in English?

    Welcome to the forums !
    EBS 11i is capable of supporting multiple languages. The base language (usually English) is defined at install time. Other languages can be enabled at any time. Users can choose (via preferences) the language they want to interact in the EBS with. The app has the capability to store data in English and other enabled languages. Oracle provides translations for seed data - customers need to provide translations for any customer entered data.
    Pl see these MOS Docs
    333785.1 - Oracle Applications 11i Internationalization Guide
    177183.1 - Succesfully Installing NLS/MLS in 11i
    399789.1 - NLS Frequently Asked Questions
    222663.1 - Internationalization Update Notes for Oracle E-Business Suite 11i
    HTH
    Srini

  • Email invoice to different addresses based on company code

    Running 4.7 and want to send invoice via email to different customer email addresses depending on the company code of the billing document.  Currently, configured to send invoice to bill-to party in header of billing doc.  Still using modified version of RVADIN01 & Sapscript.
    Has anyone done this?  Can I overide the email address in the abap and if so, how?

    Hi,
    you have to have call of FM OPEN_FORM in your modified version of RVADIN01. This FM has input parameter MAIL_RECIPIENT. So you just need to find correct spot where you can change value of this field to correct email address.
    Cheers

  • HT1206 my mom somehow ended up with totally different iTunes accounts, based on an old (dead) email address and a newer one as well. She's bought a lot of music on both accounts over time... is there some way to merge the old account into her newer one?

    my mom somehow ended up with two totally different iTunes accounts, based on an old (dead) email address and a newer one as well. She's bought a lot of music on both accounts over time... is there some way to merge the old account into her newer one?

    No. If one of those accounts is inaccessible, click here and request assistance.
    (82012)

  • Custom plugin based on user role membership

    Hi all,
    I would like to develope a custom plugin that generates account userid (on process form) with different syntax against role membership.
    With "syntax" I mean name.surname.random_number for employee users and surname.company.random_number for example.
    I'll try to explain the scenario more in details:
    1. I create a user identity through a request
    2. After user identity has created successfully, I assign a role to the user. Since roles are associated with access policies, role assignment triggers provisioning on target system.
    3. The custom plugin that I would like to develope shuold be able to generate proper userid against role membership. For example if I assigned the role "Project Manager" the custom plugin should generate the account userid with name.surname.random_number format; viceversa if I assigned the role "External Reseller" the custom plugin should generate the account userid with surname.company.random_number format.
    Looking for custom plugin based on role membership in forum, I found a couple of threads about this subject:
    - Email notifications after role grant
    - Re: OIM 11g Role Membership Event Handlers.
    I tried to implement what explained in the threads, but I would be sure about what I've done.
    Here what I've done:
    1. created plugin.xml file
    2. created EventHandler.xml metadata file
    3. developed a java calss for testing pourpose
    4. copied the custom plugin class to OIM server for example in $MIDDLEWARE_HOME/OIMPlugins/lib
    NOTE: during this operation I have exactly mantained the same directory structure of custom java package.
    For example custom plugin class is under my.custom.plugin java package and I have copied custom java class under $MIDDLEWARE_HOME/OIMPlugins/lib/my/custom/plugin folder
    5. created a zip file containing custom plugin class (always with its directory structure) and plugin.xml file
    6. copied the zip file to $OIM_HOME/server/plugins
    7. edited ant.properties file (under $OIM_HOME/server/plugin_utility) setting wls.home and oim.home variables
    8. built the wlfullclient.jar (only the first time)
    9. registered the custom plugin
    10. created the custom plugin dataset file
    11. imported it in OIM database using "weblogicImportMetadata" utility
    12. purged cache using "PurgeCache" utility
    NOTE: all the steps above was executed using the system user running OIM process
    test java class
    package com.zeropiu.sky.custom.eventhandlers;
    import java.io.Serializable;
    import java.util.HashMap;
    import com.thortech.util.logging.Logger;
    import oracle.iam.platform.kernel.spi.ConditionalEventHandler;
    import oracle.iam.platform.kernel.spi.PostProcessHandler;
    import oracle.iam.platform.kernel.vo.AbstractGenericOrchestration;
    import oracle.iam.platform.kernel.vo.BulkEventResult;
    import oracle.iam.platform.kernel.vo.BulkOrchestration;
    import oracle.iam.platform.kernel.vo.EventResult;
    import oracle.iam.platform.kernel.vo.Orchestration;
    import oracle.iam.platform.context.ContextManager;
    import java.util.Set;
    public class TestUserAnonimi implements PostProcessHandler, ConditionalEventHandler {
         private static final Logger logger = Logger.getLogger("com.zeropiu.sky.custom.eventhandlers");
    private static final String className = "TestUserAnonimi";
         @Override
         public void initialize(HashMap<String, String> arg0) {
              // TODO Auto-generated method stub
              String methodName = "initialize";
              System.out.println("###### " + className + " - " + methodName);
         @Override
         public boolean isApplicable(AbstractGenericOrchestration abstractGenericOrchestration) {
              // TODO Auto-generated method stub
              String methodName = "isApplicable";
    System.out.println("###### " + className + " - " + methodName + " - STARTED");
    System.out.println("###### " + className + " - " + methodName + " - ContextManager.getContextType(): " + ContextManager.getContextType());
    System.out.println("###### " + className + " - " + methodName + " - ContextManager.getContextSubType(): " + ContextManager.getContextSubType());
    System.out.println("###### " + className + " - " + methodName + " - abstractGenericOrchestration.getOperation(): " + abstractGenericOrchestration.getOperation());
    System.out.println("###### " + className + " - " + methodName + " - Printing ContextManager parameters");
    HashMap allContextManagerPairs = ContextManager.getAllValuesFromCurrentContext();
    Set<String> allContextManagerParams = allContextManagerPairs.keySet();
    String[] parameters = allContextManagerParams.toArray(new String[allContextManagerParams.size()]);
    for (int i = 0; i < parameters.length; i++) {
              System.out.println("###### " + className + " - " + methodName + " - Context parameter " + i + ": " + parameters[i] + " - Object type is: " + Utils.getObjectType(ContextManager.getValue(parameters)));
    System.out.println("###### " + className + " - " + methodName + " - ENDED");
    return true;
         @Override
         public boolean cancel(long arg0, long arg1,     AbstractGenericOrchestration arg2) {
              // TODO Auto-generated method stub
              String methodName = "cancel";
              System.out.println("###### " + className + " - " + methodName);
              return false;
         @Override
         public void compensate(long arg0, long arg1, AbstractGenericOrchestration arg2) {
              // TODO Auto-generated method stub
              String methodName = "compensate";
              System.out.println("###### " + className + " - " + methodName);
         @Override
         public EventResult execute(long arg0, long arg1, Orchestration orchestration) {
              // TODO Auto-generated method stub
              String methodName = "Eventresult execute";
              System.out.println("###### " + className + " - " + methodName);
              return null;
         @Override
         public BulkEventResult execute(long arg0, long arg1, BulkOrchestration arg2) {
              // TODO Auto-generated method stub
              String methodName = "BulkEventResult execute";
              System.out.println("###### " + className + " - " + methodName);
              return null;
    plugin.xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <oimplugins xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
    <plugin pluginclass="com.zeropiu.sky.custom.eventhandlers.TestUserAnonimi" version="1.0" name="TestUserAnonimi">
    </plugin>
    </plugins>
    </oimplugins>
    EventHandler.xml metadata file
    <?xml version='1.0' encoding='UTF-8'?>
    <eventhandlers xmlns="http://www.oracle.com/schema/oim/platform/kernel" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oracle.com/schema/oim/platform/kernel orchestration-handlers.xsd">
    <action-handler class="com.zeropiu.sky.custom.eventhandlers.TestUserAnonimi" entity-type="RoleUser" operation="CREATE" name="TestUserAnonimi" stage="preprocess" order="1007" sync="FALSE" />
    </eventhandlers>When I assign a role to a user through OIM web interface, I can see in OIM log file all System.out.println contained in initialize(), isApplicable() and BulkEventResult execute() methods. Is it correct? Can I implement my custom plugin logic now, or my starting point is wrong?
    ###### TestUserAnonimi - initialize
    ###### TestUserAnonimi - isApplicable - STARTED
    ###### TestUserAnonimi - isApplicable - ContextManager.getContextType(): ADMIN
    ###### TestUserAnonimi - isApplicable - ContextManager.getContextSubType():
    ###### TestUserAnonimi - isApplicable - abstractGenericOrchestration.getOperation(): CREATE
    ###### TestUserAnonimi - isApplicable - Printing ContextManager parameters
    ###### TestUserAnonimi - isApplicable - Context parameter 0: origuser - Object type is: java.lang.String
    ###### TestUserAnonimi - isApplicable - Context parameter 1: oimuser - Object type is: java.lang.String
    ###### TestUserAnonimi - isApplicable - Context parameter 2: RESOLVED_LOCALE - Object type is: java.lang.String
    ###### TestUserAnonimi - isApplicable - Context parameter 3: counter - Object type is: java.lang.String
    ###### TestUserAnonimi - isApplicable - Context parameter 4: TIME_ZONE - Object type is: java.lang.String
    ###### TestUserAnonimi - isApplicable - Context parameter 5: ipaddress - Object type is: java.lang.String
    ###### TestUserAnonimi - isApplicable - ENDED
    ##### TestUserAnonimi - BulkEventResult execute
    Thanks,
    Daniele
    Edited by: 886636 on Jan 24, 2012 2:53 AM
    Edited by: 886636 on Jan 24, 2012 2:53 AM

    Probably I don't explain myself clearly....sorry for that!
    Anyway you are right, the role of the user can change after the user is initially provisioned.
    I'll try to summarize to be sure to have understood your answer and to explain my scenario more in details:
    1. After user identity creation, I'll assign the role "Project Manager". Before role assignment the user has not any role. So using a pre-populate adapter I can retrieve the assigned role and compose the right userid.
    2. After step 1, I need to assign another role to the user, the new role should be "External Reseller" for example. In this case the user has a role already. What I would is: basing on the role that I'm assigning (External Reseller), the pre-populate should compose the right userid. Obviously this second userid will be different from the first one and this means a new account will be created for the user. At the moment I don't care to deprovisioning the first userid.
    Is it possible with pre-populate adapter?
    Sorry again for my not very clear explanations.
    Daniele
    Edited by: 886636 on Jan 24, 2012 4:10 AM

  • Customers and customer addresses Conversion

    Can any help regarding basetables,interface tables and standard import program and how to approach to do the Customers and customer addresses Conversion
    Thanks In Advance

    Use the TCA API,
    for more info go to irep.oracle.com

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

  • Please tell me a BAPI to get Closing balance of customer account based on Sales Organization?

    Hi Experts,
    A requirement has come up where I want to get Customer closing balance based on its sales organization as this particular customer is extented to 2 different sales organizations. I want to get the closing balance of individual sales organization vise.
    Please tell me a BAPI to get Closing balance of customer account based on Sales Organization?

    AFAIK there is no such BAPI, cause there is no database table with balance for customer per sales organisation. (No KNCx table for VKORG)
    First ask functionals (*) how to recover sales organisation from a FI document (I suppose for SD invoice it is easy if no merging between organisation) will be a little tricker for pure FI document like payment transactions (hope thet are quickly cleared...)  Then start from non cleared records of BSID (also BSAD if you use a past date of reference, in case you have to add the records of BSAD with clearing date greater than reference date) and cross it with SD information to break FI into sales organisation.
    Regards,
    Raymond
    (*) Ask for where do they store VKORG in FI documents

  • 1 line item in the sales order ship to different shipping address

    Hi,
    Our customer A have 3 different branches (meaning 3 different shipping address).
    During the creation of the sales order for 1 material A, I want to ship 50pc to this customer A:
    10pc to address A1
    20pc to address A2
    20pc to address A3
    In my sales order, is there a way I just create 1 line item with the order qty 50pc for this material A, but split into 3 schedule line with 3 different ship to address?
    I know there is alternate way where I create 3 different line item (with order qty 10, 20 and 20) and change the ship to address in the Item -> Partner tab. But using this method, I have to create 3 times of the same material in 1 sales order, just with the different shipping address.
    I want to know is there a way I just need to create 1 line item?
    Kindly please advise. Thank you.

    Hi there,
    When you have 3 different ship-to address, system will anyway create 3 different deliveries. This is coz if the header data in shipping (ship-to) is different, system will split the deliveries. Routes are different to 3 ship-to addresses & they cannot be combined in the same delivery.
    So as mentioned in above thread, create 3 different line items or create different sales orders all together for different ship-to parties.
    Regards,
    Sivanand

  • I forgot my security questions and I have a different email address but it's not updated to my Apple ID how can I change my security setting and how to rescue my Apple ID?

    I forgot my security questions and I have a different email address but it's not updated to my Apple ID how can I change my security setting and how to rescue my Apple ID?

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • TC with 6 different IP addresses

    Hi,
    I am subscribed to a business DSL package and so I have been given 6 static IP addresses. I would like to assign these amongst the machines on my home network (2 Macs and 1 XBox 360) so that each device has a separate IP address. I'm doing this to avoid the hassles that come with NAT.
    As I understand it, each time a PPP connection is started, a new IP address is given out to the client computer. Therefore, it sounds like I need to:
    a) Put both my DSL modem and my router in bridge mode
    b) Connect my two computers via Wi-Fi (they're in different rooms) to my router and hook my XBox 360 up using a standard Ethernet cable.
    c) Configure both computers and the XBox to connect via PPPoE. (Is this even possible over Airport?)
    I guess this would mean that my TC won't be connected itself to the internet, but I can live with that. Would my computers still be able to connect to the Time Capsule drive via Wi-Fi, though? Because otherwise, my backups stop working.
    I see that there's also an option for the TC to give out different IP addresses in the same subnet as it's in, but does that help me with what I'm trying to do?
    Thanks,
    - Anthony

    MrHoffman wrote:
    Where? There are various spots to [learn about Mac OS X Server|http://www.apple.com/server/macosx/resources/documentation.html]. For this case, in [the web administration manual|http://images.apple.com/server/macosx/docs/WebTech_Adminv10.6.pdf], certainly. Or the "Managing Multiple Sites on One Server" in the Web section of the Server Admin help file. Via Google, of course. Or [something here|http://labs.hoffmanlabs.com/node/1329]? The underpinnings of this environment are Apache, and you can learn about the pieces underneath Server Admin (and what Apple calls "sites") at the [Apache web site|http://www.apache.org], and in various Apache books.
    I found the Apple's web administration manual you referenced contains numerous inaccuracies that it makes it difficult to use. For example, on page 35 is says:
    +To create a website:+
    +1. Open Server Admin and connect to the server.+
    +2. Click the triangle at the left of the server.+
    +3. The list of services appears.+
    +4. From the expanded Servers list, select Web.+
    +5. Click Sites, then click the Add (plus) button to add a site.+
    The problem is there is you cannot ad a site from Server Admin, and it actually should be Server Preferences. Server 10.6 has a tab called Custom Sites, and there is no reference to it in the web administration manual. When I add a custom site, which I think is a second website in addition to the one that the server hosts, it asks about IP address and port (80 as a default). the IP address has an option "Any" and "10.0.1.5". I tried both and none of them works.
    I will try to research more, but if you have any suggestion on how to setup a second website (domain name) correctly, please respond.

  • ADRMAS IDoc for customer address

    Hi,
    I am trying to send the customer address information via ALE. We are using a custom message type (ZDEBMAS) to send the customer data. I am aware that additional address information can be sent using ADRMAS. However, this message type is linked to a BAPI and I am unable to trigger the IDoc. I have activated the change pointers for ADR2MAS, ADR3MAS & ADRMAS as suggested in previous posts. I have also added the BAPI in the Model view with Object type  - BUS4001 and Method  -            SAVEREPLICA. Partner profiles have been generated as well.
    Can anyone guide me as to what I am missing? Any help is greatly appreciated.
    Thanks!
    Sheetal

    Hey,
    I think there are two possible problems:
    1. Please log in to XI system,
    check in transaction IDX1,
    which RFC destination is used for the system SAPR3D.
    than test this RFC destination in transaction SM59.
    2. Please check (via transaction WE30) that the IDOC in the ECC 6.0
    have the same fields as the IDOC in 4.6C.
    If they have different fields, than you must change the field "version" of channel of the 4.6c system (in the Integration builder configuration).

  • Changed source address based on destination IP

    Hello,
    Suppose I had the following configuration in an IOS router
    interface <interface type/number>
     ip address 1.1.1.3 255.255.255.0 secondary
     ip address 1.1.1.2 255.255.255.0
    ip route 0.0.0.0 0.0.0.0 1.1.1.1
    access-list standard INTERNET_BOUND_ACL
     permit <lan subnet-id> <lan wildcard>
    ip nat inside source list INTERNET_BOUND_ACL interface <interface type/number> overload
    I need to change the source inside global IP address based on the destination outside global IP address.
    Example: I need our source IP to be 1.1.1.3 when I ping 8.8.8.8
    How would i accomplish this?

    Hi,
    You would need to use two NAT pools and two different ACLs to separate your internal clients depending on the destination they want to communicate with, and to subsequently NAT them using a selected NAT pool. For example:
    ip access-list extended NAT_2
      permit ip <LAN Network> <Wildcard> <DestinationX> <WildcardX>
    ip access-list extended NAT_3
      permit ip <LAN Network> <Wildcard> <DestinationY> <WildcardY>
    ip nat pool NATPOOL_2 1.1.1.2 1.1.1.2 netmask 255.255.255.0
    ip nat pool NATPOOL_3 1.1.1.3 1.1.1.3 netmask 255.255.255.0
    ip nat inside source list NAT_2 pool NATPOOL_2 overload
    ip nat inside source list NAT_3 pool NATPOOL_3 overload
    Exactly one of the ACLs should actually contain an entry saying
    permit ip <LAN Network> <Wildcard> any
    to make sure that the internal network gets translated to some of the two public addresses even if itt does not communicate with any specific destination IP.
    Do you believe this could be a workable solution for you?
    Best regards,
    Peter

  • IDoc ORDERS01 with different shipping addresses

    Hi,
    we are using IDOC ORDERS01 to create customer orders in the ERP. Which is working fine as long as we are using just a partner number as ship-to-partner in the IDoc. Now it should be possible to also use different ship-to-partner addresses. So the idea was to use the same partner number for the ship-to-partner as before but add the different ship-to-partner address in the corresponding IDoc fields (IDoc segment E1EDKA1 for PARVW = WE). Which is also working fine except for the house number. Street name and house number are put together in IDoc field E1EDKA1-STRAS. And they also stay together in the street field of the resulting ERP sales order. But the address structure (for example in the partner deatails of the sales order) uses an own field for the house number. This field is not set with the house number from the street field in the ORDERS01 IDoc but with the house number of the default address of the used ship-to-partner number. Which means that the street line for the ship-to-partner has a street name and two house numbers which is of course not what we want to be displayed in sales orders. So how can we make the right house number from the ORDERS01 IDoc the one and only house number in the sales order? How can we overwrite the default house number of the default ship-to-partner address with the house number of the different shipping address from the ORDERS01 IDoc?
    Regards,
    Robert

    Hello Robert
    Check out the following OSS notes:
    1457805 - Fields not populating on inbound order through idocs.
    618476 - EDI: Field HAUSN is not filled- This is for older release and for INVOIC01, but may be you can borrow and develop the concept for   ORDERS01.
    Also did you consider leaving House Number blank in the customer master, i.e.
    in the street/house Number Filed, maintain like this:
    6201 W IMPERIAL HWY/ blank
    but not as
    W IMPERIAL HWY/6201
    That's how these fields are populated in my system.
    Hope this helps. Let me know.

  • Adding New Customer Address to an Existing one

    Adding New Customer Address to an Existing one
    Hi
    We have a lot customers set up in Oracle and they only have a
    ship to address and now we would like to add the bill to address
    to these customers. Since there are a lot of customers I was
    wondering is there is an open interface we can use to that.
    Thank you
    alpha

    Hi Chandu,
    1.In Infospoke -> General tab -> DataSouce(here infobject - 0BPARTNER).
    2.  Destination tab -> choose radio button(DB Table or Flat file).
    3. Goto tab infoobjects -> select required fields you want to send from left to right.
    4. Give the selection accordingly(here i think PATRNER). But it should be available in your datasouce(Infoobject-0BPARTNER), if you want to give selection on this. I didnt understad what you mean of <b>"hide"</b> in your previous reply. If this is not available in your infoobject(OBPARTNER), How CAN YOU GIVE SELECTION ON THIS attribute...?
    5. Try to add this field in Infoobject(0BPARTNER) and populate.
    6. Trnasformation tab.
       Here you can see Source Structure, Target Structure and Addin implementation.
    Source Structure - system will generate according to the field you selected in InfoObjects tab(You cant change it).
    Target Structure - You can define your own structure if you want or you can modify the generated structure. By default system generates Target Structure same as Source structure(if you want to add any more fields you can add here, but you have to populate those fields with your own coding in BAdi), Which is Addin implementation.
    Srini
    Message was edited by: Srini

Maybe you are looking for

  • Voicemail issue since i did upgrade

    voicemail issue since i did upgrade

  • Creation of reports from Grid control 12c

    Hi All, I wish to create some reports from Grid Control and push to mail especially looking for Daily Health Check report like Tablespace,Locks,Alertlog file errors,File systems,Archivelog files sync information in to one report. Thanks in advance.

  • 3rd largest value in internal table

    How to find the third largest value in internal table. please give me logic without using sort statement? and how to find the 3rd largest value with using sort on internal table. please give the both logic separately? <REMOVED BY MODERATOR> Edited by

  • Graphical Oracle Client for Linux

    Hello, I'm used to work with pl/SQL Peveloper at work but at home I use linux. I wonder if there is a similar powerfull graphical client for oracle that runs on linux. I need at last the following features: -view/edit data in tables -create/test view

  • May the iPhone 5 be coming to Metro PCs?

    I know that Metro Pcs was interested in getting the iPhone 5 IF it was an LTE which know, confirmed, is. So, does this mean that the iPhone might be available to Metro or will i have to pay more to buy the unlocked version to flash it?