Report Custom object with product?

if I want to create a report with the fields of a custom object in relationship with the fields of the product,is possible?
Because when i cilck in Analytics there aren't Custom Object link and in Product History isn't present the Object link where i select the columns.
Also when I go to the panel of Reporting there is not a link there is not the link that reports Custom Object with Product,also in Product Opportunity there isn't a Object link.
How can I be connected for a report these 2 entity?
Regards Vale

Hi Vale,
Unfortunately, not every object relationship is exposed within analytics and reports, and that is the case with the relationship you are trying to report on (i.e. Custom Object and Product). Also, Custom Objects can only be reported on using real time reporting (as opposed to the historical analytics).
Regards,
Cameron

Similar Messages

  • Track Custom Objects with program

    Hello Experts,
    I have one requirement where based on program name / function module, I need to find out
    how many custom tables, structures, FM i.e. custom objects are used inside that program / function module.
    I need to do this programatically.
    Can anybody suggest me for the same?
    Regards,
    Neha

    Hi Ajay,
    I believe using that Database view, we will get only information about that program. Not the custom object associated with it.
    Regards,
    Neha

  • Inserting Entry into Custom Object with API

    Hello,
    I have a custom object made and access to both BULK and REST APIs.
    I was wondering how I could take the information I have (It's only 4 fields) and inserting this information as a new record into my data object.
    I have the ID for my data object I just can't seem to find the API call I'm looking for.
    Any help is greatly appreciated!

    Adding new records to a Custom Object is best done using the Bulk API.  You need to define a Custom Object import and use it to sync your records into Eloqua.

  • Crystal Reports - Customer Statements with Ageing

    Hi,
    I have created a custom accounts receivable statement in Crystal reports 2011.
    However, I am currently facing some challenges:
    1. How can I put a specific date so that the statement will show data upto that date e.g. today is 22/05/2014, but I want to run a statement as 30/04/2014 - how do i achieve this?
    2. How can I insert formulas into crystal report that will allow me to calculate the ageing on the above as at date?
    Any help would be highly appreciated.

    Hi Nishit,
    Please try below Query.
    select T1.cardcode 'Bp Code',T1.cardname 'Name',sysdeb 'Debit Amount',syscred 'Credit Amount',
    T0.BALDUEDEB as 'Balance Due',
    case T0.transtype
    when '13' then 'INV'
    when '14' then 'AR CN'
    when '24' then 'INCOMING'
    else 'Other'
    end 'Type',
    Ref1,
    fccurrency 'BP Currency',
    CONVERT(VARCHAR(10), refdate, 103) 'Posting Date',
    CONVERT(VARCHAR(10), duedate, 103) 'Due Date',
    CONVERT(VARCHAR(10), taxdate, 103) 'Doc Date' ,
    CASE
    when (DATEDIFF(dd,refdate,current_timestamp))+1 < 31
    then
    case
    when syscred <> 0 then -syscred
    else sysdeb
    end
    end "0-30 days",
    case when ((datediff(dd,refdate,current_timestamp))+1 > 30
    and (datediff(dd,refdate,current_timestamp))+1< 61)
    then
    case
    when syscred <> 0 then -syscred
    else sysdeb
    end
    end "31 to 60 days",
    case when ((datediff(dd,refdate,current_timestamp))+1 > 60
    and (datediff(dd,refdate,current_timestamp))+1< 91)
    then
    case
    when syscred <> 0 then -syscred
    else sysdeb
    end
    end "61 to 90 days",
    CASE
    when (DATEDIFF(dd,refdate,current_timestamp))+1 > 90
    then
    case
    when syscred= 0 then sysdeb
    when sysdeb= 0 then -syscred
    end
    end "90 + days"
    from dbo.JDT1 T0
    INNER JOIN dbo.OCRD T1 ON T0.shortname = T1.cardcode and T1.cardtype = 'c'
    where T0.intrnmatch = '0' and T0.BALDUEDEB != T0.BALDUECRED and t1.CardCode='[%0]'
    ORDER BY T1.CARDCODE, T0.taxdate
    Hope this help
    Regards::::
    Atul Chakraborty

  • Customizing OBIEE with product name

    Hi All,
    I need to show a product name where 'Business Intelligence' is seen next to the Oracle Banner. I have updated productmessages.xml to include the changed name '<?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables xmlns:sawr="com.siebel.analytics.web/response/v1" xmlns:sawm="com.siebel.analytics.web/message/v1" sawm:systemMessages="false">
    <WebMessageTable system="Custom Messages">
    <WebMessage name="kmsgHeaderBIBrandName">
    <TEXT>Customised Text</TEXT>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables> ' as follows. This changes the name only in the login page and 'Business Intelligence' still shows up when I log in and go to the dashboards page. How do I change this?
    Thanks a ton!

    This change got it working in one env. So marking it as answered.

  • Is point in custom object with only one control handle possible?

    I notice with a rounded rectangle if you make it editable and click on any of the points, they all seem to have only one "control handle". Normally there are always two. Is there really only one control handle on those points, or does it just look that way? Assuming there is indeed only one control handle, how can I do that too?

    Chris Miner wrote:
    I notice with a rounded rectangle if you make it editable and click on any of the points, they all seem to have only one "control handle". Normally there are always two. Is there really only one control handle on those points, or does it just look that way?
    Hi Chris,
    Yes, there really is only one control handle for these points. And a look at the 'ordinary' rectangle shows that the control points at its vertices have zero control handles.
    The rectangles appear to be set to retain the property of the rounded corner attaching to a line segment (for the rounded rectangle) or the vertex being formed by the intersection of two lines (for the 'ordinary' rectangle).
    "Normal" control points (your term) treat the point at which they are inserted as a point on a curve, even it that curve has infinite radius (and appears as a line segment), and provide for revision of the curve on both sides of the control.
    If you insert one of these (option-click) anywhere on the shape, it will appear as an unfilled red circle, and will have two control handles.
    Assuming there is indeed only one control handle, how can I do that too?
    For a start, you could explain what you mean by "do that too."
    Regards,
    Barry

  • Java object with ArrayList of custom objects not working

    I have a custom java object that has an ArrayList of another set of custom objects (code listed below). I can pull back a Customer object (to flex client) and it's recognized as a Customer action script object, but the ArrayList in the Customer object is not recognized as an ArrayCollection of Accounts. Instead it is an ArrayCollection of Action Script Objects.
    At first I thought something was wrong with my action script Account class, but then I tried to pull back just an Account and it was recognized as an action script Account. It's just when I have my Customer object with an ArrayList of Accounts that it isn't getting converted.
    Is there something else I need to do to have that ArrayList be recognized as an ArrayCollection of Accounts on the Flex Client side? Is there some way of specifying what type an ArrayCollection is mapped to?
    Thanks in advance for the help!
    public class Customer {
         private String name;
         private String address;
         private ArrayList<Account> accounts;
         public Customer(){
         public String getName(){
              return name;
         public void setName(String str){
              name = str;
         public String getAddress(){
              return address;
         public void setAddress(String str){
              address = str;
         public ArrayList<Account> getAccounts(){
              return accounts;
         public void setAccounts(ArrayList<Account> list){
              accounts = list;
    public class Account {
         private long accountNumber;
         private String type;
         private double balance;
         public Account(){
         public long getName(){
              return accountNumber;
         public void setName(long l){
              accountNumber= l;

    I accidently found how to make this work. I may have missed something while reading about blazeDS reflection, but I thought I'd pass this along anyway.
    What I have is I have an class A. In class A I have an arraycollection of Class B. If I want that arraycollection to return to the server with the correct class, then I need to include Class B in the compiled swf. How I have done that is to create a dummy variable of type B. Importing B will not work you actually need to have a member variable of type B even if you don't need it.
    Example
    import dataobjects.B;
    [RemoteClass(alias="dataobjects.A")]
    public class A {
       private var _b:B; //This is never used, but needed to include B object in swf to be reflected.
       private var_ bList:ArrayCollection = new ArrayCollection();
      public function A(){
      public function set bList(list:ArrayCollection):void{
         _bList = list;
      public function get bList():ArrayCollection{
        return _bList;

  • Inventory Management using Custom Object 07

    Hi Guys,
    I have been trying to use custom object 07 as Inventory.
    I have renamed custom object 07 as Inventory. I have verified that already a relationship exists between this custom object and Products. So, I modified the Inventory Page Layout to make the products related information section visible. I have created access profiles and role appropriately. I was able to see the products related information section in the Inventory detail page but I didn't see any means of associating records with the inventory like buttons.
    Did I miss any step? Also could you point me to documentation related to custom objects?
    Thanks and Regards
    Naren B

    Hi Bobb. Thanks for the reply.
    My requirement doesn't require any reports to be developed. So, I didn't think about it. I tried to use custom object 7 for as Inventory. So, i just renamed Custom object 7 as Inventory. Already there is a relationship existing between custom object 7 and products. So, I went to the related information layout of Inventory(CO-7) and used the standard information layout provided for products. But, I didn't find any buttons to associate a product in the related information section under inventory. My main requirement is to manage inventory transactions. When a shipment is receiving the available quantity and the quality of the product have to be changed accordingly and so on. Currently I am using custom objects 1,2 and 3 for this purpose and i was able to achieve the requirement. Don't know what was wrong. May be the button was disabled purposefully. I will check it out and i will let you know. Can you explain in brief in two to three steps the procedure you followed ?
    Thanks and Regards
    Naren

  • Z*Programs - Custom Objects List

    Hi,
    I wanted to know if there is any standard SAP T-Code for listing all the Z*Programs (ABAP Custom Objects) with Frequency of Use, or Hihgly used order, number of time used etc. 
    We wanted to take out all the Z programs that are frequently used for the purpose of conversion/upgrade to mySAP ECC 5.0.   We wanted to work on the highly used ABAP programs as the first priority.
    Anybody with answer, will be hihgly appreciated.
    Regards,
    Subbu

    Why don't u use a home made program ?
    All info is stored in TADIR just select with this table with name like Z% or Y%...
    That is my point of view...
    report zlist.
    tables : tadir.
    select *
      from tadir
      where obj_name like 'Z%' or obj_name like 'Y%'
      order by object.
    write : / tadir-OBJECT     , tadir-obj_name.
    endselect.

  • Customizing object urgent

    how to find customizing object in production?so that i can copy a client

    Hi,
    Check if threre's an entry for this customizing object in table CRMATAB on your R/3. I guess that's one of the reason it can't be downloaded.
    Report SMOF_FILL_CRMATAB fills up this table on ECC when this report is run from your CRM.
    Tnx.

  • Development Objects with " / " names

    Hi ABAP experts,
    Have you ever come across ABAP custom objects with "/" names, such as /BPPwhatever
    I'm wondering if developers can use such names for custom objects instead og "usual" Z_ or Y_
    Thanks,

    This is a namespace.
    Developer organisations (SAP, customers, Partners, ISVs, etc.) can register their own namespace with SAP.
    Then they can create their own objects inside this namespace without worrying about nameing conflict with others.
    E.g IBM might register the namespace "IBM". Then they can create objects such as /IBM/PROGRAM1, /IBM/DBTAB1, etc.
    If they created objects in the "customer namespace" (i.e. starting with "Z" or "Y") someone else could create an object of the same name in another development system and when the two development streams were consolidated there would be a conflict. Namespaces prevent this from happening.
    Cheers
    Graham Robbo

  • Can we create custom objects in WebI 4.0 BICS connectivity in BI 4.0 ?

    Hi All,
    I am using BI 4.0 and would like to know if we can create custom objects(measures or dimensions) in WebI 4.0 using the BICS connectivity with SAP BW BEx Queries?
    Rohit

    Hi,
    No, I'm afraid that's not possible with the BICS 'transient universe' (because you cannot edit the BW OLAP business layer  in IDT)
    Sure - in XI3.1, SAP Integration Kit,   OLAP .unv universes,  it was possible to do custom objects  with  MDX and XML tags.
    Infact, the UDT is still available in BI 4.0
    Regards,
    Henry

  • Custom Object Definitions

    Hello all,
    Is it possible to export / import the definition of a custom object? We want to create a custom object definition locally and then distribute it to customers so that they have a custom object with the same exact definition.
    Thank you,
    -Kevin

    Thanks bobb.
    Let me just clarify my question about "creating" custom objects through web services. I'm not talking about INSERT of a new row into a custom object definition, i'm talking about basically taking CustomObject13 (for example) and through web services, change it's schema to what i need by creating custom fields on it, etc... so basically creating the definition / schema of a custom object through web services.
    -Kevin

  • Forecasting by using Custom Object

    I have created custom object with the below fields
    Start Date
    End date field
    Period and one weblink
    when the user select the fields and any of two( Either Start date & Enddate or Start date & Number of months in that Period The third field must automatically populated based on the remaining two) and afterthat i need excel sheet with 4 rows and n colums (Colums depends on Period as well and end date) to be populate on Web applet if the user click on Save the Forecasting will automatically generated in crm on demand. Could you guys please help on this issue. Thanks in Advance
    Edited by: Subbu on Jun 22, 2010 8:13 AM

    Hello Amit,
    Can you please help me regarding the same

  • Sales order with reference to a custom object

    Hi all experts, I have a question.
    I want to create a sales order with reference to a complete custom object created in the CRM system. The custom object has a unique number assigned to it. How can I use the reference of this custom object in my sales order?
    In other words, can I use a field in the sales order which will be storing this custom object number? If yes, which field can be used? If no, how else can this be achieved? Thanks in advance.

    Animesh,
    You have two options:  Use the external reference number field on the Sales order if it is not be being used, however if you capture the customer's PO number you are probably aleady using that field.  Otherwise I would do what you said and create a new Z-field via the EEWB and store your external reference number there.
    If the custom object number was 10 digits alpha numeric, you could possibly create a custom partner function, but I really don't recommend it.  The z-field will give you better performance for reporting, and future processing.  I would put the z-field field in the CUSTOMER_H segment of the document.
    Take care,
    Stephen

Maybe you are looking for

  • Iphoto can't email more then 1 photo at a time

    Currently when I try to email more than 1 photo from the Iphoto buttons at the bottom I get the following error: Mail got and error: can't get paragraph 8 of content of outgoing message id 79941680. Invalid Index. I am using iphoto 4 and Mail v3.2. P

  • Imac won't recognize Pyro A/V converter box

    I can't seem to get my G-4 imac to recognize my Pyro A/V convertor box to use for importing analog video. I've tried resetting power, unplugging cables, etc. I'm pretty new to mac, so could someone help me with this?

  • Apartment number not listed in Verizon Database

    Hi, my apartment number is not listed in Verizon's database. Somehow, Verizon can provide Internet services to everyone else in my apartment building except mine because mine is not listed. My address is {edited for privacy}. Can you please help? - J

  • Scheduled finish date for process orders not updating in BW

    We are having problems with the scheduled finish date (GLTRS) for process orders. When the process order is already released, changes done in R/3 on the scheduled finish date will not result to a delta hence data in BW is not updated. Table AFKO, whe

  • The 'Music' app no longer remembers the place when playing Audiobooks.

    I have been downloading Audiobooks from Audible to iTunes for around 10 years. I always ensure that the settings include 'remember place' before uploading them to 'Music' on (currently) my iPhone 4. In the last few weeks this seems to have stopped wo