Istore 11.5.10 - creating a new site and assigning existing users to that

Hi,
I need to create a new site in iStore and assign all the Canada customers to that site. Can you please let me know how to do this.
I though that I would create a custom responsibility ABC_IBE_CUSTOMER same as IBE_CUSTOMER and attach that responsibility to the new site and the same responsibility to all the canada custoemers and when they login they will directly been directed to the new site in the customer UI. But it did not happen like that. I might be missing many things inbetween. Can you please let me know the step by step process to achieve this.
Thanks,
Srikanth

function(){return A.apply(null,[this].concat($A(arguments)))}
Why adobe has not issued an update!!!.
Agreed. I'm disappointed that no patch has yet been issued. Hope we don't have to go on explaining this for the next 12 months.

Similar Messages

  • How to create a new UoM and assigning it to characteristic?

    Hi,
    How to create a new UoM and assigning it to characteristic?
    i want to enter cost ( in rupees and laks) against a counter
    but for that counter charecteristic required and for taht charecteristic unit of measure Rs and Laks are not defined in the system.
    So please help me ....

    Hi,
    Use T Code CUNI
    Enter  Unit of Measurement as RS and Text as Ruppes
    Commercial and Technical Display is same as RS
    Numerator is 1
    Denominator 1
    Exponent 0
    Save
    Thanks
    Raj

  • Creating a new site

    Whats going on with creating a new site using Dreamweaver CS4?  When I create a new site and select the 'Local Root Folder' & 'Default images folder' I always have to go up one folder level.
    For example if my site was located here 'C:\Users\Me\Documents\Websites\Mindfully\' and I selected that folder from within dreamweaver it wouldnt select that folder!  The actual folder it would select is this 'C:\Users\Me\Documents\Websites\' for me to select the 'Mindfully' folder I would have to go into a sub folder of 'Mindfully' e.g. 'C:\Users\Me\Documents\Websites\Mindfully\images\'.  The same stands when selecting the 'Default images folder' I would have to create a sub folder within the 'images' folder or type the path in manually.
    I actually thought this was a problem with my old machine but today I upgraded to a Dell XPS Studio machine and the exact same problem is occuring and I have all updates installed!
    Has anyone any suggestions as to what the bloody problem is?

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Why adobe has not issued an update!!!.
    Agreed. I'm disappointed that no patch has yet been issued. Hope we don't have to go on explaining this for the next 12 months.

  • Iweb - does creating a new site delete the previous site?

    I'm having a meltdown. Had my career website built via iweb some time ago, and tonight, was experimenting with iweb for a new website for another unrelated project. So I created a "new site," never suspecting that it would affect my previous website.
    I wanted to see how the new site looked, so I published, and now my career website seems to have disappeared! Spent weeks building that site! (photos, films, etc.) Does iweb only allow for one website? It had a (slightly) different address when the new site published. But now my career domain name goes to the new unrelated website. The new site was a lark -- REALLY need my career website back up and running. Any way to find/retrieve it?
    Is there no warning? -- if you go create a "new site" and go to publish, and the new site DOES replace the old, is there really no warning???

    scottnmarty wrote:
    How do I get it back (as my iweb site and linked to my career domain site?)
    Try publishing all the pages of your "career" site by clicking on its name in iWeb's left sidebar and choosing File > Publish Entire Site.
    See also this article:
    http://iwebfaq.org/site/iWebMultiplewebsites.html
    ...it says: +"When you will publish and upload to the same account entering your url in a browser you will be redirected to the site for which you hit “Publish entire site” last."+
    scottnmarty wrote:
    And is there any way to save what I've done with the new website before I replace it with my old site???
    It will still be accessible at:
    http://web.me.com/[YourMemberName]/[NewWebsiteName]
    But read this:
    _iWeb: Backing up your Domain file_
    scottnmarty wrote:
    Didn't realize that there is no .mac anymore. My old address was web.mac.com/username and the new address is web.me.com/user name.
    Both are valid — see this Apple doc:
    _dotMac to MobileMe transition FAQ_

  • How to create a new Handling unit assigned to a Shipment?

    Hi,
    has anyone an experience how to create a new HU and assign it to a shipment (object type VEKP-VPOBJ = '04')?
    I need to create it via SAPConsole transaction. Originally I intended to use LM19 to create an unassigned HU and to assign it further on via some BAPI. But I could not find any suitable BAPI for the assignment. Standard transaction LM24, allows only to create a HU with an assignement to a delivery (outbound/inbound).
    Thank you
    Martin

    If you want to use function modules to accomplish this, here is 1 way.
    BAPI_HU_CREATE
    BAPI_TRANSACTION_COMMIT
    BAPI_HU_CHANGE_HEADER
    HU_POST
       lw_hproposal-hu_exid         = i_exidv.  "Ext HU# Optional
       lw_hproposal-hu_status_init = 'A'.          "Planned. -
       lw_hproposal-pack_mat   = i_pack_mat.       "Packaging Material
    *  This will create an UNASSIGNED HU object type 12.
       CALL FUNCTION 'BAPI_HU_CREATE'
         EXPORTING
           headerproposal = lw_hproposal
         IMPORTING
           huheader       = lw_huheader
           hukey          = lv_hukey
         TABLES
           itemsproposal  = li_iproposal
           return         = li_return.
    *  I could not assign to a shipment unless the commit was done.
    IF lv_hukey IS NOT INITIAL.
         CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' 
           EXPORTING
             wait   = 'X'
           IMPORTING
             return = lw_return.
         IF sy-subrc NE 0.
           APPEND lw_return TO et_return.
         ENDIF.
    *    Assign to a Shipment
         lw_huheader-pack_mat_object  = i_object.               "04-HU Type for Shipment
         lw_huheader-pack_mat_obj_key = i_obj_key.           "Shipment #   
         lw_huheader-dc_custom_mat    = i_dc_custom_mat."Sets the Dist Channel
         CALL FUNCTION 'BAPI_HU_CHANGE_HEADER'
           EXPORTING
             hukey     = lv_hukey
             huchanged = lw_huheader
           IMPORTING
             huheader  = e_huheader
           TABLES
             return    = li_return.
         e_hukey       = lv_hukey.
    *It is still not attached to the shipment until HU_POST is done.
      LS_OBJECT-OBJECT = P_OBJTYP.    "04
       LS_OBJECT-OBJKEY = P_OBJKEY.   "Shipment Number.
    CALL FUNCTION 'HU_POST'
      EXPORTING
        IF_SYNCHRON          = ' '
        IF_COMMIT            = 'X'
        IS_OBJECT            = LS_OBJECT
      IMPORTING
        ET_MESSAGES          = LT_MESSAGES

  • Create a new site collection in different farm and connect to different content database from decommissioned farm

    I wish to bring down a SharePoint farm1 and create a new site collection in an existing farm2 and connect the new site collection in farm2 to the content db in farm1.
    Is this possible and how should I do it?

    it is possible to copy/move a content database from one farm to another... so long as the NEW farm is at least as up-to-date (version/service packs/updates/hotfixes/etc) as the OLD farm.
    you can move a site collection into its own content database.
    hopefully that answers your question.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • I want to open a domain.site2 file outside the default folder (User/Library/Application Support/iWeb) with iWeb11, but iWeb only opens the domain file in the default folder. If I delete the default domain file, iWeb wants to create a new site. Help please

    I want to open a domain.site2 file outside the default folder (User/Library/Application Support/iWeb) with iWeb11, but iWeb only opens the domain file in the default folder. If I delete the default domain file, iWeb wants to create a new site. Does anyone have the same problem or know how to fix it?

    In Lion the Finder folder is now invisible.  To make it permanetely visible enter the following in the Terminal applicaiton window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    For opening your domain file in Lion for the first time or to switch between multiple domain files  Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an applicaiton.
    Just launch the applicaiton, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    OT

  • Why can't I create a new site?

    I am not able to create a new site. I have tried going to the
    site menu and all it gives me when I try to manage sites is an
    untitled site in the list. When I open the start menu to create a
    new site, this message pops up:
    "While executing the following JavaScript error(s) occurred:
    Exception thrown in native function."
    I have tried reinstalling the program after deleting it and
    all the preferences I could find. What can I do?

    Open Site Manager. Click on New. If you get a js error trying
    this, then
    go here -
    Troubleshooting JavaScript errors in Dreamweaver
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19105#dat
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "rae_cbs" <[email protected]> wrote in
    message
    news:f2agke$fe$[email protected]..
    >I am not able to create a new site. I have tried going to
    the site menu and
    >all
    > it gives me when I try to manage sites is an untitled
    site in the list.
    > When I
    > open the start menu to create a new site, this message
    pops up:
    > "While executing the following JavaScript error(s)
    occurred:
    > Exception thrown in native function."
    > I have tried reinstalling the program after deleting it
    and all the
    > preferences I could find. What can I do?
    >

  • Error when using ANY "save site as template Include Content" solution to create a NEW Site Collection

    Here is the scenario. (SharePoint 2013)
    In Dev/Test/Prod any Site that we Save as Template and include content and then, Download and try to use in a new Site Collection errors out upon use "List does not exist" error.
    This occurs with ANY Site, even OOB Team Site template that is immediately "Saved as Template".
    We can do this in any other environment (we have several test labs 1 in O365 and 1 in VM that is very OOB)
    We can take the site solution from the environments we're having the issue in and use them successfully in our Lab environments (on prem or in the cloud).
    We have also tried taking Site solution from lab environment (where we know it works fine) and tried to use these in Dev/Test/Prod and they also error on us.
    In the Dev/Test/Prod environments that have the issue if we DO NOT include content, the template works just fine to create a new site collection with the template.
    Keep in mind we're talking about environment with no 3rd party apps, no custom code, just 2013 SharePoint with all patches and CU up to June 2013, AND this is ANY template even a vanilla OOB template without anything in it.
    You can always save site as template including content, download/upload it to new site collection solutions gallery and activate it without any issue... it's only if you try to use these templates to create a site that the error occurs.
    Any thoughts on this?
    J

    I also experiencing the same issue. I also tried to create a new site-collection using publishing site template, resulting in "list not found" error.
    Later I tried just a team-site (with content) -> the same error.
    The error appears on two different (post SP1) farms. That's why I tested the site-collection creation on an old (pre SP1) farm: the error doesn't exist. Site-Collections are created properly.
    My conclusion is: either SharePoint SP1 or a later CU causing the error.
    Regards,
    Valerian

  • I bought a new iMac.  iWeb and all folders migrated over, no problem, but I cannot bring up my website - it only seems to allow for creating a new site.

    I bought a new iMac.  iWeb and all its folders migrated over, no problem, but I cannot bring up my website - it only seems to allow for creating a new site.

    You need the 'Domain' file in which iWeb keeps its data. This lives by default in (user)/Library/Application Support/iWeb. You need to locate it on the old machine and copy it to the same position in the new machine. Note that it is the Library folder in your Home folder, not the one at root level.
    This folder is hidden on Lion and above; to access it, in the Finder go to the ‘Go’ menu and hold down the Option (Alt) key; the Library folder will appear as a choice. In Mavericks you can make it permanently visible - open your Home Folder the from the Finder's View menu, choose show View Options and check Show User Library.

  • Cannot create a new site while a VD/code works in Default site. IIS 7.5 Windows 2008r2 64 bit system

    We are moving from CF8 to CF11, windows 2003 to windows 2008 r2 64bit, IIS 6 to IIS 7.5. When I have my code as a VD or placed in the wwwroot, in the Default website, the site works OK but when I create a new site pointing to the code,placing in a different folder, it throws an error :
    "The requested content appears to be script and will not be served by the static file handler."
    1. All the Handler Mappings are mapped OK.
    2. Tried re-installing ASP.NET, iisreset etc.
    3. Tried changing the AppPool.
    Please reply ASAP.
    Thanks & Regards,
    Naresh.

    Hi Naresh
    Let's first make sure that this is not an IIS issue. Like, if you have another server or may be 2-3 test VM where you can test the same.
    If on the other servers, you are not facing the same issue then re-install IIS and then create connector once again in the server where you are facing this issue.
    Also, make sure that if connector is 64 bit then the app pool should be 64 bit as well.
    HTH
    Thanks
    VJ

  • Cannot create a new site

    I am not able to create a new site. I have tried going to the
    site menu and all it gives me when I try to manage sites is an
    untitled site in the list. When I open the start menu to create a
    new site, this message pops up:
    "While executing the following JavaScript error(s) occurred:
    Exception thrown in native function."
    I have tried reinstalling the program after deleting it and
    all the preferences I could find. What can I do?

    Try this:
    Troubleshooting JavaScript errors in Dreamweaver
    http://www.adobe.com/go/tn_19105
    David Alcala
    Adobe Product Support

  • Creating a new site has become more obscure....

    So, on one of our site collections, I needed to activate the publishing features so that some navigation mentions that were available in sp 2007 worked under the new sp 2010 ribbon.
    That seemed harmless enough.
    Today, however, a site admin contacted me asking why they could not find where to create a site.
    Before that feature was activated, site actions > create a new site was available. Also, when one within a site's all site content clicked on Create, sites was one of the categories that could be selected.
    Now however sites are no longer available there.  The only place I could find to use for creating a site was to go to site actions > site settings > sites and workspaces and to click create there. Then we go to the old SP 2007ish create a site
    page.
    Is this the way this should work? Or is it acting this way because I did not turn on the publishing features on the sites (because we don't want all the "check out, change, check in, publish" workflow-ish actions).

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Why adobe has not issued an update!!!.
    Agreed. I'm disappointed that no patch has yet been issued. Hope we don't have to go on explaining this for the next 12 months.

  • Do not see image and content folders after creating a new site

    Why didn't I see the image folder, content folder......aftter I create a new site?

    DW does not create any folders for you, except those used by DW code (Templates and SpryAssets for example).
    It's up to you to organize your site the way that makes the most sense to you by adding in folders like images, content, pages, etc.
    Just don't move files out of any of the automatically generated folders that DW does give you, that can break things (especially Template .dwt files).

  • Another site already exists at . Delete this site before attempting to create a new site with the same URL

    Hi Everyone,
    It would be great if you can help me with the below.
    Few days ago one of our content db went into suspect mode.  Our DB team had resolved the issue. But one of the sites that was created probably around the same time is no more available. When I try to create a site on the same URL, I get the following
    error.
    Another site already exists at <URL>. Delete this site before attempting to create a new site with the same URL
    When I try to delete the site or if I try to view the details of the site using Central Administration, I can find the site, but it doesn't display any details like Title, DB Name etc.
    If I use stsad -o enumsites command to list ll the site, for the given site I get the following error:
    <nativehr>0x80070002</nativehr><nativestack></nativestack>There is no Web named <URL>.
    I am not even able to delete it using Powershell.
    Please suggest.
    Thanks,
    Uttkarsh

    You might be dealing with orphaned site. Go through the following blog post and see if it helps you delete the orphaned sites.
    http://www.cjvandyk.com/blog/Lists/Posts/Post.aspx?ID=299
    Amit

Maybe you are looking for

  • Late 2013 MBP Retina - vertical lines

    I have vertical thin colored lines showing on the left side of my display (13.3" MacBook Pro with Retina screen). Getting progressively worse with additional lines and colors.  Never had this before, mac was sleeping and fully charged, opened the lid

  • Running Windows XP

    After installing Windows XP I find that the wireless adapter does not work in XP (although it works well in OSX). Windows indicates that it is operating correctly but it doesn't alow me to change the IP settings - saying that the adapter is not prese

  • My mac Mini has problem rendering images and video

    THE PROBLEM: My mac mini has problem rendering JPEG image. There are strips on the images. Other images such as GIF, PNG, TIFF, and BMP are displayed nicely. The images shown in the links below illustrate the problem: http://www.flickr.com/photos/ter

  • Upgraded to mavericks and now both email accounts have been merged into one

    just upgraded to mavericks and now both mine and my husbands email accounts have been merged together rather than having separate inbox's.  How do I separate them again?

  • OPENGL disabled with Intel HD Graphics 3000 384 MB

    Macbook Air with Intel HD Graphics 3000 384 MB. When attempting to open 3D file Photoshop cc14.2.1 receive error message "Could not complete your request because 3D functionality is currently disabled due to OpenGL being disabled." Cannot enable OPEN