Auto resizing tables for screen resolution

Hi everyone.
Im currently working on my website using dreamweaver, and i
just stumbled across a problem. Im building my website for screen
resolution 1020x768. However, alot of people tend to use 1280x1024
nowadays. The problem is that images get all screwed up at
different screen resolutions.
The best way to fix this would be auto resizing tables (so a
1280 using can view my 1024 website without any problems). But, i
have no idea how to create this. Ive been trying dreamweavers help,
but that didnt help me.
So i was wondering if anyone around here has the solution for
my problem.
Thanks in advance!

Hi everyone.
Im currently working on my website using dreamweaver, and i
just stumbled across a problem. Im building my website for screen
resolution 1020x768. However, alot of people tend to use 1280x1024
nowadays. The problem is that images get all screwed up at
different screen resolutions.
The best way to fix this would be auto resizing tables (so a
1280 using can view my 1024 website without any problems). But, i
have no idea how to create this. Ive been trying dreamweavers help,
but that didnt help me.
So i was wondering if anyone around here has the solution for
my problem.
Thanks in advance!

Similar Messages

  • BDC: Table Control Screen Resolution

    Hi Abapers,
    1.In BDC while handling table control , how to handle screen resolution , that means in some systems i can see 5 item entries , in some systems i can see 10 item entries how to handle this , can u  send the Code relating this.
    With Regards
    Bhaskar Rao.M

    hi
    The numeber of lines of table control for BDC depend on screen resolution, but It can't be managed by program.
    So the better solution is to create a bdc doesn't depend on resolution.
    It can do that using always the first two lines of table control.
    When you start the simulation, first record has to be placed in first line of tc and the second in second one.
    Before placing the third record, it needs to place the second record to the top and so the third record can be placed in the second line.
    Before placing the next record, it needs to place the third record to the top and so the fourth record can be placed in the second line and so.
    In this way your BDC'll use alwways the first two lines of tc and your program won't depend on resolution.
    The problem is the transaction you need to simulate by BDC has to have a scroll functionality to allow to place the last record was elaborated to the top of tc, so the second line of tc can always be used to place the new record.
    If there isn't this functionality, it's better to use a BAPI instead of BDC.
    check these two
    BDC - standard screen resolution required?
    https://forums.sdn.sap.com/click.jspa?searchID=739193&messageID=823953
    reward points if found helpful

  • Table for Screen Field Properties

    Hi Guys,
    I have strange requirement.
    Lets say i have designed 5 fields in the Dialog Program. 2 fields belongs to Group1,another 2 fields belongs to Group2 and 3rd field is belongs to group3.
    Where can i find those values (I mean which table). I belive it should be Program,screen no and data type.
    Note : Groups you can set in Attributes of the field in Dialog Program.
    Thanks
    Poorna

    Setting Screen Field Attributes
    Every screen field has attributes that you set in the Screen Painter when you define the
    screen. At runtime, you may want to change these attributes, depending on what
    functions the user has requested in the previous screen. At runtime, attributes for each
    screen field are stored in a memory table called SCREEN. You do not need to declare
    this table in your program. The system maintains the table for you internally and updates
    it with every screen change.
    The memory table SCREEN contains the following fields:
    Name Length Description
    NAME 30 Name of the screen field
    GROUP1 3 Field belongs to field group 1
    GROUP2 3 Field belongs to field group 2
    GROUP3 3 Field belongs to field group 3
    GROUP4 3 Field belongs to field group 4
    ACTIVE 1 Field is visible and ready for input
    REQUIRED 1 Field input is mandatory
    INPUT 1 Field is ready for input
    OUTPUT 1 Field is for display only
    INTENSIFIED 1 Field is highlighted
    INVISIBLE 1 Field is suppressed
    LENGTH 1 Field output length is reduced
    DISPLAY_3D 1 Field is displayed with 3D frames
    VALUE_HELP 1 Field is displayed with value help
    To activate a field attribute, set its value to 1. To deactivate it, set it to 0. When you set
    the ACTIVE attribute to 0, the system suppresses the field and turns off the ready for
    input attribute. The user can neither see the field nor enter values into it.
    Note
    You can define values for each of these attributes in the Attribs. for 1 field section in
    the field list of the Screen Painter. If you need more information about attribute
    meanings, see BC ABAP/4 Workbench Tools.
    Modifying the Screen SAP AG
    Setting Screen Field Attributes
    32u20134 May 1997
    As an example of modifying the screen dynamically, start with transaction tz50
    (development class SDWA).
    The transaction consists of two screens. In the first screen the user can enter flight
    identifiers and either request flight details (by pressing a Display pushbutton) or press the
    Change pushbutton to change the data of screen 200.
    The field attributes are now set dynamically, according to whether the Display button or
    the Change button was selected. In both cases the same screen is now called, but with
    different field attributes.
    If the same attributes need to be changed for several fields at the same time, these fields
    can be grouped together. For example, in order to change the fields in screen 200
    dynamically, we assign these fields in the Screen Painter to the group MOD. You can
    specify up to four modification groups for each field. The contents of the Groups field
    are stored in the SCREEN table.
    The changes to the attributes of the fields in this group can be implemented in a PBO
    module:
    SAP AG Modifying the Screen
    Setting Screen Field Attributes
    May 1997 32u20135
    MODULE MODIFY_SCREEN OUTPUT.
    CHECK MODE = CON_SHOW.
    L0OP AT SCREEN.
    CHECK SCREEN-GROUP1 = u2019MODu2019.
    SCREEN-INPUT = u20190u2019.
    MODIFY SCREEN.
    ENDLOOP.
    ENDMODULE.
    The memory table SCREEN contains each field of the current screen together with its
    attributes.
    The LOOP AT SCREEN statement puts this information in the header line of this system
    table.
    In this example taken from transaction tz50, if the user chooses Display then SCREENINPUT
    is set to u20190u2019 and all fields belonging to the MOD group thus become display-only
    fields.
    Because attributes have been changed, the MODIFY SCREEN statement is used to write
    the header line back to the table.
    Modifying the Screen SAP AG
    Changing Screen Field Attributes with the Function Field Selection

  • Sizing window and image for screen resolution

    Applet creates Frame that displays JPG or GIF image. Would like to size Frame, and zoom image, on basis of screen resolution, to avoid necessity to scroll image. How can applet or button or frame access screen resolution numbers? Thanks.

    Hi,
    Call this method. Pass the Frame as parameter
    <pre>
    public void centerFrame(Frame frame)
    //Center the window
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = frame.getSize();
    if (frameSize.height > screenSize.height) {
    frameSize.height = screenSize.height;
    if (frameSize.width > screenSize.width) {
    frameSize.width = screenSize.width;
    frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
    frame.setVisible(true);
    </pre>
    Hope this solves ur problem
    Regards,
    Harsha
    [email protected]

  • Resizing to fit screen resolution

    I'm hoping for someone to be out there that could answer my
    question as desperation will begin to settle in soon....
    I have a website for some coursework I've been studying and
    would like to present it in 800 x 600 pixels.
    However it's actual size is 1200 x 800......does Dreamweaver
    have any extensions that force a page to display in a certain size
    even if that page is bigger than you want.
    Help much appreciated at his late hour...
    jonathan

    Resolution is not the critical issue. Browser viewport width
    is. To make
    your decision you need to have some ideas about the following
    issues -
    1. What is the primary target demographic for this site?
    2. What are the browsing habits of that demographic? Do they
    normally have
    their browser window maximized on the screen?
    3. If they usually have their browser maximized, what is the
    typical screen
    width?
    4. If they usually do NOT have their browser maximized, what
    is the MINIMUM
    screen width in that demographic.
    5. How do I want to build the page?
    a. Fixed width and left aligned?
    b. Fixed width and centering?
    c. Flexible to fill whatever width from left to right?
    d. Flexible (within limits) and left aligned?
    e. Flexible (within limits) and centering?
    As you can see, this decision is probably much more complex
    than you
    thought, and will require that you know quite a bit about
    your intended
    target visitor and their browsing habits.
    If you elect to go with 5a, or 5b, then your decision would
    be - 'what is
    the mimimum browser width I want to support without
    horizontal scrolling?'.
    Once you have determined that minimum supported width, all of
    your decisions
    are made. That's how wide you want your page to be.
    If you elect to go with 5c, then you just build your page
    within a flexible
    container (the simplest example - although an obsolet one -
    would be to use
    a 100% width table to hold the entire page). Be aware that
    pages with
    limited text content can look VERY sparse and empty on wide
    viewports when
    built in this way.
    If you elect to go with 5d, or 5e, then you would add this
    sophistication to
    your decision matrix -
    'what is the greatest width I want to allow the page and its
    contents to
    become?'
    In this case, you would use the CSS styles - 'min-width' and
    'max-width' on
    the primary page container. Just so you'll know, although
    these styles are
    well supported *now*, earlier versions of IE (and some other
    browsers) will
    not support them so reliably.
    So - which is it? 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "brother_jonnycat" <[email protected]> wrote
    in message
    news:[email protected]...
    > I'm hoping for someone to be out there that could answer
    my question as
    > desperation will begin to settle in soon....
    >
    > I have a website for some coursework I've been studying
    and would like to
    > present it in 800 x 600 pixels.
    > However it's actual size is 1200 x 800......does
    Dreamweaver have any
    > extensions that force a page to display in a certain
    size even if that
    > page is
    > bigger than you want.
    >
    > Help much appreciated at his late hour...
    > jonathan
    >

  • Resolution for Screen resolution

    I set my screen size to 800 x 600 because I saw it was recommended for installation of a game. But now it is way too large and cumbersome to use. Before I messed with it, it was set at 800 x 500 which was fine. Why won't it go back to that setting when I simply go in and click on that choice? It stays on this large setting. (Even doing this post required manipulation of the down arrows because the drag bars were not accessible.)
    Also, how do I remove an "unresolved question"?
    NOTE: These profile settings are not correct either. I've just edited them and it said that it saved the changes but only the avatar was changed.

    First off, can you verify which iMac you have?
    My FAQ here should help:
    http://www.macmaps.com/macosxnative.html#IDENTIFY
    This forum is only for iMac Intel Core Duos, the new iMacs released in 2006. For iMac G3/450s which your profile currently mentions, there is this forum:
    http://discussions.apple.com/category.jspa?categoryID=133
    CRT stands for Cathode Ray Tube, or the old "tube television" technology which existed on iMacs prior to the Flat Panel. When you visit http://discussions.apple.com/ you will find an iMac forum, and if you scroll down in the iMac forum, you will eventually reach the CRT forum.
    If your screen is an LCD, also known as a Flat Panel, you don't have a 450 Mhz iMac and the answer to your question would be different. So it is important to identify your iMac first before we can give you a concise answer.

  • Auto resize photo for mail

    Hello,
    Symbian Anna allows me to choose the size of pics I want to send via MMS.
    Unfortunately, when I chose mail, I get the full picture attached to it.
    Is there a way or an app that could do it automatically ? (I know I can edit and resize but it takes too much time).
    If not, it would be very good to think about it in future development. 
    Thank you in advance for any useful answer

    If you don't check the option to allow users to download files, then only 800x600 sized photos are uploaded to .Mac. If you are allowing downloads, the photos are limited to roughly 6MP (I can't narrow down the exact size) when uploaded. If neither option works for you, you might have to export them. I don't know what size iWeb uses.
    If your photos are 8-10MB each I'm assuming they're RAW format. RAW always gets converted to JPG so even before being shrunk to within 6MP, they'll be 1-3MB JPG's. Hope this helps.

  • How to create screen resolution in bdc table control

    hi gurus
    can anyone suggest me
    how to create screen resolution in bdc table control
    thanks&regards
    mark.

    Hi ,
    Using CTU_PARAMS table for screen resolution .
    For this sample code.
    This is for Transation  FB60.
    report ZZFB60
           no standard page heading line-size 255.
    tables t100.
    PARAMETERS : p_file1  like  rlgrap-filename,
                 p_doctyp like  RF05A-BUSCS,
                 p_invdat like  INVFO-BLDAT,
                 p_posdat like  INVFO-BUDAT.
    CONSTANTS  :  C_TRANS_FB60(4) VALUE 'FB60'.
    *Parameter string for runtime of CALL TRANSACTION
    data : l_option type ctu_params,
           l_subrc type sysubrc.
    DATA :  l_mstring(150).
    data      accnt type char17.
    data       : day   type char2,
                 month type char2,
                 year  type char4,
                 date1 type char10,
                 date2 type char10.
    data      :  cnt(2) TYPE n,
                 cnt1 type i,
                 fld(25) TYPE c.
    data : begin of excel occurs 0,
            fieldname(255) type c,
           end of excel.
    DATA:BEGIN OF it_mess OCCURS 0,
             msgtyp(5),
             lms(200),
              msgv1(50),
         END OF it_mess.
    data: begin of t_record occurs 0,
             BUKRS(004),
            ACCNT(017),
            XBLNR(016),
            WRBTR1(016),
            WAERS(005),
            SECCO(004) ,
            SGTXT(050),
            HKONT(010),
            WRBTR2(017),
            MWSKZ(002),
            GSBER(004),
            KOSTL(010),
         end of t_record.
    *Internal Table for Header Data
    DATA :  BEGIN OF t_head OCCURS 0,
            BUKRS(004),      "Company Code
            ACCNT(017),      "Account or Vendor
            XBLNR(016),      "Reference
            WRBTR1(017),     "Amount in document currency
            WAERS(005),      "Currency
            SECCO(004),      "Section Code
            SGTXT(050),      "Text
            END OF t_head.
    *Internal table for Item Data
    DATA :  BEGIN OF t_item OCCURS 0,
            ACCNT(017),      "Account
            HKONT(010),     "GL Account
            WRBTR2(017),    "Line item Amount in document currency
            MWSKZ(002),     "Tax Code
            GSBER(004),     " Business Area
            KOSTL(010),     "Cost centre
            END OF t_item.
    DATA: IT_BDCDATA      LIKE  BDCDATA OCCURS 0 WITH HEADER LINE,
          IT_BDC_MESSAGES LIKE  BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    *include bdcrecx1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      PERFORM  file_selection.
      PERFORM  data_upload.
      PERFORM  table_control.
    start-of-selection.
    l_option-defsize = 'X'.
    l_option-dismode = 'A'.
    l_option-updmode = 'S'.
    day = p_invdat+6(2).
    month = p_invdat+4(2).
    year =  p_invdat+0(4).
    concatenate day month year into date1 SEPARATED BY '.'.
    day = p_posdat+6(2).
    month = p_posdat+4(2).
    year =  p_posdat+0(4).
    concatenate day month year into date2 SEPARATED BY '.'.
    *perform open_group.
    loop at t_head.
    CLEAR    IT_BDCDATA.
    REFRESH  IT_BDCDATA.
    perform bdc_dynpro      using   'SAPLACHD'         '1000'.
    perform bdc_field       using   'BDC_OKCODE'        '=ENTR'.
    perform bdc_field       using   'BKPF-BUKRS'        t_head-bukrs.
    perform bdc_dynpro      using   'SAPMF05A'          '1100'.
    perform bdc_field       using   'BDC_OKCODE'        '/00'.
    perform bdc_field       using   'RF05A-BUSCS'       p_doctyp.
    perform bdc_field       using   'INVFO-ACCNT'       t_head-accnt.
    perform bdc_field       using   'INVFO-BLDAT'       date1.
    perform bdc_field       using   'INVFO-BUDAT'       date2.
    perform bdc_field       using   'INVFO-XBLNR'       t_head-xblnr.
    perform bdc_field       using   'INVFO-WRBTR'       t_head-wrbtr1.
    perform bdc_field       using   'INVFO-WAERS'       t_head-waers.
    perform bdc_field       using   'INVFO-SECCO'       t_head-secco.
    perform bdc_field       using   'INVFO-SGTXT'       t_head-sgtxt.
    cnt = 1.
    cnt1 = 1.
    loop at t_item where accnt = t_head-accnt.
    *if cnt > 4.
    *cnt = 4.
    *endif.
    if cnt1 gt 1.
    CONCATENATE 'ACGL_ITEM-MARKSP(' cnt ')' INTO fld.
    perform bdc_field      using   fld                   'X'.
    perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    perform bdc_field       using 'BDC_OKCODE'        '=0005'.
    endif.
    perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    perform bdc_field       using   'BDC_OKCODE'        '/00'.
    CONCATENATE 'ACGL_ITEM-HKONT(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-hkont.
    CONCATENATE 'ACGL_ITEM-WRBTR(' cnt ')' INTO fld.
    perform bdc_field  using       fld                t_item-wrbtr2.
    CONCATENATE 'ACGL_ITEM-MWSKZ(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-mwskz.
    CONCATENATE 'ACGL_ITEM-GSBER(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-gsber.
    CONCATENATE 'ACGL_ITEM-KOSTL(' cnt ')' INTO fld.
    perform bdc_field       using  fld                t_item-kostl.
    perform bdc_field      using  'BDC_CURSOR'  fld.
    *CONCATENATE 'ACGL_ITEM-MARKSP(' cnt ')' INTO fld.
    *perform bdc_field      using   fld                   'X'.
    cnt1 = cnt1 + 1.
    *cnt = cnt + 1.
    *if cnt > 1.
    *perform bdc_dynpro      using 'SAPMF05A'          '1100'.
    *perform bdc_field       using 'BDC_OKCODE'        '=0005'.
    **perform bdc_field       using 'BDC_OKCODE'        '=0006'.
    *endif.
    endloop.
    perform bdc_dynpro      using 'SAPMF05A' '1100'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BS'.
    perform bdc_dynpro      using 'SAPMSSY0' '0120'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BU'.
    *perform bdc_transaction using 'FB60'.
    CALL TRANSACTION C_TRANS_FB60 USING IT_BDCDATA  options from l_option
                                 MESSAGES INTO IT_BDC_MESSAGES.
    perform error.
    perform errordownload.
    endloop.
    *perform close_group.
    *Form  data_upload
    FORM data_upload .
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
       FILENAME              =  p_file1
       FILETYPE              = 'DAT'
      TABLES
        DATA_TAB             =  t_record.
    ENDFORM.                    " data_upload
    *Form  file_selection
    FORM file_selection .
    CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  =  syst-cprog
          dynpro_number =  syst-dynnr
          field_name    = 'p_file1'
        IMPORTING
          file_name     =  p_file1.
    ENDFORM.                    " file_selection
    Form  BDC_DYNPRO
    FORM BDC_DYNPRO using program dynpro.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-PROGRAM = PROGRAM.
      IT_BDCDATA-DYNPRO = DYNPRO.
      IT_BDCDATA-DYNBEGIN = 'X'.
      APPEND  IT_BDCDATA.
    endform.
    *Form  BDC_FIELD
    FORM  bdc_field using fnam fval.
      CLEAR  IT_BDCDATA.
      IT_BDCDATA-FNAM = FNAM.
      IT_BDCDATA-FVAL = FVAL.
      APPEND  IT_BDCDATA.
    ENDFORM.
    Table Control
    FORM table_control .
      LOOP AT t_record.
        ON CHANGE OF t_record-accnt.
          MOVE-CORRESPONDING t_record TO t_head.
          APPEND t_head.
        ENDON.
      loop at t_head.
             t_item-accnt   =  t_head-accnt.
             t_item-hkont   =  t_record-hkont.
             t_item-wrbtr2  =  t_record-wrbtr2 .
             t_item-mwskz   =  t_record-mwskz .
             t_item-gsber   =  t_record-gsber .
             t_item-kostl   =  t_record-kostl.
        APPEND t_item.
    endloop.
         If t_record-level = 'H'.
             t_head-bukrs   =  t_record-text1.
             t_head-accnt   =  t_record-text2.
             t_head-xblnr   =  t_record-text3.
             t_head-wrbtr1  =  t_record-text4.
             t_head-waers   =  t_record-text5.
             t_head-secco   =  t_record-text6.
             t_head-sgtxt   =  t_record-text7.
          APPEND t_head.
         else.
            t_item-accnt   =  t_head-accnt.
            t_item-hkont   =  t_record-text1.
            t_item-wrbtr2  =  t_record-text2.
            t_item-mwskz   =  t_record-text3.
            t_item-gsber   =  t_record-text4.
            t_item-kostl   =  t_record-text5.
         APPEND t_item.
         endif.
      ENDLOOP.
    ENDFORM.
    FORM error .
      LOOP AT IT_BDC_MESSAGES.
        IF IT_BDC_MESSAGES-msgtyp = 'E'.
       SELECT single  * FROM t100  WHERE
                                    sprsl = it_BDC_MESSAGES-msgspra
                                    AND   arbgb = IT_BDC_MESSAGES-msgid
                                    AND   msgnr = IT_BDC_MESSAGES-msgnr.
          IF sy-subrc = 0.
            l_mstring = t100-text.
            IF l_mstring CS '&1'.
              REPLACE '&1' WITH IT_BDC_MESSAGES-msgv1 INTO l_mstring.
              REPLACE '&2' WITH IT_BDC_MESSAGES-msgv2 INTO l_mstring.
              REPLACE '&3' WITH IT_BDC_MESSAGES-msgv3 INTO l_mstring.
              REPLACE '&4' WITH IT_BDC_MESSAGES-msgv4 INTO l_mstring.
            ELSE.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv1 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv2 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv3 INTO l_mstring.
              REPLACE '&' WITH IT_BDC_MESSAGES-msgv4 INTO l_mstring.
            ENDIF.
            CONDENSE l_mstring.
            it_mess-msgtyp = IT_BDC_MESSAGES-msgtyp.
            it_mess-lms = l_mstring.
            it_mess-msgv1 = IT_BDC_MESSAGES-msgv1.
            APPEND it_mess.
          ELSE.
            it_mess-msgtyp = IT_BDC_MESSAGES-msgtyp.
            it_mess-lms = l_mstring.
            it_mess-msgv1 = IT_BDC_MESSAGES-msgv1.
            APPEND it_mess.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDFORM.
    form errordownload.
    *down the internal table to excel file.
    call function 'EXCEL_OLE_STANDARD_DAT'
               EXPORTING
                    file_name                 = 'c:/Error.xls'
               TABLES
                    data_tab                  = it_mess
                    fieldnames                = excel
               EXCEPTIONS
                    file_not_exist            = 1
                    filename_expected         = 2
                    communication_error       = 3
                    ole_object_method_error   = 4
                    ole_object_property_error = 5
                    invalid_filename          = 6
                    invalid_pivot_fields      = 7
                    download_problem          = 8
                    others                    = 9.
    endform.
    Reward if useful
    Regards,
    Narasimha
    Edited by: narasimha marella on May 13, 2008 12:12 PM

  • Screen resolution for 13' MBP for Parallels?

    anyone happen have any good ideas for settings for screen resolution of my windows virtual machine on my 13" macbook pro? I'm trying 1440 x 1020 and everything seems stretched and rasterized.
    TIA.

    The 13" MBP has a maximum screen resolution of 1280 x 800. Nothing can push it higher, because that's how many physical pixels the screen contains.

  • BDC screen resolution

    How to do screen resolution in BDC table control ?

    so there so many threads for screen resolution check it
    how to solve screen resolution in bdc
    Screen Resolution in Bdc
    How to make screen resolution independent in BDC
    Re: Screen Resolution problem in BDC
    screen resolution problem in table control
    whats the screen resolution problem with bdc's how to solve it?
    Screen Resolution Problem in Session Method

  • Controlling Screen Resolution in BDCs

    Hi,
    Can any one explain about the process for Controlling Screen Resolution in BDCs.
    Thanks & Regards,
    Rajesh.

    Hi,
    If u write table control bdc program in 14'' monitor screen, then if the same program u run at different monitor size, then the screen resolution problem comes in to the picture,
    like, u get 5 records in table control in one screen, and some other records in other screen, to avoid this screen resolution problem we use CTU-PARAMS Structure.
    In ur program u have to set
    defsize type ctu_params-defsize value 'X',
    Then u will be free of screen resolution problem.
    Fill the str CTU_PARAMS-defsize = 'X' and pass in CTU stmnt as
    call transaction 'XXX' options using t_bdcdata ctu_params.
    Analysing :
    1. If nothing works, then we have to
    some ifs & buts.
    2. There shall be normally
    2-4 different kinds of resolution
    on various users comptuers.
    3. Based on this,
    we have to know beforehand,
    what will be the number of rows
    in the table control.
    4. The user can be given
    a selection/paraemter
    for resolution
    eg. 800x600
    1024x100
    axb
    etc.
    5. Based on this, we will hardcode
    in the program (based upon our knowledge/recording
    which we have seen and done)
    we will hardcode
    the number of lines
    in the VARIBLE.
    6. Then we can simply use this variable
    for our LOOP and logic purpose.
    7. It will be the responsibiltiy of the
    use to CHOOSE THE CORRECT resolution,
    on the selection-screen.
    For screen resolution use ctu_params, with default size
    Data : f_option type ctu_params,
    f_option-updmode = 'S'.
    f_option-defsize = 'X'.
    f_option-dismode = 'N'.
    call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.
    CALL TRANSACTION tcode... OPTIONS FROM opt
    ... OPTIONS FROM opt
    Effect
    Allows you to control processing using the values of the componetns of the structure opt, which must have the ABAP Dictionary type CTU_PARAMS. The components have the following meanings:
    DISMODE
    Display mode (like the MODE addition)
    UPDMODE
    Update mode (like the UPDATE addition)
    CATTMODE
    CATT mode (controls a CATT)
    CATT mode can have the following values:
    ' ' No CATT active
    'N' CATT without single-screen control
    'A' CATT with single-screen control
    DEFSIZE
    Use default window size
    RACOMMIT
    Do not end transaction at COMMIT WORK
    NOBINPT
    No batch input mode (that is, SY-BINPT = SPACE)
    NOBIEND
    No batch input mode after the end of BDC data.
    The components DEFSIZE , RACOMMIT, NOBINPT, and NOBIEND always take the following values:
    'X' Yes
    ' ' No
    If you do not use the OPTIONS FROM addition, the following control parameter settings apply:
    DISMODE
    From addition MODE
    UPDMODE
    From addition UPDATE
    CATTMODE
    No CATT active
    DEFSIZE
    Do not use default window size
    RACOMMIT
    Successful end on COMMIT WORK
    NOBINPT
    Batch input mode active ( SY-BINPT = X
    NOBIEND
    Batch input mode remains active after the BDC data
    Hope it makes u understand...
    Reagrds,

  • Best way to create a background image for all resolutions without drastically increasing file size.

    I see a lot of great background images with complex designs that resize with different screen resolutions. I can create the designs, but I don't know how to create a complex image for large screen resolutions without making it a large file, or it loosing quality with it stretches to the larger size. Is there a code that resizes images when stretched, or do I just have to live with a slower load speed with complex background images?

    The background doesn't resize, it shrinks:
    http://johnpatrickgiven.com/jquery/background-resize/
    Basically make a 1920x1080 or higher resolution file and use that script.  There will always be a maximum but based on your response that is not your monitor.  Photoshop and other tools do a pretty good job compressing jpeg files and most internet connections are fast enough to make it seamless.

  • Screen resolution in Windows XP

    Hi all,
    I have a iMac 24", with a screen resolution of 1920x1200. I installed Windows XP with Bootcamp. The problem I have now is in Windows, the highest possible choice for screen resolution is 1600x1200 which doesn't look good at all.
    How do I change that into 1920x1200?
    I am a complete newbie when it comes to windows so help is appreciated. (I only installed it to run SolidWorks during work).
    Thanks,
    Veronica

    Hi Veronica,
    just to rule ou the obvious:
    Have you installed the BootCamp Windows Drivers from the OSX DVD yet ?
    If not, while in Windows pop in the OSX DVD and the Driver Installation should start automatically.
    Stefan

  • Screen resolution in 10G and converison from 6i

    Scenario is something like this:
    We are converting forms from 6i to 10G.
    We have designed forms in 6i for 1024x768 screen resolution. We don't have any issues in 6i for screen resolution of 1024x768.
    We converted the form to 10G. Screen resolution is still 1024x768 in 10G. We are using separateFrame=true in formsweb.cfg to make sure we don't show the Applet in browser window. separateFrame=true opens the application in new window and this new window can use entire screen resolution.
    Applet in new window is bigger than the screen resolution and we see scroll bars in main window when we open a child window. Obviously the applet is showing bigger footprint than client server form.
    Why is this so? Is there a way to fix this?

    If you will bring up a client-server form and a Web separate-frame form and compare them side-by-side, you can easily see the difference.
    The height and width of the actual space used by the form is identical. In fact, in my comparison, both window widths are exactly the same number of pixels. I used snagit to compare the sizes.
    However, if you compare the heights, you will see the difference. The web forms window has three bands above the actual Form canvas:
    1. The main window bar with the java icon on the left, window title, and the three windows icons for minimize, maximize and close.
    2. The pull-down menu choices on the left and the "Oracle" logo on the right. (Look-and-feel generic removes the Oracle logo, I believe.)
    3. The Window0 bar, blank except an icon on the left (right click shows Restore, Move, Size,... CLose) and an icon on the right, which clicking causes the inside window to maximize or restore.
    The Client/Server window has two bands:
    1. Main window bar, similar to 1 above, except the icon on the left is a Forms icon instead of java.
    2. Combination of 2 and 3 above: Contains both the icons in 3 above plus the pull-down menu choices. It is also about 8 pixels shorter than the web forms bar 2.
    In addition, comparing the bar with the message and status lines at the bottom of both versions, you can see that the web forms bar is about 9 more pixels higher.
    It is possible to position the Window0 at a y_pos of about -20 to regain some of the lost height (this causes the third bar described above to be hidden behind the second). But you cannot get all the height back, because of the additional height taken by Web Forms for the second bar and the bottom area.
    So what is left is to reduce the height of the canvas area used by your forms by about 20 pixels.
    I believe these heights are determined by the java runtime used by web forms rather than Oracle, so there is nothing Oracle can do about it.

  • Screen resolution in WinPE 5.0 on UEFI devices

    Hi
    Can you please help me with the issue i am facing? 
    The screen resolution in WinPE is very high, the drop down values in MDT wizard are extremely small and almost unreadable. I see a similar question posted on technet for screen resolution in
    WinPE 4.0 but I am unable to fix it.
    http://social.technet.microsoft.com/Forums/windows/en-US/66bd25d3-cc37-4841-be38-3f427db36b57/winpe-screen-resolution-problem-no-display-signal-out-of-range?forum=w7itproinstall
    The HTA screen looks OK but the when you select the drop down, the values are extremely small. 
    I also referred to the article from Johan
    http://www.deploymentresearch.com/Research/tabid/62/EntryId/51/Setting-screen-resolution-in-WinPE-4-0.aspx
    Below is my setup:
    MDT 2013
    Windows 8.1 x64
    Lenovo Thinkpad Tablet 10 (UEFI)
    Tried the below but no luck:
    Changed the ColorDepth to 32 in unattend.xml in WinPE pass
    Tried modifying the Wizard.hta with different screen size and style.zoom
    Playing around with the HTA settings might help but i am unsure how it looks and behaves on other UEFI devices.
    Currently we are using Lenovo Tablet 10 but soon will also be using Surface Pro.
    Am I missing something or is there a better way to do fix it?

    Hi,
    If our only issue is this particular font size, we can adjust some setting in files of
     script folder.
    For example,  open  DeployWiz_LanguageUI.xml under Scripts folder, here is just an example to make keyboard layout font large.
    Find:
    <SELECT NAME="KeyboardLocale_Edit" class=WideEdit >
    Edit it as:
    <SELECT NAME="KeyboardLocale_Edit" class=WideEdit style="font-size: 30px" >
    The result is just like:
    About the root cause, there would be something wrong with the WinPE image, in my test, WinPE 5 works good under UEFI mode. You can recreate one for test.
    Alex Zhao
    TechNet Community Support

Maybe you are looking for

  • Quiet external hard drive for use with Time Machine?

    Few questions related to Time Machine: 1- what external hard drive that would be good to use with Time Machine, that also runs relatively quietly? Since TM runs 24/7, am looking for one that is quieter than my current G-tech. 2- Please confirm what s

  • OBIEE 11g time series: regression on ago / todate function ?

    Hello, We are testing the migration to OBIEE 11G. We are currently in 10.3 version We have a problem on AGO / TO_DATE OBIEE functions that returns null results on existing reports. In 10.3 version, these functions work properly with the actual TIME d

  • How to: Resize a rows height in a table using acrobat 9 pro?

    I'm working on a government grant, with many tables that need to be resized in order to fit the required information. Can anyone help me?

  • Missing Text in Print Output

    When I print a PDF as hardcopy, individual letters are disappearing from the printed document, but are still present in the online view.  The letters that vanish are often the same letter, such as all the G's and g's.  Not in all cases, though. I am

  • Album sort order missing

    I want to use 'Recently Added' in album view while hiding all rated albums. I do not understand why the new 'album' sort order is restricted to only a few fields, while the 'songs' sort order doesn't have the two-level; sorting that the album sort or