Shipping address

Hi All,
I am developing POC application using ATG 10.1.2. Shopping cart page done, now am going to add shipping, billing information to order. Any one can give which ShippingGroupFormHandler have to use to add the new address to order for chekout process.
Please give me steps for adding shipping information to order.
Thanks,
Sreedhar.

Hi,
I used that link code for create shipping address.
<%@ taglib uri="/dspTaglib" prefix="dsp"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ page isELIgnored="false" %>
<%@ page import="atg.servlet.*"%>
<dsp:page>
<dsp:importbean bean="/atg/commerce/order/purchase/CreateHardgoodShippingGroupFormHandler"/>
<dsp:importbean bean="/atg/userprofiling/Profile"/>
<dsp:importbean bean="/atg/dynamo/droplet/Switch" />
<dsp:importbean bean="/atg/dynamo/droplet/ErrorMessageForEach"/>
<dsp:getvalueof id="contextroot" idtype="java.lang.String" bean="/OriginatingRequest.contextPath"/>
<hr>Enter new shipping address for HardgoodShippingGroup
<dsp:form action="hardgoodshippingGroup.jsp" method="post">
ShippingGroup NickName:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.hardgoodShippingGroupName" size="30" type="text" value=""/>
<br>First:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.firstName" beanvalue="Profile.firstName" size="30" type="text"/>
Middle:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.middleName" beanvalue="Profile.middleName" size="30" type="text"/>
Last:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.lastName" beanvalue="Profile.lastName" size="30" type="text"/>
<br>Address:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.address1" size="30" type="text"/>
Address (line 2):<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.address2" size="30" type="text"/>
<br>City:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.city" size="30" type="text" required="<%=true%>"/>
State:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.state" maxsize="2" size="2" type="text" required="<%=true%>"/>
Postal Code:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.postalCode" size="10" type="text" required="<%=true%>"/>
Country:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.country" size="10" type="text"/>
Phone Number:<dsp:input bean="CreateHardgoodShippingGroupFormHandler.HardgoodShippingGroup.ShippingAddress.phoneNumber" size="10" type="text"/>
<br>
<dsp:input bean="CreateHardgoodShippingGroupFormHandler.newHardgoodShippingGroupSuccessURL" type="hidden" value="${contextroot}/checkout/billing.jsp"/>
<dsp:input bean="CreateHardgoodShippingGroupFormHandler.newHardgoodShippingGroupErrorURL" type="hidden" value="${contextroot}/checkout/shipping.jsp?init=false"/>
<dsp:input bean="CreateHardgoodShippingGroupFormHandler.newHardgoodShippingGroup" type="submit" value="Create HardgoodShippingGroup"/>
     <dsp:droplet name="Switch">
          <dsp:param bean="CreateHardgoodShippingGroupFormHandler.formError" name="value" />
          <dsp:oparam name="true">
               <UL>
                    <dsp:droplet name="ErrorMessageForEach">
                         <dsp:param bean="CreateHardgoodShippingGroupFormHandler.formExceptions"
                              name="exceptions" />
                         <dsp:oparam name="output">
                              <LI style="color:red"><dsp:valueof param="message" />
                         </dsp:oparam>
                    </dsp:droplet>
               </UL>
          </dsp:oparam>
     </dsp:droplet>
</dsp:form>
</dsp:page>
while sumbitting the createHardgoodShipping button it is going to successurl but not able to add shipping address to profile and order.
I enabled logs for this component.
21:08:03,072 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG Acquired local write lock using id 250026
21:08:03,073 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG beforeSet created transaction TransactionImple < ac, BasicAction: -3f57d480:df2c:51700cd0:3c77 status: ActionStatus.RUNNING >
21:08:03,078 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG no form errors - staying on same page.
21:08:03,078 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG no form errors - staying on same page.
21:08:03,079 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG Entering createHardgoodShippingGroup()
21:08:03,079 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG Add to Profile flag value is ::false
21:08:03,079 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG no form errors - staying on same page.
21:08:03,079 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG no form errors - redirecting to: /evokekart/checkout/billing.jsp
21:08:03,080 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG afterSet sees currentTransaction as TransactionImple < ac, BasicAction: -3f57d480:df2c:51700cd0:3c77 status: ActionStatus.RUNNING >
21:08:03,082 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG afterSet committing transaction TransactionImple < ac, BasicAction: -3f57d480:df2c:51700cd0:3c77 status: ActionStatus.RUNNING >
21:08:03,083 INFO [CreateHardgoodShippingGroupFormHandler] DEBUG Released local write lock using id 250026
Please any one help me on this issue.

Similar Messages

  • 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

  • How can i change the default country in iPhoto when ordering cards and submitting a shipping address

    I am a Canadian visiting in the states.  I have a MacBook with latest IOS 10.7.5 and IPhoto 11 running 9.2.3.  I have checked my Apple ID and have my Primary address as a Canadian address, and two USA addresses listed as shipping addresses.  After closing and re-oping iPhoto, and logging in with my me.com id, I attempt trying to order Christmas cards which I've created in iPhoto.  However, after selecting "Buy Card" I get to a screen where the country is notaed as "Canada", and as I fill out a shipping address, I am given an error message when typing in State/prob abbreviation (MI for Michigan) and postal code because they are USA items.  The name "Canada" is viewable on the screen and non-changeable.  How do i able to get a US shipping address selected for my cards?

    IPhoto menu ==> preferences ==> advanced
    Set the print products country to US
    LN

  • How to make the Shipping address field on an Account as a required field?

    Hi,
    The requirement is that there has to be a shipping address specified for each Account that is being created.
    I tried to set the 'shipping' address field to 'required' in Account field setup, but the required checkbox is disabled, neither can I do it from Account Page layouts since there also its the same case.
    Does anyone know if its possible to do this and how?
    Regards,
    Ani.

    Have you tried to add validation to the AccountName field
    [<PrimaryShipToStreetAddress>] IS NOT NULL - will test to see if there is a value in the Shipping Address 1 field

  • Multiple Shipping Addresses for a single Ship-to-Party

    Hi all,
    How can we maintain multiple addresses for a single ship-to-party.
    The customer has 4 locations and whenever he places a order he wants the goods to be delivered to one or more than one address .How to do this?
    I tried to find it in the forum but I din't get a satisfactory answer.
    Regards,
    Ajit

    Ajit
    You may use Text for your requirment...
    Better Create a text type say Shipping Address... and assign to a sales order....
    Keep that in the Incomplete Log... so that when ever you process the sales order end user is in need to complete the Address....
    Another way is Ask ABAB er To change some field relevent to the customer as a Shipping address or may be Z field and use the same to the address..
    I have not used this check with your ABABer
    Reward if usefull
    Muthupandiyan

  • Auto Fill Shipping Address from Billing Address on a New Form in SharePoint 2013

    I have a new form on SharePoint that has a few fields:
    Billing Address 1 (Single Line of Text)
    Billing Address 2 (Single Line of Text)
    Billing Address City (Single Line of Text)
    Billing Address State (Drop Down Menu)
    Billing Address Zip (Single Line of Text)
    Shipping Address is the Same (Yes/No Check Box)
    Shipping Address 1 (Single Line of Text)
    Shipping Address 2 (Single Line of Text)
    Shipping Address City (Single Line of Text)
    Shipping Address State (Drop Down Menu)
    Shipping Address Zip (Single Line of Text)
    The object is that a user would fill in the Billing Address Fields, then click the "Shipping Address is the Same" check box and the Shipping Address Fields would auto fill with the Billing Address Fields.
    I've tried using a CEWP and editing the form file in SharePoint Designer 2013. I just don't know how to make this Dynamic auto fill work! Any help is greatly appreciated!!!!

    Use a custom web part
    Design the form controls and in "Shipping Address is the Same" check box check event or button click,
    copy the same data into a label form contains the same fields but in form of labels instead of textbox and dropdownlist.
    try this solution and let me know.
    Ahmed Said Moussa SharePoint Consultant

  • How can I change the shipping address to buy a calendar in iPhoto?

    Hello,
    I'll like to buy a calender with iphoto 11! I clicked on buy calender, i accepted the ammount, I logged in on my mobileme account and than, when it come to choose the adress i don't have any choice other than the country where my mobile me account is registered.
    I followd the online instructions to cheange the shipping address but they tell you to click on"account info  button" which i cannot find!
    There is any option to buy the calender as a gift and send it somewhere else in the world??? It seems to be very complicated to an apple product..... any suggestion??
    thanks

    Sending a calendar to another country is not supported in many jurisdictions - as it can lead to extra charges for the receiver. As I have no idea what country you are in you can select your country from this list
    http://store.apple.com/us/help/print_products/routing
    And find out if it's supported in your country and to your chosen destination.
    Regards
    TD

  • What is wrong with my shipping address? I want to order pictures via apple store with iPhoto. Apple Id and payment seem ok. My current and correct shipping address appears with red letters. Why and what to do?

    What is wrong with my shipping address? I want to order pictures via apple store with iPhoto. Apple Id and payment seem ok. My current and correct shipping address appears with red letters. Why and what to do?
    Maybe this is relevant: I bought iphoto from the German apple store but I now live in Italy. I have tried German credit card with German invoicing address and Italian shipping address. And I have tried Italian credit card with Italian invoicing address and Italian shipping address. The phenomenon is the same: shipping address appears in red and I am asked to fill in the mandatory fields (which turn red whatever I enter).

    KarinavD,
    what is the setting for the Print Products Store in the Advanced Tab of the iPhoto Preferences?
    The country you select there has to match the billing address. And your billing address should match the country of your AppleID and credit card used with the AppleID.
    Regards
    Léonie

  • To change shipping address in sales order

    Hi experts,
    I have an issue here. I tried to change shipping address in an existing sale order. However, even tough I have changed and updated the shipping address in Business partner Master data. and the sale order itself, SAP still prints the old address for the shipping.
    It is possible to change? or it is one of the control by SAP?
    Thanks in advance!
    Phil

    Hi Phil,
    Is this Sales Order generated through Quote?
    Thanks,
    Gordon

  • Hi! How can I change the shipping address for the program of replacement of the 1 generation ipod nano? I've already received the empty box and now I should send back the old ipod but I'd like to receive the new one to another address. Thank you.

    Hi! How can I change the shipping address for the program of replacement of the 1 generation ipod nano? I've already received the empty box and now I should send back the old ipod but I'd like to receive the new one to another address. Thank you.

    I would contact Apple directly and have them work with to get the iPod shipped to a new/different address.
    http://www.apple.com/contact/
    B-rock

  • Unable to fill out shipping address in Aperture

    I am attemping to purchase a book I created in Aperture 3.  I am unable to complete the shipping address form, for the "Country" drop down menu is actually covered by a text box.  This graphic glitch is preventing me from proceeding any further. If I fill out the rest of the required info and I click "save", I receive the message "Please try again later". Anyone else experiencing this issue? And if so, have you found a solution?

    me too
    And it is not a canadian address but german, MacBook Pro, OS Lion
    However, if I try to place an order from my second MacBook Pro, OS 10.6.8, then this graphic glich does not appear, and also no "try again later".
    So maybe, the problem is related to Lion, and not to the country

  • HT1048 Hi, I'm trying to order a photo album through IPhoto, my billing address is in the UK but I'd like the book to be sent to an address in the US. I cant change the shipping address to US.

    Hi, I'm trying to order a photo album through IPhoto, my billing address is in the UK but I'd like the book to be sent to an address in the US. Step 3 says enter shipping address, I go to enter new address and the only country it offers is the UK, I cant change the shipping address to US.

    Go to File / Provide Feedback and tell Apple that you want this enhancement in their product.

  • Iphoto '11 change shipping address from US to Canada

    Iphoto 9.4.3 I would like to change the shipping address from US to a Canadian address. Presently the Iphoto is set for US address only. Can anyone provide the steps how to change the settings?
    Thank you.
    Lise

    Generally you can not - maybe you can in this case - try in the iphoto preferences change the print product country to Canada and then order using a Canidian shipping address
    LN

  • HT1051 my account says australia as a shipping address and i can't change it what to do?

    my account says australia as a shipping address and i can't change it what to do?

    No problem - it is ask often
    You are welcome
    LN

  • HT1051 change country of shipping address

    Hi,
    I am in Italy and I have an Italian account, I would like to ship my calendar to US but when I've tried to change the shipping address I could select only Italy, do you have any Idea on how I can make the calendar shipped to a friend in US? thanks

    You can only ship to the same country as the billing address of the credit card used.
    OT

  • Using DTW to change a sales order shipping address

    I found a template RDR12 and according to the di help file this seems to correspond to the addressextension object.
    I want to use this template to change the address information for an order. Either an existing order or a new order as it is imported.
    Can I change the address information showing in the shipping address box on the logistics tab of an existing order using this template and a csv file?
    Is it independent of existing addresses associated with a business partner?
    I tried importing a row corresponding to an existing sales order, using the sales order DocNum as the primary key. It did not work, giving the error, Can not find this object in B1 Application. I verified that the order existed.
    Can anyone point me to an example or give me information regarding how to use this template?
    Is what I want to do possible?
    Thanks,
    Mark

    Hi,
    try this
    DATA: IT_MESSAGE TYPE STANDARD TABLE OF BAPIRET2,
          WA_VBELN TYPE BAPIVBELN-VBELN.
    DATA: WA_BAPIHEAD TYPE BAPISDH1,
          WA_BAPIHEADX TYPE BAPISDH1X,
          WA_HEADDATA TYPE BAPISDH1.
    DATA: I_BAPIITEM TYPE STANDARD TABLE OF BAPISDITM,
          WA_BAPIITEM TYPE BAPISDITM,
            WA_DATA TYPE BAPISDITM,
          I_BAPIITEMX TYPE STANDARD TABLE OF BAPISDITMX,
          WA_BAPIITEMX TYPE BAPISDITMX.
    CHANGE ITEM DATA
    WA_BAPIITEM-ITM_NUMBER =WA_DATA-ITM_NUMBER.
    WA_BAPIITEM-REASON_REJ = WA_DATA-REASON_REJ. "(REASON FOR REJECTION)
    WA_BAPIITEMX-ITM_NUMBER = WA_DATA-ITM_NUMBER. "(ITEM NUMBER)
    WA_BAPIITEMX-UPDATEFLAG = 'X'.
    WA_BAPIITEMX-REASON_REJ = 'X'.
    APPEND WA_BAPIITEM TO I_BAPIITEM.
    APPEND WA_BAPIITEMX TO I_BAPIITEMX.
    TO CHANGE HEADER DATA
    WA_BAPIHEADX-UPDATEFLAG = 'U'.
    WA_BAPIHEADX-DLV_BLOCK = 'X'.
    WA_BAPIHEAD-SALES_ORG = WA_HEADDATA-SALES_ORG. "(COMPANY CODE)
    WA_BAPIHEAD-DLV_BLOCK = WA_HEADDATA-DLV_BLOCK. "(DELIVERY BLOCK)
    WA_VBELN = '0000000168'.
    CALL BAPI AND PASS THE VALUE
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
       EXPORTING
         SALESDOCUMENT               = WA_VBELN " (SALES AND DOCUMENT NO)
        ORDER_HEADER_IN             = WA_BAPIHEAD
         ORDER_HEADER_INX           = WA_BAPIHEADX
       TABLES
         RETURN                     = IT_MESSAGE
        ORDER_ITEM_IN               = I_BAPIITEM
        ORDER_ITEM_INX              = I_BAPIITEMX
    CLEAR IT_MESSAGE.

Maybe you are looking for

  • How do I backup my Itune Library and Playlists to my Backup drive?

    How do I backup my Itune Library and Playlists to my Backup drive?   Where are they stored on my computer?

  • GROUP BY on Alphabetical Order

    Hi All, I have a table like: ACCOUNT_NAME AMOUNT ABC 1000 BHJ 2000 CUJ 1500 ACB 500 AGH 1000 BHK 450 YUO 900 The result should be Grouped By ACCOUNT_NAME in Alphabetical Order like ACCOUNT_NAME AMOUNT ABC 1000 ACB 500 AGH 1000 2500 BHJ 2000 BHK 450 2

  • EIS License

    Hi. My Client got Essbase Plus license and not sure weather it includes Eassbase Integration Services. Can anyone help me on this. Will Essbase Plus license includes EIS or do we need to procure additional license for EIS. Thanks in advance for your

  • Use of double Minus operator....

    Hi , I have a situation where i need to use the minus operator in such a way that: <sql_statement_A> Minus <sql_statement_B> Minus <sql_statement_C> The resulting row set will return rows from sql_statement_A minus rows from sql_statement_B or sql_st

  • Oralce PL/SQL Packages

    Does anyone know where to get a list of all(or most)of the PL/SQL packages that come with Oracle and desc of what they do. Maybe a link or a book to buy. thanks in advance, cvb