Report custom requirement

I have following data inside Table A:
ID Group ItemKey Description
1 A AB123 Descr1
2 A HT090 Descr2
3 A MK009 Descr3
4 B TW189 Descr4
5 B ID876 Descr5
6 C UJL89 Descr6
I want to create a report with following result:
Group ItemKey Description
A AB123 Descr1
B TW189 Descr4
C UJL89 Descr6
Furthermore, when user move the mouse over the first row on the report then tooltip shall display following:
"Other records on this Group A:
ItemKey Description
HT090 Descr2
MK009 Descr3"
How can I achieve this requirement?
Select distinct?
Many thanks.

Hi there,
I can get you some of the way there, and if you are working on 11g R2, probably most of the way:
create table a(item_id number, item_grp varchar2(1), itemkey varchar2(5), description varchar2(10));
insert into a(item_id, item_grp, itemkey, description)
values(1, 'A', 'AB123', 'Descr1');
insert into a(item_id, item_grp, itemkey, description)
values(2, 'A', 'HT090', 'Descr2');
insert into a(item_id, item_grp, itemkey, description)
values(3, 'A', 'MK009', 'Descr3');
insert into a(item_id, item_grp, itemkey, description)
values(4, 'B', 'TW189', 'Descr4');
insert into a(item_id, item_grp, itemkey, description)
values(5, 'B', 'ID876', 'Descr5');
insert into a(item_id, item_grp, itemkey, description)
values(6, 'C', 'UJL89', 'Descr6');This first query will give you the results you need:
select a.item_grp, a.itemkey, a.description
from   a,
      (select item_grp, min(item_id) item_id from a group by item_grp) b
where  a.item_id = b.item_id;
ITEM_GRP ITEMKEY DESCRIPTION
A        AB123   Descr1
B        TW189   Descr4
C        UJL89   Descr6I'm not sure about the tool-tip, but the listagg analytic function might help you. It's only available on 11g Release 2 though...
select a.item_grp,
       listagg(itemkey, ', ') within group (order by item_id) item_keys,
       listagg(description, ', ') within group (order by item_id) descriptions
from   a
group  by item_grp;
ITEM_GRP ITEM_KEYS             DESCRIPTIONS
A        AB123, HT090, MK009   Descr1, Descr2, Descr3
B        TW189, ID876          Descr4, Descr5
C        UJL89                 Descr6Maybe you could parse out the first value from the second and third columns and put the remaining items in a separate column and use this as a title attribute in the column attributes?
select item_grp,
       case instr(item_keys, ', ')
         when 0 then
          item_keys
         else
          substr(item_keys, 1, instr(item_keys, ', ') - 1)
       end item_key,
       case instr(descriptions, ', ')
         when 0 then
          descriptions
         else
          substr(descriptions, 1, instr(descriptions, ', ') - 1)
       end description,
       case instr(item_keys, ', ')
         when 0 then
          null
         else
          substr(item_keys, instr(item_keys, ', ') + 2)
       end other_keys,
       case instr(descriptions, ', ')
         when 0 then
          null
         else
          substr(descriptions, instr(descriptions, ', ') + 2)
       end other_descs
from (select a.item_grp,
             listagg(itemkey, ', ') within
      group(
      order by item_id) item_keys, listagg(description, ', ') within
      group(
      order by item_id) descriptions
      from a
      group by item_grp);
ITEM_GRP ITEM_KEY    DESCRIPTION  OTHER_KEYS      OTHER_DESCS
A        AB123       Descr1       HT090, MK009    Descr2, Descr3
B        TW189       Descr4       ID876           Descr5
C        UJL89       Descr6                                                                                        I had to use the case statements to allow for group C that has no other items in it.
I hope this helps.
Regards,
Jerry

Similar Messages

  • Report in required currency - positions that are reported in TPM12

    Hi,
    User is looking for a report that will convert balances in original currency to a currency specified by the user based on the u201CMu201D rate for the u201Cas ofu201D (key date) date of the report.   Basically they are referring to TPM12/TMR1 and would like to see the positions converted to whichever currency they would like to.  I am looking to execute some of the standard transactions that report positions, like, TIS1 (Overview positions), S_ALN_01001154 - Simulated Valuation, etc., but couldn't find the output converted in the currency given in Display currency / Evaluation Currency in the input screen. 
    Experts, can you through some light on this and tell if there is any such report?
    Let me know if you need any further info.
    Kumar

    Hi Prasad,
    Thanks for your prompt reply.  First of all, we are looking at if there is any standard transaction that will give the report as required.  The client is not interested to use SAP query as there are some authorization problems to transactions SQ01, SQ02, etc.  None of the user have access to these transactions.
    If standard report is not meeting the requirement we may need to for customer development.  But before doing that I am trying to find out if it is possible in any of the existing standard reports.
    thanks,
    Kumar

  • How to create a SCCM 2012 Custom Requirement for OS Architecture?

    Hey guys,
    I'm using the application model to deploy several 32-Bit and 64-Bit apps and I’m looking to simplify things a bit. Right now I'm using the built-in requirements to specify the
    supported OS Architectures for my 32-Bit/64-Bit only applications. This is a bit tedious as it requires me to check every single OS type I want an application to support (i.e. for 64-Bit stuff I check Windows 7 x64, Windows 8.1 x64, Windows Server 2008 R2
    x64, Windows Server R2 x64 and vice versa for 32-Bit). Really all I want is some sort of requirement that lets me specify "Install for all 64-Bit OSes" or "Install for all 32-Bit OSes" depending upon the application in question.
    I’ve been looking at some of the options for a custom requirement and I’m pretty sure I can use that piece to achieve the results I want, I just need to determine what condition
    I need to test against to make it work. Based on what I’ve read I’m thinking that checking the following registry key should work:
    HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment
    KEY: PROCESSOR_ARCHITECTURE
    But I am concerned it could produce the wring result when you have a 32-Bit OS installed on a machine with a 64-Bit capable processor (I have a lot of those in my environment). I also have some older XP/2003 machines to support as well and I’m concerned
    that this method might not work for those systems. Has anyone here faced this same issue and come up with a solution that is relatively foolproof and (if so) would you mind sharing your solution? 

    Create a custom global condition called "OS Architecture x64" and use it as an existential rule.  You are either x64 or are not x64 (implying x86... you'll be on the next version of ConfigMgr when 128-bit Windows comes out...).
    For the rule, use a WQL query to look at the architecture of the OS.
    Win32_OperatingSystem
    OSArchitecture = '64-bit'
    I hope that helps!
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you found a bug or want the product to work differently,
    share your feedback.
    <-- If this post was helpful, please click the up arrow or propose as answer.
    See that's why I posted here. I knew somebody out there had to have come up with a good solution for this and I have to say Nash this is indeed very clever and now that you spelled it out for me also a total no-brainer. Either it is 64-Bit or it isn't!
    That's really all I need to know for my deployment. I was working on two conditions (a 32-Bit and a 64-bit) when (really) all I needed was one. Very very slick. I love it man, thanks for sharing!

  • Report customer master data comparison

    Hello Experts,
    Using transaction SE38, we would like to run report customer master data comparison. Could anyone provide the report name?
    Thank you

    Hi Thanks.
    Can you provide report used for sales summary?
    Thanks again

  • (Invoice aging report =   Cash Requirement Report)

    hi,
    The total balance for cash requirement report for specific supplier not match with the balance for Invoice aging Report also for specific supplier
    The expected behavior:
    It must to match the balance between the two reports
    (Invoice aging report = Cash Requirement Report)
    But this not happen when I compare the balances between the report’s
    Kindly , Advise .
    Thanks

    Hello.
    The Invoice Aging Report shows unpaid invoices, which may be not due yet. Use the Cash Requirement Report to forecast your immediate cash needs for invoice payments.
    Octavio

  • Accounts Receivable Report: Customer Wise Ageing Analysis report -FI module

    Hi Gurus,
                 Can anyone help me in providing standard report(source code) or already done sample report(source code) for Accounts Receivable Report: Customer Wise Ageing AnalysisThis is in FI Module. Though it is FI Module we need to fetch details related to Sales Module, and the days should be <0     30     60     90     120     180     365     >365     
    It is urgent I need to deliver this report by this week end.
    Please help me . Waiting for your reply.
    Points Rewarded for help rendered and I would personally send a good gift if you can help me
    Yours Truly,
    Rajiv Christopher.
    Edited by: Rajiv Christopher on Apr 2, 2008 11:33 AM

    Hi,
    i am attaching aging report.
    see if this is useful to you.
    REPORT ZFUS0102 MESSAGE-ID OA
                    LINE-SIZE 270.
    Title:      GR/IR AGING REPORT
    Date:       January 2001
    TABLES: DISVARIANT, EKPO.
    TYPE-POOLS: SLIS.
    Tables
    TABLES:
      BSIS,
      EKKO.
    working table
    DATA:  BEGIN OF RTAB OCCURS 0,
             HKONT   LIKE BSIS-HKONT,
             ZUONR   LIKE BSIS-ZUONR,
             BUDAT   LIKE BSIS-BUDAT,
             SHKZG   LIKE BSIS-SHKZG,
             DMBTR   LIKE BSIS-DMBTR,
             PRCTR   LIKE BSIS-PRCTR,
          END OF RTAB.
    DATA: BEGIN OF WTAB OCCURS 0,
             ZUONR(2) TYPE N,
             PRCTR   LIKE BSIS-PRCTR,
             DAYS(4)  TYPE P,
             DMBTR   LIKE BSIS-DMBTR,
          END OF WTAB.
    DATA: BEGIN OF PTAB OCCURS 0,
             ZUONR(2),
             PRCTR   LIKE BSIS-PRCTR,
             AMT30   LIKE BSIS-WRBTR,
             AMT60   LIKE BSIS-WRBTR,
             AMTPL   LIKE BSIS-WRBTR,
             TOTAL   LIKE BSIS-WRBTR,
          END OF PTAB.
    PARAMETERS:  COMPANY LIKE BSIS-BUKRS OBLIGATORY,
                 ACCT    LIKE BSIS-HKONT OBLIGATORY,
                 DATE    LIKE SY-DATUM OBLIGATORY.
    SELECT-OPTIONS: S_EKORG FOR EKKO-EKORG.
    PARAMETERS: P_VARI LIKE DISVARIANT-REPORT.
    DATA: WS-AMT30 LIKE BSIS-WRBTR.
    DATA: WS-AMT60 LIKE BSIS-WRBTR.
    DATA: WS-AMTPL LIKE BSIS-WRBTR.
    DATA: TITLE(21) VALUE 'GR/IR Aging Report'.
    DATA: LIN TYPE I.
    DATA: GX_VARIANT LIKE DISVARIANT,
          G_VARIANT LIKE DISVARIANT.
    DATA:  LAYOUT   TYPE SLIS_LAYOUT_ALV,
           L_F      TYPE SLIS_T_FIELDCAT_ALV   WITH HEADER LINE,
           GROUP    TYPE SLIS_T_SP_GROUP_ALV   WITH HEADER LINE,
           COLOR    TYPE SLIS_T_SPECIALCOL_ALV WITH HEADER LINE.
    DATA:  LT_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER,
           LS_LINE TYPE SLIS_LISTHEADER,
           T_EVENTS   TYPE SLIS_T_EVENT.
    CONSTANTS: FORMNAME_TOP_OF_PAGE TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE'.
    INITIALIZATION.
      PERFORM EVENTTAB_AUFBAUEN USING T_EVENTS[].
      PERFORM VARIANT_INIT.
    Get default variant
      GX_VARIANT = G_VARIANT.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
           EXPORTING
                I_SAVE     = 'A'
           CHANGING
                CS_VARIANT = GX_VARIANT
           EXCEPTIONS
                NOT_FOUND  = 2.
      IF SY-SUBRC = 0.
        P_VARI = GX_VARIANT-VARIANT.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_VARI.
      PERFORM VARIANT_INPUTHELP_F14.
    START-OF-SELECTION.
      LS_LINE-TYP  = 'S'.
      WRITE SY-DATUM TO LS_LINE-INFO DD/MM/YY.
      WRITE SY-UZEIT TO LS_LINE-INFO+10.
      WRITE SY-UNAME TO LS_LINE-INFO+20.
      WRITE TITLE    TO LS_LINE-INFO+30.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
      PERFORM FIELDS.
      IF NOT P_VARI IS INITIAL.
        PERFORM PAI_OF_SELECTION_SCREEN.
      ELSE.
        CALL FUNCTION 'REUSE_ALV_VARIANT_SELECT'
             EXPORTING
                  I_DIALOG            = ' '
                  I_USER_SPECIFIC     = 'A'
                  I_DEFAULT           = ' '
            I_TABNAME_HEADER    =
            I_TABNAME_ITEM      =
                  IT_DEFAULT_FIELDCAT = L_F[]
                  I_LAYOUT            = LAYOUT
             IMPORTING
            E_EXIT              =
                  ET_FIELDCAT         = L_F[]
            ET_SORT             =
            ET_FILTER           =
             CHANGING
                  CS_VARIANT          = DISVARIANT
             EXCEPTIONS
                  WRONG_INPUT         = 1
                  FC_NOT_COMPLETE     = 2
                  NOT_FOUND           = 3
                  PROGRAM_ERROR       = 4
                  OTHERS              = 5.
      ENDIF.
    Decide which tables to access.
      PERFORM MAIN_SELECT.
      MOVE TITLE  TO LAYOUT-WINDOW_TITLEBAR.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM      = 'ZFUS0102'
                I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
                IS_LAYOUT               = LAYOUT
                IT_FIELDCAT             = L_F[]
                IT_SPECIAL_GROUPS       = GROUP[]
                I_SAVE                  = 'A'
                IS_VARIANT              = G_VARIANT
                IT_EVENTS               = T_EVENTS
           TABLES
                T_OUTTAB                = PTAB
           EXCEPTIONS
                PROGRAM_ERROR           = 1
                OTHERS                  = 2.
          FORM FIELDS                                                   *
    FORM FIELDS.
      L_F-FIELDNAME     = 'ZUONR'.
      L_F-OUTPUTLEN     = 6.
      L_F-SELTEXT_L     = 'SERIES'.
      L_F-REPTEXT_DDIC  = 'SERIES'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'PRCTR'.
      L_F-OUTPUTLEN     = 10.
      L_F-SELTEXT_L     = 'PROFIT CTR.'.
      L_F-REPTEXT_DDIC  = 'PROFIT CTR.'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'AMT30'.
      L_F-SELTEXT_L     = '30 DAYS'.
      L_F-REPTEXT_DDIC  = '30 DAYS'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'AMT60'.
      L_F-SELTEXT_L     = '60 DAYS'.
      L_F-REPTEXT_DDIC  = '60 DAYS'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'AMTPL'.
      L_F-SELTEXT_L     = '60+ DAYS'.
      L_F-REPTEXT_DDIC  = '60+ DAYS'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
      L_F-FIELDNAME     = 'TOTAL'.
      L_F-SELTEXT_L     = 'TOTAL'.
      L_F-REPTEXT_DDIC  = 'TOTAL'.
      L_F-REF_TABNAME   = 'PTAB'.
      L_F-SP_GROUP      = 'A'.
      L_F-REF_TABNAME   = 'BSIS'.
      L_F-REF_FIELDNAME = 'WRBTR'.
      L_F-DO_SUM        = 'X'.
      APPEND L_F. CLEAR L_F.
    ENDFORM.
          FORM MAIN_SELECT                                              *
    FORM MAIN_SELECT.
      SELECT HKONT ZUONR BUDAT SHKZG DMBTR PRCTR
           INTO TABLE RTAB
           FROM BSIS
           WHERE BUKRS = COMPANY
           AND   HKONT = ACCT.
      IF SY-SUBRC = 0.
        SORT RTAB.
        PERFORM PROCESS_RTAB.
        PERFORM PROCESS_WTAB.
      ENDIF.
    ENDFORM.                    " MAIN SELECT
          FORM VARIANT_INPUTHELP_F14                                    *
    FORM VARIANT_INPUTHELP_F14.
      DATA:  G_EXIT(1) TYPE C.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
           EXPORTING
                IS_VARIANT          = G_VARIANT
                I_SAVE              = 'A'  " g_save
              it_default_fieldcat =
           IMPORTING
                E_EXIT              = G_EXIT
                ES_VARIANT          = GX_VARIANT
           EXCEPTIONS
                NOT_FOUND = 2.
      IF SY-SUBRC = 2.
        MESSAGE ID SY-MSGID TYPE 'S'      NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
        IF G_EXIT = SPACE.
          P_VARI = GX_VARIANT-VARIANT.
        ENDIF.
      ENDIF.
    ENDFORM.
          FORM USER_COMMAND                                             *
    -->  UCOMM                                                         *
    -->  SELFIELD                                                      *
    FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM SELFIELD TYPE
    SLIS_SELFIELD.
      IF UCOMM EQ '&IC1'.
        IF SELFIELD-TABINDEX <= 0.
          MESSAGE S108.
          EXIT.
        ENDIF.
      IF SELFIELD-SEL_TAB_FIELD CS 'LIFNR'.
        SET PARAMETER ID 'LIF' FIELD SELFIELD-VALUE.
        CALL TRANSACTION 'XK02'.
      ELSE.
        IF SELFIELD-SEL_TAB_FIELD CS 'VEND'.
          SET PARAMETER ID 'LIF' FIELD SELFIELD-VALUE.
          CALL TRANSACTION 'FBL1'.
        ENDIF.
      ENDIF.
        CLEAR SY-UCOMM. CLEAR UCOMM.
      ENDIF.
    ENDFORM.
          FORM TOP_OF_PAGE                                              *
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                IT_LIST_COMMENTARY = LT_TOP_OF_PAGE.
    ENDFORM.
          FORM EVENTTAB_AUFBAUEN                                        *
    -->  P_T_EVENTS                                                    *
    FORM EVENTTAB_AUFBAUEN USING P_T_EVENTS TYPE SLIS_T_EVENT.
      DATA: LS_EVENT TYPE SLIS_ALV_EVENT.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
           EXPORTING
                I_LIST_TYPE = 0
           IMPORTING
                ET_EVENTS   = P_T_EVENTS.
      READ TABLE P_T_EVENTS WITH KEY NAME = SLIS_EV_TOP_OF_PAGE
                                                     INTO LS_EVENT.
      IF SY-SUBRC = 0.
        MOVE FORMNAME_TOP_OF_PAGE TO LS_EVENT-FORM.
        APPEND LS_EVENT TO P_T_EVENTS.
      ENDIF.
    ENDFORM.                               " EVENTTAB_AUFBAUEN
          FORM PAI_OF_SELECTION_SCREEN                                  *
    FORM PAI_OF_SELECTION_SCREEN.
      IF NOT P_VARI IS INITIAL.
        MOVE G_VARIANT TO GX_VARIANT.
        MOVE P_VARI TO GX_VARIANT-VARIANT.
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
             EXPORTING
                  I_SAVE     = 'A'  " g_save
             CHANGING
                  CS_VARIANT = GX_VARIANT.
        G_VARIANT = GX_VARIANT.
      ELSE.
        PERFORM VARIANT_INIT.
      ENDIF.
    ENDFORM.                               " PAI_OF_SELECTION_SCREEN
          FORM VARIANT_INIT                                             *
    FORM VARIANT_INIT.
      CLEAR G_VARIANT.
      G_VARIANT-REPORT = 'ZFUS0102'.
    ENDFORM.                               " VARIANT_INIT
    *&      Form  PROCESS_RTAB
          text
    -->  p1        text
    <--  p2        text
    FORM PROCESS_RTAB.
      DATA TLNS TYPE I.
      DESCRIBE TABLE S_EKORG LINES TLNS.
      LOOP AT RTAB.
        IF TLNS GT 0.
          SELECT SINGLE EKORG FROM EKKO INTO EKKO-EKORG
            WHERE EBELN = RTAB-ZUONR(10).
          CHECK EKKO-EKORG IN S_EKORG.
        ENDIF.
        IF NOT RTAB-BUDAT > DATE.
          MOVE RTAB-ZUONR(2) TO WTAB-ZUONR.
          COMPUTE WTAB-DAYS = DATE - RTAB-BUDAT.
          IF RTAB-SHKZG = 'H'.
            WTAB-DMBTR = RTAB-DMBTR * -1.
          ELSE.
            WTAB-DMBTR = RTAB-DMBTR * 1.
          ENDIF.
          MOVE RTAB-PRCTR TO WTAB-PRCTR.
          APPEND WTAB.
        ENDIF.
      ENDLOOP.
      FREE RTAB.
    ENDFORM.                    " PROCESS_RTAB
    *&      Form  PROCESS_WTAB
          text
    -->  p1        text
    <--  p2        text
    FORM PROCESS_WTAB.
      SORT WTAB BY ZUONR PRCTR DAYS.
      LOOP AT WTAB.
        PTAB-ZUONR = WTAB-ZUONR.
        PTAB-PRCTR = WTAB-PRCTR.
        AT END OF DAYS.
          SUM.
          IF WTAB-DAYS > 60.
            WS-AMTPL = WS-AMTPL + WTAB-DMBTR.
          ELSE.
            IF WTAB-DAYS > 30.
              WS-AMT60 = WS-AMT60 + WTAB-DMBTR.
            ELSE.
              WS-AMT30 = WS-AMT30 + WTAB-DMBTR.
            ENDIF.
          ENDIF.
        ENDAT.
        AT END OF PRCTR.
          PTAB-AMTPL = WS-AMTPL.
          PTAB-AMT30 = WS-AMT30.
          PTAB-AMT60 = WS-AMT60.
          COMPUTE PTAB-TOTAL = PTAB-AMTPL + PTAB-AMT30 + PTAB-AMT60.
          APPEND PTAB.
          WS-AMTPL = 0.
          WS-AMT30 = 0.
          WS-AMT60 = 0.
        ENDAT.
      ENDLOOP.
      SORT PTAB BY ZUONR PRCTR.
    ENDFORM.                    " PROCESS_WTAB
    regards,
    Sindhu

  • "Oracle SQL Developer Data Modeler reporting repository required"

    Hi all,
    Trying to make use of Data Modeler Reports from within SQL Dev EA 2.1, but every time I try to connect to a DB I get the following message "Oracle SQL Developer Data Modeler reporting repository required."
    Any idea how to go about sorting this out?
    Thanks

    Hi i have the Oracle SQL Developer Data Modeler version 2.0.0 installed.
    When i try to export one diagram to the reporting schema, i get the following error : "Error occurred while exporting to Reporting Schema.See the log file for details".
    The log file has no errors.
    The repository owner is DBA.
    The connection is ok.
    Can you help me?
    Thanks in advance
    Paolo.

  • 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

  • PLD report customer statment not showing Customer Ref No

    I am having an issue with PLD report Customer Statment,
    there is a box for the customer reference number but it comes up blank each time.
    i tried multiple times to solve this issue with each time getting closer but never successfully solving the issue.
    This is a system report and when i look for the inner value instead of seeing database i see FREE TEXT
    i am guessing because the value is hardcoded.
    I have tried to call the OINV.NUMATCARD directly on the field, and saw that  field was not available.
    This report was fine in 2005 now that we are in 2007 the field is left blank.
    before posting to sap i wanted to know if any of you have had this issue.
    Relevant Answers will be awarded points.
    Thanks.
    Edited by: Sebastiano Todaro on Jan 13, 2009 4:04 PM

    Hi,
    Are you trying to Print Preview using the template Customer Aging Report (One page per customer) and find that the BP reference Number is empty?
    Have you tried to check the Print Preview by double clicking on the customer row, open the Customer Receivables Aging - Details window, and preview the report using the same
    template?
    You can refer to Note No. : [1248669|https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1248669]
    Regards,
    Jitin
    SAP Business One Forum Team

  • Different between Customer requirement and Sales Order.

    Hi, can any expert explain the Different between Customer requirement and Sales Order to me?
    Any help would be appreciated.
    Regards,
    Tiger

    Hi...
    The Customer sents the requirement ( Like specially manufactured products as per the customer specifications) which can be entered in the form an Inquiry. With ref. to this inquiry a quotation will be sent to the customer. The customer places an order thru document with reference to this quotation.
    Now the company processes the order and manufactures the Product and delivers the Product to the Customer and recieves the payment.
    Hope this clears the query
    Reward points if found usefull
    regards
    Sajeev

  • Reporter & Customer field empty in solman 7.1 incident created by crmwebui directly issue

    Hi All,
    We are running SAP SM 7.1 SPS04. Incident Management (CRMWebui based) is setup. Everything works well (e.g. Reporter/Customer fields gets filled automatically) if incident is created from satellite system or from solution manager workcenter. However , If incident is directly created from CRMWebui screen i.e. Create>Incident .....fields 'Reporter' and 'Customer' are blank and not getting determined automatically.
    Is this an issue or some other adjustment (other than mantaining sold-to-party in IB52>Goto>Partner or adding BP to contact relationship) which needs to be done.
    Please share your thoughts o this if any !!!
    Thanks & Regards,
    Rupesh

    Hi All,
    To update on this i realized while creating an incident in CRMWebui screen directly.. if ibase field value is assigned then 'Customer' field gets determined automatically (based on ib52>Partner> sold-to-party). Thus, succeeded in auto 'Customer' field determination.
    However, issue of not getting 'Reporter' is till there.
    Thanks & Regards,
    Rupesh

  • Difference between Activation Dev and Customer Requirement dev system

    Hi  All
    I am going to install Baseline Packages 
    on ECC 6 EHP 4.
    i am having confusation that why we need activation development system and customer requirement development system in our sap landscape...
    As per sap document its mention that we need four system landscape......
    i am have gone through this  note 1426866.
    so please help me.........
    Please someone help me it is critical issue .. i am waiting for your valueable reply.....
    Edited by: amkum82 on Oct 11, 2010 1:47 PM

    Hi
    Baseline package includes BC sets with preconfigured scenarios as you might know. While customers requirements may be require certain additional configuration,customizing or enhancments . So in implementation scenario to track and maintain Baseline configuration intact for reference and future use ,the Baseline activation system is used.
    While the client requirement system will be a development system  for config and testing of all requirements arising out of project.
    I hope this helps
    Regards
    Mandar

  • Access Report Custom Functions from code

    Post Author: leedo
    CA Forum: .NET
    Hello,
    I am using VS2005 (VB) and was able to change formula text from within code using the "FormulaFieldDefinitions" object. However, I am having problems finding out how I can do the same to Report Custom Functions.  The reason I am doing all this is that I noticed during my Windows app is running the source of my .rpt file is thrown in the user "Local Settings\Temp" folder and all code is revealed by simply opening that file. Please help. ThanksLeedo

    Post Author: MJ@BOBJ
    CA Forum: .NET
    It looks like it is not possible to access the custom functions within a report using the CR .NET SDK.  However, to address the potential security issue that you may be concerned about, is this a Windows or ASP.NET application?  If this is an ASP.NET application, then you shouldn't have to worry about the security as the end-user (client) will not be able to access that folder since the rest of the web server is typically unaccessible by the client. 
    Another way to secure your reports is to use what we call "managed reporting" solutions such as Crystal Report Server or Business Objects Enterprise, which manages reports securely and your users are only allowed to access/see what you allow them to.  These solutions also provide public SDKs so you could incorporate the system into your own applications.  For more information, go to www.businessobjects.com/products.

  • Can I run a Unique Clients and Users Summary report customized by both floor area and SSID?

    In Cisco Prime, can I run a Unique Clients and Users Summary report customized by both floor area and SSID?

    Allright guys. I appreciate the quick responses. I've worked a lot in CR however i am not understanding the solution so I'd appreciate if you can dumb it down for me. If i understand it correctly you guys are suggesting to make a formula, that either return my group by string (which is a formula in my report) or the Quantity. I tried writing a formula like this
    if ({@param} = 1 then
    GroupName ({@GroupBy})
    else
    {NetPNL.GrossAfterAdj}
    but it seems like CR does not allow you to return 2 different data types. Even if it had worked i would not know what to do from there. Can anyone please dumb it down for me. To make my situation more clear below is an example of how my data is..
    MN 100
    MN 200
    MN 50
    CA 300
    CA 500
    when the data shows in the report, its grouped by state, so it comes out like
    MN 350
    CA 800
    I want the users to decide whether they want it sorted by state  (ascending)
    CA 800
    MN 350
    or Total quantity (asc)
    MN 350
    CA 800

  • Can I use the customer requirement number as sales order in 'Goods issue MB

    Can I use the customer requirement number as sales order in 'Goods issue MB1A'?
    Thanks,
    Tiger

    Why I used the customer requirement in MB1A as the sales order, Update was terminated.
    Thanks,
    Tiger

Maybe you are looking for

  • Get the values using substr

    Hi All, i am a comma seperated values into a variable. below are the values. "1234567,3,124567,3,14" the length of the values can vary. eg the output can also be "123,3,124567,443,1224" I need to get each value and store it a separate variable. is it

  • CO-PA Summarization Level

    Hi, I am very unclear about summarization levels in CO-PA. Please can any one explain me what is the real significance of summarization level, why do we need it and steps to configure it, and on what logic is data extracted from it. Thank you, Sam

  • Why can I only load https pages, Safari and Maverick?

    Hi I can't load http web pages in Safari, but can load https pages. Have similar problem with Opera, but no problem loading http web pages on my iPad. The problem started yesterday and is on my iMac.  So am guessing that it is a mavericks setting iss

  • The last time you opened Mail, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again?

    After i upgraged to Mavericks I am having a problem to open mail and get this message The last time you opened Mail, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? Please help Thanks

  • SP level after installing NW 7.0 EHP1 ?

    Hello, I'm about to install a Netweaver 7.0 EHP1 Environement (Abap only). The Support Package Stack 701 02 must then be implemented. So, I've read the Installation Guide (Installation Guide SAP NetWeaver 7.0 ABAP including Enhancement Package 1on HP