International customer - registration

Hi
I am international customer , brought Motorola Droid razr from US and want to use in India but unable to register Verizon account. Please guide how I can register Verizon account and use Verizon services globally.
Regards

1

Similar Messages

  • How to create an Internal Customer  for Ineterplant stock Transfer

    Daer Gurus,
    Please tell me how to create an Internal Customer for Interplant stock transfer.
    Actually I have three plants out of them two plants are providing goods to third plant. Also both the plants do the stock transfer in eachother.
    How to maintain the Two plants as supplier and third one as a receiver plant. 
    which account group I should use and what details I have to use for it ?  Do I need to maintain all three plants under same account group? I know the theoratical process only for stock transfer please guide me on this Internal customer issue.
    thanks in advance
    regards,
    Sanjay

    Hi,
    Take your three plants as AAAA, BBBB and CCCC.... and these 3 plants may be assigned to the Sales Area of AAA 10 10, BBB 10 10 and CCC 10 10.
    Your STO will have following 4 flows.
    1. AAAA - CCCC
    2. AAAA - BBBB
    3. BBBB- CCCC
    4. BBBB- AAAA
    you need to do the following settings...
    1. Assign the Sales Area for the Shipping Plants... for ex (AAAA - AAA 10 10 and BBBB - BBB 10 10)
    2. You need to Create a Internal Customer for every Rec. Plant and need to assign the same to the Rec Plant. And Also note that this customer needs to be created in the Sales Area which is assigned in the Shipping Plant.
    (Note that CCCC will be Rec Plant from Both AAAA and BBBB... So you need to extend that customer for both the Sales Area of the plants AAAA and BBBB)
    Following is the example settings required for our scenario 1.
    AAAA will be a supplying plant and CCCC will be rec. plant....  for this you need to create a internal Customer (for ex C1000) in Sales area AAA 10 10 (which is assigned to the plant AAAA) and assign the Customer number (C1000) to Plant CCCC.
    Now you created a plant CCCC as a customer in Sales Area AAA 10 10 (which is nothing but plant AAAA)...
    Also here you need assign the Sales Area AAA 10 10 to the Plant AAAA.
    Hope this will be useful to you.
    Thanks,
    Muthu

  • Plant as a internal customer creation

    how to create a plant as a internal customer, this is for sto and i want to know the steps in a sequential order, this would be great to appreciate you all
    thank u

    Hello,
    Create a customer in the Delivering Plant / Sales Area and assign it to the ordering Sales org. This customer will act as internal customer.
    This customer needs to be assigned to the ordering plant through SPRO --> IMG --> Materials Management --> Purchasing --> Purchase order --> setup Stock transport order
    --> Define Shipping data for plants.
    Select the ordering plant and assign the customer.
    Prase

  • Inter company  -internal customer assignmnet

    hi  all,
    i have created two company codes for inter company billing, the ordering company code is 2345, wth s.o 2345,d.c 23 & dv 45 ,plant 2345 .The supplying plant : abcd , S.O abcd , d.c aa & dv cd .
    can any one help me out in " Define internal customer no by sales orgn " hw excatly the customer has 2b defined to which sales area & company code .

    Hi jerry
    Internal customer is the inter company customer .
    this inter company customer is created in the delivering plant sales area and it has to be extended to ordering plant sales area
    in your case delivering plant sales area is abcd / aa / cd
    so customer should be created in the abcd / aa / cd and he  to be extended to  ordering plant sales area 2345 / 23 /45
    company code should be different as you are doing inter company billing
    This internal customer must be assigned in the ordering plant
    Regards
    Srinath
    Edited by: sri nath on Apr 21, 2008 11:39 PM

  • Internal customer creation for interplant stock transfer

    hi all,
    i just want to know which is the account group I can use for the internal customer.
    and in that customer grp do I need to feel the dummy customer details like usual cust details ?  or what elase?
    will the only one customer be ok for two different receiving plants?
    In MM> Purchasing> Purchase Ord --> Define shipping data for plant
    we have different plant entries there if we go for details of plant we can see the customer number and the sales area here i cant understand that what customer we have to assign, that internal customer ? which Sales Area, same of a internal customer ???
    can we maintain the different combinations like supplier plant becoming the delivering plant and vice a versa.
    Please guide me on above query.
    regards,
    Sanjay

    Hi,
    1. There is nothing about the Customer Account Group for Internal Customer... You may use the Standard Sold to Party account group for the same... But the best practice will be a different account group with different number range... this will be helpful to understand that this is internal customer when doing transactions... here you can also leave the non required fields....
    if you use the Same Sold to party... its better to maintain different Customer Group for the internal customers...
    2.  what customer we have to assign, that internal customer ?  Yes That Internal Customer only... that means that whenever you create a delivery for this customer... the delivery will reach this Plant....
    This internal customer number is assigned to the plants which will a receving plant in STO...
    But the Sales Area here requires for Shipping Plant and not for recieving plant... This Sales Area is assigned to create delivery and Billing during the STO for this plant whenever the same is used a shipping plant... so this will not be same internal customer's sales area... but one of the sales area responsible for this plant....
    Hope this helps to you...
    Thanks,
    Muthu

  • Customer registration form won't display in testing environment.

    Hi everyone,
    I am using DWCS3 with the free version of MAMP.
    I have put a customer registration form together and have just started to add the php $mailSent code.
    In design view everything seems to be o.k the three gold shields are displayed at the top of my page.
    However when I try to view the page in my local testing environment, the page doesn't display at all I just get a white screen. I was also getting an error message suggesting my site url's weren't mapped properly, or, my server wasn't serving pages with a .php extension.
    I checked my datetest page and that is displaying today's date, I also checked my phpinfo page and that is also displaying.
    I also checked that my site url's are mapped properly, I would say they are because my other site pages e.g. index page, links page, about page ect are opening up in my testing browser.
    I have added my code for anyone to take a look at;
    the 1st block of code I added at the top of the document before the <!DOCTYPE> (suggested in The Essential Guide to Dreamweaver CS3)
    the 2nd block of code is added just after the page's main heading.
    the 3rd line of code is added to the form action in the opening form tag.
    Could someone please help, as I am stumped.
    Thankyou.
    <?php
    if (array_key_exists('send', $_POST)) {
    //mail processing script
    $to = '[email protected]';
    $subject = 'Customer Registration from HLPhotography';
    //process the $_POST variables
    $name = $_POST['name'];
    $email = $_POST['email'];
    $postcode = $_POST['postcode'];
    //build the message
    $message = "Name: $name\n\n";
    $message .= "Email: $email\n\n";
    $message .= "Postcode: $postcode";
    //limit line length to 70 characters
    $message = wordwrap($message, 70);
    //send it
    $mailSent = mail($to, $subject, $message);
    ?>
       <?php
    if ($_POST && !$mailSent) {
    ?>
        <p class="warning">Sorry there was a problem sending your message, please try later.</p>
        <?php
    elseif ($_POST && $mailSent) {
    ?>
        <p><strong>Your message has been sent thankyou for registering your details.
        </strong></p>
        <?php } ?>
    <form id="formcusrg" name="formcusrg" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?">

    Sorry, I can't help with your question, I'm not a php guru  :-)   but you may want to edit out that email address if it's a live one - it will get hit by the bots if left here too long !
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • Custom registration form

    Hi,
    Can anyone please help me with the following?
    I need to build a class registration form for my client.
    Classes broken-down on: private sessions and group sessions, so 2 different prices for each class.
    Group pricing starts at 3 people and more but up to 15 people per class.
    There is a discount for the person who brings his/her own board to the class. So let’s say there is a group of 3 people and 2 of them have a board then there is a $5.00 discount for each board, in this case equals $10.00 off.
    What is the best way to create such form?
    I saw http://css-tricks.com/examples/DynamicOrderForm as a possible solution, a great start but it doesn't have everything that I need. Also http://dabrook.org/examples/cdia/javascript/05/form.html had some help but if anyone has a more complete approaches for a jquery newbie would be greatly appreciated.
    Also, how to tie this custom registration form to the BC platform.
    Thank you.
    Lana

    Thank you,
    using this method would the Capacity: ...(....% booked) change accordingly. Let's say someone booked 7 seats and the total available is 14 would it show for the next person 50% booked?
    Thanks,
    Lana

  • Customer registration form using Webdynpro

    i want to make a customer registration form in webdynpro.
    which stores customer details in DDIC and i want to retrive the details using his registration number.
    help needed..

    1

  • Intercompany/STO/internal customer

    hi
    any body can tell about the internal customer no detail?
    bye
    srikanth

    Hi,
    Yes you are right, you have to create internal customer in US Comp code / Sales org /Plant but with country Canada.
    It means you have to create internal customer in delivering sales area.The country of Internal customer is same as Ordering Party Sales Organization, in your case it is Canada.
    Thanks & regards,
    PM

  • SAP eRecruitment - Internal Candidate registration

    Hi,
    Is it possible to provide registration functionality for Internal candidates, similar to what the external candidates have ?
    Thanks.

    Thanks Sebastian.
    I was wondering in case we create a custom application, will we be able to handle things like the application flow from the registration page to the standard personal pages for Internal candidates as soon as they register, and also the user switch from unregistered to registered user.

  • Internal Customer Name vs. External Customer Name

    Is there somewhere in Customer Master information where I can store an internally used customer name vs the actual shipping name/invoicing name?
    We have customers that do not want their official name on shipping labels because the boxes will get stolen based on the name of thier company.  So we want to have the official name in our system to search on and work with, but ship with some abbreviation or alias. 
    Example:
    Internal Name: Jim Smith's Fine Jewelery Shop  (the real name)
    External/Shipping Name: JSFJS Inc  (alias to hide the shipped contents)

    Hi Brian,
    I do not know if somebody already helped you on your question or you did, but here is a possible solution.
    You can solve this problem by comple the NAME 1 field when you create your customer with the "real name" of the customer, and in NAME 2 with the "alias" name.
    Then when you define your shipping and invoice documents, you must take the name of your customer from NAME 2 in the form.
    Hope this may helps.
    kindly regards!
    Bea.

  • Error in 3rd party dropship for international customer

    Hi All,
    Presntly we have a scenario in our rollout project for 3rd party drop ship.
    Sales organization/company code belongs to :- Japan
    Customer belongs to  :-  Indonesia
    Vendor belongs to  :-  Malasyia
    While saving the sales order with item category TAS material, we are getting the error "SPECIFY THE EXPORT DATA IN MATERIAL MASTER. LICENSE STATUS IS NOT OK"
    Please let me know how the error can be solved or any document available.
    Regards
    Phani

    In VA03,for the sales order, go to menu Extras->export control->log.
    Double click on the line that shows the red indicator. The system will display for which legal regulation the license is missing. You can find the legal regulation in the material master-> Foreign trade;export or import data tab-> by clicking legal control button.
    Use t.code VX01N/VX02N to maintain the license data for the customer/material. This will resolve the issue.
    Regards,

  • Customer registration problems (S10) ** help

    I have difficulties to registration my S10 in http://consumersupport.lenovo.com/lenovo/registration/index.aspx, the asterix (*) in the end of column show in email column.
    Is my email address cant accepted or what?
    Thanks
    Message Edited by roykoe on 10-11-2008 05:51 AM

    1

  • International customer question.

    Hello everyone,
    I’m planning to visit New York City (I am from Greece) in July, I will buy a MacBook Pro from the 5th Avenue Store. My question is about the Mac OS X Snow Leopard Up-to-Date Program, from the internet site I read:
    “If you purchased a qualifying Mac or Xserve on or after June 8, 2009, that does not include Mac OS X Snow Leopard, you can upgrade to Mac OS X Snow Leopard for $9.95.*,
    (*Covers product plus shipping and handling fee. U.S. customers add appropriate sales tax.)”
    Please inform me about this option for Non U.S. customers.
    Thanks,
    Andy.

    Hi Andy,
    Up-To-Date programs as well as Mac OS X upgrades in general, usually function on a worldwide basis, the same everywhere at the exact same time and the same (equivalent) price too
    (and this includes shipping price which should be zero usually).
    So I wouldn't worry too much about your concern,
    as long as you register your new MacBook Pro and duly keep your proof of purchase (bill) when you buy it.
    When it's time to Up-To-Date program
    (same time in the US, in Greece and everywhere else)
    then you'll have to fill the appropriate online form and enter your registration date, serial number etc.
    Only thing I'd personally be careful to do if I were you:
    Get a wireless internet connection, in your hotel or somewhere in New York, and set your MacBook Pro there so you can register it when you buy it, just to make sure.
    You might be able to do that also in the Store?
    Enjoy your new Mac,
    and your trip to New York!

  • International customer

    Hi. I will be in Washington DC during December, and I was planning to buy an iPhone 5 there. As I understood, the Verizon one can be used internationally, and this is actually the model I need for it to work with the LTE that I have in my country. I was wondering if I could buy the iPhone at full price without a plan, and if yes, what are the methods of payments there? Do you only accept American credit cards or all major international credit cards? I have a VISA card.

    You can buy the phone full price without a contract, pending the availability when you get here.  Availability is somewhat tight now, but it may be better by the time you get here. 
    I don't know if there are any restrictions on international credit cards.

Maybe you are looking for

  • BIEE and BI Publisher standalone

    Hi, I am new to BI, I went through OBE for BIEE and BI Publisher. I have installed BIEE (and BI publisher desktop) successfully, when I launch BI Publisher shipped with BIEE, I dont get admin tab and thus account tab in preferences. Moreover, no opti

  • Sending data tablenode to excel sheet

    Hi, Can u please tell the step by step procedure for SENDING THE DATA FROM WDTABLENODE TO EXCEL SHEET and send me a related docs Thanks.

  • How to create a new BPEL Domain

    Hi, Need a huge favor... thanks in advance.. Database - 10.2.0.2.0 BPEL (SOA Suite) -- 10.1.3.0 a) Installation went fine b) Able to use the software using the url provided at the end of installtion c) I want to create a NEW BPEL domain. When I creat

  • ICal & Oracle's CorporateTime

    I've posted one question here: Discussions > Mac OS X Technologies > iSync http://discussions.apple.com/thread.jspa?threadID=574306&tstart=0 But I thought I'd also post here with an even more basic question: How do I export and iCal (2.0.3) calendar

  • Oo abap with interface.

    Hi friends, I am very much new to the abap objects,   i am finding vry much difficult in solving the Interface program with class. I Need the tutoriols about how to write a program using interface and to get a good knowledge about this. thanks and re