Pls tell  me abut this function REUSE_ALV_COMMENTARY_WRITE

hi all,
               pls tell  me abut this function REUSE_ALV_COMMENTARY_WRITE.
      what is exactly does it.
regards
vikas saini.

hi,
it is used to display header and footer in ALV...
TYPE-POOLS : slis.
TABLES : mara,
         makt,
         marc.
DATA : BEGIN OF itab OCCURS 0,
        matnr LIKE mara-matnr,
        maktx LIKE makt-maktx,
        werks LIKE marc-werks,
       END OF itab.
DATA : t_fcat TYPE slis_t_fieldcat_alv,
       t_eve TYPE slis_t_event,
       st_line TYPE slis_listheader,
       t_list_top_page TYPE slis_t_listheader,
       t_list_end_page TYPE slis_t_listheader.
DATA : t_mat LIKE mara-matnr.
SELECTION-SCREEN : BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
SELECT-OPTIONS : mat FOR mara-matnr.
SELECTION-SCREEN : END OF BLOCK blk1.
INITIALIZATION.
  PERFORM build_cat USING t_fcat.
  PERFORM build_eve.
START-OF-SELECTION.
  PERFORM get_data.
  PERFORM build_header USING t_list_top_page[].
  PERFORM build_footer USING t_list_end_page[].
  PERFORM dis_data.
*&      Form  buils_cat
*       text
*      -->TEMP_FCAT  text
FORM build_cat USING temp_fcat TYPE slis_t_fieldcat_alv.
  DATA : wa_fcat TYPE slis_fieldcat_alv.
  wa_fcat-tabname = 'ITAB'.
  wa_fcat-fieldname = 'MATNR'.
  wa_fcat-seltext_m = 'Material'.
  APPEND wa_fcat TO temp_fcat.
  CLEAR wa_fcat.
  wa_fcat-tabname = 'ITAB'.
  wa_fcat-fieldname = 'MAKTX'.
  wa_fcat-seltext_m = 'Material Description'.
  APPEND wa_fcat TO temp_fcat.
  CLEAR wa_fcat.
  wa_fcat-tabname = 'ITAB'.
  wa_fcat-fieldname = 'WERKS'.
  wa_fcat-seltext_m = 'Plant'.
*  wa_fcat-row_pos = 2.
  APPEND wa_fcat TO temp_fcat.
  CLEAR wa_fcat.
ENDFORM.                    "build_cat
*&      Form  build_eve
*       text
FORM build_eve.
  DATA : wa_eve TYPE slis_alv_event.
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
   EXPORTING
     i_list_type           = 0
   IMPORTING
     et_events             = t_eve
* EXCEPTIONS
*   LIST_TYPE_WRONG       = 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.
  READ TABLE t_eve INTO wa_eve WITH KEY name = 'END_OF_LIST'.
  IF sy-subrc = 0.
    wa_eve-form = 'END_OF_PAGE'.
    MODIFY t_eve FROM wa_eve INDEX sy-tabix.
  ENDIF.
ENDFORM.                    "build_eve
*&      Form  get_data
*       text
FORM get_data.
  SELECT mara~matnr makt~maktx marc~werks INTO CORRESPONDING FIELDS OF TABLE itab
  FROM mara INNER JOIN makt ON
  mara~matnr = makt~matnr
  INNER JOIN marc ON
  mara~matnr = marc~matnr
  WHERE mara~matnr IN mat.
ENDFORM.                    "get_data
*&      Form  dis_data
*       text
FORM dis_data.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
   EXPORTING
     i_callback_program                = 'ZALV_PRDS'
     i_callback_top_of_page            = 'TOP_OF_PAGE'
     it_fieldcat                       = t_fcat
     i_save                            = 'A'
     it_events                         = t_eve
   TABLES
      t_outtab                          = itab
* 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.                    "dis_data
*&      Form  build_header
*       text
*      -->TEMP_LIST          text
*      -->TTYPE              text
*      -->SLIS_T_LISTHEADER  text
FORM build_header USING temp_list TYPE slis_t_listheader.
  CLEAR st_line.
  st_line-typ = 'H'.
  st_line-info = 'Material Info'.
  APPEND st_line TO temp_list.
CLEAR st_line.
  st_line-typ = 'S'.
  st_line-info = 'Material Info'.
  APPEND st_line TO temp_list.
CLEAR st_line.
  st_line-typ = 'A'.
  st_line-info = 'Material Info'.
  APPEND st_line TO temp_list.
ENDFORM.                    "build_header
*&      Form  build_footer
*       text
*      -->TEMP_LIST  text
FORM build_footer USING temp_list TYPE slis_t_listheader.
  CLEAR st_line.
  st_line-typ = 'H'.
  st_line-info = 'Dhwani Shah'.
  APPEND st_line TO temp_list.
ENDFORM.                    "build_header
*&      Form  top_Of_page
*       text
FORM top_of_page.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = t_list_top_page.
ENDFORM.                    "top_Of_page
*&      Form  end_of_page
*       text
FORM end_of_page.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = t_list_end_page.
ENDFORM.                    "end_of_page
<REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Feb 25, 2008 5:44 PM

Similar Messages

  • Pls help me with this function

    i want to write a function with parameters String striker,String nonstriker and Integer runsscored.
    how can i write this with the following conditions
    1.when runsscored ==1 or 3 or 5 or 7 striker and nonstriker should interchange and in other conditions it
    should be same ie when runs scored are 2 , 4and 6

    public static void newRunScored(String striker, String nonStriker, int runScored) {
         System.err.println("Before: " + striker + nonStriker);
         if (runScored % 2 == 1) {
              String temp = "";
              temp = striker;
              striker = nonStriker;
              nonStriker = temp;
         System.err.println("After: " + striker + nonStriker);
    }

  • How to use this function call function 'REUSE_ALV_COMMENTARY_WRITE' in alv

    hi all
    thanks in advance
    how to use this function in alv programming
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    why use and what purpose use this function plz tell me details
    plz guide me
    thanks

    Hi
    see this exmaple code where i had inserted a LOGO by useing this FM
    *& Report  ZTEST_ALV_LOGO
    REPORT  ztest_alv_logo.
    TYPE-POOLS : slis.
    *ALV Formatting tables /structures
    DATA: gt_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: gt_events   TYPE slis_t_event.
    DATA: gs_layout   TYPE slis_layout_alv.
    DATA: gt_page     TYPE slis_t_listheader.
    DATA: gs_page     TYPE slis_listheader.
    DATA: v_repid     LIKE sy-repid.
    *ALV Formatting work area
    DATA: w_fieldcat TYPE slis_fieldcat_alv.
    DATA: w_events   TYPE slis_alv_event.
    DATA: gt_bsid TYPE TABLE OF bsid WITH HEADER LINE.
    INITIALIZATION.
      PERFORM build_events.
      PERFORM build_page_header.
    START-OF-SELECTION.
    *perform build_comment.     "top_of_page - in initialization at present
      SELECT * FROM bsid INTO TABLE gt_bsid UP TO 10 ROWS.
    *perform populate_for_fm using '1' '3' 'BUKRS' '8' 'GT_BSID' 'Whee'.
    *USING = Row, Column, Field name, display length, table name, heading
    *OR
      PERFORM build_fieldcat.
      gs_layout-zebra = 'X'.
    *top of page event does not work without I_callback_program
      v_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program                = v_repid
          i_structure_name                  = 'BSID'
       i_background_id                   = 'ALV_BACKGROUND'
          i_grid_title                      = 'This is the grid title'
      I_GRID_SETTINGS                   =
          is_layout                         = gs_layout
          it_fieldcat                       = gt_fieldcat[]
          it_events                         = gt_events[]
        TABLES
          t_outtab                          = gt_bsid.
    Form..............:  populate_for_fm
    Description.......:  Populates fields for function module used in ALV
    FORM populate_for_fm USING p_row
                               p_col
                               p_fieldname
                               p_len
                               p_table
                               p_desc.
      w_fieldcat-row_pos      = p_row.          "Row Position
      w_fieldcat-col_pos      = p_col.          "Column Position
      w_fieldcat-fieldname    = p_fieldname.    "Field name
      w_fieldcat-outputlen    = p_len.          "Column Lenth
      w_fieldcat-tabname      = p_table.        "Table name
      w_fieldcat-reptext_ddic = p_desc.         "Field Description
      w_fieldcat-input        = '1'.
      APPEND w_fieldcat TO gt_fieldcat.
      CLEAR w_fieldcat.
    ENDFORM.                    " populate_for_fm
    *&      Form  build_events
    FORM build_events.
      DATA: ls_event TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = gt_events.
      READ TABLE gt_events
                 WITH KEY name =  slis_ev_user_command
                 INTO ls_event.
      IF sy-subrc = 0.
        MOVE slis_ev_user_command TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
      READ TABLE gt_events
                 WITH KEY name =  slis_ev_top_of_page
                 INTO ls_event.
      IF sy-subrc = 0.
        MOVE slis_ev_top_of_page TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
    ENDFORM.                    " build_events
    *&      Form  USER_COMMAND
    When user command is called it uses 2 parameters. The itab
    passed to the ALV is in whatever order it currently is on screen.
    Therefore, you can read table itab index rs_selfield-tabindex to get
    all data from the table. You can also check r_ucomm and code
    accordingly.
    FORM user_command USING  r_ucomm     LIKE sy-ucomm
                             rs_selfield TYPE slis_selfield.
      READ TABLE gt_bsid INDEX rs_selfield-tabindex.
    error checking etc.
      SET PARAMETER ID 'KUN' FIELD gt_bsid-kunnr.
      CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
    ENDFORM.                    "user_command
    *&      Form  top_of_page
    Your own company logo can go here if it has been saved (OAOR)
    If the logo is larger than the size of the headings in gt_page,
    the window will not show full logo and will have a scroll bar. Thus,
    it is a good idea to have a standard ALV header if you are going to
    use logos in your top of page.
    FORM top_of_page.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = gt_page
          i_logo             = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "top_of_page
    *&      Form  build_fieldcat
    *Many and varied fields are available here. Have a look at documentation
    *for FM REUSE_ALV_LIST_DISPLAY and REUSE_ALV_FIELDCATALOG_MERGE
    FORM build_fieldcat.
      w_fieldcat-fieldname  = 'BUDAT'.
      w_fieldcat-seltext_m  = 'Dte pst'.
      w_fieldcat-ddictxt(1) = 'M'.
      w_fieldcat-edit = 'x'.
    Can change the position of fields if you do not want them in order
    of the DDIC or itab
    w_fieldcat-row_pos = '1'.
    w_fieldcat-col_pos = '10'.
      APPEND w_fieldcat TO gt_fieldcat.
      CLEAR w_fieldcat.
    ENDFORM.                    " build_fieldcat
    *&      Form  build_page_header
          gt_page is used in top of page (ALV subroutine - NOT event)
          *H = Header, S = Selection, A = Action
    FORM build_page_header.
    For Headers, Key is not printed and is irrelevant. Will not cause
    a syntax error, but is not used.
      gs_page-typ  = 'H'.
      gs_page-info = 'Header 1'.
      APPEND gs_page TO gt_page.
      gs_page-typ  = 'H'.
      gs_page-info = 'Header 2'.
      APPEND gs_page TO gt_page.
    For Selections, the Key is printed (bold). It can be anything up to 20
    bytes. It gets printed in order of code here, not by key value.
      gs_page-typ  = 'S'.
      gs_page-key  = 'And the winner is:'.
      gs_page-info = 'Selection 1'.
      APPEND gs_page TO gt_page.
      gs_page-typ  = 'S'.
      gs_page-key  = 'Runner up:'.
      gs_page-info = 'Selection 2'.
      APPEND gs_page TO gt_page.
    For Action, Key is also irrelevant.
      gs_page-typ  = 'A'.
      gs_page-info = 'Action goes here'.
      APPEND gs_page TO gt_page.
    ENDFORM.                    " build_page_header

  • Import selected photos button not working, Please tell me how to enable this function.

    in Iphoto on macbook pro, the 'import selected' button blacked out, only 'import all photos' works, pls tell me how to get this to work. i'd like to transfer only selected photos to ipad. Have tried to import by copy/paste method into itunes but still cannot be done, every way i've tried is restricted. I don't want to send all my photos through email. neither do i want to use icloud. all i simply want is to have only selected photos sent through my USB cable connected from my macbook pro to send photos to Ipad. It seems Apple have made these strange restrictions for whatever purpose i don't know.

    If you went through the 5 Rs step by step and you're still having problems, it might be time to find an iPod repair service. Apple will charge you as it's out of warranty. You can probably find third party repair outfits that will do it more cheaply.

  • I have tried downloading about 6 times and this is the message I keep getting.  Pls. tell me what to do!!Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR:--- Summary -----  - 0 fatal error(s), 2 error(s)     ERROR: Th

    I have tried downloading about 6 times and this is the message I keep getting.  Pls. tell me what I am doing wrong
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s)
    ERROR: This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements.
    ERROR: System check returned with error : 6I have tried downloading about 6 times and this is the message I keep getting

    Exit Code: 6, Exit Code: 7 Installation Errors - http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html for information on how to review your installation logs

  • The Norton Toolbar 4.6 is disabled in Firefox 4 while it is working in previous version of Firefox. In Firefox 4 it opens with massage Norton Toolbar is incompatible in firefox 4. Is this problem have any solution?? pls tell me.

    The Norton Toolbar 4.6 is disabled in Firefox 4 while it is working in previous version of Firefox. In Firefox 4 it opens with massage Norton Toolbar is incompatible in firefox 4. Is this problem have any solution?? pls tell me.

    Symantec need to update their Firefox add-ons so that they are compatible with Firefox 4. They have released an update for Norton 360 to make it compatible with Firefox 4, for details see http://us.norton.com/support/kb/web_view.jsp?wv_type=public_web&docurl=20100720113635EN&ln=en_US
    I do not know about other Norton products, but if you run Norton LiveUpdate it should inform you if there are updates available. If no updates are available, you can downgrade to Firefox 3.6 if you want to use the Norton add-ons.
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • HT201441 i have no before owner to active my mini i pad . when i format ipad then i face a apple account . but know at this time no owner of the apple account . how i can fix it .... pls tell us

    i have no before owner to active my mini i pad . when i format ipad then i face a apple account . but know at this time no owner of the apple account . how i can fix it .... pls tell us

    Are there any dialog boxes popping up behind your Yahoo screen?
    I have intermittent problems attaching files in Yahoo mail and this is usually the reason.  I'm also using an iMac (10.7.3) and this is likely the problem.
    It is generally a Yahoo issue rather than a Mac problem.

  • TS3694 I couldn't restore my iphone, because there is an error1015, pls' tell me how can i resolve this problem?

    I used itunes11 to restore my iphone, causing an error 1015 did not restored, pls' tell me, how could i resolve this problem.

    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or phobos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • Pls tell what is err in this procedure

    pls tell what is err in this procedure
    create or replace procedure before_insert
    is
    counter NUMBER;
    sql_string VARCHAR2 (4000);
    BEGIN
    FOR Outercounter IN 1 .. 2 LOOP
    FOR Innercounter IN 1 .. 10 LOOP
    sql_string :=
    'INSERT INTO emp_50' || OuterCounter
    || '(id, col_a ,col_b,col_c ,col_d ,col_e, col_f ,col_g ,col_h ,col_i ,col_j ,col_k,col_l,col_m,col_n,col_o,col_p,
    col_q,col_r,col_s,col_t,col_u,col_v,col_w,col_x,col_y,col_z,col_aa,col_bb,col_cc,col_dd,col_ee,col_ff,col_gg,
    col_hh,col_ii,col_jj,col_kk,col_ll,col_mm,col_nn,col_oo,col_pp,col_qq,col_rr,col_ss,col_tt,col_uu,col_vv,col_ww,
    col_xx) VALUES (''id.nextval'',''col_a'',
    sysdate,
    ''col_c '',''col_ddd'' ,''col_eee'',''col_ffff'' ,''col_g'' ,sysdate ,''col_iiii'' ,''col_j'' ,sysdate,''col_l'',''col_m'',''col_n'',''col_o'',
    ''col_p'',sysdate,''col_r'',''col_s'',''col_t'',''col_u'',''col_vvv'',''col_w'',sysdate,''col_y'',''col_z'',
    ''col_a'',''COL_BB'',''col_cc'',''col_dd'',sysdate,''col_ff'',''col_gg'',''col_h'',''col_ii'',''col_jj'',
    ''col_kkkkk'',sysdate,''col_mm'',''col_nnmmm'',''col_o'',''col_pp'',''col_qqqqq'',''col_rrqqq'',sysdate,''col_tt'',''
    col_uuuuuu'',''col_v'',''col_ww'',''col_xx'')';
    EXECUTE IMMEDIATE sql_string;
    END LOOP;
    END LOOP;
    END;
    ERROR at line 1:
    ORA-01722: invalid number
    ORA-06512: at "EMPLOYEE.BEFORE_INSERT", line 21
    ORA-06512: at line 1

    why you are using double quotes with a seq number, when inserting??
    ''id.nextval''

  • I have download but i am unable to insert icon of acrobat to use so pls tell me how can i do this

    I have download but i am unable to insert icon of acrobat to use so pls tell me how can i do this

    Please explain "unable to insert icon of Acrobat"? What are you trying to do?

  • Pls tell me difference between case and decode

    Hi all
    pls tell me difference between case and decode
    regards

    Well not entirely true when you consider working with
    sign and decode together. Your example could be
    written with decode and sign like this:
    decode(sign(sal-1000),1,sal+comm,-1,sal,0)But the case expression reads more easily, I admit.Rob it was just example you considered it special case ,BTW can you do it for me by DECODE function.
    SQL> SELECT sal,comm,CASE WHEN sal>1000 AND sal<1300 THEN sal+comm ELSE 0 END
      2    FROM emp
      3  /
           SAL       COMM CASEWHENSAL>1000ANDSAL<1300THENSAL+COMMELSE0END
          5000                                                          0
          2850                                                          0
          2450                                                          0
          2975                                                          0
          1250       1400                                            2650
          1600        300                                               0
          1500          0                                               0
           950                                                          0
          1250        500                                            1750
          3000                                                          0
           800                                                          0
           SAL       COMM CASEWHENSAL>1000ANDSAL<1300THENSAL+COMMELSE0END
          3000                                                          0
          1100
          1300                                                          0
    14 rows selected.Note for OP CASE can be used within PL/SQL witing ORACLE 9i or later release
    but DECODE function can only be used within SQL.
    Khurram

  • Can anyone pls tell how to process idoc manually ??

    hi experts ,
    my process chain got failed at INFOPACKAGE STEP ITSELF which updating data from r/3 to cube via dso ... and in IP monitor screen it is showing that "SOME IDOC PROBLEM "
    i went to to BD87  and checked for idocs status ..my outbound idoc has problem .... its saying that "error passing data to port "
    and on drilling down, it is showing error msg like  """code page couldn't find page for receiving system """"".. (with red status )
    ,if i process these idocs manually ,will it resolve the issue ?? can any  one pls tell me how does this error looks like ???
    and can you please tell me how to process IDOC MANUALLY ??
       IS IT LIKE  "SELECTING IDOC --> RIGHT CLIK --> PROCESS" ??????
    please help with your suggestions
    HELP FULL ANSWERS WILL  BE REWARDED WITH POINTS ..
    Thanks in advance ....
    Harry

    1. Status 02 to 03 : RBDAGAIN / Tcode BD83 > Calls IDOC_PROCESS_ERROR function module.
    2. Status 30 to 03 : RSEOUT00
    3. Status 29 : Problem in ALE settings
    You can refer this link for more details : http://goo.gl/p5XPl
    See status of record and process below programs using submit report by passing Idoc number
    Program RBDMANI2 for status 51 & 52
    Program RBDAPP01 for status 64 ,66
    Program RBDAGAIE for status 32 and 69 (Edited IDocs)
    Program RBDSYNER for status 26
    Program RSEOUT00 for status 30
    Re-process IDocs failing in 29 status, use program RBDAGAIN.
    + Attention : Use these tcodes with extreme caution+

  • Dear all, I am unable to use face time. It says "waiting for activation". Pls tell what should I do.

    Dear all, I am unable to use face time. It says "waiting for activation". Pls tell what should I do.

    I found a solution that solve the problem, and worked immediately.
    FaceTime worked for me since I purchased my iPhone 4 more than a year ago.
    It stopped working for me since I upgrade it to ios5.
    The reason is that I had Restrictions On: accounts set to "Don't allow changes"
    When you set this like that, you naturally blocking iCloud and FaceTime accounts.
    To solve the problem go to Settings -> General -> Restrictions, and make sure you "allow changes" to accounts and also enable the FaceTime app to work.
    Return to Settings -> FaceTime, and set it to 0 and back to 1.
    That should do the trick. ☺
    I recommend after to "Don't allow changes" to Accounts and Location, to block thieves disable the "Find my iPhone" functionality.  
    Good luck!
    Christophe

  • Pls tell me some fico report1s

    hi all,
                           this is vikas . i want some fico reports.
                          pls tell me the name of fico reports.
    thanks and regards
      vikas saini

    U can find all d details regarding FI tables & their relations here....
    http://www.sapgenie.com/abap/tables_fi.htm
    You can find the details about the FI module here
    http://www.sap-img.com/sap-fi.htm
    check
    http://www.sap-img.com/sap-fi.htm
    Please refer to this link and all ur tcodes will be there
    http://www.erpgenie.com/saptech/transactions.htm
    Check this link
    http://www.erpgenie.com/saptech/transactions.htm
    Transaction SE84 may be useful.
    Choose Program Library -> Programs
    Enter the application component you need (for instance MM) and run.
    Also find the list below that helps in searching other programs, functiona modules etc..
    Programs
    TRDIRE Program attributes (from PROGRAM statement)
    VRSD Version administration: Directory table
    TRCL ABAP/4 program classes
    TDCT Dialog Modules
    Repository objects
    TADIR Catalog of R/3 Repository objects
    TBDIR For Repository Switch: delivered TADIR entries
    Function modules
    TFDIR Function modules
    TFTIT Function module short text
    Function groups
    TLIBG Person responsible for function class
    TADIR Catalog of R/3 Repository objects
    TLIBT Function Group Short Texts
    **reward points if useful***
    regards,
    n.jain

  • In new iPad 4g, when sim card is not inserted, I can not find the enable 4g tap in the setting-cellular data tap, can some one please tell me if this is normal and if so, then when it appears, thanks

    In new iPad 4g, when sim card is not inserted, I can not find the enable 4g tap in the setting-cellular data tap, can some one please tell me if this is normal and if so, then when it appears, thanks

    If the SIM is out of your phone, find my phone needs a data connection, so could use wifi - IF in range of a wifi and one that it can join (ie. a known network or one that is wholly open so no login required).  Your phone could also simple be turned off, so not findable, or it may have been restored (plugged into iTunes and restored as new) again, making it permanently unfindable.  Honestly, for someone stealing an iPhone, this is likely the first thing they do - restore as new and it is theirs forever.
    Find my iPhone is tied to the users iCloud account - the find function is part of the iCloud account's services and it communicates with the iCloud servers over a data connection - either wifi or 3G.
    Have you set up your iCloud account on your replacement phone, and is it working properly on that phone?

Maybe you are looking for

  • Can't get iTunes on new computer to show iCloud music files or manually manage phone

    I have so many questions. Normally I use iTunes on my work PC, but I got a new home PC, downloaded iTunes, logged in with Apple ID, yet I don't see any of the music showing up from my Cloud. And when I plug my phone in, I'm unable to add/delete some

  • Nokia 5800XM internet problem.

    Hey guys, Iv had my phone for about 9-10months now and havent had any problems with it. Recently my landline provider has changed to bt. But when first tried to access the internet through my phone it asked for a WPA key i entered it but it was incor

  • Validate from list

    Hello everybody !! I've a Lov attached to text-item with validate from list property "yes". I fill the text-item who has the lov attached and lov works very well , but when I create another record the trigger "when-validate-record" fires and the lov

  • Netweaver 7.00 upgrade to 7.01

    Hi Guru's, I need to upgrade my NW 7.00 to 7.01 to be able to perform client copy (Source client is at ECC 6.00 PL15 running in Netweaver 7.01 PL3), import & export releases must be on the same level, for sure all of you will agree. I tried manually

  • Characterstics and its values

    Hi All,           In whih table i could find Characterstics and its values. regards sunil