Urgent requirement in reports

hi
i was passing date as select-options
for example
date          01.04.2008                 01.06.2008
then i should get 3colouns in output
if i had given 1st month and 12th month i should get 12col in output
can any one help me in this matter

You have to display output dynamically.
You need to use ield symbol for this
i have one program for this,go through this.
REPORT  yusmm_text1  NO STANDARD PAGE HEADING
                     LINE-SIZE 199.
T A B L E S
TABLES: MARA,
        MAKT,
        THEAD.
GLOBAL TYPE-POOLS
TYPE-POOLS : SLIS.
   GLOBAL TYPES
TYPES : BEGIN OF TP_FINAL,
       MATNR TYPE MARA-MATNR,
       BEGRU TYPE MARA-BEGRU,
       MTART TYPE MARA-MTART,
       MAKTX TYPE MAKT-MAKTX,
       SPRAS TYPE MAKT-SPRAS,
       LTXT(2000)  TYPE C ,
       SRNO TYPE N ,
      END OF TP_FINAL.
TYPES : BEGIN OF TP_T002,
        SPRAS TYPE T002-SPRAS,
        LAISO TYPE T002-LAISO,
        SRNO TYPE N ,
        END OF TP_T002.
TYPES : BEGIN OF TP_MARA_MAKT,
        MATNR TYPE MARA-MATNR,
        BEGRU TYPE MARA-BEGRU,
        MTART TYPE MARA-MTART,
        SPRAS TYPE MAKT-SPRAS,
        MAKTX TYPE MAKT-MAKTX,
       END OF TP_MARA_MAKT.
Types: BEGIN OF tp_matnr,
       matnr TYPE mara-matnr,
       END OF tp_matnr.
   GLOBAL ELEMENTARY VARIABLES
DATA : gv_date TYPE sy-datum.
DATA : gv_repid TYPE sy-repid.
DATA : g_var1(10) TYPE C.
DATA : gv_index TYPE sy-tabix.
DATA: gv_strg TYPE string,
      gv_strg1(2000) TYPE C.
DATA : gv_lang TYPE sy-langu.
DATA : g_v(3) TYPE N .
DATA : gv_lines(3) TYPE N .
DATA : gv_var(3) TYPE N .
DATA : gv_var1(3) TYPE N.
DATA: gv_str TYPE STRING.
DATA: gv_str1 TYPE STRING.
DATA : gv_li TYPE I,
       gv_lit TYPE I,
       gv_lin TYPE I.
DATA: g_var11(3) TYPE N,
      gv_li1(3) TYPE N,
      g_var2(3) TYPE N.
DATA : gv_i1 TYPE I.
DATA : gv_i TYPE I.
DATA: gl_lenght TYPE I.
   GLOBAL STRUCTURES
DATA:   T_NEWTABLE TYPE REF TO DATA,
        T_NEWLINE  TYPE REF TO DATA,
        T_FLDCAT1   TYPE SLIS_T_FIELDCAT_ALV,
        T_FLDCAT   TYPE LVC_T_FCAT,
        WA_IT_FLDCAT TYPE LVC_S_FCAT,
        WA_IT_FLDCAT1 TYPE SLIS_FIELDCAT_ALV,
        WA_COLNO(2) TYPE N,
        WA_FLNAME(5) TYPE C,
        L_LT TYPE SLIS_LAYOUT_ALV.
   GLOBAL INTERNAL TABLES (WITH INCLUDE STRUCTURE)
DATA : IG_MARA_MAKT TYPE STANDARD TABLE OF TP_MARA_MAKT,
       WG_MARA_MAKT TYPE TP_MARA_MAKT.
DATA : IG_T002 TYPE STANDARD TABLE OF TP_T002,
       WG_T002 TYPE TP_T002.
DATA : IG_FINAL TYPE STANDARD TABLE OF TP_FINAL,
       WG_FINAL TYPE TP_FINAL.
data : IG_MATNR TYPE STANDARD TABLE OF TP_MATNR WITH HEADER  LINE,
       WG_MATNR TYPE TP_MATNR.
DATA:BEGIN OF IG_THEAD OCCURS 0.
        INCLUDE STRUCTURE THEAD .
DATA: END OF IG_THEAD.
DATA:BEGIN OF IG_TLINE OCCURS 0.
        INCLUDE STRUCTURE TLINE  .
DATA:END OF IG_TLINE.
FIELD-SYMBOLS
FIELD-SYMBOLS: <T_DYNTABLE> TYPE STANDARD TABLE,"Dynamic internal
                                                        "tablename
               <FS_DYNTABLE>,  "Field symbol to create work area
              <FS_FLDVAL> TYPE ANY.   " Field symbol to assign values
COMPULSORY
FIELD-SYMBOLS: <FS_DATA> TYPE REF TO DATA,
               <FS_DATA1> TYPE REF TO DATA,
               <FS_2>    TYPE STANDARD TABLE,
               <FS_22>   TYPE STANDARD TABLE,
               <FS_1>,
               <FS_11>,
               <F>,
               <FA>,
               <LWA_LINE_WA>,
               <LWA_LINE_WA1>.
------- Create Dyn Table From FC
DATA: LT_DATA        TYPE   REF TO DATA,
      LT_DATA1        TYPE   REF TO DATA,
      LWA_LINE       TYPE   REF TO  DATA,
      LWA_LINE1       TYPE   REF TO  DATA,
      LI_FIELD_CAT   TYPE   LVC_T_FCAT,
      LWA_FIELD_CAT  TYPE   LVC_S_FCAT.
   PARAMETERS & SELECT-OPTIONS
SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
SELECT-OPTIONS : S_SPRAS FOR MAKT-SPRAS NO INTERVALS  DEFAULT 'EN'
                                                        OBLIGATORY ,
                 S_MATNR FOR MARA-MATNR,
                 S_MTART FOR MARA-MTART.
PARAMETERS: GP_SIZE TYPE I DEFAULT '200'.
SELECTION-SCREEN : END OF BLOCK B1.
   INITIALIZATION
INITIALIZATION.
  gv_repid = sy-repid.
  gv_date = sy-datum.
AT SELECTION-SCREEN
AT SELECTION-SCREEN.
  IF GP_SIZE < 0.
   MESSAGE E002(00).
  ENDIF.
  IF GP_SIZE > 50000.
   MESSAGE W130(26) WITH TEXT-004.
    SET CURSOR FIELD 'gp_size'.
  ENDIF.
START-OF-SELECTION
START-OF-SELECTION.
  PERFORM FIELDCAT.
  PERFORM LAYOUT.
  PERFORM DATA_FETCH.
  PERFORM READ_DATA_TO_FINAL.
  SORT ig_final BY matnr spras.
  gv_lin = gv_li.
  gv_li = gv_li - 2.
  LOOP AT ig_final INTO wg_final.
    ASSIGN COMPONENT 1 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = 'Material Number'.
    ASSIGN COMPONENT 2 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = 'Authorization Group'.
    g_VAR11 = wg_final-srno + 2.
    gv_li1 = gv_li1 + 2.
    MOVE : g_var11 TO gv_i1.
    ASSIGN COMPONENT g_var11 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = 'MatDesc'.
    g_var2 = g_var11 + gv_lines.
    ASSIGN COMPONENT g_var2 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = 'BasicData'.
    APPEND <LWA_LINE_WA1> TO <FS_22>.
    EXIT.
   ENDLOOP.
  LOOP AT ig_final INTO wg_final.
    AT NEW matnr.
      gv_index = sy-tabix.
      ASSIGN COMPONENT 1 OF STRUCTURE <LWA_LINE_WA> TO <F>.
      <F> = wg_final-matnr.
      ENDAT.
    AT NEW MATNR.
    GV_INDEX = SY-TABIX.
    ASSIGN COMPONENT 1 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = wg_final-matnr.
     ENDAT.
    ASSIGN COMPONENT 2 OF STRUCTURE <LWA_LINE_WA> TO <F>.
    <F> = wg_final-begru.
    ASSIGN COMPONENT 2 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = wg_final-begru.
    gv_var = wg_final-srno + 2.
    gv_li = gv_li + 2.
    MOVE : gv_var TO gv_i.
    ASSIGN COMPONENT gv_var OF STRUCTURE <LWA_LINE_WA> TO <F>.
    <F> = wg_final-maktx.
    ASSIGN COMPONENT gv_var OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = wg_final-maktx.
    gv_var1 = gv_var + gv_lines  .
    ASSIGN COMPONENT gv_var1 OF STRUCTURE <LWA_LINE_WA> TO <F>.
   <F> = wg_final-ltxt.
    ASSIGN COMPONENT gv_var1 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
    <FA> = wg_final-ltxt.
    AT END OF matnr.
      APPEND <LWA_LINE_WA> TO <FS_2>.
      CLEAR <LWA_LINE_WA>.
    ENDAT.
    AT END OF matnr.
     APPEND <LWA_LINE_WA1> TO <FS_22>.
     CLEAR <LWA_LINE_WA1>.
    ENDAT.
  ENDLOOP.
  PERFORM display..
*&      Form  data_fetch
      text
-->  p1        text
<--  p2        text
FORM DATA_FETCH .
  SELECT matnr
          from mara up to gp_size rows
         appending corresponding fields of table ig_matnr
         where matnr in s_matnr
         and mtart in s_mtart.
loop at ig_matnr.
  SELECT  MARA~MATNR
          MARA~BEGRU
          MARA~MTART
          MAKT~SPRAS
          MAKT~MAKTX FROM MARA INNER JOIN MAKT
    ON MARAMATNR = MAKTMATNR
   appending corresponding fields of TABLE ig_mara_makt  UP TO GP_SIZE
ROWS
    WHERE makt~spras IN s_spras
    AND   mara~matnr IN s_matnr
    AND   mara~mtart IN s_mtart
    AND   mara~matnr EQ ig_matnr-matnr.
    endloop.
  IF sy-subrc = 0.
    SORT ig_mara_makt.
  ENDIF.
ENDFORM.                    " data_fetch
*&      Form  read_data_to_final
      text
-->  p1        text
<--  p2        text
FORM READ_DATA_TO_FINAL .
  LOOP AT ig_mara_makt INTO wg_mara_makt .
    wg_final-MATNR = wg_mara_makt-MATNR.
    wg_final-BEGRU = wg_mara_makt-BEGRU.
    wg_final-MTART = wg_mara_makt-MTART.
    wg_final-SPRAS = wg_mara_makt-SPRAS.
    wg_final-MAKTX = wg_mara_makt-MAKTX.
    READ TABLE ig_t002 INTO wg_t002 WITH KEY spras = wg_final-spras.
    IF sy-subrc = 0.
      wg_final-srno = wg_t002-srno.
    ENDIF.
    CLEAR ig_thead[].
    ig_thead-TDOBJECT = 'MATERIAL'.
    ig_thead-TDNAME   = wg_final-matnr.
    ig_thead-TDID     = 'GRUN'.
    ig_thead-TDSPRAS  = wg_final-spras.
    CALL FUNCTION 'TEXT_READ'
      EXPORTING
        I_HEADER   = IG_THEAD
        I_READONLY = 'X'
      IMPORTING
        E_HEADER   = IG_THEAD
      TABLES
        T_LINES    = IG_TLINE[]
      EXCEPTIONS
        NOTFOUND   = 1.
    IF sy-subrc  EQ 0.
      LOOP AT  ig_tline.
        gv_strg = ig_tline-tdline.
        IF gv_strg1 <> ' '.
          CONCATENATE gv_strg1 ';' gv_strg INTO gv_strg1.
        ELSE.
          gv_strg1 = gv_strg.
        ENDIF.
      ENDLOOP.
      wg_final-ltxt = gv_strg1.
      APPEND wg_final TO ig_final.
      CLEAR wg_final.
      gv_strg1 = ' '.
    ELSE.
      APPEND wg_final TO  ig_final.
    ENDIF.
  ENDLOOP.
ENDFORM.                    " read_data_to_final
" read_data_to_final
*&      Form  layout
      text
-->  p1        text
<--  p2        text
FORM LAYOUT .
  CLEAR L_LT.
  L_LT-ZEBRA = 'X'.
  L_LT-COLWIDTH_OPTIMIZE = 'X'.
  L_LT-WINDOW_TITLEBAR = 'MATERIAL DETAILS'.
ENDFORM.                    " layout
*&      Form  fieldcat
      text
-->  p1        text
<--  p2        text
FORM FIELDCAT .
  SELECT SPRAS
           LAISO FROM t002 INTO  CORRESPONDING FIELDS OF TABLE ig_t002
      WHERE spras IN s_spras.
  DESCRIBE TABLE ig_t002 LINES gv_lines.
  LOOP AT ig_t002 INTO wg_t002.
    g_v = g_v + 1.
    Wg_t002-srno = g_v.
    MODIFY ig_t002 FROM wg_t002 TRANSPORTING SRNO.
  ENDLOOP.
  LOOP AT ig_t002 INTO wg_t002.
    CLEAR WA_IT_FLDCAT.
    MOVE SY-INDEX TO WA_COLNO.
    CONCATENATE 'MD-' wg_t002-LAISO
                      WA_COLNO
                     INTO WA_FLNAME.
    WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
    WA_IT_FLDCAT-DATATYPE = 'CHAR'.
    WA_IT_FLDCAT-SELTEXT = WA_FLNAME.
    WA_IT_FLDCAT-INTLEN = 250.
    WA_IT_FLDCAT-TABNAME = '<FS_2>'.
    APPEND WA_IT_FLDCAT TO T_FLDCAT.
    CLEAR wg_t002.
    ENDLOOP.
  LOOP AT ig_t002 INTO wg_t002.
    CLEAR WA_IT_FLDCAT.
    MOVE SY-INDEX TO WA_COLNO.
    CONCATENATE 'BD-' wg_t002-LAISO
                       WA_COLNO
                    INTO WA_FLNAME.
    WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
    WA_IT_FLDCAT-DATATYPE = 'CHAR'.
    WA_IT_FLDCAT-SELTEXT = WA_FLNAME.
    WA_IT_FLDCAT-INTLEN = 250.
    WA_IT_FLDCAT-TABNAME = '<FS_2>'.
    APPEND WA_IT_FLDCAT TO T_FLDCAT.
    CLEAR wg_t002.
    ENDLOOP.
  MOVE 'MATNR' TO WA_FLNAME.
  WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
  WA_IT_FLDCAT-DATATYPE = 'CHAR'.
  WA_IT_FLDCAT-SELTEXT = 'Material No'.
  WA_IT_FLDCAT-INTLEN = 18.
  WA_IT_FLDCAT-TABNAME = '<FS_2>'.
  INSERT WA_IT_FLDCAT INTO T_FLDCAT INDEX 1.
  MOVE 'BEGRU' TO WA_FLNAME.
  WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
  WA_IT_FLDCAT-DATATYPE = 'CHAR'.
  WA_IT_FLDCAT-SELTEXT = 'Authorization Group'.
  WA_IT_FLDCAT-INTLEN = 4.
  WA_IT_FLDCAT-TABNAME = '<FS_2>'.
  INSERT WA_IT_FLDCAT INTO T_FLDCAT INDEX 2.
  DESCRIBE TABLE T_FLDCAT LINES gv_li.
  ASSIGN LT_DATA TO <FS_DATA>.
Creating the Dynamic Internal Table
  CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
    EXPORTING
      IT_FIELDCATALOG           = T_FLDCAT         " Fieldcatalogue
    IMPORTING
      EP_TABLE                  = <FS_DATA>   " Dynamic Internal Table
    EXCEPTIONS
      GENERATE_SUBPOOL_DIR_FULL = 1
      OTHERS                    = 2.
Assign Dyn Table To Field Sumbol
  ASSIGN <FS_DATA>->* TO <FS_1>.
Assigning the Internal Table TYPE ANY to Standard internal Table
  ASSIGN <FS_1> TO <FS_2>.
Creating a Workarea
  CREATE DATA LWA_LINE LIKE LINE OF <FS_2> .
Assigning the Content to the workares as a Pointer
  ASSIGN LWA_LINE->* TO <LWA_LINE_WA>.
  LOOP AT T_FLDCAT INTO WA_IT_FLDCAT.
    WA_IT_FLDCAT1-FIELDNAME = WA_IT_FLDCAT-FIELDNAME.
    WA_IT_FLDCAT1-TABNAME =  WA_IT_FLDCAT-TABNAME.
    WA_IT_FLDCAT1-SELTEXT_L = WA_IT_FLDCAT-SELTEXT.
   WA_IT_FLDCAT1-REF_TABNAME = 'MARC'.
    APPEND WA_IT_FLDCAT1 TO T_FLDCAT1.
    CLEAR : WA_IT_FLDCAT,WA_IT_FLDCAT1.
  ENDLOOP.
  ASSIGN LT_DATA1 TO <FS_DATA1>.
  CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
    EXPORTING
      IT_FIELDCATALOG           = T_FLDCAT         " Fieldcatalogue
    IMPORTING
      EP_TABLE                  = <FS_DATA1>  " Dynamic Internal table
    EXCEPTIONS
      GENERATE_SUBPOOL_DIR_FULL = 1
      OTHERS                    = 2.
Assign Dyn Table To Field Sumbol
  ASSIGN <FS_DATA1>->* TO <FS_11>.
Assigning the Internal Table TYPE ANY to Standard internal Table
  ASSIGN <FS_11> TO <FS_22>.
Creating a Workarea
  CREATE DATA LWA_LINE1 LIKE LINE OF <FS_22> .
Assigning the Content to the workares as a Pointer
  ASSIGN LWA_LINE1->* TO <LWA_LINE_WA1>.
ENDFORM.                    " fieldcat
*&      Form  show
      text
-->  p1        text
<--  p2        text
FORM Display .
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
   EXPORTING
   I_INTERFACE_CHECK                 = ' '
   I_BYPASSING_BUFFER                = ' '
   I_BUFFER_ACTIVE                   = ' '
     I_CALLBACK_PROGRAM                = GV_REPID
    I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS_SET'
    I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
   I_CALLBACK_TOP_OF_PAGE            = ' '
   I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
   I_CALLBACK_HTML_END_OF_LIST       = ' '
   I_STRUCTURE_NAME                  =
   I_BACKGROUND_ID                   = ' '
   I_GRID_TITLE                      =
   I_GRID_SETTINGS                   =
    IS_LAYOUT                         = L_LT
     IT_FIELDCAT                       = T_FLDCAT1[]
   IT_EXCLUDING                      =
   IT_SPECIAL_GROUPS                 =
   IT_SORT                           =
   IT_FILTER                         =
   IS_SEL_HIDE                       =
   I_DEFAULT                         = 'X'
   I_SAVE                            = ' '
   IS_VARIANT                        =
   IT_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                          = <FS_2>
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
FORM PF_STATUS_SET USING RS_EXTAB TYPE SLIS_T_EXTAB.
  SET PF-STATUS 'DISPLAY' .
ENDFORM. "PF_STATUS_SET
*& Form Name: user_command *
*& Form Desc: For Handling USER_COMMAND *
FORM USER_COMMAND USING IF_UCOMM TYPE SY-UCOMM
                     IS_SELFIELD TYPE SLIS_SELFIELD.
  CASE IF_UCOMM.
    WHEN 'DOWNLOAD'.
      CALL FUNCTION 'POPUP_TO_CONFIRM'
        EXPORTING
  TITLEBAR                    = ' '
  DIAGNOSE_OBJECT             = ' '
          TEXT_QUESTION               = 'Data download to excel'
  TEXT_BUTTON_1               = 'Ja'(001)
  ICON_BUTTON_1               = ' '
  TEXT_BUTTON_2               = 'Nein'(002)
  ICON_BUTTON_2               = ' '
  DEFAULT_BUTTON              = '1'
  DISPLAY_CANCEL_BUTTON       = 'X'
  USERDEFINED_F1_HELP         = ' '
  START_COLUMN                = 25
  START_ROW                   = 6
  POPUP_TYPE                  =
IMPORTING
  ANSWER                      =
TABLES
  PARAMETER                   =
EXCEPTIONS
  TEXT_NOT_FOUND              = 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.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
    BIN_FILESIZE                  =
          FILENAME                     = 'C:\Material-Text.xls'
         FILETYPE                      = 'ASC'
    APPEND                        = ' '
     WRITE_FIELD_SEPARATOR         = 'X'
    HEADER                        = '00'
     TRUNC_TRAILING_BLANKS         = 'X'
    WRITE_LF                      = 'X'
    COL_SELECT                    = ' '
    COL_SELECT_MASK               = ' '
     DAT_MODE                      = 'X'
   IMPORTING
     FILELENGTH                    = GL_LENGHT
        TABLES
          DATA_TAB                      = <FS_22>
  EXCEPTIONS
    FILE_WRITE_ERROR              = 1
    NO_BATCH                      = 2
    GUI_REFUSE_FILETRANSFER       = 3
    INVALID_TYPE                  = 4
    NO_AUTHORITY                  = 5
    UNKNOWN_ERROR                 = 6
    HEADER_NOT_ALLOWED            = 7
    SEPARATOR_NOT_ALLOWED         = 8
    FILESIZE_NOT_ALLOWED          = 9
    HEADER_TOO_LONG               = 10
    DP_ERROR_CREATE               = 11
    DP_ERROR_SEND                 = 12
    DP_ERROR_WRITE                = 13
    UNKNOWN_DP_ERROR              = 14
    ACCESS_DENIED                 = 15
    DP_OUT_OF_MEMORY              = 16
    DISK_FULL                     = 17
    DP_TIMEOUT                    = 18
    FILE_NOT_FOUND                = 19
    DATAPROVIDER_EXCEPTION        = 20
    CONTROL_FLUSH_ERROR           = 21
    OTHERS                        = 22
      IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF GL_LENGHT NE 0.
        MESSAGE S398(00) WITH 'DATA downloaded to EXCEL'.
      ENDIF.
rewards points if satisfied.
Thanks
Ankur sharma
  ENDCASE.
ENDFORM.                    "user_command
Edited by: Ankur Sharma on Jun 13, 2008 1:53 PM

Similar Messages

  • Urgently required Crystal Reports 2008 FixPack_03 for SAP B1 8.8

    Dear All,
    I Urgently need Crystal Reports 2008 FixPack_03 for SAP B1 8.8. It is unavailable on the following link:
    Crystal Reports 2008 Reference [original link is broken]
    I have also searched it but unable to find it. If anyone has this, kindly share it.

    Hi Iqbal,
    There is a service pack in the following link
    https://www.sdn.sap.com/irj/sdn/businessone?rid=/webcontent/uuid/807d22cb-cb1d-2b10-8794-fb76d7feca88 [original link is broken]
    There is a fix pack 03 included in the folder, I don't know if this is relevant.
    Cheers

  • URGENT REQUIRE -- parameter's form language cann't read

    i have a problem with my report. field in parameter form in report builder can not change in thai language (font). So I can't read output word in Thai. what should I do ? (urgent require...)
    )

    i have a problem with my report. field in parameter form in report builder can not change in thai language (font). So I can't read output word in Thai. what should I do ? (urgent require...)
    ) Hi
    U got to store not only the fields also the Labels in the database to view in Thai. Since the DB can refer the NLS
    I think this should give u some idea

  • Hi friends it is very urgent requirements

    hi experts,
    i have one good requirement ie
    in CRMD_ORDER trancation when i give a quotation no there u will find one tab document when i click that i will get an icon for importing a file from my desktop.
    so i want to make every thing with my selection-screen.
    IN my selection screen i have one field for quotation no and paramater to select the document from my desktop, so when i exectute my program the document should be placed in crmd_order transcation.
    very very urgent requirement.

    Hi,
    check the below
    This comes in the attributes window while creating a program
    Authorization Group
        Authorization group to which the program is assigned.
        The assignment of a program to an authorization group plays a role whe
        the system checks whether the user is authorized to:
        o   Execute a program
              > Authorization object S_PROGRAM
        o   Edit a program (-Include) in the ABAP Workbench
              > Authorization object S_DEVELOP
        Programs that are not assigned to an authorization group are not
        protected against display and execution.
        Security-related programs should, therefore, always be assigned to an
        authorization group.
        Report RSCSAUTH can also be used to assign programs to authorization
        groups. This report is documented in detail.
    and for alv while designing the menu for it  u  can assign any ICON to your button while designing it there is option for that
    reward if helpful

  • Urgent Requirement : Sr.Java Developer

    Hi ,
    We have an urgent requirement for the position of Sr.Java Developer
    Location: Chicago, IL
    Duration : Straight Hire-Full Time
    Availability : Immediate
    Description:
    The primary role of the position is to design, develop and support application software for one or more business functions of the client.
    The role will be related to the processing of new business/clients and setting up relevant workflow and processes.
    This position is also related to ensuring integrity and quality in the technical development, security, and systems support practices.
    Technical skills:
    &#61656; Proficient in J2EE design and development
    &#61656; Experience with Spring, Struts, and Hibernate frameworks
    &#61656; database Strong development and design. Preferably SQL Server
    &#61656; Understanding of Service-Oriented Architecture using web services
    &#61656; Solid experience in XML using XSD and XSLT
    &#61656; Good understanding of data distribution protocols using FTP or E-Mail
    &#61656; have Must also strong web programming skills (HTML, JavaScript, AJAX)
    for developing and maintaining web-based applications.
    &#61656; Able to configure and install development tools and implement development environments
    &#61656; Desired experience with Spring MVC
    &#61656; Configuration management using Subversion
    &#61656; Working knowledge of Linux and Windows
    Other skills, and abilities:
    &#61656; sphere IBM Web Portal experience
    &#61656; Self-managing, in a fast paced development environment.
    &#61656; knowledge Extensive of software development life cycle and accepted practices.
    &#61656; and Strategic analytical thinking skills with an ability to solve problems and make decisions.
    &#61656; of Knowledge .Net (C#)
    &#61656; in Effective communicating with, and interacting with fellow team members on a technical and non-technical level
    &#61656; Understanding of financial products. (Futures, fixed income, equities, etc).
    Essential Functions:
    &#61656; expertise Uses in appropriate techniques and tools to design, develop and maintain effective application software, reporting to technical lead.
    &#61656; Participates to the development and implementation of standards related to the application development, security and system support activities.
    &#61656; formal Performs and informal reviews of software development processes and products to ascertain quality and adherence to standards.
    &#61656; Establishes and maintains control procedures for version control.
    Monitors and tracks quality related issues and problems through to resolution.
    Reports To: Technical team leader
    Works With: Customers, Business Managers, Functional Project Managers, Technical Project Managers, Developers
    Please send your updated resume ASAP.
    Thanks and Regards,
    AVVAL
    Mohammed Wajid
    Making IT Better
    Regency Towers Center
    Tower Floor
    1415 West 22nd Street
    Oak Brook IL 60523
    [email protected]
    http://www.AVVAL.com
    Dir:
    630.929.3096

    ¿do you need Functional Consultants? I mean people knowing at a great extent the main functionalities of Oracle Applications?
    If so, can you inform the modules?

  • Java Developers Urgently Required-Guildford UK -up to 45,000 per annum

    Permanent Java Developer urgently required for a leading pre-press work flow software house.
    We need developers with the following skills:
    Java J2EE
    JSF OR Spring OR Struts
    JSP Servlets / Swing
    JDBC SQL
    JDOM / HTML / JavaScript / CSS / XML / XSL / DTD / XPATH
    Desktop: Windows XP
    Eclipse3 / CVS
    Basic UML
    These skills are an advantage.
    C++/Perl/AJAX
    Parking, excellent working hours and an immediate start available for the right candidate.
    Please Contact:
    Kelly Riddell
    01483 300515
    [email protected]

    I think that it is something wrong with kernel and graphic drivers but i'm not able to solve it from the beginning of using of Arch by me.
    I'm not so sure this issue is software-related only because in my case it seems the laptop screen enters power-saving mode (10-min timeout) on its own without any events logged (as shown by dmesg) so my next thought was OK, I'm going to get rid of this issue disabling the screen power-saving timeout in the BIOS and set it to never power down or something like that and from then on managing power mode manually; ie: when I want to power down I will just use systemctl suspend/hibernate which work fine ... problem is: there are no related options in my BIOS for such timeout.
    The only timeouts I have are in /etc/systemd/logind.conf set to 30min (#IdleActionSec) (commented) by default so these are not in effect because the screens goes blank after 10m which is less than the (default) 30m in logind. Maybe setting loggind to 9m (un-commented) to catch the event before the machine-default one ?
    IdleActionSec=9min
    IdleAction=suspend
    Will check it and report back.

  • Urgently require deletion of post with information..how do I do this?

    Hi Guys
    I urgently require the deletion of one of my own posts... it seems like I haev to be a level 2 before I can even report my own post...
    How do I go about and get my post deleted?
    Regards
    Mohamed

    Thank you very much...
    I can give the link and post to the hosts for them to delete..

  • Stock/requirment list report

    Require a report to display the month stock requirment for the next two years based on the plant and mrp.

    Hi Raju,
    Please check this FM MD_STOCK_REQUIREMENTS_LIST_API.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Urgent requirment on PAYMENT Program

    Hi,
    I have a very Urgent requirement about Payments to customer using Payment program, I need to pay to customer   for a over payment (he initially paid on invoice) now I need to pay back that type of customers, How it is done in Sap, if that can be done in using f110, if yes  how it will differentiate the over payment-open item (here I don’t want to pay credit notes automatically)
    And one more question is if I need to list all the over payments   in a forms and get it approved/ validated and trigger the payment run
    Please throw some light on it is really urgent
    Thanks
    Sireesha

    Hi Sireesha
    Just enter the customer number(s) in the parameters of the payment program (F110).  You can further define other selections such as document number(s) in the "Free Selections" tab.
    You are able to include/exclude documents in the payment proposal log by blocking/unblocking individual lines (normal F110 functionality).
    Kylie

  • Required standard report

    Hi,
    Please help me in getting the report.
    Require a report which should have  PO No., Material Code,  PO qunatity, GR quantity  and payment to supplier with respect to GR.
    Thanks...

    Go to MB5S for this report
    and add the fields which you don't see on the screen from Current display varinat from the header
    you will get all this information

  • Urgent requirement please help

    hi everybody iam new to this webdynpro
    i got an urgent requirement to build a prototype for the following requirement.  my application has 9 scenarios idid first two and i stuck up at the 3rd scenario.  From the 3rd scenario 2 sub scenarios im posting. please guide me as it is most urgent. if any body has time and patience i could send the requiment to their mailids
    Thanks in advance
    khaja
    3.     The application window has five areas.
    a.     Screens
    b.     Data Object
    c.     Source Object
    d.     Mapping of Screen and Data Object
    e.     Mapping of Data Object and Source Object
    4.     In the Screen area,
    a.     There is a list at the left side shows all the   screens used in the application.
    b.     There is graphic on the right side shows screen flow of the whole application
    c.     There is screen detail on the right side can be switched from the screen flow graphic. The screen detail reflect the screen selected at the left side, it shows
    i.     A box with the label of the Screen name
    ii.     Multi lines show the fields displayed on screen
    iii.     Each field has a indicator of being able to input
    iv.     Multi button in order shows commands in this screen
    v.     Each button has event name
    vi.     Each button has a pointer point to next screen this command trigger
    5.     In the Data object area,
    a.     There is a tree structure at the left side shows all the Data Objects in the application.
    b.     There is graphic on the right side shows the detail structure of the data object selected on the left side. The detail structure shows
    i.     A box with the label of the Data Object name
    ii.     Multi lines show the Data Object fields
    iii.     Multi points show the sub-object relationship
    iv.     Multi links show the foreign fields relationship

    Hi,
    One more question.
    Do you want to display all the Object areas at a time
    There are 5 areas right. How do you want to nagivate ?
    Please explain ...some how from the usecase
    document i can't makeout the exact requirement how
    your are expecting the UI .
    Regards, Anilkumar

  • Urgent: problem running reports in Oracle 10g application server

    Hi all,
    our problem is that we deployed a jsp report as Ear file in Oracle 10g application server in infrastructure node.deployment says successfull.when we try to run that report it says 401 unauthorised.while sending request we are passing the database username,password &sid is this correct or any configuration setting to be done to make it run.
    one morething normal jsp works fine.when we run reports jsp it gives the above mentioned 401 error.

    hello,
    when you deploy reports JSPs they still require the reports specific componentes (e.g. TLD file, classes, ...) etc be available. i doubt that's the case in your ear file.
    thanks,
    ph.

  • Urgent requirement on adding context menu in strobe media player

            i want add fullscreen and scale mode in strobe player context menu.. i have added these menu items to context menu in videoInfoOverlay action sctipt.
    but i dont know how to add code for full screen in context menu click event.. what code i have to add into it?  this is very urgent requirement.. can anyone know?

    Silviu,
    Thanks for the quick response.  I had not seen the building-osmf.pdf file before.  Upon quick inspection it seems to be based on CS5 and not CS5.5 and the font issue that I am running into does not seem to be mentioned in the document.  Once I figure out the font issue I'm having, I'll update this thread.
    Regards,
    Tim

  • Swings Urgent Requirement, Please Help me

    Hi ,
    I have a requirement like when a file dialog is displayed, I have to select only directories/folders. Now with using JFileChoser , I am able to choose file . Is there any possibility to choose only directories without file dialog or atleast by using filedialog?. If some solution Please help me as this is urgent requirement.
    Thanks and Regards,
    Rajeev L.

    JFileChooser has an instance method public void setFileSelectionMode(int mode)
    call when initialising the file chooser.
    chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY );

  • Urgent Requirement for SAP CONSULTANTS - all modules.

    TOP MNC NOW HIRING
    Urgent Requirement for SAP CONSULTANTS - all modules.
    Experience    2-5 yrs.
    Location - Gurgaon, Hyderabad,Pune.
    Interested candidates please forward your CV ASAP!!!!!!!! !!!!!!
    send your resumes at [email protected]
    Thanks,
    Rajender

    Hi,
    1. R you able to see the photo while accessing PA30 ?
    2. There is a function module to retieve the employee photo in URI.
    you can use that URI in your Iview.
    code:
    call function 'HRWPC_RFC_EP_READ_PHOTO_URI'
    exporting
    pernr = '00001185'
    DATUM = SY-DATUM
    TCLAS = 'A'
    importing
    uri = uri
    and URI should be of the type TOAURI-URI.
    Rgds,
    Shiva Kumar

Maybe you are looking for

  • Goods Return Recipts

    Dear All when we make the customer goods return receipt with movement type 651 this movemet type is not creating any Accounting Document  on the document status when we click on the accounting button its giving the message material dose not inculding

  • CREATING A PDF THAT OPENS TO 'FIT IN WINDOW'

    Using InDesign (I'm CS2) is it possible to create a pdf with a default setting so that no matter who opens it (with Acrobat) it will open to 'fit in window'? Is this a creator defined attribute? I know that one can set their preferences in Acrobat so

  • Safari 8.0.3 is not responsive

    I have a MacBook Pro from 2011 and its running OS X Yosemite 10.10.2 So every time I open Safari it usually takes about a minute to open. When it does open, if I even just move my cursor to hover over the search bar, the dreaded colorful beach ball s

  • Flex3, AIR and CF8

    Anyone have any opinions yet on whether we should start working with these new programs or continue with the existing versions? I am in the middle of a long project with some parts built in Flex2 and CF7, but still have long way to go. Does anyone ha

  • Does eNAU108 liteon external hard drive work with mac?

    https://www.jbhifionline.com.au/computers-laptops/computer-accessories/liteon-ex ternal-slim-usb-dvd-rom-srp-44-factory-scoop/467764