Supress selection-screen icon, screen 1001

Hello all,
The following code will supress selection-screen (1001) EXECUTE icon.
include rsdbc1xx.      " selection screen stuff
data: l_alv      type ref to   cl_gui_alv_grid,
      lt_sflight type table of sflight.
* Global table of function codes to disable
data: lt_exclude  type standard table of syucomm.
parameters: p_nuthin as checkbox.
selection-screen begin of screen 1001.
selection-screen end   of screen 1001.
*at selection-screen output.
*  if sy-DYNNR = `1001`.
** disable functions:
**         Online execution
*  append 'ONLI' to current_scr-excl.   "Execute
**         Online execution & Printing
*  append 'PRIN' to current_scr-excl.   "Execute and print
*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
* events at selection-screen output.
*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
at selection-screen output.
  if sy-dynnr = '1001'.
    current_scr-mode = 'S'.
*                                        disable functions:
    append 'SPOS' to current_scr-excl.
    append 'SCRH' to current_scr-excl.
    append 'ONLI' to current_scr-excl.    "Online execution
*    APPEND 'PRIN' TO current_scr-excl.   "Execute and print
  endif.
  if sy-tcode eq 'ZZREPORT'. " Replace with your own transaction code
    append 'GET'  to lt_exclude.  " Get variants function code
    call function 'RS_SET_SELSCREEN_STATUS'
      exporting
        p_status  = sy-pfkey
        p_program = sy-cprog
      tables
        p_exclude = lt_exclude.
  endif.
start-of-selection.
  select * from sflight into table lt_sflight.
* Creation of the ALV object, when we use cl_gui_container=>screen0 as
* parent, the ALVGrid control will automatically use the full screen to
* display the grid, NO CONTAINER DEFINITION IS REQUIRED !
  create object l_alv exporting i_parent = cl_gui_container=>screen0.
*  Set layout options:
  data: l_layout type lvc_s_layo.
  l_layout-zebra      = 'X'.
  l_layout-sel_mode   = 'D' .             "  D = cell selection
* calling the display of the grid, the system will automatically create
* the fieldcatalog based on the table name you pass in parameter
  call method l_alv->set_table_for_first_display
    exporting
      i_bypassing_buffer = 'X'
      is_layout          = l_layout
      i_structure_name   = 'SFLIGHT'
    changing
      it_outtab          = lt_sflight.
* You have to create an EMPTY screen, put NOTHING on it
  call selection-screen 1001.
Thanks
Bruce
Edited by: Bruce Tjosvold on Jul 30, 2009 3:35 PM
Edited by: Bruce Tjosvold on Jul 30, 2009 3:39 PM
Edited by: Bruce Tjosvold on Jul 30, 2009 3:40 PM

I stumbled upon the answer.

Similar Messages

  • Using LDB's in  program and supressing Selection screen

    Hi ,
    I am using LDB in report program and dont want its corresponding selection screen but want my slection screen which i declared in program.
    Experst how should i supress the LDB 's corresponding sletcion screen .
    Regards
    Poornima

    hi Surya
    I am displaying a BW report(3.5 version) in my 2004 portal by specifying INFOCUBE=Z_XYZ&QUERY=Z_ABC_XYZ_001.
    When I execute the iView it straight away display the results of it with out showing the selection screen. When we execute the same in BeX, we get a selection screen. Can you please advice how we can display the BW report with selection screen in the iView.
    The same problem i am facing here in my scenario could share your Exp on this  .
    Thanks in advance
    Deepika

  • How to skip selection screen? Please help!

    Hi Experts,
           I have a report program that has a default selection screen (1000) and ALV output. First selection screen is displayed and on execution ALV is shown.
    My requirement is, if the user is not authorized to run this report then selection screen should be skipped and instead display a error page. This error page is nothing but some write statements in ABAP displaying error icon and error info.
    Currently I have written the authorization check in the INITIALIZATION event. Here I am setting a flag if the user is not authorized followed by "write" statements showing error info.
    But when I run the report, error info is not displayed and instead selection screen loads even though the user is not authorized. I have written the selection screen code in the TOP include.
    So what shall I do? How to skip the selection screen?
    Are there any other better ways to handle my case?
    Thanks
    Gopal

    Got it.
    CODE:
    REPORT  zzsorttry                               .
    SELECTION-SCREEN BEGIN OF SCREEN 1001.
    PARAMETERS : p_vbeln TYPE vbak-vbeln.
    SELECTION-SCREEN END OF SCREEN 1001.
    DATA : flag.
    INITIALIZATION.
    *C-- Put your authorization check here.
      IF 1 = 1.
        flag = 1.
        LEAVE TO LIST-PROCESSING .
      ELSE.
        CALL selection-screen 1001.
      ENDIF.
    START-OF-SELECTION.
      IF flag IS NOT INITIAL.
        CLEAR flag.
        WRITE: 'User', sy-uname , 'not authorized to use this report'.
      ENDIF.

  • Need help on selection screen

    Hello Experts,
       I have a requirement. My user want when she run the report online all variable on selection screen should be parameters means not range or extension and some selection screen checks. But when she run the report in batch mode, all variable on the selection screen should be select-options means ranges with extension. Is it possible to create 2 selection screen in same report, I have no idea, is it possible or not. If possible please tell me how.
    Thanks,
    Amit

    Hi,
    Try this code,
      <b>Important thing is, don't use default selection-screen(1000).</b>
    DATA: w_matnr TYPE matnr.
    SELECTION-SCREEN BEGIN OF SCREEN 1001.
    PARAMETER: pr_param  TYPE matnr.
    SELECTION-SCREEN END OF SCREEN 1001.
    SELECTION-SCREEN BEGIN OF SCREEN 1002.
    SELECT-OPTIONS: so_sele FOR w_matnr.
    SELECTION-SCREEN END OF SCREEN 1002.
    INITIALIZATION.
      IF sy-binpt = 'X'.
        CALL SELECTION-SCREEN 1001.
      ELSE.
        CALL SELECTION-SCREEN 1002.
      ENDIF.
    <b>You should be the same logic in the remaining program(like in START-OF-SELECTION, END-OF-SELECTION etc) where ever the implication of selection screen fileds are there.</b>
    Thanks and Regards,
    Bharat Kumar Reddy.V

  • How to create a selection screen in a FM

    Hello,
    I have a FM. Here i have an import parameter called Selection.
    So when Selection = X i need to show a selection-screen like if it would be a report. Do you know any fm or way to do this?
    We have thought to create a report with the selection screen and to do a submit and return in the FM, and import/export the parameters. But maybe there are some clearer an easier way...
    Thanks,
    Manel
    Edited by: Manel Casadesus on Oct 7, 2009 11:57 AM

    Hi Manel,
    <li>Its absolutely possible. I just tried. It works
    <li>Plase the code in the TOP include of the function pool.
    FUNCTION-POOL ZTEST_GRP.
    SELECTION-SCREEN BEGIN OF SCREEN 1001.
    PARAMETERS P_DATA TYPE CHAR2.
    SELECTION-SCREEN END OF SCREEN 1001.
    <li>Call the above defined selection-screen in the start of the function module.
    FUNCTION ZTEST_FUNCTION_BADI.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(DAT) TYPE  CHAR2
      CALL SELECTION-SCREEN 1001.
    ENDFUNCTION.
    I hope that it solves your problem.
    Thanks
    Venkat.O

  • Call selection screen exit

    Hi,all
    I've found a problem arising from this sentence "call SELECTION-SCREEN 1001 STARTING AT 10 10",in the main screen. (here the type of screen 1001 is 'Modal Dialog Box')
    The 'close' button on the right-top correr of the screen has no effect to close the
    screen 1001,so how can I catch the event of click on that button?
    Thanks

    you need to write the code as below
    case sy-ucomm.
    when 'EXIT'.
    leave to screen 0.  " always use screen 0 for modal dialog box.
    when "BACK'
    leave to screen 0
    WHEN 'CANC'.
    leave to screen 0
    endcase.
    Please activate buttons in Menu Painter.
    Thanks
    Seshu

  • Select-screen problem

    Hi all
    I have create one selection screen as follows
      SELECTION-SCREEN BEGIN OF SCREEN 1001 ."AS WINDOW.
      SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TEXT-101.
      SELECT-OPTIONS  :  SO_PLANT  FOR  ZTAB_PP_PARAM-ZPLANT NO INTERVALS NO-EXTENSION OBLIGATORY.
      SELECTION-SCREEN END OF BLOCK B0 .
      SELECTION-SCREEN END OF SCREEN 1001.
    and call in follows
      CALL SELECTION-SCREEN  1001 STARTING AT 5 5  ENDING AT 50 2.
    its working properly
    my problem if in the appear window has scroll in there end.
    if i removed Block part its working
    you can check Tcode CEWB that is standred code inthe bigining nice window displayed  i want to create that type window. 
    please try to help me.

    Hi,
    Call From a Program
    From any program in which selection screens are defined, you can call these screens at any
    point of the program flow using the following statement:
    CALL SELECTION-SCREEN <numb> [STARTING AT <x1> <y1>]
    [ENDING AT <x2> <y2>].
    This statement calls selection screen number <numb>. The selection screen called must be
    defined in the calling program either as the standard selection screen (screen number 1000) or
    as a user-defined selection screen (any screen number). You must always use CALL
    SELECTION-SCREEN to call selection screens, and not CALL SCREEN. If you use CALL
    SCREEN, the system will not be able to process the selection screen.
    You can display a user-defined selection screen as a modal dialog box using the STARTING AT
    and ENDING AT additions. This is possible even if you have not used the AS WINDOW addition
    in the definition of the selection screen. However, you are recommended to do so, since
    warnings and error messages that occur during selection screen processing will then
    also be displayed as modal dialog boxes (see example below).
    When it returns from the selection screen to the program, the CALL SELECTION-SCREEN
    statement sets the return value SY-SUBRC as follows:
      SY-SUBRC = 0 if the user has chosen Execute on the selection screen
      SY-SUBRC = 4 if the user has chosen Cancel on the selection screen
    Any time a selection screen is processed, the selection screen events are triggered.
    System field SY-DYNNR of the associated event blocks contains the number of the selection
    screen that is currently active.
    REPORT SELSCREENDEF.
    SELECTION-SCREEN BEGIN OF BLOCK SEL1 WITH FRAME TITLE TIT1.
    PARAMETERS: CITYFR LIKE SPFLI-CITYFROM,
    CITYTO LIKE SPFLI-CITYTO.
    SELECTION-SCREEN END OF BLOCK SEL1.
    SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.
    SELECTION-SCREEN INCLUDE BLOCKS SEL1.
    SELECTION-SCREEN BEGIN OF BLOCK SEL2
    WITH FRAME TITLE TIT2.
    PARAMETERS: AIRPFR LIKE SPFLI-AIRPFROM,
    AIRPTO LIKE SPFLI-AIRPTO.
    SELECTION-SCREEN END OF BLOCK SEL2.
    SELECTION-SCREEN END OF SCREEN 500.
    INITIALIZATION.
    TIT1 = 'Cities'.
    AT SELECTION-SCREEN.
    CASE SY-DYNNR.
    WHEN '0500'.
    MESSAGE W159(AT) WITH 'Screen 500'.
    WHEN '1000'.
    MESSAGE W159(AT) WITH 'Screen 1000'.
    ENDCASE.
    START-OF-SELECTION.
    TIT1 = 'Cities for Airports'.
    TIT2 = 'Airports'.
    CALL SELECTION-SCREEN 500 STARTING AT 10 10.
    TIT1 = 'Cities again'.
    CALL SELECTION-SCREEN 1000 STARTING AT 10 10.
    This executable program contains definitions for the standard selection screen and
    the user-defined screen number 500. Selection screen 500 is defined to be displayed
    as a modal dialog box and contains the SEL1 block of the standard selection screen.
    Note the phase in which the titles of the screens are defined. For the purpose of
    demonstration, the program calls warning messages with message class AT during
    the AT SELECTION-SCREEN event.
    When you start the program, the following sequence of screens is displayed:
    1. The standard selection screen. If the user chooses Execute, the system displays
    the warning SCREEN 1000 in the status bar.
    2. Once the user has confirmed the warning by choosing Enter, selection screen 500
    is called as a modal dialog box. When the user chooses Execute, the system
    displays the warning SCREEN 500, also in a dialog box.
    3. When the user has confirmed this warning, the standard selection screen is called
    again, but this time as a modal dialog box. Since you cannot define the standard
    selection screen as a modal dialog box, the warning message displayed when the
    user chooses Execute appears in the status bar and not as a modal dialog box.
    Consequently, you can only exit this selection screen using Cancel, since there is no
    Enter function in the dialog box to confirm the warning message.
    Regards,
    Bhaskar

  • Q10 - I tap the screen to select, the icon changes color (indicating selection) but nothing happens...

    I notice an issue that predominantly happens when I use my thumbs to tap but does happen with fingers from time to time. 
    When I select an icon (say, for instance the lower-right corner icon to jump into camera settings), the icon changes color slightly when my thumb touches the glass, and then when I remove my thumb, nothing happens. 
    Sometimes this happens more than 5 times in a row.  It's one thing if the screen never recognized my finger/thumb in the first place.  It is a bit more madening when I KNOW that there was recognition (icon changing color) and yet nothing happens.. 
    Anyone else having this problem?  Is there some way to recalibrate the screen? 
    Right after I posted this message I tried that camera setting button - 7 tries before anything happened with my right thumb, one try with right index finger, then again it took 5 tries with index finger.  The frustrating thing is that the icon to load the camera in the first place (lower right corner)... that one almost always works with the first tap... 

    Perform a Reset...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • ALV-Freeze colums and Icon on Selection Screen

    Dear All,
    suppose i have 10 columns in an ALV Report and i want to freeze from my 3rd column onwards so that if I scroll to right my these 3three columns can still be seen.How to do this.
    also how to display icon on selection screen.I remeber doing some copy pasting from icon table to my selection texts.
    How to acheive these two.
    Regards,
    Rahul Bhat.

    Hi,
    I hope the following links will help you,
    how to freeze columns in table
    how to freeze the selection column in the table control of the module pool.
    Freeze Column
    Regards,
    Harish

  • Execute icon on selection screen

    Dear Experts,
    I am new to module pool programming and i have my selection screen as seen below, but from this screen i cannot execute as that icon is missing.
    How can i get it?
    SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN NO INTERVALS.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.
    PARAMETERS: file TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN END OF SCREEN 1100.
    SELECTION-SCREEN BEGIN OF SCREEN 1200 AS SUBSCREEN NO INTERVALS.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-020.
    PARAMETERS: p_po TYPE ekko-ebeln.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OF SCREEN 1200.
    CONTROLS mytabstrip TYPE TABSTRIP.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file .
    START-OF-SELECTION.
       mytabstrip-activetab = 'BUTTON1'.
       CALL SCREEN 100.
    (this screen displays and i can input the values. But after that no execute button.)

    Hi Anushka,
    If i got it right you require to create custom selection screen look alike in your module pool.
    So for this you need to call your selection screen inside your module pool.
    BR
    Sumeet

  • How to supress LDB selection screen

    Hi All
    I am using selection screen in report and LDB too.
    Can anyone tell how to supress default selction screen of LDB?
    Thanx
    Kamal

    Hi kamal,
    1. Just do not declare any structure / table
       / node
       as defined in the ldb.
    2. then the default selection screen won't come.
    3. U can just code your own selection screen,
       it will come by default.
    regards,
    amit m.

  • LDB FMF + supress standard selection screen

    Hi,
    I had developped a specific report using the LDB FMF, but i want to supress the standard selection screen.
    i want to use my only own specific selection screen.
    How to do that ?
    Best regards

    Find the link below:
    [http://help.sap.com/saphelp_46c/helpdata/en/9f/db9bed35c111d1829f0000e829fbfe/frameset.htm]

  • How to put icon in selection screen

    Hello All,
    Can any one tell how to put icons ICON_EXPAND and ICON_COLLAPSE in selection screen and to use.
    Good Answers will be appreciated.
    Thanks in advance.
    Best Regards,
    Sasidhar Reddy Matli.

    hi check his..
    REPORT zalv_sel_screen .TABLES: mara.DATA: BEGIN OF i_alv OCCURS 0,
          matnr TYPE mara-matnr,
          mtart TYPE mara-mtart,
          matkl TYPE mara-matkl,
          groes TYPE mara-groes,
          maktx TYPE makt-maktx,
          END OF i_alv.DATA: alv_container  TYPE REF TO cl_gui_docking_container.
    DATA: alv_grid       TYPE REF TO cl_gui_alv_grid.
    DATA: layout    TYPE lvc_s_layo.
    DATA: fieldcat  TYPE lvc_t_fcat.PARAMETERS: p_check.INITIALIZATION.  PERFORM get_data.AT SELECTION-SCREEN OUTPUT.  DATA: variant TYPE  disvariant.
      DATA: repid TYPE sy-repid.  repid = sy-repid.  variant-report = sy-repid.
      variant-username = sy-uname.  layout-zebra = 'X'.
      layout-edit_mode = 'X'.  CHECK alv_container IS INITIAL.  CREATE OBJECT alv_container
                  EXPORTING repid     = repid
                            dynnr     = sy-dynnr
                            side      = alv_container->dock_at_left
                            extension = 1500.  CREATE OBJECT alv_grid
             EXPORTING
                   i_parent          =  alv_container.*  ALV Specific. Data selection.
    Populate Field Catalog
      PERFORM get_fieldcatalog.  CALL METHOD alv_grid->set_table_for_first_display
        EXPORTING
          is_layout        = layout
          is_variant       = variant
          i_save           = 'U'
          i_structure_name = 'I_ALV'
        CHANGING
          it_outtab        = i_alv[]
          it_fieldcatalog  = fieldcat[].
    START-OF-SELECTION.
    FORM GET_DATA
    FORM get_data.  SELECT * INTO CORRESPONDING FIELDS OF TABLE i_alv
            FROM mara
              INNER JOIN makt
                ON maramatnr = maktmatnr
                       UP TO 100 ROWS
                   WHERE makt~spras = sy-langu.  SORT i_alv ASCENDING BY matnr.ENDFORM.                    "get_data***************************************************************
         Form  Get_Fieldcatalog - Set Up Columns/Headers
    FORM get_fieldcatalog.  DATA: ls_fcat TYPE lvc_s_fcat.
      REFRESH: fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Number'.
      ls_fcat-fieldname  = 'MATNR'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '18'.
      ls_fcat-fix_column = 'X'.
      ls_fcat-key        = 'X'.
      ls_fcat-col_pos    = '1'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Type'.
      ls_fcat-fieldname  = 'MTART'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '10'.
      ls_fcat-fix_column = 'X'.
      ls_fcat-key        = 'X'.
      ls_fcat-col_pos    = '2'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Group'.
      ls_fcat-fieldname  = 'MATKL'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '12'.
      ls_fcat-col_pos    = '3'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Size'.
      ls_fcat-fieldname  = 'GROES'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '30'.  ls_fcat-col_pos    = '4'.
      APPEND ls_fcat TO fieldcat.  CLEAR: ls_fcat.
      ls_fcat-reptext    = 'Material Description'.
      ls_fcat-fieldname  = 'MAKTX'.
      ls_fcat-ref_table  = 'I_ALV'.
      ls_fcat-outputlen  = '40'.  ls_fcat-col_pos    = '5'.
      APPEND ls_fcat TO fieldcat.ENDFORM.                    "get_fieldcatalog

  • I need to get an icon on the selection screen as well as selection text .

    HI ,
           Can anybody please tell me how to get an icon in the selection-screen along with the selection texts written for select-options or parameters.
    For Example:
                        Select-Options: S_WERKS  For  T001w-werks,
                                                S_AUART   For  TVAKT-AUART,
                                                S_ERDAT   For  LIKP-ERDAT.
    IN THE SELECTION TEXTS: 
                     FOR S_WERKS  i write (WareHouse)
                     FOR S_AUART   i write (OrderType)
                     FOR S_ERDAT  i write  (PlantDate)
              I need to get the icons for this fields as well as selection texts written for these fields.
    I will reward full points to the solution.
    Mohan.

    Hi mohan,
    <b>Run the below code</b>
    Report zex33.
    tables : t001w,
             tvakt,
             likp.
    type-pools: icon.
    selection-screen begin of line.
    selection-screen comment 1(20) text_001.
    select-options: S_WERKS For T001w-werks.
    selection-screen end of line.
    selection-screen begin of line.
    selection-screen comment 1(20) text_002.
    select-options :S_AUART For TVAKT-AUART.
    selection-screen end of line.
    selection-screen begin of line.
    selection-screen comment 1(20) text_003.
    select-options : S_ERDAT For LIKP-ERDAT.
    selection-screen end of line.
    initialization.
      write ICON_WAREHOUSE  as icon to text_001.
      concatenate text_001 text-001 into text_001 separated by space.
      write ICON_ORDER  as icon to text_002.
      concatenate text_002 text-002 into text_002 separated by space.
      write ICON_PLANT  as icon to text_003.
      concatenate text_003 text-003 into text_003 separated by space.
    *In text-001 -> Warehouse
    *In text-002 -> Order Type
    *In text-003 -> Plant Date

  • [Selection-screen] Begin of line, Icons, Layout, ...

    Hi,
    Is WDA lacking some those very familiar features we have in ABAP Selection-screen? (WDR_TEST_SELECT_OPTIONS application certainly does not show the full scope, is it?)
    Is there a replacement for BEGIN OF LINE in WDA selection-screen?
    What about adding comments?
    Is this possible to add icon or images?
    Besides, I was wondering how it is possible to lay the selection-screen in multiple columns. In tried different layout (Grid, Matrix, ...) without success.
    Lastly, is this possible to put labels on top of input fields?
    Do not hesitate to share your most beautiful selection-screens! 
    Thanks in advance.
    Best regards,
    Guillaume

    Some of the designing things are missing in select options -
    IF_WD_SELECT_OPTIONS~ADD_HORIZONTAL_DIVIDER - > to add a line
    IF_WD_SELECT_OPTIONS`ADD_TEXT_LINE - Add a text based line...
    Regarding alignment we need to work on it..there are layout options using ADD_BLOCK..
    Adding Icon/Symbol - I don't see any option...in the interface

Maybe you are looking for

  • How can I get rid of opening message about found photos?

    When I attempt to open iPhoto6 on my iMac G5, before it loads the photos, I get this message that won't go away until I respond: "6294 photos have been found in the iPhoto Library folder that were not imported. Would you like to import them?" Questio

  • Is it possible to auto merge contacts?

    Yesterday my Z10 restarted himself (I don't know why...) and today I see, that all my contacts are unmerged - I see for example 4 times the same person, because of Gmail, Facebook, Twitter and SIM... So is it possible to auto merge contacts? All time

  • PRBLEM OF GENERETING REPORT IN EXCEL

    HI GURU I AM SUFFERING FROM PROBLEM THAT I HAVE CREATED ON REPORT IN THAT IF I CAN GENERATE REPORT IN ALV IT IT WORKS BUT AT THE TIME OF GENERATING IN EXCEL IT IS NOT SHOWING DATA IN SOME COLUMN DATA IS NOT THERE. IF ANY ONE HAVE SOLUTIONS THEN PLZ G

  • Does '.html' HAVE to be a part of the URL?

    I want to create a new page to an existing site which will become its own section and want to be able to send/advertise that URL (which will have no ref to the main site & no link to it) eg. www.mainsite.co.uk - I want to advertise: www.mainsite.co.u

  • Change font when replying a HTML messages

    I want to change the font when I reply an e-mail in HTML. The current font is big. A colleague of mine is able to reply using the same font the message was composed with his Android