Frameset and monitor size

Howdy, I have a frameset that looks one way on a 14 inch
monitor but looks another way on a 15 inch or larger screen. Please
note I am using the same operating system (vista), the same
browser, ie 7. Both screens are using 1280 x 800. But the frame set
draws the top frame higher on bigger monitors. For example I have a
top frame and it has text displayed in it. On a 14 inch monitor
there is about a 1/8 inch gap between the bottom of the text and
the frame border. But viewed on a larger monitor with all the above
specs there is a greater gap between the botton of the text and the
frame border. What do I need to do to make this frameset display
the same on different monitors.
Here is the page:
http://www.christian-software.com/design/root/cybersitter_frame.html
Jeff

What you are describing is a browser viewport dimension
problem not a
monitor size problem. You could see both effects on the
larger monitor by
simply making your browser height shorter. Click and drag the
bottom edge
of the browser viewport to see what I mean.
You need to know about frames, however. Please read on -
The decision to use or not use frames should be based on a)
your site's
needs, and b) your willingness to accept the potential
problems that frames
can create for you as developer and maintainer of the site
and for your
visitors as casual users of the site.
I am down on frames because I believe that they create many
more problems
than they solve.
Judging from the posts here, and the kinds of problems that
are described,
the kind of person most likely to elect to use frames is also
the kind of
person most likely ill-prepared fo solve the ensuing problems
when they
arise. If you feel a) that you understand the problems and b)
that you are
prepared to handle them when they occur, and c) that you have
a need to use
frames, then by all means use them.
As far as I know, the most comprehensive discussions of
frames and their
potential problems can be found on these two links -
http://apptools.com/rants/framesevil.php
http://www.tjkdesign.com/articles/frames/
Your problem is that you have specified the height of BOTH of
the two frames
in absolute values.
<frameset rows="120,332" cols="*" border="4"
framespacing="4"
frameborder="NO">
<frame src="cybersitter_frame_top.html"
name="cybersitter_top"
scrolling="NO">
<frame
src="https://www.cybersitter.com/secure/dcsorder.asp"
name="cybersitter_main">
</frameset>
So - when the browser is taller than 120 + 332 = 452px, the
extra height
will be allocated to each frame in the ratio of 120/332 to
the top frame and
212/332 to the bottom frame. The way to overcome this is to
make the top
frame fixed in height but the bottom frame completely
flexible -
<frameset rows="120,*" cols="*" border="4"
framespacing="4"
frameborder="NO">
Then rip out the frames and throw them away!
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
==================
"jphilapy" <[email protected]> wrote in
message
news:[email protected]...
> Howdy, I have a frameset that looks one way on a 14 inch
monitor but looks
> another way on a 15 inch or larger screen. Please note I
am using the same
> operating system (vista), the same browser, ie 7. Both
screens are using
> 1280 x
> 800. But the frame set draws the top frame higher on
bigger monitors. For
> example I have a top frame and it has text displayed in
it. On a 14 inch
> monitor there is about a 1/8 inch gap between the bottom
of the text and
> the
> frame border. But viewed on a larger monitor with all
the above specs
> there is
> a greater gap between the botton of the text and the
frame border. What do
> I
> need to do to make this frameset display the same on
different monitors.
>
> Here is the page:
>
http://www.christian-software.com/design/root/cybersitter_frame.html
> Jeff
>

Similar Messages

  • Div box gets relocated depending on browser and monitor size. HELP!!!!!!!!!!!

    div box gets relocated depending on browser and monitor size. HELP!!!!!!!!!!!

    This is usually caused by malformed HTML, CSS and/or the use of absolute positioning in primary layouts.  Without a link, it's all guesswork on how to fix it though. 
    Nancy O.

  • How to fit all browsers and monitor sizes?

    Hi there.
    Wondering if there is a code that I can paste on a snippet, that would allows
    the size of the site (margins and background image) to fit to all sizes of different browsers/ different monitors?
    Thanks!

    I don't mean to have something that could fit from a laptop to a mobile phone.
    Just a site with a background image that would keep its margins fixed when seen through different browsers
    and monitors of mainstream computer, let's say all browsers and mac laptops.

  • HTML-DB 1.6 (Apex) Page size and Page Model and monitor size

    Hi everyone,
    We developed our application based on 17 inches monitor. But, today one user told us that she has a 15 inches monitor. Thus, she don't see full page, she has to use the scroll.
    Is it in our model that you can reduce the page size for example 80% size in the page model to fit with 15 inches monitor ?
    Or to define a variable in the page model and have two different buttons one for 15 inches monitor (80% page size) and an other related to 17 inches monitor and more (100% page size) this pourcent should be the value of a variable in the page model ?
    Thanks. Bye.

    Hi Timiche,
    The easiest thing to do would be to make sure that the width of items on the page (especially tables) are set to a percentage and not a fixed px value. This way, the items will spread out to fill the available screen width.
    You should also bear in mind that users can change the resolution of the screens - 640x400, 800x600, 1024x768 etc. It would become a nightmare to try and cater for all possible resolutions and screen sizes by dynamically changing the fixed width dimensions of all objects on a page! I would check what items need to be of fixed width and change all the rest to percentages.
    We tend to inform our users that pages have been designed for a particular resolution - currently 1024x768.
    Regards
    Andy

  • I want to make my background appear in the same spot and size on every monitor size

    Hello,
    I am adding a background to my site, and on my monitor it appears in the right dimentions. However, when I zoom out or in on my monitor the background changes sizes. How do I keep it in one position and the same size the entire time despite the monitor size? Here is my code:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    @import url("footer.css");
    html {
    background-color: #000000;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #000;
    background-image: url(Background.jpg);
    .footer p a {
    color: #CCC;
    body {
    width: 1041px;
    margin: auto; /* keeps the page centered */
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 0px;
    background-repeat: no-repeat;
    background-color: #000;
    background-attachment: fixed;
    a {
    color: #8A0404;
    text-decoration: none;
    a:hover {
    color: #FFFFFF;
    .header {
    height: 150px;
    background-image: url(headernew.png);
    width: auto;
    float: none;
    background-color: #000;
    background-repeat: no-repeat;
    padding-top: 0px;
    clip: rect(auto,auto,auto,auto);
    .header .nav {
    width: 450px;
    float: right;
    margin-top: 55px;
    text-align: right;
    .header .nav span {
    font-size: 12px;
    font-weight: bold;
    color: #8a0404;
    margin-left: 25px;
    .navbar {
    background: #FFFFFF;
    line-height: 35px;
    margin: auto;
    width: 170px;
    float: right;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    bottom: 120px;
    position: relative;
    height: 55px;
    right: 55px;
    .navbar .nav {
    width: 50%;
    float: left;
    .content {
    background: #FFFFFF;
    .aside {
    width: 330px;
    float: right;
    color: #8a0404;
    padding-top: 10px;
    background-color: #000000;
    .section.main {
    background: #FFFFFF;
    width: 700px;
    float: left;
    bottom: 0px;
    padding-bottom: 15px;
    .article {
    min-height: 400px;
    text-align: justify;
    background-color: #FFFFFF;
    background-repeat: repeat-y;
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    .centertxt {
    text-align: center;
    .righttxt {
    text-align: right;
    padding-right: 15px;
    img.center {
    display: block;
    margin: auto;
    .section.main .article h3 {
    text-align: center;
    font-style: italic;
    color: #97222B;
    font-size: 30px;
    .footer {
    font-size: 11px;
    text-align: center;
    width: 100%;
    background-color: #000;
    border-top-width: 5px;
    border-top-style: solid;
    border-top-color: #000;
    border-right-color: #000;
    border-bottom-color: #000;
    border-left-color: #000;
    position: relative;
    left: 0px;
    bottom: 0px;
    clear: both;
    color: #CCC;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    margin-right: auto;
    margin-left: auto;
    .signature {
    position: relative;
    </style>
    <link rel="stylesheet" href="dakevid_videolb/overlay-minimal.css"/>
    <link rel="stylesheet" type="text/css" href="banner_files/banner-rotator.css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <link href="footer.css" rel="stylesheet" type="text/css">
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
    <script type="text/javascript" src="banner_files/jquery.banner-rotator.min.js"></script>
    <script type="text/javascript">
    $(window).load(function() {
    $("#JQBannerRotator2").fdBannerRotator({keyboardEnabled:true,frameShadowEnabled:true,slide Width:700,slideHeight:300,slideScaleMode:"none",slideTransition:{type:"fade",duration:300, easing:"easeOutQuad"},slideDuration:3000,slideAutoplay:true,slidePauseOnHover:true,timerPo sition:"top",timerVisible:false,captionAnimationSpeed:500,captionAnimationEasing:"easeOutQ uad",controlDirectionEnbled:true,controlDirectionHide:true,controlPlayEnabled:true,navigat ionEnabled:true,navigationPositionTop:240,navigationPositionMargin:10,navigationAlign:"rig ht",navigationThumbEnabled:true,navigationThumbServerScipt:"",navigationThumbSearch:".jpg" ,navigationThumbReplace:"_thumb.jpg",navigationThumbWidth:150,navigationThumbHeight:65,nav igationThumbAnimationSpeed:200,navigationThumbAnimationEasing:"easeOutQuad"});
    </script>
    <body marginwidth="auto" marginheight="auto">
    <div class="header"></div>
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="index.html">Home</a></li>
    <li><a href="about.html">About</a></li>
    <li><a href="news.html">News</a></li>
    <li><a href="http://www.xcelonlinestore.com/collections/kyle-dake-official-merchandise" target="_new">Merchandise</a></li>
    <li><a href="#" class="MenuBarItemSubmenu">Media</a>
    <ul>
    <li><a href="video_gallery.html">Videos</a></li>
    <li><a href="photo_gallery.html">Photos</a></li>
    </ul>
    </li>
    <li><a href="events.html">Events</a></li>
    <li><a href="sponsors.html">Sponsors</a></li>
    <li><a href="representation.html">Representation</a></li>
    <li><a href="contact.php">Contact</a></li>
    </ul>
    <div class="navbar"><iframe src="http://free.timeanddate.com/countdown/i3zg3ync/n35/cf12/cm0/cu3/ct0/cs0/ca0/cr0/ss0/cacfff /cpc000/pc000/tcfff/fs90/szw320/szh135/tatCountdown%20To/tacfff/tptTime%20since%20Event%20 started%20in/tpc000/matThe%20World%20Championships/macfff/mpc000/iso2014-08-26T00:00:00/pa 5" frameborder="0" width="214" height="75"></iframe>
    </div>
    <div class="content">
    <div class="section main">
    <div id="JQBannerRotator2" class="JQBannerRotator">
    <div class="overlay"></div>
    <ul class="data">
    <li><img class="slide" src="banner_files/slides/lansing.jpg" alt=""/></li>
    <li><img class="slide" src="banner_files/slides/eiwa.jpg" alt=""/></li>
    <li><img class="slide" src="banner_files/slides/coaching.jpg" alt=""/></li>
    </ul>
    </div>
    <div class="article">
    <h3>Welcome to KyleDake.com</h3>
    <p><img src="test.png" width="323" height="441" hspace="20" align="left">Hey Guys! Thanks for visiting my website. I hope you find what you are   looking for, whether it be clothes and merchandise, information, or   inspiration! I want to thank you for supporting me and my dreams as I am   chasing them down every day. The fans are one of the most important   parts of what I do, I hope everything I have done and will do benefits   someone somewhere. Make sure you are chasing your dreams every second   you breathe.<span class="signature"><img src="Signature2.png" width="203" height="109" align="right"></span></p>
    <p> </p>
    </div>
      </div>
    <div class="aside">Follow Kyle on Twitter | Check out Kyle's Facebook Page</div>
      <div class="aside">
    <p class="righttxt"> </p>
    <p class="righttxt"><a class="twitter-timeline"  href="https://twitter.com/kyledake444"  data-widget-id="423108832919695363">Tweets by @kyledake444</a>
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getE lementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.j s";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
    </p>
      </div>
    </div>
    <div id="footer">
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    <div class="footer">
      <p>All Rights Reserved 2013 X-Cel Worldwide | © Kyle Dake 2013 | This is the official Kyle Dake Website | Web Design <a href="http://www.riccioproductions.com/" target="_new">Riccio Poductions</a> | </p>
    <a href="http://www.cfathletic.com/" target="_new"><img src="cf.png" width="83" height="40" border="0"></a><a href="http://www.milwaukeetool.com/" target="_new"><img src="mil_tools.png" width="81" height="55" border="0"></a><a href="http://www.ai-sport.com/ai-performance/ai-performance-wrestling" target="_new"><img src="ai_wrestling.png" width="228" height="47" border="0"></a></div>
    </body>
    </html>
    Thanks!!

    It works in everything except IE, which it notes so I knew that going in. Any thoughts on how to fix it up? Here's the site again:
    http://www.kyledake.com/testindex.html

  • How do I create a digital book that fits tablets and computer monitor sizes?

    How do I create a digital book that fits tablets and computer monitor sizes?
    Example: An 8.5 X 11, 2 column Word document with pictures, approximately 100 pages.
    Must I also publish the book in a 5X8 format or does Acrobat have something that will do that for me?

    Starting at the end:
    - When the movie or tv show does transfer onto your iphone/ipod touch you will be able to see it in the expanded view of your device in the "DEVICES" section.
    - If the files are not on your device, then:
         -- confirm you have SD or HD-SD video. HD-only content will not play and probably will not even sync. iTunes seems to reliably have SD versions with their HD distributions so this should not be an issue
         -- confirm you are synch-ing the content to the ipod device by browsing the DEVICE view's Movie or TV Show tabs to confirm the movie or episode is 'checked'
    - If the files are on the iPod and you cannot find them, check your Settings: General for Restrictions.  If you restrict, for example the movies to "G" rating. PG and higher movies will sync but you will not be able to find them on the iPod!

  • Monitor size and websites

    Hi hows it going!
    My name is John
    My question is how do i get my site to stretch and stay consistant to various monitor sizes?
    I constantly have to crt+ to resize on different screens.

    John,
    If you use a relative width (100% width instead of a fixed value in px), the site/pages will adapt to the currently available width.
    To get more, or better, answers, you may consider posting in the Web Design forum,
    http://forums.adobe.com/community/design_development/webdesign?view=discussions
    or the forum for your application,
    http://forums.adobe.com/index.jspa

  • Photoshop CC 2014 UI Menu Text And Icon Size?

    so i really like that adobe has added the "experimental" option to increase the ui menu text and icon size in photoshop cc 2014, it was almost unreadable on my 2560 x 1440 27" monitor with photoshop cs4 and illustrator cs4, but the lone 200% setting is too big... seems that 125%, 150%, or maybe even 175% would be much better solutions. in fact, for reasons i can't quite understand, the ui text and icon size in illustrator cc 2014 is spot on, absolutely perfect on my monitor, even tho there is no option for increased ui size as far as i can tell, it was spot on the moment i installed and launched it.
    in short, the photoshop cs4 and illustrator cs4 user interfaces were identical in size as far as i could tell, and far too small on my 2560 x 1440 27" monitor. in terms of cc 2014, the illustrator ui is perfect out of the box on my monitor, considerably larger than illustrator cs4, while the photoshop cc 2014 ui is identical to cs4, tiny, but can be enlarged 200% which makes the ui too big. why couldn't/didn't adobe just make the photoshop cc 2014 base ui the exact same size as the illustrator cc 2014 ui? it would have been perfect (for my monitor size).

    thanks... just wish illustrator cc 2014 wasn't so perfect in terms of ui size, i mean it's just great and, consequently, makes it seem as if the ball was dropped with photoshop cc 2014... i mean how can one be spot on while the other be so far off?

  • Program Monitor Size Problem

    I am able to import .mpeg files into PP CS5.  However, while my Source Monitor auto sizes the material correctly, the same material appears zoomed in on my Program Monitor.  I have selected "Fit" as the Program Monitor size.  How do I correct this?  Is it a result of my project preferences perhaps?  Thanks.

    Thanks, Jim.  I studied this video piece closely.  But it did not address the issue of mixed footage, which is the underlying reason for the varying Program Monitor screen sizes of images.  Essentially, if I choose a Sequence setting to accomodate my 1280 x 720 (1.0) footage, then my 1440 x 1080 (1.3333) footage is enlarged in my Program Monitor.  By contrast, if I choose a Sequence setting to accomodate my 1440 x 1080 (1.3333) footage, my 1280 x 720 (1.0) footage is reduced in my Program Monitor.
    I should point out that I was indeed able to create a sequence for each footage type file.  And both Source and Monitor image sizes matched.  But as soon as I created a new sequence and dropped clips from the two different footages into it, I was right back where I started.
    I attempted using Interpret Footage to try and match footage.  But the available selections there do not accomplish this.
    So I suppose the question is:  How does one conform mixed footage like those listed above so that they match in the Program Monitor and consequently, when exported?
    Thanks 

  • Monitor size

    I seem to remember that CF8 has a function that provides the
    monitor display size. Can anyone shed some light on this? I want to
    dynamically set the height of an IFRAME.

    You can dynamically change the height and width of an iframe
    using javascript. I would search for javascript and resolution
    size, then make sure you are running it with an onload function.
    Once you have the correct height, you can run something like
    this to alter the iframe height:
    <script language="javascript">
    function changeframe()
    var new_height = height_from_resolution_funtion;
    document.getElementById('myframe').height = new_height;
    </script>
    <iframe src="page.html" width="200" height="200"
    name="myframe"></iframe>

  • Can we control Font and Font size in Non-alv report list ?

    Hi Experts,
    Can we control Font and Font size in Non-alv report list ?
    Regards
    vishnu

    Hi,
    see if this is useful to you,
    PRINT-CONTROL SIZE 2 COLOR BLACK FONT 5.
    you can go through this link,
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba62335c111d1829f0000e829fbfe/frameset.htm
    Regards,
    Abhijit G. Borkar

  • Bridge monitor size preview

    Feature request.....
    If you are rebuilding the bridge cache from scratch, it would be valuable to allow and option to allow you to specify the "Generate monitor-size preview"  monitor size.  This would be very useful if you are using an alternate machine to generate the cache.  For example, if you have a very large cache (500,000+ images), the process could take a week of processing or more and it would be useful to do this on a second machine (such as a laptop) which has a smaller screen than the main working computer.  For example, the desired monitor size on my processing computer is 1920 pixels wide, however my laptop may have only 1024 pixels.  By allowing a monitor size specification, I could specify that the preview images could be 1920 pixels even though the actual build computer would have only 1024 pixel screen.

    Thanks for the input-  You might try posting it here also:
    http://feedback.photoshop.com/photoshop_family

  • How to get standard size viewable across different monitor sizes?

    How can I get the same view size with media buttons on the bottom ie like full screen across the different size monitors?
    im creating a captivate demo.
    however the target is
    large monitors 21 inch
    and different laptop models and screen
    size.
    I would like the output in as SWF - html.
    Ive been playing around with the settings and these are my results:
    Setting:Record and Capture area ‘Full Screen’
    the result:
    looks great on the 21 inch monitor.
    the same .html file on the laptop
    the result is:
    cuts off the recording on the bottom the screen. so you have to use the scroll bars to see the full screen
    if I Rescale the Project
    from
    width percentage:100
    Height percentage:100
    to:
    width percentage:70
    Height percentage:70
    the result is:
    loss of quality on both laptop screen & desktop screen.
    If I publish as a Media .exe.
    The result is a very large .exe file size  compared to a html file
    Any ideas?
    thank you
    dd

    The rule of thumb I always use it to capture the original screen recordings at the same resolution as the lowest resolution device I expect to view the demo.  So if you are doing your screen capture from a 21inch screen but expect people to play it back on 14 inch laptops, find out what resolution the 14 inch laptops are operating at, temporarily change the resolution of the device connected to the 21 inch screen to match the resolution of the 14 inch laptops - record all your screen captures - then change the resolution back to normal on the 21 inch display only after you have finished recording. You then shouldn't have to mess around with rescaling and it should look great on everything!  Work at the lowest common denominator.
    (apologies in advance if I misunderstood what you were asking)

  • Premiere Pro CS4: Output Issue - codec and image size

    I am having an issue when outputing a video file from Prem Pro to Media Encoder.  The dimensions of the input video are the usual 720x576.  The output I need is 390x390 to match my project.  By choosing the Sorenson 3 video codec I am able to adjust the size from 720x576 to 390x390.  However, it also applies black bars to the top and bottom of the image.  I don't want this.  If I choose the DV PAL video codec the black bars are removed in the output but I do not have control over the image size.
    In Prem Pro 1.5 the media encoder allowed for this and I was able to create a cropped video image (390x390) without black bars.  By selecting the zoom option the image was fitted into the window size.  There is no zoom option in CS4 in Media Encoder.  This is very frustrating!
    Any help would be appreciated...
    Thanks, Neil

    This is odd indeed, and I cannot recall having read of such. The tips were just the general things that one normally checks out, when there are audio issues, so nothing specific to this behavior.
    Now, as a test, you might want to try ASIO4ALL, linked in the article above. Usually, it will get audio, where the Realtek, or Creative driver will not. Again, this is as a test, just to see if by-passing the Realtek driver will help. Do not forget to set the Audio Hardware ASIO to ASIO4ALL in Input and Output. Then test. If it has zero affect, then just uninstall it, and change the setting back.
    Good luck, and wish I had more to help,
    Hunt
    PS - other than mechanical/electrical things like the audio chip heating up and a connection failing, I just cannot think of something that would cause this behavior. Maybe download and run SpeedFan, a great little free utility, and monitor the temps for all components with sensors.

  • Fit the ALV grid to the monitor size

    Hi all,
    Please let me know how i can fit the ALV grid to the monitor size of the user. That is The grids should be layered and expanded to the full width of the users monitor.
    Thanks in advance
    Jey Sabith Ebron

    Hi Jey,
    You can fit ALV grid to monitor size by defining the container as docking container.
    In this case, you neednot create a custom container .
    You can use the following code:
      CONSTANTS: lc_height TYPE i VALUE 1200.
    DATA: go_container       TYPE REF TO cl_gui_docking_container,
          go_alv_tree        TYPE REF TO cl_gui_alv_tree.
        CREATE OBJECT go_container
          EXPORTING
            repid                       = sy-repid
            dynnr                       = sy-dynnr
            side                        = 2                        " Top
            extension                   = lc_height
            metric                      = 1                        " Pixel
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
          MESSAGE x398(00) WITH 'ERROR'(100).
        ENDIF.
      CREATE OBJECT go_alv_tree
        EXPORTING
          parent                      = go_container
          node_selection_mode         = cl_gui_column_tree=>node_sel_mode_single
          item_selection              = c_x
          no_toolbar                  = ''
        EXCEPTIONS
          cntl_error                  = 1
          cntl_system_error           = 2
          create_error                = 3
          lifetime_error              = 4
          illegal_node_selection_mode = 5
          failed                      = 6
          illegal_column_name         = 7.
      IF sy-subrc <> 0.
        MESSAGE x398(00) WITH 'ERROR'.
      ENDIF.
    Code above is for ALV tree.
    You can define any ALV grid object using docking container.
    This will solve your problem.
    Let me know if you face any issues.
    Thanks,
    Nisha Vengal.

Maybe you are looking for

  • Where in the function palette can i find the "logical shift" function (shift x by y bits)?

    i am not able to find the "logical shift" function anywhere on the functions palette (after searching EVERY where). however, i discovered the function elsewhere in another VI (by pure luck!). i could keep bringing up these VI and copying and pasting,

  • UCCX Script help

    What the script trys to accomplish,  & I cant seem to figure out. Someone calls in if their ANI is recognized (check against a database of numbers for authentication) - send them to another piece of the script. Seems easy but I do not know how to: 1

  • Can't access cryptography library in J2SDK1.4

    Hi, I keep getting error for the following code. KeyGenerator keygen = KeyGenerator.getInstance("DES"); unreported exception: java.security.NoSuchAlgorithmException I am using J2SDK1.4 which is said to support cryptography. Do I need to do any config

  • I want to copy my iPod music to an old iPad, how

    I want to copy my iPod music to an old iPad, how

  • Last Year Asset Depreciation Value Does not Accumulate in Jan2010

    Hi Experts, One asset Capitalization and Depreciation Start date is same. We Run the Depreciation up to last year the value is 800. In Jan Depreciation is 100. In Feb System is not Displaying the Accumulated Balance in Asset Explorer. (800 + 100). Pl