Based on Ingo Hilgefort's Thread, need info abt data federator workarounds

Hi Experts,
We checked a related thread with (Re: Restricted key figures from a Data Federator Universe), with Ingo Hilgefort's reply that we can create filtered measures on universe level, but in our scenario it is not working, since in the generated SQL, all the where conditions created for filtered measures are getting combined with AND operator, and hence not producing any report.
For eg, if we are creating two different filtered measures for sales in US, and sales in UK, the generated SQL will combine the conditions as below:
select sales, sales from <tbl name>
where country = "US" AND country = "UK"
which definitely wouldn't produce any result, since country can be either US or UK, not both for any record.
We need to know how to proceed with this scenario.... will it be by creating aliases for fact table and using different contexts, writing subqueries in custom SQL, or any other workaround...?
Guidance on the same is needed urgently. Please share your experience and thoughts regarding the same.
Regards,
Suzane

Hi Experts,
We checked a related thread with (Re: Restricted key figures from a Data Federator Universe), with Ingo Hilgefort's reply that we can create filtered measures on universe level, but in our scenario it is not working, since in the generated SQL, all the where conditions created for filtered measures are getting combined with AND operator, and hence not producing any report.
For eg, if we are creating two different filtered measures for sales in US, and sales in UK, the generated SQL will combine the conditions as below:
select sales, sales from <tbl name>
where country = "US" AND country = "UK"
which definitely wouldn't produce any result, since country can be either US or UK, not both for any record.
We need to know how to proceed with this scenario.... will it be by creating aliases for fact table and using different contexts, writing subqueries in custom SQL, or any other workaround...?
Guidance on the same is needed urgently. Please share your experience and thoughts regarding the same.
Regards,
Suzane

Similar Messages

  • Need clarity on data federator workarounds for BW as mentioned in threads

    Hi Experts,
    We checked a related thread with (Re: Restricted key figures from a Data Federator Universe), with Ingo Hilgefort's reply that we can create filtered measures on universe level, but in our scenario it is not working, since in the generated SQL, all the where conditions created for filtered measures are getting combined with AND operator, and hence not producing any report.
    For eg, if we are creating two different filtered measures for sales in US, and sales in UK, the generated SQL will combine the conditions as below:
    select sales, sales from <tbl name>
    where country = "US" AND country = "UK"
    which definitely wouldn't produce any result, since country can be either US or UK, not both for any record.
    We need to know how to proceed with this scenario.... will it be by creating aliases for fact table and using different contexts, writing subqueries in custom SQL, or any other workaround...?
    Guidance on the same is needed urgently. Please share your experience and thoughts regarding the same.
    Regards,
    Suzane

    You can do a DB Connect to MySQL DataBase. What is the OS and DB of your BW app server and OS for My SQL.
    refer: http://help.sap.com/saphelp_nw70/helpdata/EN/58/54f9c1562d104c9465dabd816f3f24/frameset.htm for list of supported DB's
    If you want to automate the flat file, than write a SQL procedure to generate a CSV file daily from the DB.
    Use OS command in the process chain to copy file to the BW server
    Next perform data load in process chain.

  • Need info on data retrieval

    1.I have an internal table <b>it_vbak</b> with fields <b>vbeln & auart</b>
    2. Select-options: <b>s_auart</b> for <b>vbak-auart</b>
    3. I need to retrieve data into <b>it_vbak</b> with the following condition :
      VBAK-VBELN = VBFA-VBELV and
      VBFA-VBELN = LIKP-VBELN and
    ( VBTYP_N = 'J'  or VBTYP_N ) and
    (VBTYP_V ='C' or VBTYP_V ='I')  and VBAK-AUART in s_auart.
    If I use Inner Join I can't use in s_auart.
    ...Please let me know

    hi,
    make use of for all entries
    first fetch the data from vbak where auart in s_auart(it_vbak_
    and the pass it to vbfa(it_vbfa)using for all entries
    the pass vbfa to likp using for all entries(it_likp)
    then take one final internal table (it_final) and populate final internal table.
    check this example for reference: my requirement si little bit different
    *& Report  ZRSDREPORT
    REPORT  ZRSDREPORT LINE-SIZE 230
                       NO STANDARD PAGE HEADING
                       MESSAGE-ID ZZ.
    Author           : Sudha Rani Pathuri                                *
    Date             : 07/04/2007                                        *
    Title            : DELIVERY STATUS REPORT                            *
    Program Type     : Executable Program                                *
    Tables Used:     : VBAK,VBAP,LIKP,LIPS,VBFA,VBUP                     *
    Purpose          : This report gives the status od the delivery      *
                       based on sales order data                         *
    *& TABLES DECLARATION                                                  *
    TABLES : VBAK,VBPA,LIKP.
    declaraing TYPEPOLL SLIS                                             *
    TYPE-POOLS : SLIS.
    *& SELECTION-SCREEN                                                    *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN :SKIP 2.
    SELECT-OPTIONS:  S_VKORG FOR VBAK-VKORG NO-EXTENSION,
                     S_VTWEG FOR VBAK-VTWEG NO-EXTENSION,
                     S_SPART FOR VBAK-SPART NO-EXTENSION,
                     S_KUNNR FOR VBPA-KUNNR,
                    SO_KUNNR FOR VBPA-KUNNR,
                     S_VBELN FOR LIKP-VBELN NO-EXTENSION,
                     S_ERDAT FOR LIKP-ERDAT OBLIGATORY NO-EXTENSION,
                    SO_ERDAT FOR VBAK-ERDAT NO-EXTENSION.
    SELECTION-SCREEN :SKIP 2.
    SELECTION-SCREEN END OF BLOCK B1.
    *& TYPES DECARATION                                                    *
    *--types declaration for capturing vbeln from vbak
    TYPES : BEGIN OF TY_VBELN,
              VBELN   TYPE  VBELN,         "Sales Doc No
            END OF TY_VBELN,
    *--types declaration for vbap
            BEGIN OF TY_VBAP,
              VBELN   LIKE  VBAP-VBELN,    "Sales Document
              POSNR   LIKE  VBAP-POSNR,    "Sales Document Item
              MATNR   LIKE  VBAP-MATNR,    "Material Number
              KWMENG  LIKE  VBAP-KWMENG,   "Cumulative order quantity in
                                           "sales units
              KDMAT   LIKE  VBAP-KDMAT,    "Material Number Used by Customer
            END OF TY_VBAP,
    *--types declaration for vbfa
            BEGIN OF TY_VBFA,
              VBELV   LIKE  VBFA-VBELV,    "Preceding sales and distribution
                                           "document
              POSNV   LIKE  VBFA-POSNV,    "Preceding item of an SD document
              VBELN   LIKE  VBFA-VBELN,    "Subsequent s and d document
              POSNN   LIKE  VBFA-POSNN,    "Subsequent item of an SDdocument
            END OF TY_VBFA,
    *--types declaration for likp
            BEGIN OF TY_LIKP,
              VBELN   LIKE  LIKP-VBELN,    "Delivery no
            END OF TY_LIKP,
    *--types declaration for lips
            BEGIN OF TY_LIPS,
              VBELN   LIKE  LIPS-VBELN,    "Delivery
              POSNR   LIKE  LIPS-POSNR,    "Delivery item
              MATNR   LIKE  LIPS-MATNR,    "Material Number
              LFIMG   LIKE  LIPS-LFIMG,    "Actual quantity delivered (in
                                          sales units)
            vgbel   LIKE  lips-vgbel,    "Document number of the reference
                                          "document
            END OF TY_LIPS,
    *--types declaration for vbup
            BEGIN OF TY_VBUP,
              VBELN   LIKE  VBUP-VBELN,    "Sales and Distribution Document
                                           "Number
              POSNR   LIKE  VBUP-POSNR,    "Item number of the SD document
              LFSTA   LIKE  VBUP-LFSTA,    "Delivery status
              WBSTA   LIKE  VBUP-WBSTA,    "Goods movement status
              FKSTA   LIKE  VBUP-FKSTA,    "Billing status of delivery
                                           "related billing document
            END OF TY_VBUP,
    *--types declaration for final internal table for diplaying purpose
            BEGIN OF TY_FINAL,
              VBELN(10) TYPE C,
              POSNR   LIKE  VBAP-POSNR,
              MATNR   LIKE  VBAP-MATNR,
              KWMENG  LIKE  VBAP-KWMENG,
              KDMAT   LIKE  VBAP-KDMAT,
              VBELN1  LIKE  LIKP-VBELN,
              POSNR1  LIKE  LIPS-POSNR,
              LFIMG   LIKE  LIPS-LFIMG,
              MATNR1  LIKE  LIPS-MATNR,
              DS(25)  TYPE  C,
            END OF TY_FINAL.
    *& CONSTANTS DECARATION                                                *
    CONSTANTS: C_DTYPE TYPE C VALUE 'J'.
    *& INTERNAL TABLE DECARATION                                           *
    DATA : I_VBELN     TYPE STANDARD TABLE OF TY_VBELN    WITH HEADER LINE,
           I_VBAP      TYPE STANDARD TABLE OF TY_VBAP     WITH HEADER LINE,
           I_VBFA      TYPE STANDARD TABLE OF TY_VBFA     WITH HEADER LINE,
           I_LIKP      TYPE STANDARD TABLE OF TY_LIKP     WITH HEADER LINE,
           I_LIPS      TYPE STANDARD TABLE OF TY_LIPS     WITH HEADER LINE,
           I_VBUP      TYPE STANDARD TABLE OF TY_VBUP     WITH HEADER LINE,
           I_FINAL     TYPE STANDARD TABLE OF TY_FINAL    WITH HEADER LINE.
    *& FIELDCATALOG   DECARATION                                           *
    DATA : I_FIELDCAT TYPE   SLIS_T_FIELDCAT_ALV,
           W_FIELDCAT TYPE   SLIS_FIELDCAT_ALV,
           LT_SORT    TYPE   SLIS_T_SORTINFO_ALV,
           I_LAYOUT   TYPE   SLIS_LAYOUT_ALV.
    *& START-OF-SELECTION                                                  *
    START-OF-SELECTION.
    *--for fetching slaes and delivery data
      PERFORM GET_DATA.
    *--populating the data into one internal table for output
      PERFORM POPULATE_FINAL.
    *--for displaying the data using alv
      PERFORM CALL_ALV.
    *&      Form  get_data
    FORM GET_DATA .
    *--for retrieving vbeln from VBAK or VbAP
      PERFORM GET_VBELN.
    *--retrieving data from VBAP
      PERFORM GET_VBAP.
    *--fetching delivery document details using VBFA.
      PERFORM GET_VBFA.
    *--fetching delivery data from LIKP
      PERFORM GET_LIKP.
    *--fetching delivery data from LIPS
      PERFORM GET_LIPS.
    *--fetching data from VBUP
      PERFORM GET_VBUP.
    ENDFORM.                    " get_data
    *&      Form  get_vbeln
    FORM GET_VBELN .
    *--retrieving vbeln from either VBAK or VBPA
    *--checking whether payer or sold to values in the selection-screen or
                                                           give or not
      IF S_KUNNR IS INITIAL OR SO_KUNNR IS INITIAL.
    *--select statement for retrieving vbeln from vbak
        SELECT VBELN
               FROM VBAK
               INTO TABLE I_VBELN
               WHERE VKORG IN S_VKORG AND
                     VTWEG IN S_VTWEG  AND
                     SPART IN S_SPART AND
                     ERDAT IN S_ERDAT.
        IF SY-SUBRC = 0.
          SORT I_VBELN BY VBELN.
        ELSE.
          MESSAGE I000 WITH TEXT-002.
         STOP.
          LEAVE LIST-PROCESSING.
        ENDIF.
      ELSE.
    *--select statement for retrieving data from vbpa
        SELECT VBELN
               FROM VBPA
               INTO TABLE I_VBELN
               WHERE KUNNR IN S_KUNNR OR
                     KUNNR IN SO_KUNNR.
        IF SY-SUBRC = 0.
          SORT I_VBELN BY VBELN.
        ELSE.
          MESSAGE I000 WITH TEXT-002.
          LEAVE LIST-PROCESSING.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_vbeln
    *&      Form  get_vbap
    FORM GET_VBAP .
      IF I_VBELN[] IS NOT INITIAL.
    *--select statement for retrieving data from vbap
        SELECT VBELN
               POSNR
               MATNR
               KWMENG
               KDMAT
               FROM VBAP
               INTO TABLE I_VBAP
               FOR ALL ENTRIES IN I_VBELN
               WHERE VBELN = I_VBELN-VBELN.
        IF SY-SUBRC = 0.
          SORT I_VBAP BY VBELN POSNR.
        ELSE.
          MESSAGE I000 WITH TEXT-002.
         STOP.
           LEAVE LIST-PROCESSING.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_vbap
    *&      Form  get_vbfa
          text
    -->  p1        text
    <--  p2        text
    FORM GET_VBFA .
    *--select statement to retrieve data from VBFA
      IF I_VBAP[] IS NOT INITIAL.
        SELECT     VBELV
                   POSNV
                   VBELN
                   POSNN
                   FROM VBFA
                   INTO TABLE I_VBFA
                   FOR ALL ENTRIES IN I_VBAP
                   WHERE VBELV   = I_VBAP-VBELN AND
                         POSNV   = I_VBAP-POSNR AND
                         VBTYP_N = C_DTYPE.
        IF SY-SUBRC = 0.
          SORT I_VBFA ."BY vbelv posnv vbeln posnn.
        ELSE.
          MESSAGE I000 WITH TEXT-002.
          STOP.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_vbfa
    *&      Form  get_likp
    FORM GET_LIKP .
      IF I_VBFA[] IS NOT INITIAL.
    *--Fecthing data fron LIKP
        SELECT VBELN
               FROM LIKP
               INTO TABLE I_LIKP
               FOR ALL ENTRIES IN I_VBFA
               WHERE VBELN = I_VBFA-VBELN.
        IF SY-SUBRC = 0.
          SORT I_LIKP BY VBELN.
        ELSE.
          MESSAGE I000 WITH TEXT-002.
          STOP.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_likp
    *&      Form  get_lips
    FORM GET_LIPS .
      IF NOT I_LIKP[] IS INITIAL.
    *--select statement for retrieving data from LIPS
        SELECT VBELN
               POSNR
               MATNR
              vgbel
               LFIMG
               FROM LIPS
               INTO TABLE I_LIPS
               FOR ALL ENTRIES IN I_LIKP
               WHERE VBELN = I_LIKP-VBELN.
        IF SY-SUBRC = 0.
          SORT I_LIPS BY VBELN POSNR MATNR.
        ELSE.
          MESSAGE I000 WITH TEXT-002.
          STOP.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_lips
    *&      Form  get_vbup
    FORM GET_VBUP .
      IF I_LIPS[] IS NOT INITIAL.
    *--select statement for retrieving delivery status from VBUP.
        SELECT VBELN
               POSNR
               LFSTA
               WBSTA
               FKSTA
               FROM VBUP
               INTO TABLE I_VBUP
               FOR ALL ENTRIES IN I_LIPS
               WHERE VBELN = I_LIPS-VBELN AND
                     POSNR = I_LIPS-POSNR.
        IF SY-SUBRC = 0.
          SORT I_VBUP BY VBELN POSNR.
        ELSE.
          MESSAGE I000 WITH TEXT-002.
          STOP.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_vbup
    *&      Form  populate_final
    FORM POPULATE_FINAL.
    *--populating final internal table with sales and delivery data for
                                                    displaying purpose
      LOOP AT I_LIPS.
        I_FINAL-VBELN1   = I_LIPS-VBELN  .
        I_FINAL-POSNR1   = I_LIPS-POSNR .
        I_FINAL-MATNR1   = I_LIPS-MATNR .
        I_FINAL-LFIMG    = I_LIPS-LFIMG.
        READ TABLE I_VBFA WITH KEY VBELN = I_LIPS-VBELN
                                   POSNN = I_LIPS-POSNR BINARY SEARCH.
        IF SY-SUBRC = 0.
          READ TABLE I_VBAP WITH KEY VBELN = I_VBFA-VBELV
                                     POSNR = I_VBFA-POSNV BINARY SEARCH.
          IF SY-SUBRC = 0.
            I_FINAL-VBELN    = I_VBAP-VBELN  .
            I_FINAL-POSNR    = I_VBAP-POSNR .
            I_FINAL-MATNR    = I_VBAP-MATNR .
            I_FINAL-KWMENG   = I_VBAP-KWMENG.
            I_FINAL-KDMAT    = I_VBAP-KDMAT .
            READ TABLE I_VBUP WITH KEY VBELN = I_LIPS-VBELN
                                       POSNR = I_LIPS-POSNR BINARY SEARCH.
            IF SY-SUBRC = 0.
              IF   I_VBUP-WBSTA = 'C'
               AND I_VBUP-FKSTA <> ' '.
                CONTINUE.
              ENDIF.
              IF I_VBUP-WBSTA = 'C' AND I_VBUP-FKSTA = ' '.
                 I_FINAL-DS    = 'Shipped but not invoiced'.
              ELSEIF I_VBUP-WBSTA <> 'C'.
                I_FINAL-DS    = 'open'.
              ENDIF.
              APPEND I_FINAL.
              CLEAR I_FINAL.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " populate_final
    *&      Form  call_alv
    FORM CALL_ALV .
      DATA: CPROG TYPE SY-CPROG.
      CPROG = SY-CPROG.
    *---populating fieldcatalog
      PERFORM POPULATE_FIELDCATALOG.
    *-----layout
      PERFORM Z_LAYOUT.
    *----for sub totals.
      PERFORM Z_SORT USING LT_SORT.
    *-----calling REUSE_ALV_LIST_DISPLAY
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = CPROG
          IS_LAYOUT          = I_LAYOUT
          IT_FIELDCAT        = I_FIELDCAT
          IT_SORT            = LT_SORT
        TABLES
          T_OUTTAB           = I_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.
    ENDFORM.                    " call_alv
    *&      Form  populate_fieldcatalog
    FORM POPULATE_FIELDCATALOG .
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'VBELN'.
      W_FIELDCAT-SELTEXT_L = 'Sales Order Number'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 1.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'POSNR'.
      W_FIELDCAT-SELTEXT_L = 'Order Line Number'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 2.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'MATNR'.
      W_FIELDCAT-SELTEXT_L = 'MAterial Number'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 3.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'KWMENG'.
      W_FIELDCAT-SELTEXT_L = 'Qty Ordered'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 4.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'KDMAT'.
      W_FIELDCAT-SELTEXT_L = 'Customer PO number'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 5.
      W_FIELDCAT-OUTPUTLEN   = 35.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'VBELN1'.
      W_FIELDCAT-SELTEXT_L = 'Delivery Number'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 6.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'POSNR1'.
      W_FIELDCAT-SELTEXT_L = 'Delivery Line Number'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 7.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'MATNR1'.
      W_FIELDCAT-SELTEXT_L = 'Material Number'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 8.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'LFIMG'.
      W_FIELDCAT-SELTEXT_L = 'Delivery Qty'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 9.
      W_FIELDCAT-DO_SUM   = 'X'.
      APPEND W_FIELDCAT TO I_FIELDCAT.
      CLEAR W_FIELDCAT.
      W_FIELDCAT-FIELDNAME = 'DS'.
      W_FIELDCAT-SELTEXT_L = 'Delivery Status'.
      W_FIELDCAT-TABNAME   = 'I_FINAL'.
      W_FIELDCAT-COL_POS   = 10.
      APPEND W_FIELDCAT TO I_FIELDCAT.
    ENDFORM.                    " populate_fieldcatalog
    *&      Form  Z_LAYOUT
    FORM Z_LAYOUT .
      I_LAYOUT-ZEBRA             = 'X'.
      I_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
      I_LAYOUT-GET_SELINFOS      = 'X'.
    ENDFORM.                    " Z_LAYOUT
    *&      Form  Z_SORT
    FORM Z_SORT  USING    P_LT_SORT.
      DATA :LS_SORT    TYPE   SLIS_SORTINFO_ALV.
      CLEAR LS_SORT.
      LS_SORT-SPOS      = '9'.
      LS_SORT-FIELDNAME = 'VBELN'.
      LS_SORT-TABNAME   = 'I_FINAL'.
      LS_SORT-UP        = 'X'.
      LS_SORT-GROUP     = 'UL'.
      LS_SORT-SUBTOT    = 'X'.
      APPEND LS_SORT TO LT_SORT.
    ENDFORM.                    " Z_SORT

  • Need info on Date Utility Classes

    Hi Experts,
    Can someone please suggest me some re-usable date utility classes which I can re-use in my application(preferably date utility classes provided by basis so I dont need to bother about package ) ? What I want to do is pretty simple: Read current date/current month/Year and do basic date calculations.
    Best Regards,
    Viqar Ali.

    Vijay,
    I got a few classes(mostly BSP utility classes), but I could not use them due to package dependancy problems. Can somebody please suggest some date utility classes which I can use in my Web-Dynpro applications ?
    Best Regards,
    Viqar Ali.

  • Need info about data recovery services

    My main hard drive on my Mac G5 crashed on Saturday, and I'm sending it to Drive Savers today. My question concerns security and confidentiality. I have some files on the drive that I would prefer that no one looks at. To what extent, if any, do these places open and look at the contents of individual files? I can't imagine they look at everything. A typical drive like this will have 100s of thousands if not millions of files.
    Thanks for any info.

    Hi mrsaxde-
    The sad reality is that once you hand over your data to anybody you really have no assurance that your files will not be looked at.
    Most likely I would suppose that data-recovery services would not want to get a bad reputation as "the company that looks through your personal data", or something similar, and would be sensitive to such things.
    I would suggest a Google search of that recovery company and see what folks might have to say.
    I have all of my stuff backed u in triplicate, generally due to paranoia about things like this happening. This is unfortunately an expensive and scary lesson in support of a proper backup routine.
    Luck-
    -DP

  • Pharmacist need info abt SAP career

    Im working as intern-pharmacist.I about to finish my internship in couple of months. After becoming pharmacist,Im looking into diversifying into IT..Im actually looking for information on SAP's pharmacuetical software and how it will be possible for pharmacist to become SAP solution consultant, specialising on pharmacuetical softwares and its application to pharmacy practice either in industry or hospital or retail.
    I need your advice on how to go about this....How easy will it be for pharmacist to break into SAP consultancy services,especially in managing pharmacuetical manufacturing and bussiness.
    thanks
    Anil

    Hi,
      SAP CRM 5.0 has Lots of new functionality for Pharma industry will be available in Industry specifc solution.
    For SAP best practices
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/23a3b890-0201-0010-cfa1-8d831df8c6ac
    Regards
    Bala

  • Need info abt gathering statistics

    Hi,
    We are using 8.0.6 database and have around 90GB data in our database. Since we are adding lot of data daily, I wanted to know, Do we need to gather/update statistics of all the tables in our database?
    1) How gathering/updating statistics will help improve my database.
    2) Do i need to have dba priviliges to gather these stats.
    3) Do i need to update the stats daily.
    4) Do i need to update stats for SYS? I heard it slows down the system.
    5) What are the methods in 8.0.6 to gather statistics
    Regards,
    Ateeq

    ateeqrahman wrote:
    Hi,
    We are using 8.0.6 database and have around 90GB data in our database. Since we are adding lot of data daily, I wanted to know, Do we need to gather/update statistics of all the tables in our database?
    1) How gathering/updating statistics will help improve my database.Yes ...
    2) Do i need to have dba priviliges to gather these stats.Not Necessary. You should have analyze any table privilege or execute permission on DBMS_STATS.
    3) Do i need to update the stats daily.Depends on change in data
    4) Do i need to update stats for SYS? I heard it slows down the system.
    5) What are the methods in 8.0.6 to gather statisticsPlease read
    http://www.oracle-base.com/articles/8i/RefreshingStaleStatistics8i.php
    http://www.oracle-base.com/articles/8i/CostBasedOptimizerAndDatabaseStatistics.php
    Regards
    Rajesh

  • Need info on Billing Outputs

    Hello,
    I need info abt billing Outputs - The language is maintained in Bill to party (Customer master), Its maintained in Condition record, It can be changed while creating the invoice.
    Now my question is, which of the above three cases has got highest priority.
    Could some one provide me some info on this?
    Regards,
    Krishna

    By default, we will maintain language in Bill-to-Party & also Condition record. But if required, it can be chaged at Invoicing level while taking output. Priority will be Bill-to-party, followed by Condition Record.
    Regards,
    Rajesh Banka

  • Need Info on RDA-enabled data source based on FM

    Hi,
    I need Info on RDA-enabled data source based on Function Module.
    How to implement it?
    Thanks & Regards,
    Rashmi.

    Hi Rashmi
    Check this link
    http://help.sap.com/saphelp_nw70/helpdata/EN/52/777e403566c65de10000000a155106/frameset.htm
    [under tab Tranferring Transaction Data from Source Systems (RDA)]
    http://help.sap.com/saphelp_nw70/helpdata/EN/3f/548c9ec754ee4d90188a4f108e0121/frameset.htm
    Regards
    Jagadish

  • Need Info on File based TDMS refresh

    HI,
    In a landscape say we have ECC CRM and SRM systems and respective non-prod systems to be refreshed from production.
    Requirement is , a friday 5PM PST we need to take data snap shot for all three systems , can we do it via File based TDMS refresh ?
    Can i create this export file my self without BASIS help ?
    Would like to explore FILE based refresh to see if we can optimize refresh process compared to RFC method.
    I went through few SCN documents , kindly forward any you have and also share BKM's
    regards
    Vinay

    Hi Amit,
    Would like to check with you one last thing,
    In my current scenario BASIS take data snap shot from prod and restore it in a separate server say TDMSECC and using this as sender system we refresh non prod.
    Do you think using file based process can eliminate BASIS task of creating sender system ? and with minimal impact to prod  i can create export package ?
    regards
    Vinay

  • Need info on table: LATP_ENQ

    HI Experts,
    I need info related to the table LATP_ENQ.
    We create sales order in CRM, through some B-Docs order will be replicated in ECC.
    Entries are getting created in this table based on availability of the materials.
    Through Z-Transaction code, we delete entries in this table.
    Sometimes blank entries are getting created in this table, I would like to know in which scenario this table is getting updated.
    Regards,
    Swaraj

    Hi Swaraj
    As it is a Z transaction t.code and as you have deleted the table when we upgrade our ECC version then those blank tables have to be upgraded
    Regards
    Srinath

  • Need info on RA

    Hi all,
    i am in mid of RA Config...
    where in i need to Assign the Line ids to cost elements
    here we create the coding mask for the cost element to be assigned to line ids...
    so we need to create diff cost elements a/c to the coding mask....????is it so....
    so in next step ie in "Update of WIP calc and RA(OKG4)"
    where in for our Cntrl area i need to maintain diff cost elements....
    so now i am finding the problem in creating those cost elements.... for  each diff cost element types ie primary,sec,rev,settled...do i need to create diff G/L account ???? coz it asking fo it so....and hw to create those diff cost element..
    is it thru (ka01)....
    i have link regarding RA...but it does nt say anything abt these cost elements...
    need info on this...
    reply soon for this thread...

    Hi Amit,
    While i was doing the config according to the notes given by u...
    i was stuck in OKG8
    they have told me to set RA cat as RFKA and POCB
    BUT THOSE REC DOES NT EXISTS....
    where in i can create these RA category.....or can i use any alternative RA category
    so can u tell me wat these mean if u knw...and which P&L and Balance a/c need to be used or created and provide the TCOde if u have as the one of my CO consulatant hasnt turned up today....so i only have to create them..
    AND TO ARCHIVE THE PROJECT IS THE STATUS OF PROJECT MUST BE SET TO CNF MCNF TECO
    OR ITS ENOUGH THT ITS BEEN RELEASED...
    REGARDS,
    PREETI.P.G

  • Need info on basics of SAP Business One

    Hi Gurus !
    I need info on basic stuffs for SAP business one 2007 . I tried searching in forums and help but was not able to gather good info...
    Request u to pls guide me on :
    1. What is SAP bsuiness one 2007 and how it is diff from ecc 6 etc ..?
    2. How it is benefical for small and mid size businesses ?
    3, How much is the Cost / licence  ? ( if it can be discussed here ! )
    4. How many users it can cater to ? I mean what is min and max suggeted ...
    Thx !

    Hi,
    You have too many questions in one posting.  There is a forum rule that one question per one thread.
    For your question 1, check this link:
    http://wiki.sdn.sap.com/wiki/display/B1/SAPBusinessOne
    Thanks,
    Gordon

  • MOVED: Need info on windows xp pro purchase

    This topic has been moved to Operating Systems.
    Need info on windows xp pro purchase

    A Windows 8.1 Product Key will not work for a Windows XP install.
    Please do not read this sentence. Please ignore the previous sentence.
    Hi,
    We wont use the Win 8.1 Product Key - We will Purchase new Windows 8.1 License for the fourth PC but install our copy of Win XP on the machine (we have only 3 License that we used for the older 3 machines).
    Carey's reply only speaks to the technical aspects of installing a dual boot environment.  It says nothing about licensing which is what I think you are asking about.  I do not believe that you can purchase a Windows 8.1 License and apply it to a
    Windows XP install.  You need to enter in the Product Key when the OS is installed and I seriously doubt that the XP install will accept the 8.1 Key.  If you don't have a 4th key for XP you won't be able to have a legal copy installed.
    Please do not read this sentence. Please ignore the previous sentence.

  • Error while navigating planning 9.3.1 through workspace/ need info on cpx,

    Hi all
    Hey I installed the planning 9.3.1 and also I created the application name, using planning address. but the problem is I am unable to navigate through workspace. I am getting three dialog boxes....
    " invalid or could not find module configuration"
    "Required application module hyperioin planning app wizard is not configured.please contact your administrator"
    " Communication error"
    I'm able to see the application name in projects of shared services. Can any one face the same situation , and also I need info regarding how to initialize modules of capx and wfp.
    regards
    M.V

    Hi,
    If you did a standard install then it should be running on port 19000 as well.
    I take it workspace is working fine on port 19000
    http://<hostname>:19000/HyperionPlanning/LogOn.jsp
    ^ this will be your workspace servername..
    When you run the configuration utility for Reporting and Analysis and the section "Configure Web Server", this is where you set up the Apache Server for workspace, there is an option for "Planning", this should be ticked and the correct planning server entered as it will default to the workspace server.
    The apache server redirects requests on the standard workspace port 19000 to the correct server and port, so for planning it redirects to the planning server and port 8300.
    Cheers
    John

Maybe you are looking for

  • How do I unmute the audio on a clip in Imovie trailer.

    I am using a Mac Book Pro brand new 2014.  I am using the latest version of Imovie and I am creating a trailer.  I have tried to un-mute the clip from the volume icon on the clip and through the modify menu.  I have when into the "adjust" menu but th

  • Presentation format - looping, auto advance, etc

    Any and all guidance would be SUPER appreciated, and you would be helping me help the 3rd world train to fight HIV! The big advantage to the "Slides" format is that we can more quickly lay in international language voiceover, but I HAVE to get these

  • How to understand on hand in user guide and table MTL_ONHAND_QUANTITIES

    version:12.1.1 IS on hand in user guide from table MTL_ONHAND_QUANTITIES? How to understand on hand in user guide and table MTL_ONHAND_QUANTITIES? http://etrm.oracle.com/pls/et1211d9/etrm_fndnav.show_object?n_appid=401&n_tabid=52063&c_type=TABLE What

  • File generation error

    Hi, want to write 5 tables in 1 file, to write 5 tables into file ,calling program 5 times,passing different itab each time. But when 1 itab gets write in to the file, when program calls again with 2 itab, it writes overwrites itab 2 . This  erase it

  • Suddenly with version 9 and 10 i cant use the shortcut command of ctrl+shift+t to open the most recently closed tab.

    Suddenly with version 9 and 10 i cant use the shortcut command of ctrl+shift+t to open the most recently closed tab. a feature used several times a day, previously. This is very Frustrating to me, i have tried looking up a tool keyconfig 20110522 and