DIV to Table Conversion

I'm trying to figure out how to convert the DIV tags to a
table, but
can't quite get it. Can someone convert for me:
<div style="padding: 5px;">
<div class="conContainer">
<div class="con_tl"><div class="con_tr"><div
class="con_br"><div
class="con_bl">
<div class="conTitle">Your Title Here</div>
<div class="blockContent">Place your text in
here</div>
</div></div></div></div></div></div>
With the CSS of
.conTitle {/font-size: 110%;font-weight:
bold;text-decoration:
none;margin: 0px 0px .2em 0px;padding: 12px 0px 10px
38px;background-image:url(images/bluex/colt.gif);
background-repeat:
no-repeat;color: #1d1d1d1d;}
.conIcons {float: right;position: relative;font-size:
0.85em;top:
-25px;right: 5px;}
.con_tl {background-image:
url(images/bluex/tl.gif);background-position: 0%
0%;background-repeat:
no-repeat;position: relative;top: -1px;left: -1px;}
.con_tr {background-image:
url(images/bluex/tr.gif);background-position: 100%
0%;background-repeat: no-repeat;position: relative;left:
2px;}
.con_br {background-image:
url(images/bluex/br.gif);background-position: 100%
100%;background-repeat: no-repeat;position: relative;top:
2px;}
.con_bl {background-image:
url(images/bluex/bl.gif);background-position: 0%
100%;background-repeat: no-repeat;position: relative;left:
-2px;padding: .8em;overflow: hidden;}
.conContainer {background-image:
url(images/bluex/bg.jpg);border: 1px
solid #D0D0E0;position: relative;margin-bottom: 10px;z-index:
0;}
Thanks.

Why do you want to do this? And what happens when you try?
<background>This conversion, and its obverse of tables
to divs, should have
been removed from the product 3 versions ago. It has no
practical value,
and only accomplishes a complete destruction of your page's
markup making
longer-term maintenance of the page a
nightmare.</background>
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Port Man" <[email protected]> wrote in message
news:[email protected]...
> I'm trying to figure out how to convert the DIV tags to
a table, but
> can't quite get it. Can someone convert for me:
>
> <div style="padding: 5px;">
> <div class="conContainer">
> <div class="con_tl"><div
class="con_tr"><div class="con_br"><div
> class="con_bl">
> <div class="conTitle">Your Title Here</div>
> <div class="blockContent">Place your text in
here</div>
>
</div></div></div></div></div></div>
>
>
> With the CSS of
>
> .conTitle {/font-size: 110%;font-weight:
bold;text-decoration:
> none;margin: 0px 0px .2em 0px;padding: 12px 0px 10px
> 38px;background-image:url(images/bluex/colt.gif);
background-repeat:
> no-repeat;color: #1d1d1d1d;}
> .conIcons {float: right;position: relative;font-size:
0.85em;top:
> -25px;right: 5px;}
> .con_tl {background-image:
> url(images/bluex/tl.gif);background-position: 0%
0%;background-repeat:
> no-repeat;position: relative;top: -1px;left: -1px;}
> .con_tr {background-image:
> url(images/bluex/tr.gif);background-position: 100%
> 0%;background-repeat: no-repeat;position: relative;left:
2px;}
> .con_br {background-image:
> url(images/bluex/br.gif);background-position: 100%
> 100%;background-repeat: no-repeat;position:
relative;top: 2px;}
> .con_bl {background-image:
> url(images/bluex/bl.gif);background-position: 0%
> 100%;background-repeat: no-repeat;position:
relative;left:
> -2px;padding: .8em;overflow: hidden;}
> .conContainer {background-image:
url(images/bluex/bg.jpg);border: 1px
> solid #D0D0E0;position: relative;margin-bottom:
10px;z-index: 0;}
>
> Thanks.
>
> --
>

Similar Messages

  • Choosing div vs table layout

    Me again, hello.
    I'd like to get your perspectives on the debate between <table>s and <div>s in CSS.
    Over and over I've read the proponents of <div>s vs those of <table>s, and what I've taken away is:
    "If you have a lot of tabular data, use a <table>, if not, use <div>s."
    "Tables inside of tables are a big problem"
    So I'll give you a specific example
    Here is a mockup of a simple series of <div>s.
    The large one on the right will be for a photo.
    The other 12 <div>s will be for textual data.
    http://www.heartinstitutehd.com/php/testingcsslayout.htm
    I've done exactly the same layout using a table with rowspan="3" for the picture.
    In your opinion(s), what are the pros and cons of using <div> vs <table> in this particular example?
    For noobs such as myself, here's the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
    <style>
    .largebox {
    height:200px;
    width:800px;
    margin-left:auto;
    margin-right:auto;
    background-color:lime;}
    .shortwidebox {
    width:85%;
    height:33%;
    background-color:gray;
    float:left;}
    .picturebox {
    height:100%;
    width:15%;
    background-color:navy;
    float:right;}
    .smallboxblue {
        height:100%;
        width:25%;
        float:left;
        background-color:blue;}
    .smallboxgreen {
        height:100%;
        width:25%;
        float:left;
        background-color:green;}
    .smallboxred {
        height:100%;
        width:25%;
        float:left;
        background-color:red;}
    .smallboxblack {
        height:100%;
        width:25%;
        float:left;
        background-color:black;}
    </style>
    </head>
    <body>
    <div class="largebox">
    <div class="picturebox"></div>
    <div class="shortwidebox">
    <div class="smallboxblack"></div>
    <div class="smallboxblue"></div>
    <div class="smallboxgreen"></div>
    <div class="smallboxred"></div>
    </div>
    <div class="shortwidebox">
    <div class="smallboxred"></div>
    <div class="smallboxgreen"></div>
    <div class="smallboxblue"></div>
    <div class="smallboxblack"></div>
    </div>
    <div class="shortwidebox">
    <div class="smallboxblack"></div>
    <div class="smallboxblue"></div>
    <div class="smallboxgreen"></div>
    <div class="smallboxred"></div>
    </div>
    </div>
    </body>
    </html>

    "Tables inside of tables are a big problem"
    That's really not true. Tables inside of tables is wasteful, and troublesome since it creates LOTS of markup that gets in the way of troublshooting, and that adds to the weight of the page. It's not uncommon to find tables nested 7 or 8 deep on pages that use tables for layout. You will rarely find such contorted structures on CSS pages. What makes tables within tables big trouble and even dangerous is when those tables contain lots of colspans and rowspans.  This leads to relative unstable structures that will figuratively explode if someone bumps up the text size on the page.
    My critique of your page is that you have assigned heights to those elements. While I recognize that you may be doing that for effect, it's never a good idea - let the contents determine the height - you risk overflow problems when you don't.
    And finally, I have used tables on a page perhaps three times in the last year. All three times were to present tabular data. While tables can be an important tool in your toolbag when you need to use them, I'd avoid them for any other uses.

  • EEWB Extension deletion " Field changes can require table conversion"

    Hi
    Wihile iam trying to delete extensions in EEWB (created in  a transaction ) it is giving me the below error
    Field changes can require table conversion
    Message no. OXT_MISC328
    Diagnosis
    Not all databases permit deletion of fields in existing tables. Deletion may be required when making changes. In this case, the table must be converted, and then it has the status Partially active. The extension is otherwise flagged as having errors.
    Procedure
    Take the tables that are to be converted from the log. Use the database utility to make the conversion. Conversion may require a lot of time and resources. Then repeat the transaction in the Easy Enhancement that led to this message.
    The Request which contains the extension has already been transported  can any help me out in this
    Edited by: Nanda Kishore on Sep 2, 2009 8:16 AM

    Hi Kishore,
    Go to Database Utility (SE14) --> select the table names from you log and (in next screen) press button Activate & Adjust database and check that the Status becomes Active. Depending on the size of table , might take some minutes to activate this table.
    Cheers
    Jignesh

  • Locking mechanism while import transports with table conversions

    Hi all,
    quite often, we have the request to import to our PROD FI SAP System a big list of transports which are performing also table conversions (addition of columns, removeal of columns etc).
    During the import of the transports we inform the people not to logon on the system and perform any kind of job.
    However not everyone is respecting the notification.
    Is there any mechanism to prevent all the users from logging onto the SAP system?
    Kind Regards,
    Loukas Rougkalas

    Hi Loukas,
    call SE16, table name = USR02, (get variant that listed only the users they are not in user groups SYSTEM, SUPER, BASIS Admin and so on), F8, Export the list of users to Excel, StrgShiftF7 - is only working in ALV Grid display (Settings - User Parameters - ALV Grid display)
    Then lock the users with transaction SU10 - Authorization data - mutiple selsction - copy the list of users from clipboard (excel Table "B") and paste it into "single value" (ShiftF12 -> F8 -> F8) - Select all (F5) - click to "Transfer" then you can lock the users with CtrlF5
    To unlock the Users repeat step 2 - instead of StrgF5 click StrgF4 for unlock
    Gerd
    Edited by: Gerd Schuster on Nov 17, 2009 2:12 PM

  • Problem with Div and table

    I have a table that contains data parsed for a weather station page.  It also has a webcam picture on the page.  Up until now, the webcam pic has loaded via an applet but I want to change that to a jquery slideshow so it's accessible to more mobile devices.   My problem is that no matter what I do (aside from putting a 5x240 spacer) I can't get the table data to display below the webcam div (id="featured").  I've put the webcam and data table in their own div, the webcam's div in the table, used clear:both on the divs, tried setting block size, but it's like nothing is working.   So I'm back to go and thought I'd post it here since there are so many folks here who know more about this than me.  This is the html, right now with no CSS classes or anything added.  So whatever you would suggest as far as div and/or table layout and any CSS would be appreciated.
    <table width="100%" cellpadding="3">
    <tr align="center"><td >
          <div id="featured"> <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img0" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-9.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img10" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-8.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img9" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-7.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img8" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-6.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img7" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-5.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img6" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-4.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img5" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-3.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img4" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-2.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img3" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-1.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img2" /></a>
                  <a href="http://www.spyglasshill.com/Webcam/" target="_new"><img src="http://spyglasshill.com/Webcam/netcam-0.jpg" alt="Webcam of Holland Channel from Spyglass Condos" width="320" height="253" border="0" id="Img1" /></a>  <!--end div featured--></div>
    </td></tr>
    <tr>
      <td><img src="images/spacer5x260.gif" width="5" height="260"></td></tr>
    <tr>
                          <td colspan="4"><p align="center"><a href="images/06/Waterspout/Waterspouts.htm"><br />
                              </a></p>
                            <div align="center">
                              <p><a href="images/Waterspout/Waterspouts.php">Waterspout on Lake Mich </a>||| <a href="images/ANIFreighter.gif">Freighter Leaving Harbor</a><br />
                              </p>
                            </div></td>
                          </tr>
                        <tr>
                          <td colspan="4" bgcolor="#EAEFF9"><div align="center">
                            <h2>Weather Conditions Last Updated  wvcurudwv at wvcurutwv </h2>
                          </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Temperature                      </div></td>
                          <td><div align="left">                        wvcur01wv                      </div></td>
                          <td><div align="right">                        Wind Speed                      </div></td>
                          <td><div align="left">                        wvcur18wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Average High                      </div></td>
                          <td><div align="left">                        wvahtempwv                      </div></td>
                          <td><div align="right">                        Wind Direction                      </div></td>
                          <td><div align="left">                        wvcur17wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Record High                      </div></td>
                          <td><div align="left">                        wvrhtempwv in
                          wvrhtyrwv                      </div></td>
                          <td><div align="right">                        Peak Wind Gust                      </div></td>
                          <td><div align="left">                        wvhigh18wv at
                          wvhight18wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        High
                          Since Midnight                      </div></td>
                          <td><div align="left">                        wvhigh01wv
                          at wvhight01wv                      </div></td>
                          <td><div align="right">                        Wind Chill Factor                      </div></td>
                          <td><div align="left">                        wvcur02wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Low                      </div></td>
                          <td><div align="left">                        wvlow01wv
                          at wvlowt01wv                      </div></td>
                          <td><div align="right">                        Yesterday Max Wind                      </div></td>
                          <td><div align="left">                        wvyhigh18wv at wvyhight18wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Rainfall Since
                          Midnight                      </div></td>
                          <td><div align="left">                        wvcur16wv                      </div></td>
                          <td><div align="right">                        Relative Humidity                      </div></td>
                          <td><div align="left">                        wvcur13wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Rainfall Yesterday                      </div></td>
                          <td><div align="left">                        wvyhigh16wv                      </div></td>
                          <td><div align="right">                        Barometric Pressure                      </div></td>
                          <td><div align="left">                        wvcur15wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Sunrise                      </div></td>
                          <td><div align="left">                        wvsrisewv                      </div></td>
                          <td><div align="right">                        Heat Index                      </div></td>
                          <td><div align="left">                        wvcur04wv                      </div></td>
                        </tr>
                        <tr>
                          <td><div align="right">                        Sunset                      </div></td>
                          <td><div align="left">                        wvssetwv                      </div></td>
                          <td><div align="right">                        Dew Point                      </div></td>
                          <td><div align="left">                        wvcur03wv                      </div></td>
                        </tr>
                        <tr>
                          <td> </td>
                          <td> </td>
                          <td> </td>
                          <td> </td>
                        </tr>
                        <tr>
                          <td> </td>
                          <td>Moon
                          distance from earth</td>
                          <td><span>wvmdistwv</span></td>
                          <td> </td>
                        </tr>
                        <tr>
                          <td><h2> </h2></td>
                          <td><h2> </h2></td>
                          <td><h2> </h2></td>
                          <td><h2> </h2></td>
                        </tr>
                        <tr>
                          <td><h2><a href="http://www.coastwatch.msu.edu/twomichigans.html" target="_blank">Lake
                            Michigan<br />
       Water Temp</a></h2></td>
                          <td><h2><a href="http://www.woodtv.com/Global/category.asp?C=2906&nav=0Rcf">TV
                          8</a> &amp; <a href="http://www.wzzm13.com/weather/forecast/weather.asp">TV13</a> Weather </h2></td>
                          <td><h2><a href="http://www.deq.state.mi.us/beach/Default.aspx?County=70" target="_blank">Ottawa County Beach Conditions</a></h2></td>
                          <td><h2><a href="http://www.crh.noaa.gov/product.php?site=grr&product=nsh&issuedby=grr" target="_blank">Nearshore
                          Marine Forcast</a></h2></td>
                        </tr>
                      </table>

    Of course as soon as I posted that, I found the error of my ways. I had forgotten to set containerheight:   on my .js script for 'div#featured'
    Arrrghh, why couldn't I have realized that a hour ago!!!

  • Import SQL into Fact Table - Conversion Error

    Hi All,
    I am new to BPC MS and did not know much into MS SQL.
    I am facing the Conversion error while converting between unicode and non unicode string data types.
    We are using SAP BPC 10.0 MS SP13, EPM-Addin SP18 on .Net 4
    The below is the error log
    Total Step: 4
    SQLToTxt: Failed in 0 seconds
    Import SQL into Fact Table: Failed in 0 seconds
    [Selection]
    DB = BPC
    TABLE = GlBalanceOpening
    COLUMNS = Account,Auxiliary,Curr,BalanceDateTime,Amount
    TRANSFORMATION = \JMG\LIQ_JMG\DataManager\TransformationFiles\GLOpeningBalances.xls
    CLEARDATA = No
    RUNLOGIC = No
    PROCESSCUBE = Yes
    CHECKLCK = No
    [Message]
    An error occurred while executing a package.
    Package Error Events: 
    ErrorCode = -1071636234
    Source = SQLToTxt
    SubComponent= OLE DB Source [68]
    Description = Column "Account" cannot convert between unicode and non-unicode string data types.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1071636234
    Source = SQLToTxt
    SubComponent= OLE DB Source [68]
    Description = Column "AccountName" cannot convert between unicode and non-unicode string data types.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1071636234
    Source = SQLToTxt
    SubComponent= OLE DB Source [68]
    Description = Column "Auxiliary" cannot convert between unicode and non-unicode string data types.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1071636234
    Source = SQLToTxt
    SubComponent= OLE DB Source [68]
    Description = Column "AuxiliaryName" cannot convert between unicode and non-unicode string data types.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1071636234
    Source = SQLToTxt
    SubComponent= OLE DB Source [68]
    Description = Column "Curr" cannot convert between unicode and non-unicode string data types.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1071636234
    Source = SQLToTxt
    SubComponent= OLE DB Source [68]
    Description = Column "Dr" cannot convert between unicode and non-unicode string data types.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1071636234
    Source = SQLToTxt
    SubComponent= OLE DB Source [68]
    Description = Column "Cr" cannot convert between unicode and non-unicode string data types.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1073450901
    Source = SQLToTxt
    SubComponent= SSIS.Pipeline
    Description = "component "OLE DB Source" (68)" failed validation and returned validation status "VS_ISBROKEN".
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1073450996
    Source = SQLToTxt
    SubComponent= SSIS.Pipeline
    Description = One or more component failed validation.
    IDOfInterfaceWithError= {C81DFC5A-3B22-4DA3-BD3B-10BF861A7F9C}
    Package Error Events: 
    ErrorCode = -1073594105
    Source = SQLToTxt
    SubComponent=
    Description = There were errors during task validation.
    IDOfInterfaceWithError= {B4E78907-3D9C-4229-9DB9-6A311E45C779}
    Thanks and Regards,
    Raj

    Hi Raj,
    you have to modify the script of your package, see please 1629737 - Error in ImportSQL Data Manager Package
    Regards
         Roberto

  • DIV and Table Tag - height issue

    Help. I'm using div tags to setup the structure for sections
    of my Web page. But when it comes to populating these pages with
    dynamically generated text, the height changes. Sure the table td
    cell expands, but the div surrounding the table tags DOES NOT. Here
    is the page where I am having the problem.
    http://www.fuelcellmagazine.com/story2.cfm?id=17
    Scroll down to the bottom of the page and you'll see the
    table tag overflowing past the div tag settings.
    Any suggestions?
    D

    That is quite a div soup you have there. Why so much absolute
    positioning?
    Two ticks of the enlarge text in FF and the page is
    completely broken. Your
    problem is not the div heights, it's the absolute
    positioning.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "OnDemand Junkie" <[email protected]> wrote
    in message
    news:e246jj$1fb$[email protected]..
    > Help. I'm using div tags to setup the structure for
    sections of my Web
    > page.
    > But when it comes to populating these pages with
    dynamically generated
    > text,
    > the height changes. Sure the table td cell expands, but
    the div
    > surrounding
    > the table tags DOES NOT. Here is the page where I am
    having the problem.
    >
    >
    http://www.fuelcellmagazine.com/story2.cfm?id=17
    >
    > Scroll down to the bottom of the page and you'll see the
    table tag
    > overflowing
    > past the div tag settings.
    >
    > Any suggestions?
    >
    > D
    >

  • Why export as divs vs tables?

    I have a confession to make.  I am still stuck in the world of exporting my websites out of photoshop into table formats.
    Could someone please explain why I should export as DIVs instead of tables? 
    Also, is there  a way to export a project where each layer or groups of layers is a DIV, so don't have to slice the PSD file?
    Thank you in advance for your input!!
    Micky

    Honestly, you do not know what you have been missing out on! Don't bother with the slice function ever again. Quite useless, and its existence in Photoshop should be ended asap (in my opinion).
    Better (and free): http://www.cutandslice.me/
    Other handy web related photoshop plugs:
    http://webzap.uiparade.com/
    http://css3ps.com/
    http://www.fnordware.com/superpng/
    http://guideguide.me/
    If you are on Windows, do yourself a favour, and get Color Quantizr for optimum png for web:
    http://www.softpedia.com/get/Multimedia/Graphic/Graphic-Others/Color-quantizer.shtml
    Otherwise, for mac imagealpha will have to do: http://pngmini.com/
    If, however, you are looking for a full slice replacement in Photoshop that allows for full web page output, try SiteGrinder:
    http://www.medialab.com/psd-to-html/why-sitegrinder.php
    Myself, I dislike SiteGrinder, but other like it a lot.

  • Displaying Divs as tables

    I have craeted a site usinging divs and CSS, The site appears ok on PC IE 6 and Firefox and on Mac FireFox.
    However although the site appears OK in Safari locally, when viewed from the live test server the layout goes amiss. When I then view the source code from live some of the divs have been given table tags.
    I have also checked the CSS is the same locally and live so the problem is not with the CSS. Also when I view the source code of the live pages on Mac IE there are no table tags.
    Any Clues?

    Try this way:
    LOOP AT IT_MSG INTO WA_MSG.
    "To display the Message
    MESSAGE ID wa_msg-mid TYPE wa_msg-mtype NUMBER wa_msg-num.
    "To get the Message Text
    MESSAGE ID wa_msg-mid TYPE wa_msg-mtype NUMBER wa_msg-num INTO v_string.
    ENDLOOP.
    You do not need to use any FM to get the message text. SAP provides a standard addition MESSAGE ... INTO which does the same.
    @Uday: As per your original post you have the Message Type with you in the internal table.
    @Raymond: That was cool !!! You had the patience to do that formatting
    BR,
    Suhas
    Edited by: Suhas Saha on Mar 3, 2010 3:18 PM

  • AP Div vs Tables?

    After using Dreamweaver MX for many years, I have now switched over to Dreamweaver CS5.5.  I have been busy reading help files, watching Adobe TV, and reading whatever else I can find so I can make the switch as painlessly as possible.  However, there is one thing that I am having trouble conceptualizing.  I have spent years using tables as the basic organizational structure of my web sites.  I always found utilizing tables a refreshingly simple and effective way to keep order on the page.
    Now that I am using Dreamweaver CS5.5 and gettng more deeply involved in using proper CSS from the get-go, it appears that using tables to organize data has become rather passe, and AP Div tags seem to have taken the place of tables.  Because I am so used to table structures, for some reason I still can't fully get  grip on this other concept.  Using the example I utline below, can someone try to explain this to me (the short and sweet version)?  Every time I think I've got it, I read something else and get confused again.
    For example: Using Dreamweaver MX I created a very simpe web site.  The underlying structure includes a primary table 950 pixels wide, centered on the page.  Within this primary table I nested a second table consisting of three columns.  Left and right columns are fixed in size, and the center column (main content) is not fixed and is free to resize depending on browser dictates.  The fixed columns also contain another nested table or two.
    If I were to take this same simple page and re-create it from scratch using Dreamweaver CS5.5, but using AP Div instead of tables for the underlying structure, what initial steps do I need to take to make it all come together?
    If someone can provide just a simple explanation that will help me understand this part of basic page creation using the div tags instead of tables, then it wil be greatly appreciated.  Everything else is a piece of cake.  Many thanks.

    The best way to create a web site is to use CSS rather than rables. In fact, I dare say that tables should only be used for tabular output.
    Having said that, a normal layout should not rely on absolute positioned elements. If you require more info on the why's then you can Google the subject.
    A good place to start with a CSS layout is to click Ctrl-n (windows) and the following dialog pops up
    Simply choose the layout that you want.
    Gramps

  • XML to ABAP internal table conversion

    Hi Guys,
      Via debugging,I downloaded the context of an ABAP webdynpro application into an XML file on my desktop. Now I want to use this file as an input to a FM. This is what I have done for it
    1) Used the GUI_UPLOAD fm to convert the xml file on my desktop into xstring
    2)  used transformation like this
      CALL TRANSFORMATION id
      SOURCE xml  = ls_xml_xstring
      RESULT para = lt_result.
    lt_result is of the type that the FM input expects
    step 2 does not work. I know I am missing something there. Pls tell me what it is. Its a huge file and I dont want to manually create the input.
    BR,
    Girish

    Hi,
    Have you seen this weblogs which talks about this:
    /people/r.eijpe/blog/2005/11/10/xml-dom-processing-in-abap-part-i--convert-an-abap-table-into-xml-file-using-sap-dom-approach
    /people/r.eijpe/blog/2005/11/21/xml-dom-processing-in-abap-part-ii--convert-an-xml-file-into-an-abap-table-using-sap-dom-approach
    /people/r.eijpe/blog/2006/02/19/xml-dom-processing-in-abap-part-iiia150-xml-dom-within-sap-xi-abap-mapping
    /people/r.eijpe/blog/2006/02/20/xml-dom-processing-in-abap-part-iiib150-xml-dom-within-sap-xi-abap-mapping
    Hope this helps you....
    Regards
    Nishant Malhotra

  • XML to internal table conversion within ABAP mapping class

    I am doing a ABAP mapping for file to Idoc. My requirement is to convert XML file into ABAP internal table (within ABAP mapping class). Is there any standard FM, method, transformation etc, which can be used here.
    Thanks, Dehra

    Dehra,
    Have you seen this weblogs which talks about this:
    /people/r.eijpe/blog/2005/11/10/xml-dom-processing-in-abap-part-i--convert-an-abap-table-into-xml-file-using-sap-dom-approach
    /people/r.eijpe/blog/2005/11/21/xml-dom-processing-in-abap-part-ii--convert-an-xml-file-into-an-abap-table-using-sap-dom-approach
    /people/r.eijpe/blog/2006/02/19/xml-dom-processing-in-abap-part-iiia150-xml-dom-within-sap-xi-abap-mapping
    /people/r.eijpe/blog/2006/02/20/xml-dom-processing-in-abap-part-iiib150-xml-dom-within-sap-xi-abap-mapping
    Hope this helps you....
    ---Satish

  • Temp Tables conversion

    Hi
    Can anyone help me with the exact syntax to create temp table in
    Oracle 8i in Stored Proc. Eg.
    CREATE PROCEDURE MROSiteNoVendors
    @IDCustomer INT
    AS
    SELECT DISTINCT s.IDCustomer, SiteName, Address , AddressII,
    City, State, Zip, s.IDSite
    INTO #TempTbl
    FROM Sites s LEFT JOIN rSiteVendors rSV ON s.IDSite =
    rSV.IDSite
    WHERE (s.IDCustomer = @IDCustomer)
    ORDER BY SiteName
    Update #TempTbl Set Address = '' WHERE Address Is Null
    Update #TempTbl Set City = '' WHERE City Is Null
    Update #TempTbl Set State = '' WHERE State Is Null
    Update #TempTbl Set Zip = '' WHERE Zip Is Null
    SELECT * FROM #TempTbl
    DROP TABLE #TempTbl
    null

    Hello Krish,
    See this document for Upgrade specific tasks
    [SAP NetWeaver 7.0 Business Intelligence Upgrade Specifics|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10564d5c-cf00-2a10-7b87-c94e38267742]
    Also see this thread [Upgradation from BW 3.5 to BI 7.0|Upgradation from BW 3.5 to BI 7.0;
    Thanks
    Chandran
    Edited by: Chandran Ganesan on Mar 3, 2008 10:00 PM

  • Character to table conversion

    Hi All,
    I have a string variable which has the name of a table. I want to use the contents of that table by looping at it. Is there a way to do it.
    Thanks in advance.
    Anju

    hi
    good
    example of the field symbol
    REPORT demo_field_symbols_stat_assign .
    FIELD-SYMBOLS: <f1> TYPE ANY, <f2> TYPE i.
    DATA: text(20)  TYPE c VALUE 'Hello, how are you?',
          num       TYPE i VALUE 5,
          BEGIN OF line1,
            col1 TYPE f VALUE '1.1e+10',
            col2 TYPE i VALUE '1234',
          END OF line1,
          line2 LIKE line1.
    ASSIGN text TO <f1>.
    ASSIGN num TO  <f2>.
    DESCRIBE FIELD <f1> LENGTH <f2>.
    WRITE: / <f1>, 'has length', num.
    ASSIGN line1 TO <f1>.
    ASSIGN line2-col2 TO <f2>.
    MOVE <f1> TO line2.
    ASSIGN 'LINE2-COL2 =' TO <f1>.
    WRITE: / <f1>, <f2>.
    The output is:
    Hello, how are you? has length 20
    LINE-COL2 = 1,234
    thanks
    mrutyun^

  • Automate spatial Table conversion process

    Hi,
    I am wondering how I can combine multiple scripts and what exactly I have to create( SP or simply script). I am able to run it seperately. My Script is follows
    --Find Spatial Index
    Select * from User_indexes
    where table_name= 'TEST'
    Drop abc_geometry_idx force
    update Test
    set geometry.sdo_srid=myvalue
    create index ----
    In my script Table name and spatial index name is changing. I am wondering how I can set it at run time to automate the process.
    your help is appreciated.
    Thanks
    Nancy

    Hi Nancy
    Here is something I just sribbled together from some older scripts. There might be some better and prittier PL/SQL ways, but should do the trick.
    I asume the srid does not change in your user_sdo_geom_metadata. this is set hardcoded below with your_srdi what you need to set yourself.
    Good luck
    Luc
    begin
    declare
    v_sql varchar2(1000);
    begin
    for rec in (select table_name, column_name from user_sdo_geom_metadata)
    loop
    for rec2 in
    (select index_name from from user_sdo_index_info where table_name = rec.table_name and column_name = rec.column_name)
    v_sql := 'drop index '||rec2.index_name || ' force' ;
    execute immediate v_sql;
    v_sql := 'update ' || rec.table_name || ' a set a.' || rec.column_name || '.sdo_srid=your_srid';
    execute immediate v_sql;
    v_sql :=  'create index ' || rec2.indexname || 'ON ' || rec.table_name || '(' || rec.column_name || ') INDEXTYPE IS MDSYS.SPATIAL_INDEX';
    execute immediate v_sql;
    commit;
    end loop;
    end loop;
    exception
    when others then
    dbms_output.put_line('Exception:'||sqlerrm);
    end;
    end;
    /

Maybe you are looking for

  • Can't sign into Adobe cloud desktop app and can't download apps to install.

    I was able to download the Adobe Cloud app to my desktop, but it won't let me sign in, every time I try it tells me I've been signed out. I have uninstalled and re-installed it over and over again. I believe this leads to the other problem I am havin

  • How can we limit uploading file size in portal.

    we have a feature where customers can upload there files, we use portals for uploading files, form which has the file type is posted to a stored procedure and which in turns calls the wwv_things.saveitem. we need to restrict a file size and file type

  • Unable to launch SAPinst of SWPM 1.0

    Hello Expert, I am trying to run the sapinst of SWPM 1.0 Package but it is stuck with the below mentioned logs Program is starting... Please wait! SAPinst build information: abi version:   722 make variant:  720_REL build:         1501460 compile tim

  • Highlight row

    all, i'm using the "Background color for current row" property in the report template to define the background color of rows when the mouse is over it. is there a way to define the color of the font for the highlighted row also? thanks in advance, pa

  • FM to read data .

    hello SDN friends The need is to read data from the buffer in t-code BP I would like to have a check in t-code bp when the user enters the address certain condtions should meet else a message will be fired. Which FM allows me to read the user entries