New table format in FM 8?

Why can't I define a new table format that includes static text and a static graphic in structured Frame 8? I can create a new table format, but it doesn't capture the static text that I defined. I need to create a NOTE table and a WARNING table format.

Thank you, Russ.
The autonumbering feature works well to set up the start of a note; for example, "CAUTION!" or "WARNING!," but I'd like to define several static notes that we use all the time. For example, "CAUTION!" Electrostatic Discharge (ESD) can damage sensitive components. Use ESD-protective devices and procedures," and autonumbering isn't designed to place long text like that. It doesn't wrap it.
I tried to set up new table format by setting up a new icon paragraph style and a new text paragraph style (I drew a graphic frame on the reference page and placed a text box inside it and typed my long note. Then I set up a paragraph style based on that graphic frame ("frame above feature"). I then drew a two-column table, placed the icon paragraph in the first column and the graphic frame (with text) paragraph in the second column and saved it as a new table format. But when I insert that table format, I icon displays in both columns and the text is nowhere to be found.
At your suggestion, in the EDD, I did set up some new note types in the Note element and defined prefixes for each. In my FrameMaker topic file, I then added the note element and chose the esd attribute type, for example, and got my full note text to display. However, I also would like to display an icon to the left of my notes (warning, ESD, or radiation), and I don't know if I can set up something in my prefix in the EDD to help me do that?
graymatter

Similar Messages

  • Date format accepted in new table but not in active table for DSO, BI 7.0

    Hi All,
    Need help from the experts, i was trying to load Flate file data in CSV(Coma separated) and cell type general for dates(yyyymmdd). everything was fine i have a routine for new fields in DSO for Fiscal week and Fiscal Quater which is calculating based on my Flate file date i.e delivery date(yyyymmdd).
    The New table of DSO means before activation everything was fine and all the logics and mappings working for the Fiscal week and Fiscal Quater and that can be visible, But after activation the same only the Fiscal week and Fiscal Quater is not showing data, its comming as blank and '000000' for all records.
    As the Fiscal week and Fiscal Quater is maintained as custmised InfoObject with data type NUM.
    Can you tell what i am missing, because i tried with different cell type also in CSV File.
    Thanks and Regards,
    Taps
    Edited by: Taps on Oct 1, 2010 1:21 PM

    Resolved...!!!
    Follow the link ...
    /people/maheshsingh.mony5/blog/2010/09/24/update-behavior-of-end-routine-in-transformations
    Regards,
    Taps
    Edited by: Taps on Oct 1, 2010 2:02 PM

  • When I highlight my bank transactions and paste them on word, they do not retain the table format, why? answer in laymens terms please. I'm new to FF.

    I Have Windows XP and I use Microsoft Word to make a copy of my bank transactions. With IE the copy/paste always retains the table format. With FF it prints out as a continuing line.
    I had to open up IE to perform the action there.

    You can look at this extension:
    *Dafizilla Table2Clipboard: https://addons.mozilla.org/firefox/addon/1852

  • How can I create a new table in a MySQL database in MVC 5

    I have an MVC 5 app, which uses MySQL hosted in Azure as a data source. The point is that inside the database, I want to create a new table called "request". I have already activated migrations for my database in code. I also have the following
    code in my app.
    Request.cs: (inside Models folder)
    public class Request
    public int RequestID { get; set; }
    [Required]
    [Display(Name = "Request type")]
    public string RequestType { get; set; }
    Test.cshtml:
    @model Workfly.Models.Request
    ViewBag.Title = "Test";
    <h2>@ViewBag.Title.</h2>
    <h3>@ViewBag.Message</h3>
    @using (Html.BeginForm("SaveAndShare", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
    @Html.AntiForgeryToken()
    <h4>Create a new request.</h4>
    <hr />
    @Html.ValidationSummary("", new { @class = "text-danger" })
    <div class="form-group">
    @Html.LabelFor(m => m.RequestType, new { @class = "col-md-2 control-label" })
    <div class="col-md-10">
    @Html.TextBoxFor(m => m.RequestType, new { @class = "form-control", @id = "keywords-manual" })
    </div>
    </div>
    <div class="form-group">
    <div class="col-md-offset-2 col-md-10">
    <input type="submit" class="btn btn-default" value="Submit!" />
    </div>
    </div>
    @section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
    HomeController.cs:
    [HttpPost]
    public ActionResult SaveAndShare(Request request)
    if (ModelState.IsValid)
    var req = new Request { RequestType = request.RequestType };
    return RedirectToAction("Share");
    The point is that, I want the user to fill the form inside the Test view and click submit, and when the submit is clicked, I want a new entry in the new table to be created. But first of course I need to create the table. Should I create it using SQL query
    through MySQL workbench? If yes, then how can I connect the new table with my code? I guess I need some DB context but don't know how to do it. If someone can post some code example, I would be glad.
    UPDATE:
    I created a new class inside the Models folder and named it RequestContext.cs, and its contents can be found below:
    public class RequestContext : DbContext
    public DbSet<Request> Requests { get; set; }
    Then, I did "Add-Migration Request", and "Update-Database" commands, but still nothing. Please also note that I have a MySqlInitializer class, which looks something like this:
    public class MySqlInitializer : IDatabaseInitializer<ApplicationDbContext>
    public void InitializeDatabase(ApplicationDbContext context)
    if (!context.Database.Exists())
    // if database did not exist before - create it
    context.Database.Create();
    else
    // query to check if MigrationHistory table is present in the database
    var migrationHistoryTableExists = ((IObjectContextAdapter)context).ObjectContext.ExecuteStoreQuery<int>(
    string.Format(
    "SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = '{0}' AND table_name = '__MigrationHistory'",
    // if MigrationHistory table is not there (which is the case first time we run) - create it
    if (migrationHistoryTableExists.FirstOrDefault() == 0)
    context.Database.Delete();
    context.Database.Create();

    Hello Toni,
    Thanks for posting here.
    Please refer the below mentioned links:
    http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
    http://social.msdn.microsoft.com/Forums/en-US/3a3584c4-f45f-4b00-b676-8d2e0f476026/tutorial-problem-deploy-a-secure-aspnet-mvc-5-app-with-membership-oauth-and-sql-database-to-a?forum=windowsazurewebsitespreview
    I hope that helps.
    Best Regards,
    Sadiqh Ahmed

  • Create a new table style based on an existing table in a document

    Hi,
    In a document I'm working on, there is a specific table. It is made in the past by a colleague, and it has a very suitable format.
    Therefore I would like to use the layout of this table on all future tables in my document (or even in others).
    Is there an option to select my table, and create a new table style with it, so that I can use it over and over again? That would be very helpful.
    I'm working in MS Word, MS Office Professional Plus 2010, on a Windows 7 64-bit OS.
    Best regards, Sietske
    Ps.: I know
    a question like this was already asked, but the answer was quite dissatisfying (because it was not answering the question)
    Pps: Note that I'm now creating a new table style from scratch, so an answer to the above question is not that urgent, but it would still be nice to know for future use.

    you can  use format painter
    i hope that you already know about it.
    Nope, not the right answer. With Format Painter, you can copy the format of the table, but you can't create a new Table Style with it. I am looking for a solution as well.

  • SAP Script - How to write data in a table format.

    Hi All,
    In my requirement, I need to show item data in a table format ( In a box, with horizental & veritcal lines.
    can somebody pl give me a small code to do this.
    Regards,
    Hardik

    Hi
    SCRIPT BOXES
    POSITION WINDOW
    SIZE WIDTH '160' MM HEIGHT '140' MM
    BOX FRAME 10 TW
    Box
    BOX HEIGHT '11' MM WIDTH '160' MM FRAME 10 TW INTENSITY 35
    linessssssss
    BOX XPOS '20' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '45' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '80' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '120' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    Boxes, Lines, Shading: BOX, POSITION, SIZE
    Use the BOX, POSITION, and SIZE commands for drawing boxes, lines, and shading to print particular windows within a form or passages of text within a window in a frame or with shading.
    The SAP printer drivers that are based on page-oriented printers (the HP LaserJet driver HPL2, the Postscript driver POST, the Kyocera Prescribe driver PRES) employ these commands when printing. Line printers and page-oriented printers not supported in the standard ignore these commands. You can view the resulting printer output in the SAPscript print preview.
    Syntax:
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    BOX Command
    Syntax
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
    XPOS, YPOS
    Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    WIDTH
    Width of the box. Default: WIDTH value of the SIZE command.
    HEIGHT
    Height of the box. Default: HEIGHT value of the SIZE command.
    FRAME
    Thickness of frame.
    Default: 0 (no frame).
    INTENSITY
    Grayscale of box contents as %.
    Default: 100 (full black)
    Measurements: You must specify decimal numbers as literal values (like ABAP numeric constants) by enclosing them in inverted commas. Use the period as the decimal point character. See also the examples listed below.
    Units of measurement: The following units of measurement may be used:
    TW (twip)
    PT (point)
    IN (inch)
    MM (millimeter)
    CM (centimeter)
    LN (line)
    CH (character).
    The following conversion factors apply:
    1 TW = 1/20 PT
    1 PT = 1/72 IN
    1 IN = 2.54 CM
    1 CM = 10 MM
    1 CH = height of a character relative to the CPI specification in the form header
    1 LN = height of a line relative to the LPI specification in the form header
    /: BOX FRAME 10 TW
    Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
    /: BOX INTENSITY 10
    Fills the window background with shading having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
    POSITION Command
    Syntax
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started, the POSITION value is set to refer to the upper left corner of the window (default setting).
    Parameters: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words, as a value that specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
    XORIGIN, YORIGIN
    Origin of the coordinate system.
    WINDOW
    Sets the values for the left and upper edges to match those of the current window (default setting).
    PAGE
    Sets the values for the left and upper edges to match those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
    /: POSITION WINDOW
    Sets the origin for the coordinate system to the upper left corner of the window.
    /: POSITION XORIGIN 2 CM YORIGIN '2.5 CM'
    Sets the origin for the coordinate system to a point 2 cm from the left edge and 2.5 cm from the upper edge of the output page.
    /: POSITION XORIGIN '-1.5' CM YORIGIN -1 CM
    Shifts the origin for the coordinates 1.5 cm to the left and 1 cm up.
    SIZE Command
    Syntax
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    Effect: Sets the values of the WIDTH and HEIGHT parameters used in the BOX command. When a window is first started, the SIZE value is set to the same values as the window itself (default setting).
    Parameters: If one of the parameter specifications is missing, then no change is made to the current value of this parameter. If a parameter value does not have a leading sign, then its value is interpreted as an absolute value. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value.
    WIDTH, HEIGHT
    Dimensions of the rectangle or line.
    WINDOW
    Sets the values for the width and height to the values of the current window (default setting).
    PAGE
    Sets the values for the width and height to the values of the current output page.
    /: SIZE WINDOW
    Sets WIDTH and HEIGHT to the current window dimensions.
    /: SIZE WIDTH '3.5' CM HEIGHT '7.6' CM
    Sets WIDTH to 3.5 cm and HEIGHT to 7.6 cm.
    /: POSITION WINDOW
    /: POSITION XORIGIN -20 TW YORIGIN -20 TW
    /: SIZE WIDTH +40 TW HEIGHT +40 TW
    /: BOX FRAME 10 TW
    A frame is added to the current window. The edges of the frame extend beyond the edges of the window itself, so as to avoid obscuring the leading and trailing text characters.
    <REMOVED BY MODERATOR>
    Regards
    Anji
    Edited by: Alvaro Tejada Galindo on Jul 8, 2008 10:59 AM

  • HELP! Displaying results from a database in table format

    I'm developing a web application that will use a considerable number of database queries that need to be displayed back to the web-browser in HTML table format.
    I have been told that that result sets can allow tables to be built automatically without having to write the same loop and display code over and over.
    So far I have a HtmlResultSet class as follows:
    import java.sql.*;
    public class HtmlResultSet {
    private ResultSet rs;
    public HtmlResultSet(ResultSet rs) {
    this.rs = rs;
    public String toString() {  // can be called at most once
    StringBuffer out = new StringBuffer();
    // Start a table to display the result set
    out.append("<TABLE>\n");
    try {
    ResultSetMetaData rsmd = rs.getMetaData();
    int numcols = rsmd.getColumnCount();
    // Title the table with the result set's column labels
    out.append("<TR>");
    for (int i = 1; i <= numcols; i++) {
    out.append("<TH>" + rsmd.getColumnLabel(i));
    out.append("</TR>\n");
    while(rs.next()) {
    out.append("<TR>"); // start a new row
    for (int i = 1; i <= numcols; i++) {
    out.append("<TD>"); // start a new data element
    Object obj = rs.getObject(i);
    if (obj != null)
    out.append(obj.toString());
    else
    out.append(" ");
    out.append("</TR>\n");
    // End the table
    out.append("</TABLE>\n");
    catch (SQLException e) {
    out.append("</TABLE><H1>ERROR:</H1> " + e.getMessage() + "\n");
    return out.toString();
    I also have created a class that includes an instance of the class above to display the results, as follows:
    import java.io.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class customerLookup2 {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
    res.setContentType("text/html");
    PrintWriter out = res.getWriter();
    try{
    Class.forName("org.gjt.mm.mysql.Driver");
    con = DriverManager.getConnection("jdbc:mysql://localhost:3306/sandywalker");
    out.println("<html>");
    out.println("<head><title> Users</title></head>");
    out.println("<body> Customers");
    HtmlResultSet result = new HtmlResultSet ("SELECT * FROM USERS");
    out.println("</body></html>");
    catch(ClassNotFoundException e ) {
    out.println("Couldn't load database driver: " + e.getMessage());
    catch(SQLException e) {
    out.println("SQLExeption caught: " +e.getMessage());
    finally {
    try {
    if (con !=null) con.close();
    catch (SQLException ignored) { }
    I keep getting a compile error "customerLookup2.java": Error #: 300 : constructor HtmlResultSet(java.lang.String, java.sql.Connection) not found in class HtmlResultSet at line 42, column 34".
    Can anyone shed any light on this.

    Looks like you are passing a string (SELECT * FROM USERS) instead of passing a ResultSet. Try passing a Resultset.

  • How to output to a file in table format?

    I would like to output my result in table format, for example:
    1, 305,134
    2, 245,98
    1, 34,204
    3, 205,315 etc.
    Any ideas how to do it?
    I have tried PrintWriter class and it work but when I used JFileChooser to choose to load an image file, there is no file output.

    Hi !
    Do something like this :
    try{
    FileWriter fw = new FileWriter("youroutputfilename.txt");
    BufferedWriter buff = new BufferedWriter(fw);
    for(int i=0; i < [end of your loop]; i++){
    buff.write(data1+";"+data2+";"+data3+";"+.....);
    buff.close();
    }catch(IOException e){System.out.println("couldn't write the file");}
    I hope it helps .
    stephane

  • Smartform output in news paper format

    Hi All,
    How to print the data in the main window of a smartform in news paper format like First colum some data and second colum some data(after filling the first column data).
    Regards
    mahesh

    Hi,
    This can be done using table nodes with appropriate line types and table widths designed as per the news paper format.
    Also in what kind of structured way the data is passed onto the smartform interface matters here.
    Suppose you have the data required for the first column in a single table then use appropriate table width as required for the first column of the news paper format.
    Then adjacent to it use another table storing the data required for the second column.
    This way you can display the data in a news paper format.
    Regards,
    Ram

  • Do I need to make a new table?

    I pasted in a small table from excel.
    Three columns and 10 rows.
    I now need to add rows but don't know if I can. Can I, or do I have to start a new table from scratch. thanks.

    I don't recommend pasting formatted content from MS Office into your HTML pages because the code often carries MS Proprietary styles which you don't want in your page.  Much better to create tables in DW.
    When copying & pasting content from other apps use DW Edit menu > Paste Special >  Text Only.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Get-rid of the format we get using Get-ADuser in a CSV. Send CSV data in an email in table format

    Hi,
    I am using get-ADuser in order to extract a few AD attributes of some users. I export the users and their respective attributes to a CSV. However, the output in CSV i get has the following format in each cell for its AD attribute. 
    @{description=<Value>} or @ { info=<Value>}
    I have tried to use Expandproperty switch in order to get rid of it but it does not accept null values and hence if a user has no value for a said attribute, the previous value is copied for that user too. However, without expand property it gives me the
    above format in the output.
    $Desc = Get-ADUser $Username -Properties description | select description
    I would like the cells to contain only values and not this format along.
    Also, once I have the CSV with values I would also like to copy the values from CSV in an email in the form of a TABLE. I have been able to copy the content in an email using the following however, this in not in a table format. 
    $mail = Import-Csv $newlogonfile | Out-String
    Please HELP!

    Yes I am already using Export-Csv but still getting the same kind of format in output :-
    $Username = $Event.Properties[5].Value
                $Title_var = get-aduser $Username -properties Title | select Title
           $Ofc_phone = get-aduser $Username -Properties OfficePhone | select OfficePhone
           $Info_var = get-aduser $Username -properties info | select info
           $Display_Name = get-aduser $Username -properties DisplayName | select DisplayName
                $Mail = Get-ADUser $Username -Properties Mail | select Mail
           $Desc = Get-ADUser $Username -Properties description | select description
            $Props = @{ 
                    User = $Event.Properties[5].Value;
                    TimeCreated = $Event.TimeCreated;
                    LogonType = $Event.Properties[8].Value;
                    DCName = $Event.MachineName;
    Workstation_address = $Event.Properties[18].Value;
    Title = $Title_var;
    OfficePhone = $Ofc_phone;
    Info = $Info_var;
    DisplayName = $Display_Name;
            Description = $Desc;
           EMail = $Mail
                $LogonRecord = New-Object -TypeName psobject -Property $Props
                $Result += $LogonRecord
    $Result | Export-Csv -Path $logFile -append -UseCulture -NoTypeInformation # Log it to CSV
    OUTPUT has values in this format in the CSV :-
    @{info=} @{description=abc} @{DisplayName=} @{Officephone=}
    @{Mail=[email protected]}

  • Importing XML destroys tables formatting

    Hi!
    I have an xml file containing my document translated into another language. When I import this into my Indesign CS4 document, the info in the tables, although it is imported correctly, removes my alternating row fills.
    I have checked the origin xml file, it contains no info about alternating row fills, neither does the new xml document. So Indesign decides to scrap it by itself.
    Question is, is there anything I can do to stop it from doing this, or otherwise simply restore the tables design so I don't have to manually go in and fix all tables from scratch?
    (The tables part were tagged using the autotag feature)
    Best regards
    Kristian

    Did you use a table style?
    I don't know much about XML, but I suspect if you want table formatting to be preserved it would need to be defined as a style.
    Peter

  • Creating a new table next to an existing one

    I have attached the table I created...(I'm a
    beginner....forgive me for being simplistic in design). I want to
    create a separate table for "Friday" right next to the existing
    table. How do i get the new table to align to the right of the
    existing table? I tried just extending the table- that is, adding
    rows/columns so that I could then arrange it to look like a
    separate table, but couldn't get it to work....lost in "format
    hell."
    I know it must be easy....
    Also....why can't i seem to add or delete cells from this
    table?! There is some formatting error I'm making that I can't
    understand.
    thanks!

    To select a whole table, click in it in Design view. Then
    look at the Tag
    Selector bar. Click on the right-most <table>. You've
    just selected an
    entire table. Cut it from the page with Ctrl-X. Then click in
    the outer
    table's left cell, and paste the cut table in with Ctrl-V.
    Like that.
    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
    ==================
    "bj nick" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thanks for your response.
    >
    > When I try this, the entire table is "cut." I've tried
    it several ways to
    > no
    > avail. Also, when I select cells to delete, they will
    not delete. I will
    > select
    > a row of unused cells, and can't delete them. I don't
    get it.
    >
    > Here is 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=iso-8859-1" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > .style10 { font-size: 18px;
    > font-weight: bold;
    > }
    > .style12 {font-size: 18px}
    > .style15 {color: 18; font-size: 18px; }
    > .style16 {font-size: 18}
    > .style3 {color: 18}
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <table width="674" border="0">
    > <tr>
    > <td width="615"><table width="578"
    border="2">
    > <tr>
    > <td width="130" bgcolor="#66FF00"
    class="style3"><div
    > align="center"
    > class="style10">Monday </div></td>
    > <td width="127" bgcolor="#66FF00"
    class="style3"><div
    > align="center"
    > class="style10">Tuesday</div></td>
    > <td width="137" bgcolor="#66FF00"
    class="style3"><div
    > align="center"
    > class="style10">Wednesday</div></td>
    > <td colspan="2" bgcolor="#66FF00"
    class="style3"><div
    > align="center"
    > class="style10">Thursday</div>
    > <div align="center"
    class="style10"></div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"
    class="style15"><div
    > align="center">First Bell </div>
    > <div align="center"></div>
    > <div align="center"></div>
    > <div align="center"></div>
    > <div align="center"></div></td>
    > </tr>
    > <tr>
    > <td bgcolor="#FFCC00" class="style3"><div
    align="center"
    > class="style12">Attendance
    / </div></td>
    > <td bgcolor="#FFCC00" class="style3"><div
    align="center"
    > class="style12">Homework check-in /
    </div></td>
    > <td colspan="3" bgcolor="#FFCC00"
    class="style3"><div align="left"
    > class="style12">Class business / Journals
    </div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"
    class="style3"><div
    > align="center"
    > class="style12">Five - a - Day
    </div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"
    class="style3"><div
    > align="center"
    > class="style12">Reading</div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"
    class="style3"><div
    > align="center"
    > class="style12">Math</div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"><div
    align="center"
    > class="style12">Recess</div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"><div
    align="center"
    > class="style12">Language Arts </div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"><div
    align="center"
    > class="style12">ELD (English Language
    Development)</div></td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"><div
    align="center"
    > class="style12">Lunch</div></td>
    > </tr>
    > <tr>
    > <td bgcolor="#FFCC00">Science/Soc. Studies
    </td>
    > <td bgcolor="#FFCC00">Science/Soc.
    Studies</td>
    > <td bgcolor="#FFCC00">Science/Soc.
    Studies</td>
    > <td width="147" bgcolor="#FFCC00">Science/Soc.
    Studies</td>
    > <td width="1"
    bgcolor="#FFCC00"> </td>
    > </tr>
    > <tr>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > </tr>
    > <tr>
    > <td colspan="5" bgcolor="#FFCC00"><div
    align="center"><span
    >
    class="style16">Dismissal</span></div></td>
    > </tr>
    > <tr>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > </tr>
    > <tr>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > </tr>
    > <tr>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > <td bgcolor="#FFCC00"> </td>
    > </tr>
    > <tr>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > </table></td>
    > <td width="49"> </td>
    > </tr>
    > <tr>
    > <td> </td>
    > <td> </td>
    > </tr>
    > </table>
    > <p> </p>
    > <p> </p>
    > </body>
    > </html>
    >
    >

  • Import to new table large excel spread sheet

    Hi
    I am trying to import a large excel spreadsheet to a new table. Using 1.5.4 with patch 2 applied. If excel is "small" all goes okay. If excel workbook is "large" I get to step 1 of 4 but no coumns show up. Also no workbook names. Cannot go any futher.
    Oh yeas I am using windows XP on a novel Network. All current patches applied
    What gives. Is there a setting not quite right.
    Thanks I am trying to learn.

    Apache POI is the Java API To Access Microsoft Format Files. Can you let me know what you see in the command window when you attempt to run sqldeveloper from command window and try to import your xls? I understand the sensitivity of the xls. No problem. Can you provide a general description of the nature of the cell values in each of the 84 columns that you have so that we can attempt to simulate you xls?

  • Create a new table using repeating rows

    Hi all,
    My team members are entering data into the below shortened table.
    I want to import this table to my model (a different excel file), but I need to manipulate the data in order to use it.
    The team members table (MaterialTypeTbl) looks like:
    For every Material Type (column B) they enter all the suppliers that can work with us. Suppliers are split by *.
    [Note: the * is a symbol I requested them to use, because supplier names can contain commas (which was my preferred option) and I thought that it can create confusion when extracted by query formulas. So basically you can change the * to anything that
    can promote the solution]
    My ideal new table will look like:
    Which is repeating the row, as the number of suppliers that we have in the "supplier" cell.
    <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="0f146976-cd66-42bf-a9a9-efb81fa43ab7" id="61366336-c5f8-402a-877c-9c08b112bd3d">i.e.</gs>: material 1 (Metal) had 3 suppliers, so in the new table I
    have 3 rows with only one name in each "supplier" cell.
    The purpose is to later on use the new table for pivots.
    The source table can have more columns + I need to have the data about the extracted file (file name, item name, date modified, date created, date accessed)
    I have a folder which contains several files like this (with one sheet and one table in the same format as the other) and I need to extract all and consolidate to one table in my power pivot model with the desired formation.
    Appreciate any help!
    עמית

    It looks as if anything can go wrong- it will :)
    <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="bf577f31-b5b2-4e33-8295-b503a9a6b597" id="31c7f26a-d1ac-4302-ab8a-934ec6378fda">let</gs>
        Source = Folder.Files("C:\Users\amendels\Desktop\MI Data Warehouse\Material Type"),
        #"Removed Other Columns" = Table<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="d16c857e-92ce-49fd-b50d-234fb6306a78" id="00650cfc-ee61-400b-bce8-93f3d08e806c">.</gs><gs class="GINGER_SOFTWARE_mark"
    ginger_software_uiphraseguid="d16c857e-92ce-49fd-b50d-234fb6306a78" id="05a88f4a-cc9a-412e-839a-a3eee9793fc0">SelectColumns</gs><gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="d16c857e-92ce-49fd-b50d-234fb6306a78"
    id="ec79ede6-2a0b-449d-8733-e8b743d0ca0b">(</gs>Source<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="d16c857e-92ce-49fd-b50d-234fb6306a78" id="833506c2-9e6b-4877-85db-e59e0106a415">,</gs>{"Name",
    "Folder Path"}),
        #"Merged Columns" = Table<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed" id="19ec4b4d-02d5-4779-b1d8-70e054a55169">.</gs><gs class="GINGER_SOFTWARE_mark"
    ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed" id="75be0e50-829a-44f8-bce0-c5c650ef25b1">CombineColumns</gs><gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed"
    id="4c6d962d-3323-4a2d-af5d-deb764c514cd">(</gs>#"Removed Other Columns"<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed" id="3946184a-730d-40e8-91ea-fd2d81275202">,</gs>{"Folder
    Path", "Name"}<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed" id="c6268911-7d6e-43c5-8814-bad897f5a05a">,</gs>Combiner<gs class="GINGER_SOFTWARE_mark"
    ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed" id="dccb45ac-42e5-4a27-a150-c7d78d286814">.</gs>CombineTextByDelimiter<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed"
    id="edb72e5c-842a-4887-be04-b12fea521766">(</gs>"", QuoteStyle<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="37c10c24-bce5-4d43-835c-46ed9cf2d5ed" id="0ab10849-2fe6-4841-a97a-84732c546fc2">.</gs>None),"path"),
        #"Added Custom" = Table<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="230c9450-a9fa-4694-ba10-df8a0eefbcfa" id="f66eebe2-c524-4cee-91df-e08bd9441bd0">.</gs>AddColumn<gs class="GINGER_SOFTWARE_mark"
    ginger_software_uiphraseguid="230c9450-a9fa-4694-ba10-df8a0eefbcfa" id="2661e215-822d-4461-ae1a-38ddaffdcfc2">(</gs>#"Merged Columns", "Custom", each <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="230c9450-a9fa-4694-ba10-df8a0eefbcfa"
    id="c471a6f8-de61-44ec-a4eb-4fe5879b86b3">getWorkbook</gs><gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="230c9450-a9fa-4694-ba10-df8a0eefbcfa" id="beb17741-a1bd-45ee-8770-667b6a429b31">(</gs>[path])),
        #"Expand Custom" = Table<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="7656e752-6806-471e-aac1-aca2acc34672" id="6ab7b6f5-e01e-4969-8f22-ec937a2e8f68">.</gs>ExpandTableColumn<gs
    class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="7656e752-6806-471e-aac1-aca2acc34672" id="064c2ab1-0322-4b2d-9734-86b2fca4d3dd">(</gs>#"Added Custom", "Custom", {"Column1", "Column2",
    "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9", "Column10", "Column11", "Column12"}, {"Column1", "Column2",
    "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9", "Column10", "Column11", "Column12"}),
        #"Removed Columns" = Table<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="73ce11cc-0be6-423c-9cd7-996ab0d86c3e" id="875308f8-4505-42bc-bcc4-be136c0d8b99">.</gs><gs class="GINGER_SOFTWARE_mark"
    ginger_software_uiphraseguid="73ce11cc-0be6-423c-9cd7-996ab0d86c3e" id="43a91980-9dd1-40da-84d4-4c2700db63ed">RemoveColumns</gs><gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="73ce11cc-0be6-423c-9cd7-996ab0d86c3e"
    id="d8ecfee3-de63-4dd9-a916-ebdc7ab155f3">(</gs>#"Expand Custom"<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="73ce11cc-0be6-423c-9cd7-996ab0d86c3e" id="70479dcb-a6a3-44ac-a329-476bd6c2f216">,</gs>{"path"}),
        #"Removed Duplicates" = Table<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="42c1a334-cff4-432d-8d41-237fbb6cfa2b" id="4efdfd6c-b953-46bd-a673-d9f93ed4fb64">.</gs>Distinct<gs
    class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="42c1a334-cff4-432d-8d41-237fbb6cfa2b" id="4108b4fd-3cbb-44ff-8f51-3e2f51e9b1e5">(</gs>#"Removed Columns", {"Column1"}),
        #"First Row as Header" = Table<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="e97a3de6-d2de-4872-b8f1-7b26dbacacae" id="9b321e4e-0fbb-40be-9953-5918b7b2c363">.</gs>PromoteHeaders<gs
    class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="e97a3de6-d2de-4872-b8f1-7b26dbacacae" id="c566d7bd-ca67-457e-9698-dcaf9cf7ef90">(</gs>#"Removed Duplicates")
    <gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="7344bfb8-a967-407a-8229-646035c0264c" id="2719b7a9-2b95-4862-8054-67f5da25353a">in</gs>
        #"First Row as Header"

Maybe you are looking for

  • CALL_FUNCTION_FORMAT_NOT_SUP

    hi, i am getting below dump for sapsys uerid.  i attached dump details also.kindly help me out resole this dump. ABAP/4 runtime error   CALL_FUNCTION_FORMAT_NOT_SUP        Occurred on     07.07.2009 at 15:15:18 RFC data format not supported. What hap

  • Kensington 70W AC/DC adapter?

    I just got a new 70W Kensington AC/DC adapter to use with my G4/1.67 15" Hi-Res. It powers the computer okay and charges the battery, but I was surprised to find that when I was on battery power and the battery ran out, when I plugged the Kensington

  • IPhoto Book thumbnail...why is there a grey spot showing?

    I just finished building a iPhoto Book. My photos that I used are high resolution photographs. No sign of any low resolution whatsoever. When I scroll through the thumbnails of the book, there is a page (which has three high res photos) where the top

  • Migrated to CF9 and now have CFCACHE problems

    I have been page caching on my site for years using this code: <cfcache timespan="#CreateTimespan(10, 0, 0, 0)#" directory="D:/websites/mysite/cache/" stripWhiteSpace="true"> This worked great -  it would keep a cached copy in the cache directory and

  • Can't load cs2 on windows 8

    Was running photoshop cs2, got new computer running windows 8, can't load old software and can't afford new upgraded software, any versions I can download for free or CHEAP?