Give Me Some Tips For doing this report.

hi frd. help me in this report.
parameter : plant,material no,company code,storage location.
display: material no, material desc, UOM, ROL, warehouse, open po, open po qty, open pr no, open pr qty.
Kindly Give me tips for doing this report.
thank u
Pari Vendhan.R

Hi,
Its will not fullfill ur requirement but upto some extent...just have a look.
TYPE-POOLS : slis.
TABLES : mkpf,
         mseg,
         t001w,
         t001l.
TYPES : BEGIN OF ty_t001w,
          werks TYPE t001w-werks,
          name1 TYPE t001w-name1,
        END OF ty_t001w,
        BEGIN OF ty_makt,
          matnr TYPE makt-matnr,
          maktx TYPE makt-maktx,
        END OF ty_makt,
        BEGIN OF ty_t001l,
          lgort TYPE t001l-lgort,
          lgobe TYPE t001l-lgobe,
        END OF ty_t001l.
DATA :  BEGIN OF it_mat OCCURS 0,
        mbln LIKE mseg-mblnr,         " Number of Material Document
        zeile LIKE mseg-zeile,         " Item in Material Document
        mjahr LIKE mseg-mjahr,         " Material Document Year
        bwart LIKE mseg-bwart,         " Movement Type
        matnr LIKE mseg-matnr,         " Material Number
        erfmg LIKE mseg-erfmg,         "Quantity in unit of entry
        erfme LIKE mseg-erfme,         "Unit of entry
        werks LIKE mseg-werks,          "Plant
        lgort LIKE mseg-lgort,          "Storage location
        umwrk LIKE mseg-umwrk,          "Receiving plant/issuing plant
        umlgo LIKE mseg-umlgo,      "Receiving/issuing storage location
        bldat LIKE mkpf-bldat,       "Document Date in Document
        budat LIKE mkpf-budat,       "Posting Date in the Document
        maktx LIKE makt-maktx,           "Material description
        name1 LIKE t001w-name1,           "Name
        name2 LIKE t001w-name1,           "Name
        lgobe LIKE t001l-lgobe,         "Description of storage location
        lgobe1 LIKE t001l-lgobe,     "Description of storage location
        END OF it_mat.
DATA : it_t001w TYPE TABLE OF ty_t001w
                 WITH HEADER LINE,
       it_makt TYPE TABLE OF ty_makt
               WITH HEADER LINE,
       it_t001l TYPE TABLE OF ty_t001l
                WITH HEADER LINE.
DATA : ls_layout TYPE slis_layout_alv,
       it_fcat TYPE slis_t_fieldcat_alv ,
       wa_fcat TYPE slis_fieldcat_alv,
       "lh TYPE slis_t_listheader,
      " ls TYPE slis_listheader,
       i_events TYPE slis_t_event WITH HEADER LINE ,
       "ls_event TYPE slis_alv_event ,
       w_var TYPE i.
DATA : l_date(10).
DATA : l_date1(20),
       ztabix LIKE sy-tabix.
SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.
SELECT-OPTIONS : s_werks FOR mseg-werks,
                 s_lgort FOR mseg-lgort,
                 s_umwrk FOR mseg-umwrk,
                 s_umlgo FOR mseg-umlgo,
                 s_bwart FOR mseg-bwart,
                 s_budat FOR mkpf-budat,
                 s_mjahr FOR mkpf-mjahr NO-EXTENSION.
SELECTION-SCREEN END OF BLOCK a1.
AT SELECTION-SCREEN.
  SELECT SINGLE * FROM t001w INTO t001w
                            WHERE werks IN s_werks.
  IF sy-subrc <> 0.
    MESSAGE e000(8i) WITH 'Enter a Valid Supplying Plant'.
  ENDIF.
  SELECT SINGLE * FROM t001w INTO t001w
                          WHERE werks IN s_umwrk.
  IF sy-subrc <> 0.
    MESSAGE e000(8i) WITH 'Enter a Valid Receiving Plant'.
  ENDIF.
  SELECT SINGLE * FROM t001l INTO t001l
                          WHERE lgort IN s_lgort.
  IF sy-subrc <> 0.
    MESSAGE e000(8i) WITH 'Enter a Valid Supplying St.Loc'.
  ENDIF.
  SELECT SINGLE * FROM t001l INTO t001l
                          WHERE lgort IN s_umlgo.
  IF sy-subrc <> 0.
    MESSAGE e000(8i) WITH 'Enter a Valid Receiving St.Loc'.
  ENDIF.
START-OF-SELECTION.
  PERFORM field_cat.
  PERFORM get_data.
*END-OF-SELECTION.
  IF it_mat[] IS INITIAL.
    MESSAGE i000(8i) WITH 'No data Found'(m01).
*    EXIT.
  ELSE.
    PERFORM process_data.
    PERFORM display_data.
  ENDIF.
*&      Form  field_cat
*       text
*  -->  p1        text
*  <--  p2        text
FORM field_cat .
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'MBLN'.
  wa_fcat-key = 'X'.
  wa_fcat-hotspot = 'X'.
  wa_fcat-ref_fieldname = 'MBLNR'.
  wa_fcat-ref_tabname = 'MSEG'.
  wa_fcat-seltext_m = 'Material Doc'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'ZEILE'.
  wa_fcat-ref_fieldname = 'ZEILE'.
  wa_fcat-ref_tabname = 'MSEG'.
  wa_fcat-seltext_m = 'Item No'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'MJAHR'.
  wa_fcat-ref_fieldname = 'MJAHR'.
  wa_fcat-ref_tabname = 'MSEG'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'BWART'.
  wa_fcat-ref_fieldname = 'BWART'.
  wa_fcat-ref_tabname = 'MSEG'.
  wa_fcat-seltext_m = 'Mvmt Type'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'BLDAT'.
  wa_fcat-ref_fieldname = 'BLDAT'.
  wa_fcat-ref_tabname = 'MKPF'.
  wa_fcat-seltext_m = 'Document Date'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'BUDAT'.
  wa_fcat-ref_fieldname = 'BUDAT'.
  wa_fcat-ref_tabname = 'MKPF'.
  wa_fcat-seltext_m = 'Posting Date'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'MATNR'.
  wa_fcat-ref_fieldname = 'MATNR'.
  wa_fcat-ref_tabname = 'MSEG'.
  wa_fcat-seltext_m = 'Material No'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'MAKTX'.
  wa_fcat-ref_fieldname = 'MAKTX'.
  wa_fcat-ref_tabname = 'MAKT'.
  wa_fcat-seltext_m = 'Material Description'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'ERFMG'.
  wa_fcat-ref_fieldname = 'ERFMG'.
  wa_fcat-ref_tabname = 'MSEG'.
  wa_fcat-seltext_m = 'Quantity'.
  wa_fcat-do_sum = 'X'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'ERFME'.
  wa_fcat-ref_fieldname = 'ERFME'.
  wa_fcat-ref_tabname = 'MSEG'.
  wa_fcat-seltext_m = 'Uom'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'WERKS'.
  wa_fcat-seltext_m = 'Supplying Plant'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'NAME1'.
  wa_fcat-seltext_m = 'S.Plnt Desc.'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'LGORT'.
  wa_fcat-seltext_m = 'Supplying St.Loc'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'LGOBE'.
  wa_fcat-seltext_m = 'Su.St.Loc Desc.'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'UMWRK'.
  wa_fcat-seltext_m = 'Receiving Plant'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'NAME2'.
  wa_fcat-seltext_m = 'R.Plnt Desc.'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'UMLGO'.
  wa_fcat-seltext_m = 'Receiving St.Loc'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
  wa_fcat-col_pos = w_var.
  wa_fcat-tabname = 'IT_MAT'.
  wa_fcat-fieldname = 'LGOBE1'.
  wa_fcat-seltext_m = 'Re.St.Loc Desc.'.
  APPEND wa_fcat TO it_fcat.
  CLEAR wa_fcat.
  ADD 1 TO w_var.
ENDFORM.                    " field_cat
*&      Form  get_data
*       text
*  -->  p1        text
*  <--  p2        text
FORM get_data .
  SELECT a~mblnr a~zeile a~mjahr a~bwart a~matnr
            a~erfmg a~erfme a~werks a~lgort a~umwrk a~umlgo
            b~budat  b~bldat
            INTO CORRESPONDING FIELDS OF TABLE it_mat
            FROM mseg AS a INNER JOIN mkpf AS b
            ON a~mblnr = b~mblnr
            AND a~mjahr = b~mjahr
            CLIENT SPECIFIED
           WHERE a~mandt EQ sy-mandt
             AND a~werks IN s_werks
             AND a~lgort IN s_lgort
             AND a~umwrk IN s_umwrk
             AND a~umlgo IN s_umlgo
             AND a~bwart IN s_bwart
             AND b~budat IN s_budat
             AND b~mjahr IN s_mjahr.
  IF sy-subrc EQ 0.
    SELECT matnr maktx
     INTO TABLE it_makt FROM makt
     CLIENT SPECIFIED
     FOR ALL ENTRIES IN it_mat
      WHERE matnr = it_mat-matnr AND mandt EQ sy-mandt.
  ENDIF.
  SELECT werks name1
   INTO TABLE it_t001w FROM t001w
    CLIENT SPECIFIED
   WHERE mandt EQ sy-mandt.
  IF sy-subrc <> 0.
    MESSAGE e000(zmss).
  ENDIF.
  SELECT lgobe INTO TABLE it_t001l FROM t001l
   CLIENT SPECIFIED
WHERE mandt EQ sy-mandt.
  IF sy-subrc <> 0.
    MESSAGE e000(zmss).
  ENDIF.
ENDFORM.                    " get_data
*&      Form  process_data
*       text
*  -->  p1        text
*  <--  p2        text
FORM process_data .
  LOOP AT it_mat.
    ztabix = sy-tabix.
    READ TABLE it_makt WITH KEY matnr = it_mat-matnr.
    IF sy-subrc = 0.
      it_mat-maktx = it_makt-maktx.
    ENDIF.
    IF it_mat-bwart+2(1) = '2'.
      it_mat-erfmg = - ( it_mat-erfmg ).
    ENDIF.
    READ TABLE it_t001w WITH KEY werks = it_mat-werks.
    IF sy-subrc = 0.
      it_mat-name1 = it_t001w-name1.
    ENDIF.
    READ TABLE it_t001w WITH KEY werks = it_mat-umwrk.
    IF sy-subrc = 0.
      it_mat-name2 = it_t001w-name1.
    ENDIF.
    READ TABLE it_t001l WITH KEY lgort = it_mat-lgort.
    IF sy-subrc = 0.
      it_mat-lgobe = it_t001l-lgobe.
    ENDIF.
    READ TABLE it_t001l WITH KEY lgort = it_mat-umlgo.
    IF sy-subrc = 0.
      it_mat-lgobe1 = it_t001l-lgobe.
    ENDIF.
    MODIFY it_mat INDEX ztabix .
  ENDLOOP.
ENDFORM.                    " process_data
*&      Form  display_data
*       text
*  -->  p1        text
*  <--  p2        text
FORM display_data .
  REFRESH i_events.
  i_events-form = 'TOP'.
  i_events-name = 'TOP_OF_PAGE'.
  APPEND i_events.
  CLEAR i_events.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
   EXPORTING
*   I_INTERFACE_CHECK                 = ' '
*   I_BYPASSING_BUFFER                = ' '
*   I_BUFFER_ACTIVE                   = ' '
     i_callback_program                = SY-CPROG
*   I_CALLBACK_PF_STATUS_SET          = ' '
*   I_CALLBACK_USER_COMMAND           = ' '
    i_callback_top_of_page            = 'TOP'
*   i_callback_html_top_of_page       = 'TOP'
*   I_CALLBACK_HTML_END_OF_LIST       = ' '
*   I_STRUCTURE_NAME                  =
     i_background_id                   = 'ALV_BACKGROUND'
*   I_GRID_TITLE                      =
*   I_GRID_SETTINGS                   =
*   IS_LAYOUT                         = LS_LAYOUT
     it_fieldcat                       = it_fcat[]
*   IT_EXCLUDING                      =
*   IT_SPECIAL_GROUPS                 =
*   IT_SORT                           =
*   IT_FILTER                         =
*   IS_SEL_HIDE                       =
*   I_DEFAULT                         = 'X'
*   I_SAVE                            = ' '
*   IS_VARIANT                        =
     it_events                         = i_events[]
*   IT_EVENT_EXIT                     =
*   IS_PRINT                          =
*   IS_REPREP_ID                      =
*   I_SCREEN_START_COLUMN             = 0
*   I_SCREEN_START_LINE               = 0
*   I_SCREEN_END_COLUMN               = 0
*   I_SCREEN_END_LINE                 = 0
*   I_HTML_HEIGHT_TOP                 = 0
*   I_HTML_HEIGHT_END                 = 0
*   IT_ALV_GRAPHICS                   =
*   IT_HYPERLINK                      =
*   IT_ADD_FIELDCAT                   =
*   IT_EXCEPT_QINFO                   =
*   IR_SALV_FULLSCREEN_ADAPTER        =
* IMPORTING
*   E_EXIT_CAUSED_BY_CALLER           =
*   ES_EXIT_CAUSED_BY_USER            =
    TABLES
      t_outtab                          = it_mat
* 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.                    " display_data
*&      Form  top
*       text
FORM top.
  DATA : idate(10),
           idate1 TYPE sy-datum.
  DATA : ls_line TYPE slis_listheader,
         i_listheader TYPE slis_t_listheader .
  CLEAR ls_line.
  ls_line-typ = 'H'.
  ls_line-info = sy-repid.
  APPEND ls_line TO i_listheader.
  CLEAR ls_line.
  ls_line-typ = 'S'.
  ls_line-info = 'MATERIAL DOCUMENT LIST'.
  APPEND ls_line TO i_listheader.
  CLEAR ls_line.
  idate1 = sy-datum.
  WRITE idate1 TO idate USING EDIT MASK '__/__/____'.
  ls_line-typ = 'S'.
  ls_line-info = idate.
  APPEND ls_line TO i_listheader.
  CLEAR ls_line.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = i_listheader
      i_logo             = 'LOGO'.
*   I_END_OF_LIST_GRID       =
ENDFORM.                    "TOP

Similar Messages

  • My iphone 4 lock button does not work, i turned it off using assesive touch, now it wont turn back on? got any tips for fixing this problem!

    my iphone 4 lock button does not work, i turned it off using assesive touch, now it wont turn back on? got any tips for fixing this problem!

    Hi, braidenwhitesidemate. 
    Thank you for visiting Apple Support Communities. 
    I would recommend going through the steps in the article below.  If the issue persists, see the section labeled Issue not resolved.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Cheers,
    Jason H. 

  • Give me some ideas for the project.

    Hi,folks
    I am not familiar with programming in web services. Now i have a project related to web services need to finish. I want to someone give me some ideas for the project. how can i implement the access control services. is there anyone can give me some related links for me to learn.
    Project Title: Implementing an access control service
    Project Description:
    Web services are emerging as a new approach to system construction and will make a major impact on the engineering of future business systems. They will allow a move from enterprise to inter-enterprise computing. However, with inter-enterprise computing, there are major problems with providing access to shared data, given that enterprises will not wish to share all data with partners.
    This project aims to investigate this problem by developing a prototype of an access control service that will help decide whether or not data access should be permitted. In essence, companies will outsource their access control to this service and so will not need to maintain their own access control lists for a potentially rapidly changing set of users.
    Suggested Platform: Windows or Linux
    Suggested Languages & Tools: Java

    Well, the approach I've come accross is a central server which is typically accessed indirectly from the web servers (e.g. through SOAP protocol or RMI).
    The remote server sends a user id and a password (or more likely a digest of the password), and receives a session token, basically just a random string of characters which is checked with the central server each time a secure transaction is attempted. The token will be stored in a session object, or perhaps directly in a cookie or in the URLs.
    Active session tokens are stored on the central server for comparison. This means the password doesn't have to be retained in the server.
    It's possible for the session token to be transfered if the user switches from one site to another on the same authentication server.
    Sun distributes one of these beasties, by the way, so you could take a look at their product specs.

  • Can anyone give me some documents for data cluster

    Hi,
    can anyone give me some documents for data cluster?
    ths!
    regards!

    Hi ,
    The following is a documentation on the <b>Data Cluster</b>:
    <b>Data clusters</b> are specific to ABAP. Although it is possible to read a cluster database using SQL statements, only ABAP can interpret the structure of the data cluster.
    You can store <b>data clusters</b> in special databases in the ABAP Dictionary. These are called ABAP cluster databases, and have a prescribed structure:
    <u><b>Cluster Databases</b></u> ( I have explained the cluster databse below )
    This method allows you to store complex data objects with deep structures in a single step, without having to adjust them to conform to the flat structure of a relational database. Your data objects are then available systemwide to every user. To read these objects from the database successfully, you must know their data types.
    You can use cluster databases to store the results of analyses of data from the relational database. For example, if you want to create a list of your customers with the highest revenue, or an address list from the personnel data of all of your branches, you can write ABAP programs to generate the list and store it as a data cluster. To update the <b>data cluster</b>, you can schedule the program to run periodically as a background job. You can then write other programs that read from the data cluster and work with the results. This method can considerable reduce the response time of your system, since it means that you do not have to access the distributed data in the relational database tables each time you want to look at your list.
    <b>Cluster Database :</b>
                    Cluster databases are special relational databases in the ABAP Dictionary that you can use to store data clusters. Their line structure is divided into a standard section, containing several fields, and one large field for the <b>data cluster.</b>
    <b>Creating a Directory of a Data Cluster</b>
    To create a directory of a data cluster from an ABAP cluster database, use the following statement:
    Syntax
    <b>IMPORT DIRECTORY INTO <dirtab>
                     FROM DATABASE <dbtab>(<ar>)
                     [CLIENT <cli>] ID <key>.</b>
    This creates a directory of the data objects belonging to a data cluster in the database <dbtab> in the internal table <dirtab>. You must declare <dbtab> using a TABLES statement.
    To save a <b>data cluster</b> in a database, use the <b>EXPORT TO DATABASE</b> statement .
    For <ar>, enter the two-character area ID for the cluster in the database. The name <key> identifies the data in the database. Its maximum length depends on the length of the name field in <dbtab>. The CLIENT <cli> option allows you to disable the automatic client handling of a client-specific cluster database, and specify the client yourself. The addition must always come directly after the name of the database.
    The IMPORT statement also reads the contents of the user fields from the database table.
    If the system is able to create a directory, SY-SUBRC is set to 0, otherwise to 4.
    The <b>internal table</b> <dirtab> must have the ABAP Dictionary structure CDIR.
    <b>******** Sample Program illustrating the data cluster .</b>
    PROGRAM Zdata_cluster.
    TABLES INDX.
    ******to save data objects in cluster databases
    DATA: BEGIN OF ITAB OCCURS 100,
            COL1 TYPE I,
            COL2 TYPE I,
          END OF ITAB.
    DO 3000 TIMES.
      ITAB-COL1 = SY-INDEX.
      ITAB-COL2 = SY-INDEX ** 2.
      APPEND ITAB.
    ENDDO.
    INDX-AEDAT = SY-DATUM.
    INDX-USERA = SY-UNAME.
    INDX-PGMID = SY-REPID.
    EXPORT ITAB TO DATABASE INDX(HK) ID 'Table'.
    WRITE: '    SRTF2',
         AT 20 'AEDAT',
         AT 35 'USERA',
         AT 50 'PGMID'.
    ULINE.
    SELECT * FROM INDX WHERE RELID = 'HK'
                       AND   SRTFD = 'Table'.
      WRITE: / INDX-SRTF2 UNDER 'SRTF2',
               INDX-AEDAT UNDER 'AEDAT',
               INDX-USERA UNDER 'USERA',
               INDX-PGMID UNDER 'PGMID'.
    ENDSELECT.
    ****To create a directory of a data cluster from an ABAP ****cluster database
    DATA DIRTAB LIKE CDIR OCCURS 10 WITH HEADER LINE.
    IMPORT DIRECTORY INTO DIRTAB FROM DATABASE
                                      INDX(HK) ID 'Table'.
    IF SY-SUBRC = 0.
      WRITE: / 'AEDAT:', INDX-AEDAT,
             / 'USERA:', INDX-USERA,
             / 'PGMID:', INDX-PGMID.
      WRITE  / 'Directory:'.
      LOOP AT DIRTAB.
        WRITE: / DIRTAB-NAME,  DIRTAB-OTYPE, DIRTAB-FTYPE,
                 DIRTAB-TFILL, DIRTAB-FLENG.
      ENDLOOP.
    ELSE.
      WRITE 'Not found'.
    ENDIF.
    *******run this program and see the result.
    Hope this documentation will give you an idea of data cluster.
    if useful, do reward with the points.
    Regards,
    Kunal.

  • Give me some examples for functions for read POST, write POST, modify POST

    Give me some examples for functions for read POST, write POST, modify POST, create and delete theme in forum. This functions have to be make like Remote Methods

    Give me some examples for functions for read POST, write POST, modify POST, create and delete theme in forum. This functions have to be make like Remote Methods

  • I have iphone 4 and have never updated itsince i've bought it. now i would like to update it to iOs 7. maybe can i have some problems in doing this due to the fact that i've never updated it until now?

    I have iphone 4 and have never updated itsince i've bought it. now i would like to update it to iOs 7. maybe can i have some problems in doing this due to the fact that i've never updated it until now? thanks in advance for every reply

    Did you follow this article to update your phone?
    iOS 4: Updating your device to iOS 5 or later
    iOS: How to update your iPhone, iPad, or iPod touch
    If your device has modified software installed (jailbreak), you might get problems using the phone after updating it.

  • Give me some scnearios or require in reporting .. i want to learn reporting

    Hi friends ,
    Iam new to reporting.. infact learning.
    give me some scnearios or requirements in reporting.. i will work on them and let you know the output.
    Pavan
    my mail id  is [email protected]

    Hi ,
    Closing this thread

  • I want to prevent MyDay from starting up when I switch on.  I have followed all instructions for doing this, but to no effect.  I have unlocked and relocked.

    I use an Macbook from 2006 with OS X 10.7.5
    MyDay starts up every time I switch on.  I don't use it, so want to remove it from the list of programs which start automatically.  I have followed all instructions for doing this, and have of course unlocked and relocked the relevant page in Systems Preferences, but the instruction never 'sticks', and MyDay still starts every time.  Anyone know what to do?

    Check StartupItems...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/StartupItems
    Click Go. If you see any reference to MyDay, delete it. That does not delete the app Just keeps it from launching when you startup your Mac.
    Just to be sure, you checked System Preferences > Users & Groups > Login Items   ??
    Unlocking or locking the padlock icon only prevents other users from changing your preferences.

  • Give me some guide for studying System9 from the begining

    Hi All,
    Could you give me some guideness for studying system9.I am a new in System9 and want to get some material in learning it from all of you.Thank you for your help
    Regards,

    Hi,
    Go through the url given below.
    http://download.oracle.com/docs/cd/E10530_01/welcome.html
    You will find all the doc's of 9.x.
    Regards,
    Venki.

  • TS1702 Whenever i download any application, i got this message-" the application not installed on the iPhone because an unknown error occurred (0xE800000C)"...Please give me some solutions to resolve this issue..

    Whenever i download any application, i got this message-" the application not installed on the iPhone because an unknown error occurred (0xE800000C)"...Please give me some solutions to resolve this issue..

    Read here:
    http://support.apple.com/kb/TS3221

  • Hello, can anyone give us the tips for AirPrint option from iPad to brother MFC 7860DW printer

    Hello, can anyone give us the tips for AirPrint option from iPad to brother MFC 7860DW printer

    It's possible Brother may provide updates to their printers to make them AirPrint capable or provide app for printing; search the iTunes Store or look to the support resources for your model of printer. For other printers, you can route the printing through your computer. If you have a Mac, Printopia might be worth a look:
    http://www.ecamm.com/mac/printopia/
    If you have a Windows system, search the web for something like "airprint Windows hack" and you'll find instructions on enabling printing.
    Another option is an AirPrint-capable print server. Lantronix makes a couple of models, including one that supports a USB printer:
    http://www.lantronix.com/it-management/xprintserver/xprintserver-t2.html
    Regards.

  • Need some tips for Database Developer Role.

    Dear All,
    Next week, I'm going to face an Interview for Database Developer role.
    For this, I need some more & useful information on these recommended points.
    1. Involve in a designing part of Data warehouse from
    scratch 
    2. Create complex analytic queries on large data sets.
    3. Analyse trends in key metrics.
    4. Monitoring and optimizing the performance of the database.
    Please help get the vital information on these points.
    All help will be highly appreciated.
    Thanks,

    1. Involve in a designing part of Data warehouse from
    scratch
    Design Database...
    This needs lot of information about business and its fonctionnalités, and so many.. Tables,  relationships etc...
    http://technet.microsoft.com/en-us/library/ms187099%28v=sql.105%29.aspx
    Code Design...
    SP's, Funcitions, Views, Sub queries, Joins, Triggers etc...
    DW Design
    DB size and number of reports and historical data details, reduce the normalization and etc....
    http://technet.microsoft.com/en-us/library/aa902672%28v=sql.80%29.aspx
    2. Create complex analytic queries on large data sets.
    Its all based on your current database design, size, required output, data, performance etc..
    4. Monitoring and optimizing the performance of the database.
    Perfmon, Activity monitor, spotlight, custom queries, DMV's sp_whoisactive, execution plans, and many other thirdparty tools.. and may be best experience will give best view and clarity :)
    Note : This is very big topic and its not easy to answer in few words or lines... :) goole it for more details...
    Raju Rasagounder Sr MSSQL DBA

  • Could anyone give me some pointers for my macbook hardware upgrade path?

    I have a few questions concerning my Macbook Pro 5,1. Firstly, I'd like to purchase a solid state drive to replace my existing 7200 rpm disk, and I'm not sure what interface I should purchase. System profiler lists my SATA controller as a MCP79 AHCI, with a 3 Gigabit link speed. What SATA standard does this correspond to?
    Secondly, what is the maximum amount of RAM that my motherboard can work with? I've seen reports of 8gb and of 6gb, so I'm not sure what to think.
    Finally, I would like to purchase an Optibay cradle for my existing hard drive, so I could have two disks in my computer at once. Would Apple provide me with service if I request them to install it for me?

    MacBook Pros have a SATA interface and use 2.5" notebook drives. Your model can support up to 8 GBs of RAM: 204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMM.
    Apple will not install third-party hardware. You can purchase a DIY kit complete with tools from OWC that allows you to install an SSD in place of the optical drive. They are also an excellent source for RAM and hard drives.

  • Some Tips for Cablecard Users with HBO

    I have been using a cablecard with my Hauppauge DCR-2650 digital tuner and Windows Media Center on my Windows 7 PC for 3 months with no problems on any of the Prime HD channels. I just subscribed to HBO and was not able to access any of the HBO channels, SD or HD. The message "Subscription Required" would appear after a few seconds, along with a message saying I needed to obtain a subscription to HBO. After Live Chatting to 3 techs over 3 days, I was finally able to access the HBO channels. I'm not sure this solution is permanent, but this is what I did. First I updated the firmware and drivers for my Hauppauge device. Then when I Live Chatted with the technician, he performed a "manual cablecard validation". During this process he asked for my cablecard ID, the Host ID, the Data ID and the activation code. He had me switch channels from an HBO channel to a non-HBO channel, then back again. Voila! It worked. So if my HBO disappears in the future I'll be asking for a tech who knows how to perform a "manual cablecard validation".  Now I had my HBO channels in HD, but the picture was flickering a bit, enough to make it annoying to watch. After Googling "HBO HD flicker" I found that the problem was not with the cablecard or Fios, but with the graphics adapter settings. I have an integrated graphics chip on my PC, an Intel 3000 graphics chip. I opened the graphics properties page and in the "Media" category under "Image Enhancement Option" I turned off the "Adaptive Contrast Enhancement" feature. This fixed the flicker. Hopefully this post will help those few who are using a cablecard with their Home Theater PCs.

    hi,
      hardwork is the tip for completing the certification,do not believe in any bogus material read  tfin 52 book of siemens which is very helpful to clear the course
    regards,
    ram

  • I want to update my IPad's operating system but when I tried to so,  I got a message at Itunes advising all my apps would be removed?  Is there a step by step guide for doing this update and retaining my apps?  I am completely lost....

    I want to update my 1st generation IPad which has a current OS of 4.2.1 to the latest 5.0 OS.  I tried to do this through my ITunes account but got a warning that continuing would delete my apps, etc.  I don't want that to happen!  I have ZERO tech ability/know-how and need an idiot-proof, step by step guide to performing the update.  Any help most appreciated.  I haven't got a clue how to back up anything on the IPad, either.
    Many thanks!!

    First copy any purchases off the iPad to your computer's iTunes via File > Transfer Purchases. You should also backup the device (right-click the iPad 'device' and select 'back up'), and copy off any important documents, files, notes etc (e.g. by email, the file sharing section at the bottom of the Apps tab on your computer's iTunes, via wifi, whatever the apps that you use support) - the update process should backup and restore the content but it's best to be safe.
    There is some more info on this page about updating to iOS 5 : http://support.apple.com/kb/HT4972

Maybe you are looking for

  • Mountain Lion calendar .ics invitations don't go to date of event

    Hi there, I installed Mountain Lion recently as a stepping stone to Mavericks.  When I receive Calendar invitations in the form of .ics attachments and open them Calendar does not take me to the event. This means that I have to trawl through Calendar

  • Reading specific lines in a file

    hI i need to write a program which has a file name a.txt the contents in the file is SELECT DISTINCT D.MENUNAME, D.MENULABEL, D.MENUSEP, D.MENUORDER FROM PSMENUDEFN D, PSAUTHITEM A, PSOPRCLS C WHERE D.INSTALLED = 1 AND D.MENUGROUP = :1** AND D.MENUNA

  • ORA-12899: value too large for column

    Hi Experts, I am getting data from erp systems in the form of feeds,in particular one column length in feed is 3 only. In target table also corresponded column also length is varchar2(3) but when i am trying to load same into db ti showing error like

  • Try clearing your Internet browser's cache and cookies.

    I cant get into iTunes.  It keeps asking me for my login info.  Apple support gave me these instructions.   I dont know how to do this.  Please help.  Sorry I am computer dumb.

  • Heterogeneous mapping in crystal

    Post Author: dba31498 CA Forum: Crystal Reports How would I set up a report to pull data from multiple databases. Is this even possible? I know you can do it through SQL, but that is not necessary the way to go, since users are writing the report and