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

Similar Messages

  • 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

  • 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

  • Need data retrieval recommendations for the UK only please

    Hey folks.
    I just wanted to say that I had a problem with strange sounds off my hard disk, the lengthy restarts and problems waking up the computer after battery being empty and finally my hard disk died completely.
    With 17 months under its belt this Hitachi 80GB hard disk ought not to have died but this happens. Sadly I was ABOUT to back up (isn't that always the way?) but had not managed (due to the problems) and so lost some EXTREMELY valuable data. ie photos (numbering 400 and about 600 others) of my grandfather who was taken into hospital for heart failure aged 91 on the VERY SAME DAY.
    Now- I am NOT letting this hard disk go. I have been told by the kind but very slow (Apple took over a fortnight to send them a replacement disk and they had it for 16 days in the end- I went mad) folk who repaired it, it is the mechanism which failed and not the platters which melted or otherwise warped.
    So- this means that the chances of data retrieval are high. BUT- I have had one quote from the firm they recommended and was told it could be as much as £1,300 on the slowest service. Now, as you will appreciate, there IS no value which can be placed on such precious things as memories of a loved one but SURELY there is a chance that someone here has knowledge of a more- erm- cost efficient method?
    LOOOOONG story short: Can you recommend anyone in the UK area who does a good job retrieving data from what has been deemed a high probability recovery?
    Anything I need to know about the subject? All I can tell you is that this WILL involve removing the platters from the mechanism and placing them to another, functioning one with the probability of needing to back up in the region of 20GB.
    Your help in this is so very gratefully received. I am thankful you users are here to hold my hand on this.

    Posted this under the correct header as well- 15 Powerbook. Resolved it myself- went on the net and just picked one. Was semi-successful and if you are needing info check it out- I have explained this there.

  • How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    How do I retrieve call history from my iPhone 4S? It only seems to log for about a month and I need an earlier date?

    If you have backup of your files, you can get your call history back as long as you sync iPhone with iTunes frequently.
    OK, the first thing you are required to do is close the function of "prevent iPhone from syncing automatically." in iTunes, avoiding to sync iPhone again.
    Now, connect your iPhone to pc and open iTunes.
    iTunes> preferences> devices
    All the backup data in iTunes will be displayed.
    Then,click the File menu and select Devices > Restore from Back up
    your iPhone will restart and you can find them back.
    This method only can find back the latest history, to get back the old, you should turn to a third party program for help.

  • I need format for data in excel file load into info cube to planning area.

    Hi gurus,
    I need format for data in excel file load into info cube to planning area.
    can you send me what should i maintain header
    i have knowledge on like
    plant,location,customer,product,history qty,calander
    100,delhi,suresh,nokia,250,2011211
    if it is  right or wrong can u explain  and send me about excel file format.
    babu

    Hi Babu,
    The file format should be same as you want to upload. The sequence of File format should be same communication structure.
    Like,
    Initial columns with Characteristics (ex: plant,location,customer,product)
    date column (check for data format) (ex: calander)
    Last columsn with Key figures (history qty)
    Hope this helps.
    Regards,
    Nawanit

  • 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

  • Is there any way to access my old my verizon account to retrieve old text messages from my own old account from 8 months ago?  I am getting a divorce and I need info off of that account for my hearing to prove what he did.

    Is there any way to access my old my Verizon account to retrieve old text messages from my own old account from 8 months ago?  I am getting a divorce and I need info off of that account for my hearing to prove what he did.

    What do you mean by "when I brought the messages up back in March"?
    Were the messages on your phone? Simply because messages are on your phone does not mean they are still on Verizon's servers. You use internal phone memory to store messages on your phone. The messages do not stay on Verizon's servers until you delete them from your phone.
    On the other hand, if you still have your phone and have not reset it since you stopped using it, the texts may still be on your phone. Good luck.

  • Real tough data retrieval - assistance needed

    Late 2011 Macbook Pro with 500GB hard drive
    Lion 10.7
    One morning out of absolutely nowhere I get this grey screen with a flashing question mark folder. I take it to the geniuses at the Apple store and they tell me my hard drive has failed (no explanation). My mac is under warranty so they gave me a new hard drive for free, bagged my old hard drive and told me "good luck" retrieving the data.
    I'm on a mission to retrieve the data without paying for services. I have never retrieved data before but I've been doing a lot of forum reading and I have been getting protips from an IT friend who has saved my PC data before.
    As of now, I have been unable to even access the hard drive and so I am reaching out to the community to help me conquer this project.
    the problem is not the OS (according to Apple store)
    when hooking up with the dongle, neither Finder nor Disk Utility detect the bad drive
    the drive will spin when forced by the dongle (so I've ruled out the freezer method)
    I was advised (by friends and forums alike) to download so powerful data retrieval software:
    Data Rescue [did not detect bad external drive]
    Disk Drill [did not detect bad external drive]
    TestDisk (http://www.cgsecurity.org/wiki/TestDisk) [I can get it up and running but I have no idea how to use this software]
    So that seems to be the big problem, when I hook up my failed drive as an external hard drive, there is no acknowledgement from my MBP that it is connected and as such data recovery programs cannot access it. When I still had it installed in my computer, there was no clicking sound and it doesn't seem like any of the components are jammed up as it still spins.
    Where do I go from here? Please keep in mind that I am new to resolving my own technical problems but I'm willing to learn. Tired of being one of those people who look at computer parts and get anxious.
    NOTE: I haven't tried Target Mode as I do not have a firewire cable or access to another mac (yet). If you think I should try this, please let me know.

    A hard drive that will not divulge BOTH its Make&Model and a reasonable size/capacity to the likes of Disk Utility and data rescue programs has died, and connot be repaired with any software.
    Target Disk mode will not improve anything. The drive is read as a Mac Volume by software. If it won't mount under Mac OS X, it won't mount under Target Disk Mode.

  • Upload program for Vendor master Partner Data in XK02 needed info

    Hello Experts,
    I need to write data uplaod program for XK02 for vendor master Partner functions. ( Basically we created some custom partner functions and attach it to many existing vendors ).
    So kindly advice me which is the suitable upload method for this.
    1) There is no BAPI available for editing vendors.
    2) BDC is not possible because the Vendor partner screen is having table control and some records are already filled. (No of row not fixed).
    Is there any IDOC available or any standard input pgm?
    Please give suggestion.
    Thanks and rgds,
    Anand

    For the IDOC perspective, you can uses CREMAS.
    For the mass maintenance you still have XK99 (which also uses CREMAS internally)
    True there is NO BAPI
    For the BDC and the table control. Well this is not really true.
    In batchinput, instead of maintaining the rows by there Number, you should select it at the first position.
    OK-CODE /06 will open a selection screen SAPMF02K 2324. The result of the selection screen goes to the first line of the table control.
    Of course this works only in BDC
    reward points if helpful
    Edited by: Alain Bacchi  on Jun 18, 2008 8:48 AM

  • Searching for archived documents / data retrieval

    Hi,
    In a clients system, salesdocuments for a given period has been archived. Unfortunately we now need this info (combination of salesdocument / material). Anybody know if that info is easily retrievable (if possible to accessible in tables i was thinking of retrieving these writing a small report).
    I have tried the following approach.
    http://help.sap.com/saphelp_erp2004/helpdata/en/95/6d6270dba111d2b1fa0000e8a5b9a5/content.htm
    In advance, thanks.
    Kind regards, Sigurd

    Have a look at this thread where the same topic was discussed
    How to retrieve the ARCHIVED Sales order data
    If this is not solving your issue, then have a look at the service market place
    https://websmp109.sap-ag.de/~form/handler?_APP=00200682500000002672&_EVENT=DISPLAY&_SCENARIO=01100035870000000122&_HIER_…
    where you can see an excel file with the name "Reports & Transactions for Accessing Archived Data".
    G. Lakshmipathi

  • Query Error Information: Result set is too large; data retrieval ......

    Hi Experts,
    I got one problem with my query information. when Im executing my report and drill my info in my navigation panel, Instead of a table with values the message "Result set is too large; data retrieval restricted by configuration" appears. I already applied "Note 1127156 - Safety belt: Result set is too large". I imported Support Package 13 for SAP NetWeaver 7. 0 BI Java (BIIBC13_0.SCA / BIBASES13_0.SCA / BIWEBAPP13_0.SCA) and executed the program SAP_RSADMIN_MAINTAIN (in transaction SE38), with the object and the value like Note 1127156 says... but the problem still appears....
    what Should I be missing ??????  How can I fix this issue ????
    Thank you very much for helping me out..... (Any help would be rewarded)
    David Corté

    You may ask your basis guy to increase ESM buffer (rsdb/esm/buffersize_kb). Did you check the systems memory?
    Did you try to check the error dump using ST22 - Runtime error analysis?
    Edited by: ashok saha on Feb 27, 2008 10:27 PM

  • WAD : Result set is too large; data retrieval restricted by configuration

    Hi All,
    When trying to execute the web template by giving less restiction we are getting the below error :
    Result set is too large; data retrieval restricted by configuration
    Result set too large (758992 cells); data retrieval restricted by configuration (maximum = 500000 cells)
    But when we try to increase the number of restictions it is giving output. For example if we give fiscal period, company code ann Brand we are able to get output. But if we give fical period alone it it throwing the above error.
    Note : We are in SP18.
    Whether do we need to change some setting in configuration? If we yes where do we need to change or what else we need to do to remove this error
    Regards
    Karthik

    Hi Karthik,
    the standard setting for web templates is to display a maximum amount of 50.000 cells. The less you restrict your query the more data will be displayed in the report. If you want to display more than 50.000 cells the template will not be executed correctly.
    In general it is advisable to restrict the query as much as possible. The more data you display the worse your performance will be. If you have to display more data and you execute the query from query designer or if you use the standard template you can individually set the maximum amount of cells. This is described over  [here|Re: Bex Web 7.0 cells overflow].
    However I do not know if (and how) you can set the maximum amount of cells differently as a default setting for your template. This should be possible somehow I think, if you find a solution for this please let us know.
    Brgds,
    Marcel

  • Need Info about BW CRM Analytics

    Hi all,
    Guys,
    Please help me out...
    I need Info about BW with CRM Analytics
    What are the core areas where data's are extracted for CRM to BW
    What will be the Interview question related to BW CRM Analytics
    If possible if u have any docs kindly email me at [email protected]
    Thanks in Advance.
    Jaffer Ali.S

    Dear Jaffer Ali S.,
    The following types of analyses can be carried out:
    <b>CRM Lead Analysis</b>
    Use the InfoCube CRM Lead Management (Technical Name: 0MKTG_C01) for reporting.
    The Lead Management InfoCube contains all the characteristics and data used for the administration of leads. This InfoCube enables you to execute the following standard queries available in SAP BW:
    Channel Analysis
    Efficiency Reporting
    Historical Evaluation
    Lost Leads
    Channel Management: Top-n Lost Leads (Current Year)
    <b>CRM Activities Analysis</b>
    Use the InfoCube CRM Activities (Technical Name 0CSAL_C01) for reporting.
    The InfoCube for activities in CRM provides the data basis for evaluating business activities undertaken by your employees. It provides you with information about how much time is being spent on contacting the customer, whether customers actively seek out contact with your company and how intensively your employees look after your customers. It delivers data for queries such as:
    Intensity of customer care
    Activity History
    Success/failure analysis
    <b>Customer Interaction Center (CIC)</b>
    Activate the InfoCube Interactive Scripting Evaluation (IC WinClient) 0CRM_CIC1.
    Interactive Scripting Evaluation (IC WinClient)
    This InfoCube provides the data base for the interactive scripting evaluation. It supplies the data to the Interaction Center (IC): Interactive Scripting Evaluation query.
    <b>Opportunities Analysis</b>
    Activate InfoCube 0CRM_C04 - Opportunities.
    The CRM Opportunities InfoCube contains all the characteristics and data used for the opportunities analyses.
    <b>Sales Order Complaints Analysis</b>
    Activate InfoCube Complaints (Technical name: 0CSAL_C09).
    You can carry out the complaint analysis on a daily, monthly, weekly or a quarterly basis. The analysis can be done in relation to CRM Service Organization, CRM Sales Organization, CRM Product, and Sold-To Party.
    <b>Service Qualtiy Analysis</b>
    Activate the MultiProvider 0CSRVMC04 - CRM Service - Orders and Confirmations with Complaints.
    The MultiProvider 0CSRVMC04 - CRM Service - Orders and Confirmations with Complaints gets the data from the following ODS objects for analyses in various queries:
    0CRM_PROI - Orders: Item Data
    0CRM_COI - Controlling (Item Data)
    0CRM_CNFI - Confirmations (Item Data)
    0CRM_COMP - CRM Complaints (Items)
    Let me know if you need further help.
    Reward points if it helps.
    Regards,
    Naveen.

Maybe you are looking for