How to import catalog structure in other machines.

Hi,
    I have two queries.:-
   1).   I have a Clothing Catalog on my machine which I created in ACC. How do I import this catalog structure in other machines as well.
   2).  How to specify CatalogId in my project if I have multiple Catalogs in my project.
         For a single Catalog I used to mention catalog Id in catalogTools.properties in /atg/commerce/catalog/catalogtools.properties as :-
         defaultCatalogId=catalog30001
         How to I do it for multiple catalogs.
Please Advice.
Thanks

Go to dyn/admin compoent path,
          say in this case u created catalog data from acc, Go to /atg/commerce/catalog/productCatalog compoent
          and run <export-items item-descriptors=""/> Provide item descriptors name. under  'Run XML Operation Tags on the Repository' section.
         It will export all data for given component and it's dependancies.if u wan to disable dependancies specify skiP-references="true"
To import and export data u can use /ATG_HOME/bin/startSQLRepository command only in dev envirnoment.
startSQLRepository- m ModuleName -export/import export_file_name -repository repository_component_full_path
eg:-
startSQLRepository -m YourModule -export export.xml -repository /atg/commerce/catalog/ProductCatalog
startSQLRepository -m YourModule -import export.xml -repository /atg/commerce/catalog/ProductCatalog
Please make sure you module is able to connect to database,Otherwise jtdatasource exception will come, saying not able to connect datasouce atgmysqldb(default db configured in jtdatasoruce property)
Also if u want to export complete db,Use all argument.
startSQLRepository -m YourModule -export all export.xml
   2. U have multiple options to set catalogid in profile.
use multisite and assign default catalog to individual sites,
assign catalog to regiestered user profile.
Use scenario to assign catalog to profile based on some rules.

Similar Messages

  • How to import catalog when reinstall V

    My computer crashed but the information was saved.  After my computer was working again I reinstalled PSEV9 but do not know how to import the old catalog into reinstalled program.  I can find the path to my old catalog on the saved files.  I tried the 'restore catalog' under the file menu but I could not get it to work.   Thanks, Wayne

    You transfer the catalog file (actually the entire folder that contains the catalog file, along with subfolders) to your new computer.
    You transfer your photos to the new computer, if possible, to the exact same location they were in on the old computer (i.e. if they were stored in c:\my photos on the old computer, then put them in c:\my photos on the new computer)
    Then comes the hard part. You double-click on the catalog file. That's it

  • How to import your photos from time machine

    I had to reinstall my OSX and iphoto was gone when the system restarted, any advice on how to import my photos from my time machine backup?
    thanks

    Restore the entire library as shown in this screenshot:
    OT

  • How to import jsp file in other jsp file

    I am using JSP for a website and my database is in Oracle. I want to connect to Oracle database in one jsp file such as connection .jsp.
    Then I want to use this same connection in all the jsp files by importing the jsp file. (I know in Core java we can do this by import statement e.g. import connection.java) but how can I do this in jsp. whwn i am importing connection.jsp using <%@ page import=connection.jsp%> It is showing errors.
    Plz help me. It's very urgent.
    Thanks in advance.

    Thats because import is for importing packages as any jsp tutorial could have told you. You are looking for include:
    <%@ include file="connection.jsp"%>

  • How to import ligin name to other page..

    hi..
    i am making a application in tomkat 5.0 using JSP.first i am checking the authentication through a login page then forwarding it to a connect.jsp for authentication.after the if authorised then redirecting to a welcome page..i am using Mysql database 4 my application..but my problem is that i am not able to inport the login name for my welcome page.plz. help me and give me some suggetion ,how would i import login name so that i can show it in welcome page..
    code of connect.jsp is..
    <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    </head>
    <body>
    <%@ page import="java.sql.*" %>
    <%
    String username=request.getParameter("user");
    String password=request.getParameter("pwds");
    try{
    Class.forName("com.mysql.jdbc.Driver");
    Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","nisha");
    Statement stmt=con.createStatement();
    String vsql="select * from login where uname='"+username+"' and pwd='"+password+"'";
    ResultSet rs=stmt.executeQuery(vsql);
    if(rs.next())
         response.sendRedirect("welcome.jsp");
    else
         out.println("Wrong username or password");
    }catch(ClassNotFoundException e)
    out.println(e);
    %>
    </body>
    </html>
    thanx
    nisha
    Edited by: nisha.gill20 on Jul 10, 2008 11:42 PM

    Nishaji..
    response.sendRedirect("welcome.jsp");This doesnt look good for me..use request dispatcher to forward to ur jsps or servlets..then u can make use of ur request object to pass ur uname like request.setAttribute...and get the name back in ur welcome.jsp page..
    i recommend some reading on servlets and jsps that will make u understand more than what I said rite now..:)
    [email protected]
    Edited by: mshanu on 11 Jul, 2008 12:16 PM

  • How to import catalog and create new link to folder in a new external disk

    I lost my data in my laptop. I have a back-up into an external hd. Now I would like to import the catalog and change the link of folder to external disk

    You can open the backup of your catalog file by copying it to wherever you want it to be and then double-click on it.
    You would have to re-link all the photos inside of Lightroom using these instructions: Adobe Lightroom - Find moved or missing files and folders

  • Lightroom: how to import catalog from Elements?

    I installed lightroom 5.6 on my pc and want to import my catalog from photoshop elements 4. This doesn't work. Can anyone help? Thank you

    Lightroom Help | Import photos from other catalogs

  • Lion ate my Entourage folders. How to import to Mail from Time Machine backup?

    Hello,
    I upgraded to Lion after doing a Time Machine backup.  Entourage is now not supported and I'm up and running on Mail except I don't have my old e-mails that I stored in subfolders.  Many were important/current items that I need, help!

    Ok so after you entered the Terminal command, did you open Finder and see your user Library folder? If so, you should be able to find your Mail folder inside Library. You should then be able to open Time Machine by right clicking the Time Machine icon in the upper right part of your menu bar and selecting Enter Time Machine. Once inside Time Machine you should be able to navigate to your user Library folder then the Mail folder.

  • How to import jsp files into other jsp files ?

    hi i have the following code mymainpage.jsp
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;" >
    <title>Sagem Module</title>
    </head>
    <body>
    <f:view>
    <rich:modalPanel id="panel" width="350" height="100">
            <f:facet name="header">
                <h:panelGroup>
                    <h:outputText value="Modal Panel"></h:outputText>
                </h:panelGroup>
            </f:facet>
            <f:facet name="controls">
                <h:panelGroup>
                    <h:graphicImage value="/images/modal/close.png" styleClass="hidelink" id="hidelink"/>
                    <rich:componentControl for="panel" attachTo="hidelink" operation="hide" event="onclick"/>
                </h:panelGroup>
            </f:facet>
            <h:outputText value="This panel is called using Component Control Component"></h:outputText>
            <br/>
            <h:outputText value="Closure link (X) works also through Component Control"></h:outputText>
        </rich:modalPanel>
    <h:form>
        <h:outputLink value="#" id="link">
            Show Modal Panel
            <rich:componentControl for="panel" attachTo="link" operation="show" event="onclick"/>
        </h:outputLink>
    </h:form>
    <f:view>
    </body>
    </html>can i put the model panel into another file for example modalpanel.jsp and then include it into my page mymainpage.jsp such
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;" >
    <title>Sagem Module</title>
    </head>
    <body>
    <f:view>
    //**** import modalpanel.jsp
    <h:form>
        <h:outputLink value="#" id="link">
            Show Modal Panel
            <rich:componentControl for="panel" attachTo="link" operation="show" event="onclick"/>
        </h:outputLink>
    </h:form>
    <f:view>
    </body>
    </html>

    Use jsp:include.
    parent.jsp
    <f:view>
        <h1>Parent</h1>
        <jsp:include page="child.jsp" />
    </f:view>child.jsp
    <f:subview id="child">
        <h2>Child</h2>
    </f:subview>(note the f:subview!)

  • How to Import entire structure located on a system to a new system.

    Hi Experts,
    I have been working on this project from one week.Now i need to get that entire project located on that system to another system where in the project can be worked on both the systems simultaneously.
    I would like to know the procedure for the same.
    Thanks and regards,
    Chandrashekar.

    HI  Chandrashekar,
    check in and activate the activity. Import then Developement configurations in other system where you want to develope. Create a project for the DC you want to modify in inactive workspace.
    Regards
    Praveen

  • How to import image, html and other files into your siteroot

    Hi!
    I teach basic web development at a highschool. They've been
    using GoLive before I came along and they all stuggle to adapt and
    understand why DW doesn't support a simple "add" or "import" files
    within the program.
    And frankly neither do I. For most user new to DW the
    intuitive way to add files to the root folder is to:
    -Right click the siteroot window (files tab) > add files
    -File menu > add/import files
    All of these could easily make a duplicate html, png, rar or
    whatever file and put it into the site root without leaving the
    application. Just a simple adjustment to make life easier for all
    DW rookies.
    Dont you agree?
    Well, until anything changes, the fast way to control your
    siteroot folder is still outside DW and in your files/folders of
    your OS, right? Or drag and drop files into the site root also
    works great.

    > and they all stuggle to adapt and understand why DW
    doesn't
    > support a simple "add" or "import" files within the
    program.
    It doesn't need it. Just copy the files into the root folder
    and DW will
    see them.
    > Dont you agree?
    No.
    > the fast way to control your siteroot folder is
    > still outside DW and in your files/folders of your OS,
    right?
    Yes - but you can do it all inside DW too. Note that at the
    very top of
    your site list in the Files panel you have access to
    everything on your hard
    drive.... You can copy and paste from that.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Heffalompen" <[email protected]> wrote in
    message
    news:gcnpls$98q$[email protected]..
    > Hi!
    >
    > I teach basic web development at a highschool. They've
    been using GoLive
    > before I came along and they all stuggle to adapt and
    understand why DW
    > doesn't
    > support a simple "add" or "import" files within the
    program.
    > And frankly neither do I. For most user new to DW the
    intuitive way to add
    > files to the root folder is to:
    >
    Right click the siteroot window
    (files tab) > add files
    > File menu > add/import files
    >
    > All of these could easily make a duplicate html, png,
    rar or whatever file
    > and
    > put it into the site root without leaving the
    application. Just a simple
    > adjustment to make life easier for all DW rookies.
    > Dont you agree?
    > Well, until anything changes, the fast way to control
    your siteroot folder
    > is
    > still outside DW and in your files/folders of your OS,
    right? Or drag and
    > drop
    > files into the site root also works great.
    >
    >

  • How to import MP3's from other software/folders into itunes...

    I just got an iPod Nano. I have A LOT of music stored on/in "MusicMatch" on my Dell computer. Is there any 'easy' way to take all of that music and import it into itunes??? Thanks!

    http://docs.info.apple.com/article.html?artnum=93390

  • How to import ofice files and others on iphone

    please help

    In what context are you having problems? In any text box, such as this, you tap the .?123 button to get to the number page, then tap it again to go back to letters. If you need more symbols, from the number page tap the #+= tab.

  • How to import mailboxes from Time Machine to new Mac

    I had Time Machine backing up our old G5. We got a Mac Pro back in November and I never was able to import the mail from the G5 to the Mac Pro so I left it alone and just kept using mail on the old G5. Well, the G5 took a dump last monday. I currently have the Time Machine backup for that computer connected to our Mac Pro (but not using it as backup yet). So, the mail from the G5 should be on the Time Machine backup right? If so, can I import it into Mail on the Mac Pro?
    I also pulled one of the hard drives from the G5 and have it in the Mac Pro in the 2nd bay just to make sure that HD wasn't dead. It works fine and I tried importing the .mbox files from that drive but it appears that all the mail on that particular drive are from like 2006. So, again, I need to find out how to import mail from the Time Machine drive. Any thoughts?
    10.7.4
    Mail 5.2

    Back up what data? Mail data? I don't have any yet. I haven't used Apple Mail on this Mac Pro yet.
    Edit: Launching Mail and holding Option right afterwards does nothing. Holding down option and then launching Mail does nothing.
    Oooooh.... launching time machine while holding down option......
    Edit again.... I don't have a Time Machine menu because that disk is not currently set up as time machine for the Mac Pro yet. I don't want to use it as a backup for this computer yet. I just want to be able to pull some of the backed up contents from it until I'm set.

  • How to import a schema into the Oracle Database -

    Hi
    I have downloaded schema (spatial MVDemo schema) from oracle. To implement a functionality in obiee 11g i need to import the downloaded schema in to Oracle database.
    some one please give me step by step commands to acheve the same by using sql plus.
    Please let me know if you need any information.
    TIA.
    Regards

    Pl post exact OS and database versions, along with a link to where you downloaded this demo from. Did that link not provide any details on how to import ?
    HTH
    Srini

Maybe you are looking for