How to create xmla catalog

Hi,
I can get catalogs from sap server by xmla.
xml such as below:
<row>
  <CATALOG_NAME>ZD_SALES</CATALOG_NAME>
</row>
<row>
  <CATALOG_NAME>Z_ST_ODS</CATALOG_NAME>
</row>
<row>
  <CATALOG_NAME>$INFOCUBE</CATALOG_NAME>
</row>
how to create $INFOCUBE2 in sap.
Thanks,
Andy

Hi,
Can you please detail your requirement a bit so as to help.
Regards,
Kshitija

Similar Messages

  • How to create field catalog using field-symbols in normal alv report?

    hi all,
    how to create field catalog using field-symbols in normal alv report? i.e, using function modules...reuse_alv_list_display/grid_display?
    regards,
    jack

    HI
    LIKE THIS
    TYPE-POOLS : slis.
    DATA : t_fieldcat TYPE slis_t_fieldcat_alv,
           st_fieldcat TYPE slis_fieldcat_alv.
    st_fieldcat-fieldname     = 'STATUS'.
      st_fieldcat-seltext_l     = 'STATUS INDICATOR'.
      st_fieldcat-outputlen     = 17.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'VBELN'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Sales Document No.'.
      st_fieldcat-outputlen     = 10.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'AUDAT'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Document Date'.
      st_fieldcat-outputlen     = 10.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'VBTYP'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Document Type'.
      st_fieldcat-outputlen     = 4.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'AUART'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Category'.
      st_fieldcat-outputlen     = 1.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'AUGRU'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Reason'.
      st_fieldcat-outputlen     = 3.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'NETWR'.
      st_fieldcat-do_sum        = 'X'.
      st_fieldcat-seltext_l     = 'Net Amount'.
      st_fieldcat-outputlen     = 15.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'WAERK'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Unit'.
      st_fieldcat-outputlen     = 5.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
    *sortinfo
      st_sort-fieldname = 'AUART'.
      st_sort-up        = 'X'.
      st_sort-subtot    = 'X'.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
      st_sort-fieldname = 'VBTYP'.
      st_sort-up        = 'X'.
      st_sort-subtot    = ' '.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
      st_sort-fieldname = 'WAERK'.
      st_sort-up        = 'X'.
      st_sort-subtot    = 'X'.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
      st_sort-fieldname = 'VBELN'.
      st_sort-up        = ' '.
      st_sort-subtot    = 'X'.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         i_list_type     = 0
       IMPORTING
         et_events       = it_eventcat
       EXCEPTIONS
         list_type_wrong = 1
         OTHERS          = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      IF grid = 'X'.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
         I_INTERFACE_CHECK                 = ' '
         I_BYPASSING_BUFFER                = ' '
         I_BUFFER_ACTIVE                   = ' '
          i_callback_program                = g_program
          I_CALLBACK_PF_STATUS_SET          = 'SET_PF_STATUS'
         I_CALLBACK_USER_COMMAND           = ' '
          I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
         I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
         I_CALLBACK_HTML_END_OF_LIST       = ' '
         I_STRUCTURE_NAME                  =
         I_BACKGROUND_ID                   = ' '
         I_GRID_TITLE                      =
         I_GRID_SETTINGS                   =
         IS_LAYOUT                         =
           it_fieldcat                       = t_fieldcat
         IT_EXCLUDING                      =
         IT_SPECIAL_GROUPS                 =
          it_sort                           = t_sort
         IT_FILTER                         =
         IS_SEL_HIDE                       =
         I_DEFAULT                         = 'X'
         I_SAVE                            = ' '
         IS_VARIANT                        =
         IT_EVENTS                         =
         IT_EVENT_EXIT                     =
         IS_PRINT                          =
         IS_REPREP_ID                      =
         I_SCREEN_START_COLUMN             = 0
         I_SCREEN_START_LINE               = 0
         I_SCREEN_END_COLUMN               = 0
         I_SCREEN_END_LINE                 = 0
         I_HTML_HEIGHT_TOP                 = 0
         I_HTML_HEIGHT_END                 = 0
         IT_ALV_GRAPHICS                   =
         IT_HYPERLINK                      =
         IT_ADD_FIELDCAT                   =
         IT_EXCEPT_QINFO                   =
         IR_SALV_FULLSCREEN_ADAPTER        =
       IMPORTING
         E_EXIT_CAUSED_BY_CALLER           =
         ES_EXIT_CAUSED_BY_USER            =
          TABLES
            t_outtab                          = it_final
          EXCEPTIONS
            program_error                     = 1
            OTHERS                            = 2
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    REWARD IF USEFULL

  • How to create OLAP Catalog Metadata from Analytic Workspace

    Hi,
    How to create OLAP Catalog Metadata objects automatically from Analytic Workspace, not using CWM2_OLAP_AW_OBJECT package.
    Is there tool for it?

    Analytic Workspace Manager is the supported tool from Oracle for creating OLAP catalog metadata (plus the SQL views required for BI Beans). Hopefully this should be out in June as an additional download following the 9.2.0.3x patch.
    However you might want to look at IAF Software's "Coaster" product (http://www.iafsoft.com/products/coaster.htm) which also contains functionality to create the OLAP Catalog. We've had a play around with it and have been impressed.
    regards
    Mark Rittman

  • How to create a Catalog (Product/Service) & TAX issues

    SRM Guru's
    Product Ver: SRM 5.0 : ECC 6.0  ( No CCM or Service Master )
    TAX S/w: Vertex ( O )
    As of now:    We are planning to implement a vanilla SRM-ECC (in ext. classic). We are into Indirect procurement w/limit orders.
    Catalog:
    I want to create a Catalog ( UNSPSC or 1 level company catalog),
           1. Can this be created in ECC  (with out Products ) and replicated to SRM (EBP)
           2. How to go about creating it ?
           3. Can it be done with out CCM, if so how
           4. How to replicate it ? ( no CCM or middleware )
           5. Can i create it in EBP ? if so, plse say how..
    TAX:
    Vertex mentioned that, Tax codes will be mapped to services, in our case, since we don’t have Services except a free form text describing what service is provided ( eg: "Payroll Service" ), what can be done ?
    In a normal scenario, i can imagine having Service Master with all "Services", but in our situation, how can we use catalog to map to TAX codes. ?
    PS: If you could, please describe/break down the relationship between
       Catalog -- Category Id -- Product -- Services/Materials
    regards.,
    -Rupesh

    Hi
    <u>To create internal catalog there are three possibilities</u>
    1. CCM Catalog developed by SAP.
    2. SRM-MDM Catalog taken over by SAP.
    3. Requisite Catalog other catalog provider.
    <u>Check these links -></u>
    http://help.sap.com/saphelp_ccm20/helpdata/en/index.htm
    https://websmp101.sap-ag.de/ibc-srm here check SRM-MDM Catalog.
    http://www.requisite.com/solutions/index.cfm?pageID=productpac_bugseye
    Re: Catalog Mgmt
    <b>Other related links -></b>
    <u>Create Internal Catalog</u>
    Re: Create Internal Catalog
    CCM Create catalog link
    Re: creating a catalog
    Catalog ID does not exist
    Re: SRM Contract Catalog - Creation
    CCM SRM product catalog
    Re: Product Catalog to CCM
    <u>Managing Catalog content in SRM</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/0a/f9353e39011a38e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/ba/7a50415e216e24e10000000a155106/frameset.htm
    <b>P.S: All tables for CCM (Catalog tables and CCM) start with "/CCM/" ,so you can search on that using SE11 transaction.</b>
    <u>MDM-SRM Catalog</u>
    Re: MDM SRM - Catalog - External Catalog - Punchout
    <u>Punchout catalog</u>
    Punchout catalog
    <u>Loading Product Data into Catalog using CSV files</u>
    Loading Product Data into Catalog using CSV2.0 file
    <u>Contract catalog</u>
    Re: Contract catalog
    Hope this will definitely help. Do let me know.
    Regards
    - Atul

  • How to Create Field Catalogs (More than one Source Table)

    Hi Data Archiving Experts,
    Could you please help me how to create the Field Catalogs (More than one Source Table). If any one is having example that will help.
    My scenario:
    Currently we are archiving on CRM Data archiving project. We are facing one issue on creating field catalog with more than one source table.
    Ex: ST -- BP1
                  BP2
                  BP3
    ST info store in one table and BP1 -- BP 3 info sotre in another table. with current field catalog we are getting ST -- BP1. Our requirment is we need to show the ST  -- BP3 How we can achive this.
    Regards,
    Srini

    Hi,
    I don't think its possible to create fieldcatalog for different tables,
    but if you want to do so create a dummy table which has all the fields which you want in fieldcatalog.
    populate the data from different table to that dummy table
    then create fieldcatalog for that table and pass it in the function module...
    Regards,
    Siddarth

  • How to create feild catalog using Tcode MC18

    Hi firends,
                I want to create a field catalog using the Tcode MC18 as well as i have to add some fields other then the fields provided in the characteristics stuctures. Can u please give the step by step help to how to do it.
    thanks and regards
    Gaurav Lashkari

    this should provide you with all you have to know ...
    ... and a bit more:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/8c/fd5878a94711d1890a0000e8322f70/frameset.htm

  • How to create new catalog in OBIEE from presentation service

    Regards
    Frnds

    Hi,
    (1) Create a new directory on your file system where you want the catalog to be stored
    eg: d:\work\catalog\MyNewCatalog
    (2) Open Presentation Services config file, instanceconfig.xml, in a text editor:
    d:\OracleBIData\web\config\instanceconfig.xml
    (3) Set the catalog to your new, empty catalog
    <CatalogPath>d:\work\catalog\MyNewCatalog</CatalogPath>
    (4) Restart presentation server
    Control Panel->Services->Oracle BI Presentation Server (restart)

  • How to create and maintain a backup catalog, separate from default  location,  on and external HD

    How to create and maintain a backup catalog on a separate hd - separate from default location of the catalog?

    Simply copy the LR catalog backup file to another location. It’s quite small and only contains metadata e.g. your edit develop settings, keywords, captions, titles and camera exif data etc.
    The LR backup does not physically copy your image files. So make sure you have a separate system backup for your photo files and folders.

  • How do I create a catalog in elements organizer?

    How do I create a catalog in elements organizer.  I keep getting the error message Catalog could not be opened, an internal programming error has occurred.

    Which operating system are you running on?
    Which version of Photoshop Elements are you using?
    Try Holding down the shift key while to start the organizer - that should bring up the Catalog Manager.
    Click on the New button (top right)
    Give it a name and click ok
    If it still crashes, you may need to re-install the software.
    Brian

  • How to Create BI Beans Catalog

    I am using latest version of Oracle 10g data base, latest patch installed. All OLAP patches installed.
    I want to use JDeveloper along with BI beans. BI Beans Catalog is not created and populated with data yet. Can anyone suggest how BI Beans catalog can be created and populated.

    Please refer to the documentation provided on the BI Beans section of OTN. This explains how to create the BI Beans catalog schema.
    For populating the catalog with presentations etc please refer to the samples, white papers and viewlets posted on the BI Beans section of OTN. These will explaing everything you need to know about the BI Beans catalog and how to use it.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • How to create CATALOG with MS SQL Server?

    Connection class has getCatalog(strCatalog) method. In order to use it, we must create CATALOG in Database?
    How to create CATALOG with MS SQL Server?
    Help me, please!!!

    You do not create these for any database, this is part of the Connection metadata.
    The Catalog is the third level of table-like database object qualification as in "Catalog.Schema.Table". For SQLServer the qualification scheme is "Database.Owner.Table" and I would be surprised if they reported anything for the current connections getCatalog() method call.
    What many people do is avoid table qualification altogether by setting the connection's context in a database proprietary manner and then keeping the SQL as clean as possible. For many ODBC and JDBC drivers this can be set in the configuration. For MS SQLServer you can also execute a "USE dbname" statement on the connection to avoid table qualification.

  • How to create a sub head(code) in a catalog- for service notification

    Hi everyone,
    How to create a sub head(code) in a catalog- for service notification?
    Please guide with your valuable comments.
    Please guide its very urgent.
    Thanks and Regards
    Edited by: MPVash Vash on Oct 24, 2008 8:14 AM
    Edited by: MPVash Vash on Oct 30, 2008 7:38 AM

    Hi,
    Go to T-code QS41, give the catalog and code group and enter.
    U can click on the code after selecting the code group and create new  codes.
    In SPRO u should see which type of catalog is assigned to the notification type. This u can see in the overview of the notification type by selecting the notification type in SPRO.
    Regards
    Haricharan

  • How to create a product catalog in crm(by the end user of the system)?

    how can we an end user create a product catalog?
    what is the diff b/n prod cat and prod?
    we download the prod from r/3.
    how we get the prod cat done in crm for the customers and consumers and how it is done?
    thank you,

    hi
    first of all we need to look at what is catalog management before proceding with product and product catalog.
    You use this business scenario to create a centralized product catalog that contains product descriptions, multimedia objects, pricing, and associated literature. The catalog enables quick and easy customer access to timely and personalized product information, structured in such a way that most meets your customers needs.
    Product catalogs are implemented in sales processes and are of particular importance in CRM Web Channel for presenting your products in the Web shop.
    difference between the product and product catalog
    this is not the thing that product and product catalog are completely different entity.
    Product catalog :   A grouping together of products from your product master data, in a structured hierarchy.
    You use product catalogs to group together products to present them in the Web shop, Interaction Center, or in other forms of media, for example printed format or CD-ROM.
    You can create various catalogs for your products in the product master and use them according to a validity date. For example, you could use certain products for the summer season, and other products for the winter season.
    You can also tailor your product catalog to meet other needs by creating catalog variants. For example, you can create a catalog in English with the prices displayed in US Dollars.
    so by above definition it is very much clear that products are actually assign to the catalog,i will give you an analogy that museum is a kind of catalog and you add different pictures to the museum,in the same way you add product to the product catalog according to the acatlog variant.
    Now how you assign product to product catalog
    Product Assignment
    You assign products manually or automatically to a catalog area, depending on the catalog type. The product ID, product description, and status of all products is displayed, as is the information as to whether the item contains accessories or if it is a configurable product.
    Prerequisites
    You have created products in your product master in SAP CRM under Accounts and Products
    Process
    You select a catalog area in your product catalog, and edit the item list by assigning products to the area.
    Manual Assignment
    You can assign products manually on an individual basis or by copying a catalog area. You tend to choose manual product assignment for marketing-oriented catalogs that are subjected to editorial controls.
          Individual assignment
          In this case you select the catalog area in which the product should be assigned, manually search for the product in the product master, and assign it to the area.
          Copying items from catalog areas
          You select an area or subarea from another catalog and copy it to your new catalog. The system copies all products from the copied area to the new catalog, as long as they belong to the distribution chain assigned to the target catalog variant. From these products, you can then manually determine which products from the copied area you want to keep and which items you wish to delete.
    The following is true for manually assigned products:
          You can activate or deactivate items on an individual basis.
          You can edit the list of accessories for manually assigned products. The system determines which accessories are maintained for the product in the product master and displays them in the item area of the catalog. You select which accessories should be displayed for the product in the catalog and activate them.
          Manually assigned products can be included or removed from catalog views on an individual basis.
    Automatic Assignment
    You can assign products automatically to a catalog by transferring product hierarchies from your product master to the catalog areas. The categories, items, attributes, and documents contained in the product hierarchy are copied to the new catalog.
    You use automatic product assignment mainly for functional catalogs, where products can be copied with very few changes, from the product categories of the product master. It enables a standardized characterization of your products in the catalog.
    The following is true for products assigned to the catalog using product hierarchy transfer:
          Product categories which make up the hierarchies become catalog areas in the catalog.
          Product categories in the product hierarchy must be assigned to the distribution chain to which the target catalog variant is assigned. Otherwise the category is not transferred. The same applies to the items, texts, and documents assigned to the category.
          Items are always active and cannot be individually activated or deactivated.
          Accessories maintained for transferred product in the product master are automatically included and displayed in the catalog.
          Transferred items cannot be individually included in catalog views or removed from them. Instead all items of the hierarchy are always contained in the view.
          Lists of characteristics for transferred categories and items can be automatically created when transferring product hierarchies. The transferred values are included in the item overview of the product catalog.
    how to create a product catalog
    just have a look at this link
    http://help.sap.com/saphelp_crm60/helpdata/en/1c/12b2dc57d644d19ea3a5c4156f904f/frameset.htm
    your query regarding the products you have uploaded from the R3,now as above i said how you maintain and create the product catalog ,you just assign the products uploaded from the R3 to the product cataloag created in CRM.
    more detail info you can see in these links
    http://help.sap.com/saphelp_crm60/helpdata/en/91/be9642e5ef0731e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_crm60/helpdata/en/46/27f09d25da5a68e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_crm60/helpdata/en/46/037716cfc604a9e10000000a114a6b/frameset.htm
    if you read carefuly what i have said,it is pretty easy to implement ,you will see it yourself
    guess it will help you
    do revert back in case of any doubt
    best regards
    ashish

  • How to sync new catalog , categories and products created in ACC to pub db

    Hi all,
    I have created new catalogs+categories and some sample products in my ATG application using ACC. I can access them in my application.
    Now i want to move ahead and create some promotions + scenarios for those products. I went through the docs and got that recommended approach is to use BCC for these items and then deploy them to prod instance.
    But before that since the newly added catalogs and products are available only with prod db, i should sync them up with my pub db. so that both of my db will be in sync. I tried to look help/steps for this but did not get any.
    Can you pl provide some pointers about this, how can i do that? Any link/site for the required steps will definitely help me.
    Thanks in advance,
    Swati

    Hi Grado ,
    I doing first step, but when entering password and drp port on acc window it saying-
    Could not connect to URL:  rmi://localhost:8852/atg/devtools/UpdateAgent
    Either the dynamo Server is not running ,or the hostname and/or port number are invalid
    please tell me anything i doing wrong.
    Thanks.
    -Kakasaheb.

  • How do I create a catalog from a network disk?

    How can I create a catalog from a network disk? My program will not open anything on the network.

    I am not competent in networks, but here is some reading waiting for the experts to help you:
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Storing_the_catalog

Maybe you are looking for

  • Dual booting arch (usb) and ubuntu (grub2)

    Greetings, I'm trying to dual boot Arch linux (installed without a bootloader on a USB SSD) and Ubuntu 10.04 (installed on a hdd with GRUB2) but can't get Arch to boot. (Oh and I already have windows dualbooted) The entry grub autogenerated: menuentr

  • After log off "  The requested resource does not exist. " is coming

    hi, When I logoff from the portal (EP6.0 SP 13)i got yes or no options to logoff from the portal. When I click on the yes option I am getting 404: Not found   The requested resource does not exist.   Details:   Go to main page of this application! Wh

  • How to copy dialog box

    Under Safari-Preferences-Passwords, there is a list of my online passwords. How can I copy the contents of that dialog box and paste it into a printed document that I can put away in a safe place?

  • I bought a song instead of a ring tone, can i change it?

    I get the song by mistake, is there anyway to change it for the ringtone?

  • Paste-in Place not working

    Hello, I have been having  some problems with past in place for a while. Sometimes this function works perfectly others when I copy (shift+command+c) and try to paste ex an icon into another artboard it simply pastes it in the same artboard, even tho