Webshop

Hi
We are configuring the B2C webshop using C 20 config guide for UK.
In the web shop  we had maintained  country group as 0002  as per config guide (for US) The list of countries which appear in the B2C Webshop when we try to register as a customer  are  US,Canada  & Mexico only.
How do we find out which country group is to be used for Uk..  or  Is there a way we can add  Uk  in that list.
Need your suggestions... thanks

Wrong forum, I assume. This is a technical question!

Similar Messages

  • List Price Not getting displayed in B2B Webshop Product Catalog

    Hello Experts,
    We have done all the required configuration to view the LIST PRICE in B2B Webshop product catalog.
    We have done following settings:
    1. Pricing Procedure assignment to the PRODUCT CATALOG VARIANT
    2. Initial Replication of the product catalog
    3. Shopadmin setting for List Price (radio button selection on the GENERAL Informaiton Tab)
    4. XCM Setting - No IPC
    5. For the defined variant, we have maintain an entry in the Parameter for List Prices - ZPR0 and table as CUS506 and Catalog Price type as List Price.
    6 Downloaded the required condition record from ECC to CRM with correct validity period
    But still we are not able to see the LIST PRICE. Any other change (say addition/removal of product from CATALOG areas)in the CATALOG is getting dispayed correctly in the WEBSHOP product catalog except LIST PRICE. That means we feel there is no issue from TREX perspective.
    Any other pointers will be really helpful.
    Regards
    DJ

    What are the fields for CUS506? During replication if the list price is replicated from this table then all the key fields mentioned in this table should be available during replication for this table.
    What my wild guess is that maybe this CUS506 has a field e.g say SHIP_TO or SOLD_TO etc.. Now at the time of replication.. there are no shipto or soldto hence no values/price will replicate to TREX.. hence u will see nothing in catalog.
    regards,
    Dipender Singh

  • Minimum Order Value for an internet sales order in the webshop

    Hi Guys,
    I have a requrement of maintaining Minimum Order Value (MOV) for an order created in B2B webshop.
    We have a condition type AMIZ which supports the same function in ECC. Will it support CRM too?
    Current implementation is CRM 5.0 and the backend is R/3 4.7.
    Thanks in advance,
    Srinivas

    Hi Srinivas,
    I believe condition type AMIZ is available in CRM by standard. So its should support. Offcourse you ll have to assign the required requirement routines / condition base values.
    Regards,
    Gaurav Gera

  • Need help to enable trace/logging for java debugging CRM 5.0 WebShop

    Dear experts,
    I'm new to sap, and i'm working on CRM 5.0 WebShop J2ee application with nwdi.
    I have to add a new functionnality, which has to call a custom FM in CRM. This FM has been tested and is OK.
    I have read the 2 files SAP_ISA50_DevAndExtGuide.pdf and ISA50_DevAndExtTuts_v1_0.pdf which have explain to me the process flow and organization of the framework.
    By helping me with the tutorials, I wrote all the files for my functionnality, from the jsp with the form, to the custom business backend with the call of the FM with parameters and JCo connection. (+ custom BOM, custom BO, BE interface, BE CRM implementation)
    Everything builds without error, and I deploy the application on my test env.
    Then I go to my webapp, I call the custom jsp with form, I put values, then I validate the form, but my FM is not called, and I don't know where is the problem, because I can't see a trace of the process flow, to know where is the error.
    By searching in this forum I found 2 notes that explain how to activate debug trace for all the application, one note for systems before SP11 and another for systems with SP11 and higher. But I don't know how to see the patchlevel of the system (I went to system information of the j2ee server and the on ly thing I can notice is below the server0 properties : Kernel Version:  7.00 PatchLevel.
    In these notes I read about Visual Administrator : I found this directly on the server with remote desktop, but the progress bar at the bottom of the window don't arrives to 100% and I can't see the properties and values of the parameters for the Log.
    I went to XCM too, and set appinfo and logfiledownload to true, then went to Logging into e-commerce administration console : in the Log configuration tab, I can create new configurations but the effective severity automatically sets to error, even if I set All or Debug manually ; in the session log tab, i tried to launch the application, then start log, then validate my form, then stop log, but I can't find anything about the trace of the process flow in the generated file.
    Please help, I have to finish this for end of week and I'm alone ...
    PS I'm french, and don't speak very well English please excuse me.
    Thank you very much.
    J. Lag.

    Hi
    For logs follow this note no[Creation of logs for B2B and B2C Release 5.0|https://service.sap.com/sap/support/notes/1090753]
    Follow this code for calling custom Function Module
    1) ZBOM.java
    public class ZBOM extends DefaultBusinessObjectManager implements BOManager, BackendAware {
    public static final String ZCUSTOM_BOM = "ZCUSTOM-BOM";
    private ZFunction func;
    public ZBOM() { }
    public ZFunction getFUNC() {
      if (func== null) {
       func= new ZFunction();
       assignBackendObjectManager(func);  }
      return func; }
    public void release() { }
    2) ZFUNCTION.java
    public class ZFunction extends BOBase implements BackendAware {
    private ZInterface backendInterface;
    private BackendObjectManager bem;
    private ZInterface getInterface() {
      if (backendInterface == null) {
       try {
        backendInterface = (ZInterface) bem.createBackendBusinessObject("ZCustomBO");
       } catch (BackendException e) {
      return backendInterface;
    public void setBackendObjectManager(BackendObjectManager bem) {
      this.bem = bem;
    public String getCustomFunc(String value) {
      try {
       return getInterface().getIncotermListvalue) ;
      } catch (RuntimeException e) { return ""; }
    3)ZINTERFACE.java
    public interface ZInterface extends BackendBusinessObject {
         public  String getCustomFunc(String value);
    4) ZBACKEND.java
    public class ZBackend extends BackendBusinessObjectBaseSAP implements ZInterface {
         String exportvalue="";
         public String getCustomFunc(String value) {
              try {
                   Function func =getDefaultJCoConnection().getJCoFunction("Z_CUSTOM_FUNCTION_MODULE");
                   func.getImportParameterList().getField("IMPORTPARAMETER").setValue(value);
                   getDefaultJCoConnection().execute(func);
                   exportvalue = func.getExportParameterList().getString("IMPORTPARAMETER");
              } catch (Exception e) {
                   return exportvalue ;
    5) WEB_INF/xcm/customer/modification/bom-config.xml
    <BusinessObjectManager name="ZCUSTOM-BOM" className="com.sap.isa.custom.ZBOM"/>
    6) WEB_INF/xcm/customer/modification/bom-config.xml
    <config isa:extends="../config[@id='crmdefault']">          
       <businessObject type="ZCustomBO"
                    name="ZCustomBO"
                    className="com.sap.isa.custom.ZBackend"
                    connectionFactoryName="JCO"
                    defaultConnectionName="ISAStateless"/>           
    </config>
    Regards,
    [Sateesh Chandra|http://sateeshchandrach.googlepages.com/isa]

  • "Invoice and Delivery No Look  UP "In B2C webshop

    Hi All,
    We have the Following scenario.
    1.A registered User creates the order in B2C web shop
    2.The order gets replicated to ECC
    3.The Delivery and invoice gets created at ECC.
    4.The document flow containing the delivery number and Invoice should get updated in webshop.
    Query:- Require inputs on Step 4.
    Regards
    Sanjib

    Check if the document flow adapter objects are active for delta downloads. You will have the document flows in CRM then.

  • Can we have a b2b webshop without Product catalog in it

    Hi Gurus,
    I have a scenario where I dont want to Product catalog on the webshop. Customers log in and just want to see the order history.
    How can I set this up.
    Please explain if this is possoble.
    Thank You

    Hi Ram,
    yes, you will have to create a catalog without products. This is because the catalog is a required field when creating a new shop in the shopadmin. Only when you use the webshop with an R/3 or ERP backend, no catalog is required at all.
    Best regards,
    Martin

  • Problem in creating a webshop order

    Hi guys,
    I have an issue about the request delivery date in creating a webshop order.
    I am trying to create a webshop order in crmd_order transaction and I am giving the request delivery date on sunday so that it is giving an error saying that "No goods accepted on sunday; next valid date on monday.This is working fine in gui.
    I want to replicate this error in the front end.When creating the webshop order in the frontend with the same data what i used in the backend I am not getting this error.
    When I degugged in both the backend and frontend the error is coming from this include LCRM_SCHEDLIN_OWF02. The condition where the error is throwing in this include is not coming while creating in the frontend.
    Thanks.

    Hi
    1st Issue
    Step1: Check weather pricing is working in GUI
    (a) Activate VMC to calculate prices in CRM
    (b) Download DNL_CUST_CNDALL object
    (c) Download required condition tables which are used in ECC
    (d) Determine pricing procedure in CRM as per your requirement in IMG
    (e) Create order to test pricing in GUI
    Step2: Check pricing determination in B2C
    (a) Select List Pricing or IPC Pricing in Webshop.http://<ip>:<port>shopadmin/init.do
    (b) u201CforceIPCpricingu201D set to true enables IPC pricing in the java shopping basket http://<>:<port>/b2b/admin/xcm/init.do
    (c) If IPC Pricing Activated in the Web Shop maintain relevant entries in Prod.catalog variant
    (d) If u201CList pricesu201D are activated, the price is saved as TREX attribute on the index database. This
    TREX attribute is filled during product catalog replication.
    Finally Check document type used in webshop, CPP assigned to SP, DPP assigned to document type
    2nd issue
    Please check
    Step1:  C
    Regards,
    Pavan

  • 500 Internal server error while logging in to Webshop URL

    Hi All,
    I am very new to Java CRM programming and ISA architecture.I am getting an 500 Internal Server error when I am trying to login in to webshop URL http://hostname:50000/xxxb2b/b2b/init.do?xcm.scenario=JCO_NCACLNT708
    Could anyone please let me know what went wrong???
    Error Log:
    500   Internal Server Error
      ISA Framework: java.lang.NoClassDefFoundError: com/dow/docbase/ejb/DocbaseCoARetrieve java.lang.Class.forName0(Native Method) java.lang.Class.forName(Class.java:141) com.dow.isa.businessobject.Z_BusinessObjectManager.class$(Z_BusinessObjectManager.java:43) com.dow.isa.businessobject.Z_BusinessObjectManager.getQuery(Z_BusinessObjectManager.java:52) com.dow.isa.util.BOUtils.getQuery(BOUtils.java:137) com.dow.isa.isacore.action.Z_ShopShowListAction.isaPerform(Z_ShopShowListAction.java:90) com.sap.isa.isacore.action.IsaCoreBaseAction.isaPerform(IsaCoreBaseAction.java:378) com.sap.isa.isacore.action.IsaCoreBaseAction.isaPerform(IsaCoreBaseAction.java:418) com.sap.isa.isacore.action.IsaCoreBaseAction.ecomPerform(IsaCoreBaseAction.java:344)
    Details:   No details available
    Regards,
    Raj

    Hi Easwar ,
    Though I am not connected to this error, but interested in the last parameter of xcm.scenario on this URL
    http://hostname:50000/xxxb2b/b2b+/init.do?xcm.scenario=JCO_NCACLNT708+*
    Is it possible to pass dynamic JCO client name to the xcm.scenario parameter through a SAP portal entry?
    And if so, what exactly is required to do this ? I saw a SAP note(SAP Note 1021959 - Portal settings for ISA iViews)
    to set parameters and values like xcm.scenario, portal, callbackurl etc in the Portal System Landscape Directory to Key  called ISA_B2B = "/init.do?scenario.xcm=<YOUR_XCM_SCENARIO>&portal=yes&autoentry=yes&shop=<YOUR_SHOP>&
    callbackurl=<THE_CALLBACKURL_BELOW>"
    I have a Portal WDP appln that maintains the values of <YOUR_XCM_SCENARIO> and <YOUR_SHOP>, the challenge is to pass these 2 values to the Portal System Landscape Directory Key( ISA_B2B).  I am understanding there could be a .par application that will need to be integrated with the WDP application to update the Key attribute when a user performs some action/event on the WDP Screen ?
    Your thoughts and direction will  of be big help and much appreciated.
    Sincerely,
    Portal Developer(Newbie)
    Edited by: Portal Developer on Aug 24, 2010 5:30 PM
    Edited by: Portal Developer on Aug 24, 2010 5:38 PM

  • Settings for free goods in b2c webshop

    hello,
    an internet user for b2c webshop can order free good items,i understand that for him to order this products his customer number is to be added during free good item creation in the R/3 system,
    my question is where are the settings maintained pertaining to webshop like either in the xcm setings or in shopadmin.
    chandu

    you dont have this functionality in B2c Scenario.

  • BADI trigered in CRM while creating a order from B2B webshop

    Hellow Gurus,
    Could you please tell the BADIs triggered in CRM when we create an order from B2B webshop. I have to keep a validation to ensure the delivery type 'Standard' should be applicables orders having gross weight less thatn 4 kg only.
    I should also throw an alert in B2B webshop saying ' Please choose other type' as well. I dont know how to proceed for this.
    Please help.

    Hello,
    The  best way to determine the BADI's called is to look at the Log files.  The following OSS Notes (based on your release) will instruct you how to create a session trace.
    Note 569976 (Release 4.0)  - creation fo session logs
    Note 1090753 (Release 5.0) - Creation of logs for B2B and B2C
    Note 1156730 -  Creation of logs for ISAUserAdm and ShopAdmin
    You can also look at the [Modifiation and Extension guide |https://websmp210.sap-ag.de/~sapdownload/011000358700000469462006E/]for instructions (chapter Session Tracing).
    I hope this helps.
    Deb

  • Tax Jurisdiction in SAP CRM 7.0 B2C Webshop as an optional field.

    Hi Everyone,
    We are  trying to register a user in B2C Webshop .In the process of registering, On entering the postal  Code and  corresponding city , the application shows an error message which says " Tax Jurisdiction could not be detremined" .
    Going ahaed, we could like some clarity on the same .It would  also be relevant if we could make this postal code/City as an optional filed in the System.We need clarity  on making this as an optional field.
    KIndly give your inputs if any one has worked on the same functionality.
    Thanks in advance.
    Regards
    Sanjib paul

    See if the configuration settings at (Tcode SPRO)
    CRM--> Master Data --> Business Partner --> Specify handling of error messages helps.
    Also see my replies in other threads on suppressing or showing CRM messages in the web (ISA) layer.
    Re: Product not viewable in catalog nor in search function but still orderable
    Re: Minimum order quan - CRMC_MSGC
    Re: Minimum order quan - CRMC_MSGC

  • Tax Jurisdiction In B2C Webshop (SAP CRM 7.0) as an optional field.

    Hi Everyone,
    We are trying to register a user in B2C Webshop .In the process of registering, On entering the postal Code and corresponding city , the application shows an error message which says " Tax Jurisdiction could not be detremined" .
    Going ahaed, we could like some clarity on the same .It would also be relevant if we could make this postal code/City as an optional filed in the System.We need clarity on making this as an optional field.
    KIndly give your inputs if any one has worked on the same functionality.
    Thanks in advance.
    Regards
    Sanjib paul

    See if the configuration settings at (Tcode SPRO)
    CRM--> Master Data --> Business Partner --> Specify handling of error messages helps.
    Also see my replies in other threads on suppressing or showing CRM messages in the web (ISA) layer.
    Re: Product not viewable in catalog nor in search function but still orderable
    Re: Minimum order quan - CRMC_MSGC
    Re: Minimum order quan - CRMC_MSGC

  • How to change net price of order in B2B webshop

    Hi All,
    I have a requirement where a new input field (discount) is to be added in 'order.jsp' page of B2B webshop in header level. when a user enters some discount in it and clicks 'update' button, the netprice in header should be reduced by given discount and also all the line items should get affected by the same discount. I have added input field using extension mechanism as stated in 'examples' document.Now i am stuck with the pricing.Can any one suggest some pointers on this.
    Regards,
    Anasuya

    Hello Anasuya,
    You can call either function module CRM_PRICING_MAINTAIN_OW  (header) or function module CRM_PRICING_I_MAINTAIN_OW (item) in your CRM BAdI method CHANGEHEAD_SET_DATA to update the pricing conditions in your transactions.
    You are able to do this since the user is in the Basket / Cart page and clicking Update button.
    Easwar Ram
    http://www.parxlns.com

  • Do we need IPC in CRM B2B Webshop for creation of ERP Sales order

    Hi Experts,
    can you pls guide in following scenario in CRM 7.0
    We  are using CRM B2B WEBSHOP, We are creating ERP SALES ORDER .
    We have requirement to display price break up like base price, different discounts, taxes, freights while creation of Sales order on the webshop.
    I would like to understand,
    1) whether we need IPC to show price breakup in SALES ORDER in CRM WEBSHOP.
    2) if yes, do we need enhancement at IPC to display complex discount types on webshop ?
    3) do we need to download entire pricing ( customizing +condition records ) from backend ECC to CRM.
    If anybody has worked on similer scenario ,requesting to help.
    Any points , documents ,step by step guide will be highly appreciated.
    thanks in advance,
    regards,
    PD

    Hi,
    ipc is inbuilt in Kernel to CRM 7.0
    BR,
    Darshan

  • "Forgotten Password" functionality in E-Commerce 7.0 B2C webshop

    Hi gurus,
    Could anyone let me know if SAP has provided a standard Forgotten Password functionality in the E-Commerce version 7.0 B2C webshop solution ?
    Regards,
    Ashok.

    Hello Ashok,
    As far as i am aware this has remained the same since release 5.0
    regards
    Mark
    Edited by: Mark Foley on Oct 5, 2009 7:20 PM

  • I just buy operativesystem onlocker from 3 webshop i got the mail and it says i need to but it on itunes i do the all  steps but its not working its lockt to 3!

    i just buy operativesystem onlocker from 3 webshop i got the mail and it says i need to but it on itunes i do the all  steps but its not working its lockt to 3!

    sorry my english is very cash I think we got the paper on the lock operator and we have done all the steps but it will not play if it is unlocked, bought locked to three paid 350kr

Maybe you are looking for

  • Goods return without a Material Document Reference

    Hi Is there a way to do Goods return without a material document. Please suggest. The situation is that a material will go to the field (material is being maintained against a serial number profile) and let suppose that it is returned after a few yea

  • Getting correct Date/Time data in DIAdem 11 from LabView tdms data

    I've got a handful of large tdms  files (9-18 million data points) collected with LabView that I need to extract elements of, and export as a text file, with the time data as a string. I'm using DataFileLoadSelect and the Register option and then Dat

  • Where can i see current temperature and the like of the MB?

    hi, the subject name pretty much sais what i would like to know. i saw this mooning pb and some videos abt it, and there was this window displaying the current temperature. where can i find that? furthermore would i like to know if the cpu is running

  • Service Groups in CE 7.1.1 - ES Workplace as Provider System?

    All, I'm currently trying to set up ES Workplace as a provider system for multiple services as a Service Group under CE 7.1.1 I assume this requires setting up sr.esworkplace.sap.com as a technical system in the SLD. Is this correct? Where do I find

  • How can I revert back to a previous Java Update

    I am having issues with my software since the last java update. At the moment the only option i see to fix this issue is by reverting back to my previous java update. Please please tell me how to do this. Apple's decision to bundle java into the the