cancel
Showing results for 
Search instead for 
Did you mean: 

Different shipping conditions in two webshops

Former Member
0 Kudos

Hi,

I want assign two webshops with different shipping conditions. I create several shipping conditions in our ERP system and assign these conditions in tansaction VK12 to different sales organisations. But in each webshop appear all created shipping conditions. Where do I make another settings, so that not all shipping conditions appear in each webshop?

Thanks in advance

Lutz

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello

We had the same need and finally we created a customizing table in CRM in which the sales area and webshop corresponds to shipconds.

We created a function module to read the table for a particular webshop.

This function module is called at the read of the webshop by extending the standard ShopReadAction class and creating a specific backend object for the function module. Then we store in the user session the values of allowed shipconds, and filter the list of shipconds at display of checkout jsp.

I don't know if there is a better way to do this, but for us it's all we need and it works fine.

Regards

Julien

Former Member
0 Kudos

Hi,

is this really the only way to make the selection? There is no standard feature on the choice of shipping conditions per webshop?

Regards Lutz

Former Member
0 Kudos

Hello,

One can use the function module substitution technique, but the underlying function module CRM_ISA_BASKET_GETSHIPCOND that is used to list the Shipping Conditions takes only one input paramter - Language. So, you waon't have the Shop or Sales Area info in this module.

So, I think you have got only one approach left - to filter the conditions in the Java layer, where you will still have the access to the type of Web shop and the rest of the Sales Area details. With a combinationof the list of Shipping conditions returned from the standard code and a custom table and calls to the custom table one can get this done. It could have been lot simpler isn't it?

That is why we took a total custom approach where we substitured the dropdown list itself with our custom dropdown list. This approach could be the shortest path to your requirement.

Easwar Ram

http://www.parxlns.com

Answers (1)

Answers (1)

Former Member
0 Kudos

In the ERP E-Commerce, you can limit the list of Shipping Conditions in the Shop Administration.

http://<hostname>:<portnumber>/shopadmin/shopadmin/init.do

If you go to the Transactions tab in the administration of the web shop, there is an input field Shipping Conditions. Here you can give the list of Shipping conditions you would like to limit to, by giving their codes separated by a delimiter.

Please note that the Web shop is limited to one sales area and hence the shipping condition list will be limited to the web shop (one sales area).

Easwar Ram

http://www.parxlns.com

Former Member
0 Kudos

Thanks Easwar,

but on the Transactions tab in the administration of the web shop, there is not an input field Shipping Conditions. I can only input a sales office and an order type. I don't have choose a special sales organisation, the input field is empty.

Kind regards

Lutz

Former Member
0 Kudos

Is this E-Commerce with CRM or E-Commerce with ERP. The solution I gave you was for the later. Let me know if this is not the case.

Easwar Ram

http://www.parxlns.com

Former Member
0 Kudos

Hi Easwar,

we have E-Commerce with CRM (B2C-Webshop).

Kind regards

Lutz