How to save a custom address in shipping address of a shopping cart

Hi,
I'm using BBP_PD_SC_CREATE fm for creating a shopping cart. When i'm ordering the shopping cart, i'm able to save only org address.
in partner details for PARTNER_FCT 27, if i save the org address number, and org partner number only, it is taking. otherwise throwing me an exception.
So, if i want to save the shopping cart with customer desired address, pls help me how to implement the functionality.
Thanks,
Karthik Babu

Would saving a layout in the Browser layouts do it for you? Just right click on a column to save the layout...
Jerry

Similar Messages

  • How to add custom field in delivery address/performance location tab in SRM shopping cart and Ship to address Pop-up in SRM PO?

    Hi Experts
    i have a reuirement where i have to add custom field in delivery address/performance location tab in SRM shopping cart and Ship to address Pop-up in SRM PO
    i am doing below steps for this.
    1. Adding custom field ZZfield in structure INCL_EEW_PD_PARTNER_CSF by  using  append structure.
    2. Spro ->Supplier Relationship Management -> SRM Server -> Cross application basic settings -> Extensions and field controls (personalization) -> Configure field control ->Configure Control for Fields of Substructures
    then click on  "Metadata for Fields of Substructures and Table-Like Enhancements"  
    add the below entry
    Bus. Object Set Type  : I am trying 7 and 29
    Structure Field Name  : ZZfield
    Bus. Object Type       : BUS2121/BUS2201
    Set Level                    : Item
    Field Visible :  Check box should be checked
    Field Enable :  check box should be checked
    Can anyone has the idea of this?
    Thanks
    Rohit

    Hello Rohit,
    Please create a enchancement for component  /SAPSRM/WDC_UI_DO_SHIPTO.
    Add new input field and label in view V_DODC_SHIPTO.
    Bind the input field value with field ZZfield from structure  /SAPSRM/WDC_UI_DO_SHIPTO in the context node SHIP_TO .
    Regards,
    Neelima

  • How to add ship To field to Shopping Cart

    I have a request to add ship to address field for Limit shopping carts. Can any one please let me know how we can do the same?

    Hello,
    Usually, delivery address tab is displayed in limit shopping cart. Some other fields are not displayed, but delivery address is.
    Check the following wiki page:
    http://wiki.sdn.sap.com/wiki/display/SRM/LimitShoppingCart-Somefieldsarenotdisplayed
    Regards,
    Ricardo

  • How to use customer extension table for schedule line for shopping cart ?

    Dear Experts,
    One of our client wants to have schedule lines in shopping cart item. I am thinking of using customer extension table at item level for shopping cart. Could you please help me on  how I should proceed with the appending the structures so that the end user can fill the shopping cart schedule line details?
    Which fields should I consider in such cases?
    Thanks and regards,
    Ranjan

    Hi.
    I guess you use SRM 7.0. Please go to IMG.
    SRM -> SRM Server -> Cross-Application Basic Settings -> Extensions and Field Control (Personalization) -> Create Table Extensions and Supply with Data
    Regards,
    Masa

  • Want to copy Delivery address of one line item in shopping cart to all item

    Hi Experts,
                    We are upgrading from SRM 5.0 to SRM 7.0,In SC Creation We want to copy Delivery address of one line item in shopping cart to all line items in Shopping cart by clicking Change All Items button.This is custom button we added this button and we had written code to achieve the functionality but it is not working.This is same like Change All Items button in Account Assigment for copy accont details of one line item to all other line items in SC.
    Web Dynpro Component:/SAPSRM/WDC_UI_DO_SHIPTO
    Web Dynpro View:V_DODC_SHIPTO
    Thanks,
    Aarthi.

    Hi Prasad,
                   Our customer needs that button,they want whenever they are clicking the button delivery address should copy to all line items.
    In my action ONCHANGE_ALL_ITEMS i called this method
    wd_this->mo_dodm_shipto->zchange_all_items( ).
    zchange_all_items( ) is  implemented in class /SAPSRM/CL_CH_WD_DODM_SHIPTO.
    the code i wrote inside zchange_all_items( )
    *Error
      DATA: LX_PDO_ABORT               TYPE REF TO /SAPSRM/CX_PDO_ABORT,  " Class for Fatal error caught by PDO Layer
            LX_PDO_ERROR               TYPE REF TO /SAPSRM/CX_PDO_ERROR.  " Class for PDO General Exception
    Object Instances
      DATA: LO_MSG_CONSUMER            TYPE REF TO /SAPSRM/IF_PDO_MSG_CONSUMER,
            LO_PDO_SHIPTO              TYPE REF TO /SAPSRM/IF_PDO_DO_PARTNER.
    Context-Data
      DATA: lte_cll_shipto              TYPE /sapsrm/if_ch_wd_set_facade=>gt_guid_element,
            loe_cll_shipto              TYPE REF TO /sapsrm/if_ch_wd_set_element.
    Field Symbols
      FIELD-SYMBOLS <lse_cll_shipto>    LIKE LINE OF lte_cll_shipto.
    DATA : lo_pdo_acc TYPE REF TO /sapsrm/if_pdo_do_acct_assgmnt.
      DATA : ls_shipto_cll type /SAPSRM/S_CLL_SHIPTO,
             lt_pdo_partnerdetails      TYPE bbp_pdt_partner,
             ls_pdo_partnerdetails      TYPE bbp_pds_partner,
              LV_GUID          TYPE BBP_GUID,
              lv_item_guid type bbp_guid,
             lv_filled TYPE wdy_boolean.
    *exceptions
      DATA : LX_ABORT                  TYPE REF TO /SAPSRM/CX_PDO_ABORT.
    *Constants
      CONSTANTS : LC_OBJECT_ID         TYPE CRMT_SUBOBJECT_CATEGORY_DB VALUE 'BUS2121001',
                  LC_ADDR_ORIGIN       TYPE /SAPSRM/S_CLL_SHIPTO-ADDR_ORIGIN VALUE 'B'.
      IF LV_FILLED = ABAP_TRUE.
    Downcasting to shipto
        LO_PDO_SHIPTO ?= MO_PDO.
    insert the clipboard into facade and update and submit update
        me->/sapsrm/if_cll_do_mapper~insert_from_clipboard( io_set_facade = mon_cll_set_facade ).
    Add new Accounting entries.
        lte_cll_shipto = mon_cll_set_facade->get_data_elements( ). "get all elements from the context
        LOOP AT  lte_cll_shipto ASSIGNING <lse_cll_shipto>.
          loe_cll_shipto = <lse_cll_shipto>-set_element.
          loe_cll_shipto->get_static_attributes( IMPORTING rv_attributes = ls_shipto_cll ).
    Map ui-structure to pdo-structure
          MOVE-CORRESPONDING ls_shipto_cll TO ls_pdo_partnerdetails.
          IF LS_SHIPTO_CLL-PARTNER_FCT =  mv_part_func.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = ''.
          ELSE.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = LS_SHIPTO_CLL-PARTNER_FCT.
          ENDIF.
          IF ls_pdo_partnerdetails-del_ind NE 'X'.
            CALL FUNCTION 'GUID_CREATE'
              IMPORTING
                ev_guid_16 = ls_pdo_partnerdetails-p_guid.
           mv_acc_guid_split = ls_pdo_shipto-guid .
            IF mo_scope = 1.
              ls_pdo_partnerdetails-p_guid = mon_cll_set_facade->get_bo_guid( ).
            ELSE.
              ls_pdo_partnerdetails-p_guid = mo_parent_bo_mapper->items_get_lead_selection( ).
            ENDIF.
            APPEND ls_pdo_partnerdetails TO lt_pdo_partnerdetails.
          ENDIF.
          CLEAR : ls_pdo_partnerdetails, ls_shipto_cll.
        ENDLOOP.
    Add New items to PDO
        IF NOT lt_pdo_partnerdetails[] IS INITIAL.
          TRY.
              LO_PDO_SHIPTO->update_item_partners( EXPORTING it_partner = lt_pdo_partnerdetails
                                                               iv_item_guid       = lv_item_guid
                                                   CHANGING co_message_handler = mo_pdo_message_consumer ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Update PDO with the changed data.
          TRY.
              mo_pdo->submit_update( ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Fire refresh of DO Mappers registered for refresh since the item table has acc related data.
          mo_parent_bo_mapper->fire_event_refresh( iv_perform_updates = abap_false ).
        ENDIF.
      ENDIF.
    Thanks,
    Aarthi.

  • How to save a customized effect preset ?

    If I need to apply a customized video effect to multiple clips, how can i do it ? Is it possible to save my customized effect as new preset ?
    Thanks

    Robbie
    yes it is, however it involves an additional step.
    Right clicking on any of your effects or transitions gives you the "Open a copy in Motion" option, all of your effects and transitions (99% or so) are actually motion templates, fully editable, customisable and able to be saved as your own customised version.
    What you are unable to do at this stage is right click on the effect or transitionon the storyline and open/save it, you need to construct it in motiona nd then apply it.
    Hope this helps
    Tony

  • Change the Primary Address, Billing Address, or Shipping Address

    We currently allow the users to add multiple addresses per account, we need to have the ability to change which is the primary address, which is the billing address and which is the shipping address. Currently is the addresses view we can see the Billing and Shipping checkbox but can not edit them. We are also unable to see the primary checkbox but can load to that field. How can we allow the users to edit the Primary, Billing and Shipping checkboxes in the Addresses view?

    Brian,
    Name your address fields Address 1 and Address 2 and then match your picklists to this, you might need to manually create the 3rd address fields. Think I may have missed the point here, i've just checked an environment and see you are talking about the Address Related information not the main address information in the body of the Account record. Sorry, can't help ;-D
    Alex
    Edited by: AlexN (CRMNow) on Oct 17, 2008 10:38 AM

  • Apple pay listing double address and shipping addresses

    I followed the directions of another post on this forum and did not have any luck removing the duplicate home and shipping addresses under Apple pay. They're only showing up during the checkout when you click on the card and then the home and shipping address section. Is there anyway to remove the duplicates and the one that I tried to add?

    I can't offer a way around, but at least for me in Europe it doesn't seem to be a problem: I have had Aperture books sent to England whilst the bill comes to me in Switzerland. I think I read once that quite a lot of Apple's European printing is done in Holland, maybe that makes a difference.
    More generally I do find Apple's way of dealing with international customers a bit irritating - I can only order software through the Swiss Apple-store in French or German...

  • How to disable the print icon on check status screen of shopping cart inSRM

    Hi Experts,
    I have a requirment in which I need to disable print Icon on the status screen of the shopping cart.
    Can anybody please let me know how to achive this requirement.
    Thanks,
    Arun K Singarapu

    Hi Here you go some useful code for the requirement.
    wafunc = 'BWD'.
          APPEND wafunc TO functab.
          wafunc = 'FWD'.
          APPEND wafunc TO functab.
          wafunc = 'DIS'.
          APPEND wafunc TO functab.
          wafunc = 'COP'.
          APPEND wafunc TO functab.
          wafunc = 'IGN'.
          APPEND wafunc TO functab.
          wafunc = 'SAVE'.
          APPEND wafunc TO functab.
          wafunc = 'HIS'.
          APPEND wafunc TO functab.
          wafunc = 'CONTACT'.
          APPEND wafunc TO functab.
         SET PF-STATUS 'OBJECT_SEL' EXCLUDING functab.
    Bala.M

  • Add custom field in the selection screen for shopping cart monitor report

    Hello,
    refering to the notes 458591 an 672960, in order to add custom field at item level, we get the structure INCL_EEW_PD_ITEM_CSF.
    But this doesnt make it appear on the "Shopping Cart Monitor Report" selection screen.
    So should I try adding it in the existing interface of the badi bbp_sc_mon ?

    hello Yann,
    ok I will implement that. Is it possible to change the interface of the badi method to  include more data if we want to check the role of the user who is executing the shopping cart monitor report and accordingly do the settings of field display ? Or calling a function module inside the method to get the attributes of sy-uname would be easier?
    rita

  • How to add a custom field to Ship-to address screen

    Hi all,
    I have to add a custom field for Plant in the Ship-To address subscreen(BBPSC01).
    I have added the field in the program saplbbp_sc_ui_its in screen 310.
    But I think need to write the HTML code/Java script in HTML template to trigger the code from module pool.
    As I am new to HTML/Java script, Can any one please let me know the procedure to follow.
    Thanks,
    Rakesh.

    I have not added the Custom filed in the main screen and added in the Additional data B screen. So closing the message.

  • How to delete a custom field created in Address Book template?

    It is possible to create a new custom field name in any of the pop-up field categories in the preferences template for Address Book.
    But, once created, there does not seem to be a way to delete or edit the newly created custom field name. That doesn't make sense.
    Tell me that I am wrong, and then tell me how to delete or edit a custom field name. Thanks!!

    Thanks Pascal, I can change the viewed template field areas as you have described. My problem was with modification of the pop-up list entries: adding, deleting, and renaming user created custom field entries. I have since figured out how Address Book allows these functions; unfortunately, that specific information is not present in the Address Book help file.

  • How to save a customized format and save it as default template for all reports?

    Hi All,
    I have a specific format to be followed for all the reports. I'm using WebI Rich Client 4.1 SP1. Can i create a template with this customized format and save to use it for all the reports in future as a default format. If so how can that be done?
    Regards,
    Naren Vema.

    Naren,
          Another option is, if you want to FORCE global stylesheet for ALL users.  You can update the WebIDefaultStyleSheet.css located in  \SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\images\ folder.
    Regards,
    Ajay

  • How to save a custom batch export setup

    I've always tried to figure out a way to setup a "template" for a batch export and save it. For example, you need to constantly output reference qts to a specific folder for batch processing in cleaner. Didn't seem anyway that I could figure out. Once youj've executed the batch and quit fcp, you seem to lose the ability to see that batch. I think I just figured out how to do it. Setup your batch export in the batch export window and then drag the tab of the batch export window to the browser tab for your project. It creates a tab within the browser window that seems to stay associated with the project. Did a couple of quick tests and it seems to work. You should be able to add things to a specific batch folder and keep your settings.
    Maybe there's an easier way to do this. Feel free to poke holes in this method.

    Would saving a layout in the Browser layouts do it for you? Just right click on a column to save the layout...
    Jerry

  • How to save STS customizing in order to restore it later?

    Hello,
    We want to backup links, events, headers and responsible person as well as substitutes information on each node of the STS hierarchy.
    The problem is for restore responsible person (it’s ok for the other parameters). Indeed there is no table included this information, it’s in an XML structure. We know how to read the XML hierarchy but we don’t know how to write.
    Does someone know how to import the XML file (with all STS hierarchy information) into BW?
    Thanks and Regards
    Cécile

    I don't understand  "the front is not recognized..." did the trial expire?
    Indesign is a Professional Level Publishing program--it is not an easy to use editing program--it takes time to learn how to use it and it's somewhat expensive

Maybe you are looking for

  • Error : while running OTL page.

    Hi All, I am getting the below mentioned error when I clicked the 'YES' button in the Warning page which comes after clicking the Save Button in Create Timecard ( OTL)  page using the customised controller code. Kindly help me to understand what caus

  • Stock in transit to the Original Stock( STO process with Billing)

    HI All , Here is an Issue on Stock Transport Order with Billing A STO (Purchase Order) Is raised Which consist of 6 line Items. VL10B is Done and Outbond Delivery no generated. With this Outbond Delivery no PGI is done for All Line items. Goods Recei

  • How to permanently disable the Shared Photo Stream on a windows pc

    I've got the Icloud control panel installed on a windows7 pc. On this specific pc I only want My Photostream running. I've tried to disable the Shared Photo Stream - but when I log off my windows user account an then log in again, the checkmark next

  • Reg: ALV Presentation

    Hi All, Can anyone suggest me the sites where I could get useful information regarding complete ALV Reports. Give me useful information so that I can make a good PPT presentation Thanks & Regards, A.M.K.

  • Key photos

    Is there a way to change the key photo for an event or to change the name of an event in iPhoto for iOS?