How to fetch data for CRM Product Master

Hi,
I'm trying to write a report on the product master in CRM.
In our current setup, we have few Ztables attached to the Product Master tabs.
The key field linking the Ztables is
field name:FRG_GUID     
component type COMT_FRG_GUID
description:SET GUID     
I would like to know if there is any function module which reads the product master table based on Product_ID  just like 'for example 'CRM_ORDER_READ'.( which gives all the GUID's based on Business Transaction Numbers)
I need this because I'm not able to match the Fragment_guid of many DB tables to each other.
Please help.
Regards
Rasheed

Hi Pratik,
Thank you for trying to help me. I shall explain my scenario for better undestanding.
I'm creating a Product Master Report which is linked to several Z tables.I need to fetch the details based on the price group .
The structure of one of the Z tables is as below:
Field Name               Component Type
.INCLUDE                     COMT_FRG_KEY
CLIENT                     MANDT
FRG_GUID     COMT_FRG_GUID
.INCLUDE                     COMT_PRODUCT_ADM
VALID_FROM     COMT_VALID_FROM
VALID_TO                     COMT_VALID_TO
UPNAME                     COMT_UPNAME
HISTEX                     COMT_HISTEX
LOGSYS                     COMT_LOGSYS
ZZ0010                     ZMODELTYPE
ZZ0011                     ZMODELDESC
ZZ0012                     ZMODSALEABLEAREA
ZZ0013                     ZMEAUNIT
ZZ0014                     ZBUILTUPAREA
ZZ0015                     ZCARPETAREA
ZZ0016                     ZTERRACEAREA
ZZ0017                     ZGARDENAREA
ZZ0018                     ZBALCONYAREA
now the only way I can get the information from this table is if I get the FRG_GUID.
Is there any way where I can get all the FRG_GUID for the PRODUCT_GUID'S.
Regards
Rasheed

Similar Messages

  • How to fetch data for sales order costing

    Hi All,
    How to fetch data for VA03 --> Extras --> Costing having cost element details.
    Thanks
    Gaurav

    Hi Gaurao ,
    There is no such function module  to extract data  in one column   , you have to  Convert all the columns data    in one column
    for period   .
    regards
    Deepak.

  • How to fetch data for a struture from a cluster table

    How can I fetch data for a struture, from a cluster table, based on the name of the structure?

    Hi,
    In order to read from Cluster DB Table use the following statement:
    Syntax
    IMPORT <f1> [ TO  < g1 > ] <f2> [TO < g2 >] ...
    FROM DATABASE <dbtab>(<ar>)
    [CLIENT <cli>] ID <key>|MAJOR-ID <maid> [MINOR-ID <miid>].
    This statement reads the data objects specified in the list from a cluster in the database <dbtab>.
    You must declare <dbtab> using a TABLES statement. If you do not use the TO <gi> option, the
    data object <fi> in the database is assigned to the data object in the program with the same
    name. If you do use the option, the data object <fi> is read from the database into the field <gi>.
    For <ar>, enter the two-character area ID for the cluster in the database. The name <key>
    identifies the data in the database. Its maximum length depends on the length of the name field
    in <dbtab>.
    The CLIENT <cli> option allows you to disable the automatic client handling of a client-specific cluster database, and specify the client yourself. The addition must always come directly after the name of the database.
    For Eg:
    PROGRAM SAPMZTS3.
    TABLES INDX.
    DATA: BEGIN OF JTAB OCCURS 100,
    COL1 TYPE I,
    COL2 TYPE I,
    END OF JTAB.
    IMPORT ITAB TO JTAB FROM DATABASE INDX(HK) ID 'Table'.
    WRITE: / 'AEDAT:', INDX-AEDAT,
    / 'USERA:', INDX-USERA,
    / 'PGMID:', INDX-PGMID.
    SKIP.
    WRITE 'JTAB:'.
    LOOP AT JTAB FROM 1 TO 5.
    WRITE: / JTAB-COL1, JTAB-COL2.
    ENDLOOP.
    Regards,
    Neha
    Edited by: Neha Shukla on Mar 12, 2009 1:35 PM

  • How to fetch data for the Change Request in PROCESS_EVENT

    Hi All,
    I need to write some custom logic on Save/Submit button. For this I am planning to enhance the PROCESS_EVENT method of class CL_USMD_CR_MASTER. Within this method I need to access runtime data of the change request currently being processed.
    I am going to create a post-method exit for this PROCESS_EVENT method. Is this correct?
    I have heard we have APIs in MDG which can be used to fetch data, however I do not know how to use the same.
    Can someone please help me with sample code how to fetch the runtime data of the Change Request
    Thanks in advance.
    Regards,
    Vanessa

    What MDG domain are you working on? What you are trying to do is called "reuse mode" enhancement and you do NOT want to tinker with the FPM feeder classes in this case. SCN document Configuration and Enhancement of SAP Master Data Governance contains many examples on how to achieve this.
    This is a how-to document for MDG-M reuse mode enhancement: Extend MDG-M Data Model by a New Entity Type (Reuse Option)
    This is a how-to document for MDG-C/S reuse mode enhancement: SAP How-To Guide: Extend the MDG Business Partner - Node Extension (Reuse Option)
    Keep in mind, these examples are mainly for additional "master data" fields. If you need additional fields that are not master data but are more related to the Change Request itself, you should use this how-to document: Enhancement of the User Interface Building Block for Change Requests
    Again, all of these documents can be found on the first document I referenced above. I suggest that you bookmark it.

  • How to fetch data for all OUs

    Hi,
    Run below query:
    select * FROM PO_headers
    Result: no data
    EXECUTE MO_GLOBAL.set_POLICY_CONTEXT('S','120');
    Run below query:
    select * FROM PO_headers
    Result:data for org_id=120
    EXECUTE MO_GLOBAL.set_POLICY_CONTEXT('A','');
    select * FROM PO_headers
    Result: no data
    So how can we fetch data from all OUs whothout using PO_HEADERS_ALL tables?
    why do we have this MO_GLOBAL.set_POLICY_CONTEXT('A','') option?

    in 11i PO_HEADERS is view with org_id policy
    in r12 PO_HEADERS is synonym with policies based on multi-org
    so for r12
    SQL> select count(*) from po_headers;
      COUNT(*)
             0
    SQL> begin
      2    mo_global.set_policy_context('S', 101);
      3  end;
      4  /
    PL/SQL procedure successfully completed
    SQL> select count(*) from po_headers;
      COUNT(*)
           110
    SQL> begin
      2    mo_global.set_policy_context('S', 82);
      3  end;
      4  /
    PL/SQL procedure successfully completed
    SQL> select count(*) from po_headers;
      COUNT(*)
           235
    SQL>
    SQL> begin
      2      mo_global.init('SQLAP');
      3  end;
      4  /
    PL/SQL procedure successfully completed
    SQL> select count(*) from po_headers;
      COUNT(*)
           345
    SQL> select unique org_id from po_headers;
        ORG_ID
            82
           101
    SQL> mo_global.set_policy_context('S',<org_id>) - single operating unit
    mo_global.init(<app_short_name>) - multi operating unit

  • How to fetch data for cash voucher

    Hi,
    I came to know that there is not direct connection to database tables.
    How to get the data for cash voucher?
    Thanks in advance,

    Hi
    You can get data from BKPF table by passing document type BLART = 'SK'. 
    SK: - Cash document

  • How to load data for attribute of Master Data Object from PSA

    Hi Experts,
    I have a Master data Object, 0Equipment.
    I loaded data to PSA from R/3.
    I am able to see records for Zxxx field in PSA.
    I have added a new mapping object Zxxx in BW.
    But, when I loaded the data from PSA to Master Data Object, 0Equipment,
    I am not able to see records for Zxxx which is an attribute of 0Equipment.
    I do see the records for rest of the attributes of this Master Data Object.
    I tried deleting and reloading the data
    and treid to check attribute change run
    Please let me know if I am missing something in loading the Master Data from PSA

    Jr Roberto,
    I checked all the records in Maintain Master Data and did set the Zxxx Not Equal To Blank.
    No data for Zxxx InfoObject, eventhough there is data in the corresponding field in PSA.
    I did 1:1 mapping.
    Need help

  • How to fetch data for skills catalog to the ESS skills profile

    Hi Experts,
    I am adding qualifications using the following path:
    SPRO > Personnel Management > Personnel Development > Master Data > Edit Qualifications Catalog
    This should reflect in the Portal under Career and Job > Learning Page > Skills Profile. Can you please guide me about the steps to be taken to make this available.
    Further to this,
    If an employee updates his skills in the portal skills profile, that should update his infotype 24 accordingly. What configuration should be done to make this happen.
    Your guidance is much appreciated.
    Thanks,
    Toa

    Hi Toa,
    Can you have a look at the switch QUALI/ESSST in T77S0 the documentation says:
    "Within the ESS service used to edit the skills profile, this entry
    enables you to restrict the view of the skills catalog to the skills
    group determined here."
    It might help
    Best regards
    Sarah

  • How to do the CRM Product Master Data extraction?

    Hello guys,
    I have to upload the CRM Product Master Data from a CRM 6.0 system to a BI 7.0 system.
    The only information that I have is the infocube in the BI for the extraction is 0CRM_PROD.
    I've checked that the CRM Product table COMM_PRODUCT and found that entries in the table and the infocube don't correspond to each other exactly. I also cannot find approprite DataSource in BI or CRM system for the data transfer.
    Who can telll me anything about this kind of master data extraction to BI?
    Thanks in advance.
    Best Regards

    Hi,
    u tried using the generic extraction using rso2.create one datasource and give the table name comm_prod.
    bye.

  • When i install latest itunes gives an error the configuration data for this product is corrupt.how can i i fix it

    hi there
    i was trying to install latest itunes it gives error
    the configuration data for this product is corrupt contact your personal support
    how can i fix it and what is the reason for this error

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • In which screen the Profit Center field can be seen in SAP CRM Product Master?

    Hi SAP Experts,
    Please provide your valuable inputs on the below request:
    1) Do we have profit center field in SAP CRM Product Master?If yes  then in which screen can we see?
    2) At the moment we  are not using the profit center field in either of the systems(ECC and SAP CRM) in Material, we want to use this then  how to go ahead to have this field in CRM.
    3) If we add the profit center value in material master in ECC under general and plant data view then how this value will be replicated into SAP CRM , delta load or initial load?
    We are using SAP ECC 6.0 and SAP CRM 7.1 systems.
    Appreciated for your inputs at the earliest.
    Best Regards,
    SV

    Hi,
    Substitution Rule :-
    Prerequisite :
    1. WBS Level (PRPS-STUFE) = ' 3 ' AND  Statistical Indicator (PRPS-XSTAT) = ' X '
    Substitute
    1. Profit centre (PRPS-PRCTR) - '  '
    Hope this will clear you...
    Regards,
    Hari

  • What is a cube? how we store data in that? how we fetch data from cube?

    Hi,
    What is a cube? how we store data in that? how we fetch data from cube?
    Regards.
    venkat

    >
    venkey B wrote:
    > Hi,
    >
    >
    > What is a cube? how we store data in that? how we fetch data from cube?
    >
    >
    > Regards.
    >
    > venkat
    Hi Venkat,
    I guess you mean an infocube from the SAP BI product. I propose to look at the forum for Business Intelligence to find your answers.
    E.g. SAP POS DM writes the sales data in infocubes.....

  • When trying to install itunes on windows 7 i got a configuration data for this product is corrupt?

    It is not allowing me to install, it gives me the error: configuration data for this product is corrupt. How do I install itunes on my windows 7?
    Trying to update my ipad....but I first need to install itunes!!

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Java 1.4.2_03 Windows: The configuration data for this product is corrupt.

    Trying to install j2SE 1.4.2_03 JRE on a Windows system (exact version needed for a bussiness application) after all previous Java installations have been deleted and all Windows Registry Java related keys have been manually deleted with Regedit.exe.
    The EXE installer works properly in other machines but in this one it stops after a few seconds with the following message:
    "The configuration data for this product is corrupt. Contact your support personnel".
    The problem is related to the Windows install mechanism rather than the Java installer itself and likely caused by the manual Registry deletion.
    The error code is 1610: ERROR_BAD_CONFIGURATION.
    Reinstalling Windows didn't fix the problem.
    Unable to recover the system to a previous state with the System Recovery Tool (Accesories/System Tools).
    Other versions of Java installers fail the same way and show the same message.
    I don't know how to contact "my support personnel" nor who they are.
    I'd appreciate any help about this problem or what Java installers need within the Registry to work or a clue of any kind.

    Sorry for the duplicated message. It's my first post and I messed up a little with the right section.
    A new downloaded copy of the file or other versions of Java failed to install with the same error message.
    I've learned there is a product ID in the registry that must be present for the installer to run. I'm searching for this "mysterious" product ID and how to set the right Windows XP Registry entry for the JSE 1.4.2_03 version.
    I'm still not sure this will fix the problem.
    Thanks for replying.

  • Java 1.4.2_03 WindowsXP The configuration data for this product is corrupt.

    Trying to install j2SE 1.4.2_03 JRE on a Windows XP system (exact version needed for a bussiness application) after all previous Java installations have been deleted and all Windows Registry Java related keys have been manually deleted with Regedit.exe.
    The EXE installer works properly in other machines but in this one it stops after a few seconds with the following message:
    "The configuration data for this product is corrupt. Contact your support personnel".
    The problem is related to the Windows install mechanism rather than the Java installer itself and likely caused by the manual Registry deletion.
    The error code is 1610: ERROR_BAD_CONFIGURATION.
    Reinstalling Windows didn't fix the problem.
    Unable to recover the system to a previous state with the System Recovery Tool (Accesories/System Tools).
    Other versions of Java installers fail the same way and show the same message.
    I don't know how to contact "my support personnel" nor who they are.
    I'd appreciate any help about this problem or what Java installers need within the Registry to work or a clue of any kind.

    Sorry for the duplicated message. It's my first post and I messed up a little with the right section.
    A new downloaded copy of the file or other versions of Java failed to install with the same error message.
    I've learned there is a product ID in the registry that must be present for the installer to run. I'm searching for this "mysterious" product ID and how to set the right Windows XP Registry entry for the JSE 1.4.2_03 version.
    I'm still not sure this will fix the problem.
    Thanks for replying.

Maybe you are looking for

  • Acrobat X SharePoint Integration - error on check in

    My users are consistenly seeing an error when they attempt to check in a pdf. I have established that this is due to our use of a SharePoint 2010 Managed Metadata column, and I've seen some indication that there is a known issue with these. Can anyon

  • Flickering Image update (only one Image drawn on Component), 10+ Duke Dolla

    I've made an RBGFilter for Images and Combined it with a Thread to make an Image fade from Color to Grayscale. I use it together with an home made JComponent. It works, but the Image flickers. I've tried longer sleep periods (I thougt that maybe the

  • The best use of my MacBook and  Logic Pro

    Hi i have this machine 2.4 intel Core 2 Duo 667 Ram 4 Gigabite I use Logic Pro 9.1.1 I mainly work with midi i use Kontact Philarmonic La strings all that stuff hard disk is internal 250 Gbite What is the best way for me to go.(Use the Kontact as mul

  • Problem in INCOTERMS.......

    Please provide me with the reasons why INCOTERMS is always defined in Sold to Party & not Ship to party. See, If a SO  is made to particular Customer of (New Delhi) having numbers of ship to address which are at far locations like faridabad, Agra Etc

  • Photoshop CS6 Crashes everytime I edit a file

    I recently upgraded my RAM and since that day I am having problems with Photoshop I am not sure how that could be related. The photoshop crashes, When I insert an image and try to Transform or Move it When I try to initialize the Text Tool When I try