Web Shop Folder in ERP Scenario

I am trying to implement CRM 5.0, R3 Scenario. I am not able to find in documentation how to create the folder where web shop must be stored, even if I defined the path in the XCM console (I hope I made the proper configuration).
Does anybody give me any help or documentation n this issue?
Thanks in advance.
Mario

Juergen,
I am trying to implement a CRM scenario (R3 scenario) with TREX connection.
I know that I have to specify the file path where shops are stored (I did so in the tag SHOP in my application).
But, once I run the application <myhost>:<port>/shopadmin/shopadmin/init.do the system return the error message: No XCM application configuration has been passed and there is no default XCM application configuration defined. Check XCM configuration.
I supposed that this error message was related to some issues in configuring the system about "File system path that contains the ISA R/3 shops".
Have you got any idea? Perhaps this issue is strictly connected with the TREX implementation.
Mario

Similar Messages

  • Customised look and feel for B2B/B2C web shop.

    Dear experts,
                I would like to find out if there is an admin page for SAP E-commerce to customise the look and feel of the webshop?
    Thanks.
    Wein

    Hi Wein,
    To change Look and Feel for Web shop is depends on scenario of eCommerce application i.e. B2B or B2C. B2B has different structure than B2C.
    Web Channel application comes in SAP standard with SAP look and Feel. You have to change look and feel as per client requirement.
    To change look and feel of Both B2B/B2C scenario you have to deal with files like CSS, JSP, Properties, XLF and some time you have to add your custom JAVA, JSP, CSS, Properties files etc...
    To change standard SAP logo youhave to make change in CSS files. Also you have to consider Browser type while changing look and feel because to display your B2B/B2C application correctly in different browser you have to make changes in different CSS.
    You will get better idea with example how to change look and feel in "Dev & Ext. Guide" for Web Shop. You will get this from Service Market place.
    eCommerce Developer.

  • Pdf doc  is required for  B2C  CRM 2007  WEB SHOP

    Hello Experts,
    We have a scenario where (pdf doc ) is required for  b2c Header level and tem level in CRM 2007 web channel.
    we  have set up a product and product catalog and maintained a PDF document in the HEADER AREA--
    Documents Tab--BDS_PDF folder.
    After intial replication Documents was published in the following path 
    *catalog/DE DE161EE3D35DAAF19F1E000C29D94525.pdf     *
    we are able to find images and pdf in the  index server but unable to  see the same in the web shop.
    Did I miss some thing ? Do I need to do any other settings in XCM or in JSP?
    Thanks in advance
    Namitha Verma

    Hello  namitha Verma
      I am facing the same problem, are  you able solve the problem kindly let me know .     
    Regards
      Kiran Posanapalli

  • Adding a new field extension on CRM Order Item tab in the web shop order

    Hi CRM E-Commerce Gurus,
    I want to add a extension field on any web site product such as "zz...." in order to use this data in order's item tab. What shoul I do on J2EE Stack-.jsp method and ABAP Stack at the BADI implementations.
    Could you please help me in order to add a new field extension on CRM Order Item tab in the web shop order ?
    Thanks,
    Kind Regards,
    Fahrettin

    Hi Arshi,
    We have could not find any java action class such as Maintainb2csaveorderaction in config.xml folder and also there is no available threads and clue on SDN, google etc. Therefore we are got stucked on this issue. In SAP_ISA_60 Development and Extension Guide of SAP E-Commerce there is no sample java action class code such as Maintainb2csaveorderaction but some ABAP codes are available for the extension structure.
    Do you suggest any java action class such as Maintainb2csaveorderaction codes like in your B2B scenarios etc.?
    ls_header is a local structure with header data
      ls_extension-ref_guid = ls_header-guid.   
      ls_extension-alt_handle = ls_header-handle.
    extension are name value pairs
      ls_extension-name = u2018Z_CUSTOMER1u2019          u2018 name
      ls_extension-value = ls_header-zcustomer1. u2018 value
      APPEND ls_extension to extension_header_out
    now adding extensions to the items
      LOOP AT lt_items INTO ls_item.
        ls_extension-ref_guid = ls_item-guid.
        ls_extension-alt_handle = ls_item-handle.
        ls_extension-name = u2018Z_CUSTOMER2u2019          u2018name
        ls_extension-value = ls_item-zcustomer2.   u2018value
        APPEND ls_extension to extension_item_out 
      ENDLOOP.
    ls_header is a local structure with header data
      LOOP AT extension_header_in INTO ls_extension.
    check the name to find the according field
          IF ls_extension-name = u2018Z_CUSTOMER1u2019.
            ls_header-zcustomer1 = ls_extension-value.
          ENDIF.
      ENDLOOP.
    sort the extension table by ref_guid and handle to obtain a better access
    with binary search.
      SORT extension_item_in BY ref_guid, alt_handle.
      LOOP AT lt_items INTO ls_item.
    find the starting point for a loop over extensions
    use guid and handle as one logical key to access the extension
        READ TABLE extension_item_in
          WITH KEY ref_guid = ls_item-guid
                   alt_handle = ls_item-handle
                   BINARY SEARCH.
        IF SY-SUBRC = 0.
          LOOP AT extension_item_in INTO ls_extension
            FROM SY-TABIX.
    check, if the entry is relevant
            IF NOT    ls_extension-ref_guid = ls_item-guid
               OR NOT ls_extension-alt_handle = ls_item-handle.
               BREAK.
            ENDIF.  
            IF ls_extension-key = u2018Z_CUSTOMER2u2019.
              ls_item-zcustomer2 = ls_extension-value.
            ENDIF.
          ENDLOOP.
        ENDIF.     
      ENDLOOP.
    Thanks
    Kind Regards,
    Fahrettin

  • PDF document in B2C Web shop

    Hello Experts,
    I am trying to set up a B2C shop in CRM 2007 (sp02).
    I have set up a product catalog and maintained a PDF document in the HEADER AREADocuments TabBDS_PDF folder.
    I replicated the same to TREX(having IIS installed on the same machine). I could find the index and the document in TREX and on IIS.
    I am unable to see the same in the web shop.
    Did I miss some thing ? Do I need to do any other settings in XCM or in JSP?
    Thanks in advance
    Regards
    Aravind

    HI Sateesh,
    Thanks you for your response, Iu2019d like to mention that I am from functional background and hence would like further help in this issue.
    I could find the Product DetailsB2C.jsp at location: ..\DVEBMGS00\j2ee\cluster\server0\apps\sap.com\crm~b2c\servlet_jsp\b2c\root\catalog
    I found the following code from the JSP page  which I thought  is relevant from your suggestion. (EX:item.getAttribute("DOC_PC_CRM_PDF"))
                   <%-- image --%>
                   <% pageContext.setAttribute("item", currentItem); %>
                   <isa:ifImageAvailable name="item">
                       <div class="b2c-prd-img">
                           <img src="<isa:imageAttribute guids="DOC_PC_CRM_IMAGE,DOC_P_CRM_IMAGE" name="item" />"
                                alt="<%= JspUtil.encodeHtml(currentItem.getDescription())%>" />
                       </div>
                   </isa:ifImageAvailable>
    Could you please elaborate/ specify the changes that I need to make in this code?
    My objective is to dispaly a PDF about the product in the web shop.
    Thanks In Advance
    Aravind

  • Web shop LWC Chat and Interaction Center integration

    Hello All,
    As I know, Live Web Collaboration in SAP E-Commerce for mySAP CRM (B2B, B2C Shops, and Internet Customer Self-Service) supports chat in CRM Interaction Centre WebClient, so that customer requests for assistance via chat are forwarded directly to the IC WebClient.
    I had maintain LWC component in B2B Web Shop and LWC application for Agents, so chat between Consumer and  Agent work fine. Also I maintain IC WebClient and Contact Center Simulator for testing, as described in this blog (/people/stephen.johannes/blog/2008/05/21/crm-contact-center-simulator-setup) .  I tested chat and telephony functions u2013 all  work fine.
    Than I tried to integrate LWC chat function and IC WebClient. I did all necessary settings as described in LWC XCM application help, CRM7.0 help (http://help.sap.com/saphelp_crm70/helpdata/en/fe/4cad3efa11b300e10000000a114084/frameset.htm)  and SAP Solution Manager  (http://help.sap.com/SCENARIOS_BUS2004/helpdata/EN/E8/9B0342D0369C39E10000000A155106/frameset.htm) .
    But integration donu2019t work. When I try requests for assistance via chat in B2B shop, I receive message u2013u201C No agent is available to assist you. Try again lateru201D
    Can any one tell me what are the possible ways to integrate  LWC Chat in B2B Web Shop with Interaction Center WebClient?
    Regards,
    Yuriy

    Hello Oliver,
    I had maintain LWC component in B2B XCM (http://<host>/b2b/admin/xcm/init.do  path: General Application Settings  -> Customer  -> lwc -> lwcconfig). Here I configure JMS host and port.
    Also I maintain LWC XCM (http://<host>/lwc/admin/xcm/init.do). I had create custom scenario where I configure JCO connector to back end system.
    Then, in customer side  I go to the B2B Web shop (http://<host>/b2b/init.do), click Help link, and then in pop-up window - Customer Support - > by Chat.
    In Agent side I open LWC  (http://<host>/lwc /init.do), enter my user  name and password, click Available button, and after Customer send request for Chat, press  Pick Request.
    In this case B2B Web Shop Customer can chat with Agent. Multichat also supported u2013 one Agent can chat more than one customer. But LWC application interface looks primitive and limited.
    I am interesting how I can integrate LWC and IC WebClient as it described in SAP help.  Anybody can help me?

  • Production B2C web shop sites

    Hi all,
      I was looking to see if anyone could give me a URL of an existing B2C web shop that I can look at to see the software package in action. So far the demo sites that I have looked at have been extremely slow. Our e-commerce sites are currently in .net, and we would like to move to the web shop application, but what we have seen so far has been very disappointing performance-wise compared to our existing applications. We are currently migrating from a custom ERP to SAP and looking to convert four e-commerce sites to a CRM E-Commerce/Enterpirse Portal solution. Thanks.
    Dave Gramenz

    Here's a couple I know of:
    Sylvania's B2C - http://ecom.mysylvania.com/sylvaniab2c/b2c/z_login.do
    Sony Euro's B2C - https://shop.sonystyle-europe.com/SonyStyle/b2c/catalogForward/(xcm=PCM_b2ccrmstandard&layout=15_108_60_47_109_113&uiarea=0&Z_CONTEXT_RECOMM_TYPE=recommendations&ctype=areaDetails&carea=%24ROOT)/.do?catalogEntry=true

  • How to set up WEB SHOP in R/3 & CRM?

    Hi
    I want to set up Webshop in both R/3 & CRM & linking of url for CRM B2B transaction.
    please let me know.
    -Rohit

    Hi Rohit:
    <b>1.Access the activity using the following navigation options:
    http://<host>:<port>/shopadmin/shopadmin/init.do?scenario.xcm=<yourscenario>
    2.Select a logon language, for example EN.
    3.Logon to the Web Shop Management with the Web Shop Manager user/password.</b> <b>4.Choose Create New Shop for scenario and select the Internet Sales scenario, for example Internet Sales B2B or Internet Sales B2C via dropdown list.</b><b>5.Create a Web Shop for each language you want to offer.</b>
    <b>6.Make the following entries for a sample B2B Web Shop:</b>
    New Shop     Value (Example)
    Shop ID     B2B_SHOP
    Description     Business to Business – Shop
    General Information     Value (Example)
    Usage     Internet Sales B2B
    Authorization Group     
    User Administration-     Partner Function Contact Person-     Country group     e.g. 00000015Z001 (US) or Z002 (EU)
    Catalog     Value (Example)
    Catalog     PRODUCT CATALOG
    Variant     Variant 1 (EN) (defines the language of the shop)
    Controlling price determination in the catalog     Via IPC
    Order     Value (Example)
    Order type     ISBB
    Sales office     <empty>
    Order Templates Allowed     Select
    Availability check control     CRM integrated availability check (SAP APO) or availability information (SAP R/3)
    Display product determination information     Select
    Quotations     Value (Example)
    Request for Quotation     Select
    Order type     AGIS
    Contract (B2B only)     Value (Example)
    Contract Determination     <empty>
    Contract Negotiations     Value (Example)
    Allow Contract Negotiations     <empty>
    Marketing     Value (Example)
    Global Product Recommendation     Optional, you can assign later
    Personalized Product Recommendation     Optional, you can assign later
    Cross-, Up-Selling and Accessories     Optional, you can assign later
    <b>7.Choose Save.</b>
    8.Make the following entries for a sample B2C Web Shop:
    New Shop     Value (Example)
    Shop ID     B2C_SHOP
    Description     Business to Consumer Shop
    General Information     Value (Example)
    Usage     Internet Sales B2C
    Authorization Group     
    User Administration-     Country group     Z001 (US) or Z002 (EU)
    Catalog     Value (Example)
    Catalog     PRODUCT CATALOG
    Variant     Variant1 (EN) (defines the language of the shop)
    Controlling price determination in the catalog     Via IPC
    Order     Value (Example)
    Order type     ISBC
    Sales office     No entry
    Availability check control     CRM integrated availability check (SAP APO) or availability information (SAP R/3)
    Marketing     Value (Example)
    Global Product Recommendation     Optional, you can assign later
    Personalized Product Recommendation     Optional, you can assign later
    Cross-, Up-Selling and Accessories     Optional, you can assign later
    <b>9.Choose Save.</b>
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • BOB web shop _ Sales Contract

    Hi
    Can i use SALES CONTRACT / Sales Contract Determination in BOB scenario?
    If yes, how? I have not seen "Contract Determination"  selection box in SHOPADMIN when i have defined BOB shop.
    Kindly help.
    Regards

    Hi,
    Any pointers for function module used for creation of a new BP for a new customer request in BOB Web shop?
    Is it same as B2C Web shop?

  • Get Web Shop's URL

    Hi Guys!!
    How can I get the web shop's url in CRM 5.0?
    Thank you very much in advanced,
    Edorta.

    Ho Edorta,
    I was under impression that you got the solution.
    Here what you have to do to get the CRM 5.0 webshop up and running:
    1. First check whether the webshop application is installed using this URl - http://your crm host name:port number/nwa. use your crm id to login. click on 'administration' and then on 'application' links. Search for something b2b*. If installed you should be able to see crm b2b components. If not found then you have to install the JCRM components. In CRM 5.0 JCRM components should get installed along with standard CRM, if selected the check box JCRM during the installation.
    2. After installing these components you need to create your customer b2b scenario using XCM administration - http://your crm host:port/b2b/admin/xcm/init.do.
    3. Create the webshop using webshop management
    4. Create a contact person to a customer and assign a webuser id and password
    5. You might also need to create and publish the catalog before log into the webshop. Otherwise hide the catalog in the shop management, so that you dodn't get the error while login
    Do not forget to reward if ti helps,
    Regards,
    Paul Kondaveeti

  • What are most valuable and required features in the B2B Web shop checkout?

    Hi,
    I am product manager for SAP Web Channel. I would like to use this forum as a channel to learn more about our customer's requirements for Web shop checkout. Also, I would like to gather new ideas from our customers and partners for a highly usable and functional Web shop checkout.
    What do you think are very valuable or even u201Cmust haveu201D features in a B2B scenario Web shop checkout? You can let me know checkout features that are especially relevant for your own business process. In this respect, it would be interesting to know what B2B checkout features you developed in your E-Commerce project. However, I would also like to know what features, apart from your own specific process requirements, that you would judge as very important standard B2B checkout features. Think of features such as an Ajax search for shipping addresses or payment via direct debit or 3D Secure. 
    Let me tell you upfront what I roughly understand as "checkout". Checkout for me is a process typically triggered by a 'Checkout' button in the shopping basket. As a result, a checkout page gets called. On this page or accross different sequent pages the customer is requested to enter or select certain information such as billing and shipping address(es) and payment data. This information is required by the Web shop owner in order to fulfill the customer order.
    All your ideas, feedback, and thoughts on this topic are very welcome. Please understand that providing your ideas and requirements on the checkout will not necessarily mean that SAP will develop them in the future. But every idea will broaden my mind on what are the market requirements regarding this topic.
    I hope that I can start an interesting discussion for all of you here in the forum. I will provide points for interesting ideas, thoughts and requirements.
    Greetings
    Torsten Kliesch

    Hi Sateesh,
    thanks for your feedback. I have granted you some points for it first of all. Let me ask 1-2 two questions regarding your feedback though:
    Regarding the pricing I understand your point in a way that it should be possible to display more price details in the basket or at least in the order overview of the checkout (before submitting the basket as a sales order). Meaning it should be possible to more easily switch on the display of price details like subtotal, customer discount in the basket and order overview. Is my understanding correct?
    Greetings
    Torsten

  • URL for accessing the web shop in crm2007

    Hi all,
    Please help me access the web shop which i created recently.
    What is the standard URL in CRM 2007 for accessing the web shop in b2c scenario?
    Regards
    Apoorva Asthana

    Hi
    If RFC for TREX is working fine and catalog replication log shows successful, clear TREX cache bfore logon to shop.
    Step1: http://<ip>:<port>/b2b/admin/index.jsp
    Step2: Application Cache Statistics
    Step3: TREXNameServerCache
    Step4: Clear
    Step5: Logon to shop
    Note: if you want to see the replicated product catalog data use report TREX_RFC_AE_EXAMPLE
    Regards,
    Pavan

  • Implementation of Web Shop on EP7  ( ECC6.0 Java )

    Hi All,
    Currently, we are implementing Web Shop on EP 7 (ECC 6.0 Java). We are done with SSO, XCM and Shop Managment configurations and in the middle of creating a B2B shop.
    Next step, we need to bring the shop onto Portal. Shall we create an iView?  What kind of template we should create? Or any other approach?
    Thanks in advance,
    Mallika

    Yes indeed, create an iView.  You can start with creating a simple 'URL iView' (assuming you know the start URL of your web shop).
    Assign yourself the 'Content Admin' role in the portal
    With the Portal Content folder, right click and create->new->iView
    Create based on a template
    look for the template  'URL iView'
    input the URL
    save the iview
    Add iView to a page, workset and role.... assign to a user.
    You can look at more complex integration (if you need to pass parameters etc etc) once you know the full requirements.
    If this was helpful, please award points   (or if you need more info, just say so)

  • Error while opening the B2C Web Shop

    Hi All,
    Our Basis team has installed the JAVA Stack for CRM 7.0 EHP1. We can successfully open the XCM page for the web shop using the following URL: http://host:port/b2c/admin/xcm/init.do.
    We get a SAP E-Commerce Error page when we try to launch the B2C Web Shop using the following URL:
    http://host:port/b2c/b2c/init.do. The following error messages are shown along with a "Log On" button:
    An application error occurred
    A serious system error has occurred
    The shoplist read from buffer is empty
    Contact the administrator
    Log on
    I have created the Internet B2C Users& specific roles and also done the XCM Configurations (New customer configuration, General Settings & JCO Component created). Restarted the Java Application. However we still get the same error page while launching the web shop. Please help us to rectify this error.
    Also I get a blank-white page when I try to open this URL for maintaining a B2C Shop: http://host:port/shopadmin/shopadmin/init.do?configuration.xcm=Z_MY_SCENARIO
    I can successfully open the URL for SHOPADMIN XCM: http://host:port/shopadmin/admin/xcm/init.do
    Please help us to resolve the issue. How can we maintain the SHOP? Have we missed some configurations?
    Thanks !

    I am not able to open the shopadmin URL for defining a new B2C web shop. This URL does not work : http://host:port/shopadmin/shopadmin/init.do?configuration.xcm=ZMY_SCENARIO. I just get a white blank page.
    I can open the XCM for shopadmin using teh URL: http://host:port/shopadmin/admin/xcm/init.do.
    Thanks.

  • How to get the actual path of a file present in the Web content folder

    I have a jasper file which is present inside the Web-Content folder of my project.
    I need to pass this file as an argument to the FileInputStream object. How can i give the actual path of the jasper file, since this project can be deployed anywhere else also.

    You may be able to use the getRealPath or getResource methods in ServletContext

Maybe you are looking for

  • NEW GL: Customer/Vendor Line items cannot be displayed per business area

    Hello ECC 6.0 Masters! We have implemented Standard Document Splitting by Business area(BUSA). See below scenario.. ENTRY VIEW PK     Account          Segment          Amount 01     Customer               100 50     Expense          BUSA1          60

  • Data from Business Add-In ME_PROCESS_PO_CUST not adopted

    Hi, I am trying to find out an exit or badi for Updating Tax Unit of Measure in transaction ME21n.( Auto Po Creation) The scenario is like this... The system assumes Base Unit of Measure for all its calculations. If the order UOM of a part happens to

  • Check printing :-- APP (F110)

    Hi Sapgurus, Could you please tell how to print a check using F110. I have clicked on Schedule print, also a background job is generated but there is no spool with it. Morover when we click on log of payment run, payment run details gives us the summ

  • How to create a New user group for AD-HOC

    when i select a work area for ad-hoc i dont find any exisitng user groups... i get a blank screen with an error saying no usergroup is there a possibility to copy these across clients? pls advise thanks

  • Payment Sytem Unavailable

    I'm trying to purchase a monthly PS subscription after letting my previous expire.  When I get to purchase now page and click on Purchase button it says that "payment system unavailable" and to try back.  I've tried for multiple days now, facing a de