Layers, tables and Foxfire

I am using Dreamweaver 8 and am having trouble with layers
and tables in Foxfire. For example my page at
http://www.ouachitamaps.com/Eagle%20Rock.html
is fine in IE6. As you can see, I have a table structure and put
layers in them to hold text. In Foxfire, the layers extend below
the bottom of the table. Any suggestion about how to fix this.
Maybe there is another way to get this design without layers, but I
am a novice and this was what I was able to figure out (I am
intimadated by css).

Layers or absolutely positioned divs should *never* go inside
a table, hence
all your problems.
There is no need whatsoever for that layout of your page to
be using layers.
Insert the text directly into a table cell, that will contain
your text with
no overflow. You will need to nest some tables, so that the
table doesn't
expand incorrectly however when you insert content into the
left or right
cells.
This is a quick and dirty example. I've given the outer
tables a black
border and centered each table in the browser (personal
preference) Other
styles I've used I wouldn't normally I'd control it by css,
but as you are a
beginner, this should get you started until you learn some
basic css for
yourself. :)
Copy and paste the following code into a new DW window and
you'll see how
I've set it all up. 1 table for the top graphic and a couple
of nested
tables within an outer table for your content area and
another separate
table for footer. I've set each table at 955px wide to
accomodate your
header image... plus a bit extra for padding . No layers in
sight :-)
<!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=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color:#FFFFFF;
/* gives all tables a 1px black border */
.outertable {border: 1px solid black; margin-bottom: 5px;}
table td {padding: 4px;} /* gives some padding to each table
cell */
-->
</style>
</head>
<body>
<table border="0" align="center" cellpadding="0"
cellspacing="0"
class="outertable">
<tr>
<td><a href="/index.html"><img
src="
http://www.ouachitamaps.com/picture_library/Hiking%20Trail%20Banner.jpg"
width="954" height="114" border="0"
/></a></td>
</tr>
</table>
<table width="955" border="0" align="center"
cellpadding="0" cellspacing="0"
class="outertable">
<tr>
<td valign="top"><table border="0" cellpadding="0"
cellspacing="0">
<tr>
<td valign="top"><img
src="
http://www.ouachitamaps.com/picture_library/Eagle%20Rock/Eagle%20Rock%20Map%20East.jpg"
width="300" height="470" vspace="5" />
<img
src="
http://www.ouachitamaps.com/picture_library/Eagle%20Rock/Eagle%20Rock%20Map%20West.jpg"
width="300" height="470" vspace="5" />
<p>More pictures in this cell</p></td>
</tr>
</table></td>
<td width="100%" valign="top"><table width="100%"
border="0" align="center"
cellpadding="0" cellspacing="0">
<tr>
<td><h1>Eagle Rock Loop
</h1>
<p>A 26.8 mile loop through the Ouachita Mountains of
Arkansas made up of
three trail, the Little Missouri, Athens-Big Fork and Viles
Branch Trail.
</p>
<p><strong>The Maps: </strong>The Eagle
Rock Loop is comprised of two maps,
east and west. They are nominal 1:24,000 based on USGS 7.5
minute
quadrangle topographic maps and printed in color on 11x17,
&quot;Rite in the
Rain” all weather writing paper. The loop was mapped
with a WAAS enabled
GPS and is drawn in three colors to designate the three
trails. Also shown
is the Winding Stair scenic area and Eagle Rock Vista. Other
features
include trailheads, segment mileage, general directions to
park, waypoints
and waypoint coordinates. </p>
<p><strong>The Hike:</strong> The Eagle
Rock Loop just may be the best hike
in the Ouachita Mountains, combining rugged hill climbs
though the mixed
hardwood and pine forest with strolls along crystal clear
streams. The loop
is made of three trails and, with 5 trailheads, offers a
multitude of hiking
options. The hardwoods in this section of the Ouachita
National Forest are
oak with some maple. The pines are short leaf and loblolly.
In the winter
the smaller but evergreen holly trees are a striking contrast
to the gray
brown of the forest floor.</p>
<p>This trip starts near the north end of the Highway
369 at the Albert Pike
Recreation Area. The recreation area has a campground and
showers ($10
without utilities) and makes a good place to camp if you come
in late after
work and want an early start. Follow the Little Missouri
Trail (white
blazes) north along the Little Missouri River. The trail is
fairly level
but crosses the river three times and two significant
tributaries making it
impassible when the water is high. Call the ranger station if
there has
been heavy rains or take note of the water level when you
cross the bridge
at Albert Pike. </p>
<p>Rest of the text content in this cell</p>
<p> </p>
<p> </p></td>
</tr>
</table></td>
<td valign="top"><table height="259" border="0"
cellpadding="0"
cellspacing="0">
<tr>
<td><a href="/picture_library/Eagle Rock/Eagle Rock
GE W View
Page.html"><img src="
http://www.ouachitamaps.com/picture_library/Eagle
Rock/Eagle Rock GE W View sm.jpg" width="200" height="93"
vspace="5"
border="0" /></a>
<a href="/picture_library/Eagle Rock/Eagle Rock GE E View
Page.html"><img
src="
http://www.ouachitamaps.com/picture_library/Eagle%20Rock/Eagle%20Rock%20GE%20E%20View%20sm .jpg"
width="200" height="116" vspace="5" border="0"
/></a>
<img
src="
http://www.ouachitamaps.com/picture_library/Eagle%20Rock/Eagle%20Rock%20Little%20Mo%202074 .jpg"
width="200" height="150" vspace="5" />
<img
src="
http://www.ouachitamaps.com/picture_library/Eagle%20Rock/Eagle%20Rock%20Little%20Mo%20Fall s%202082.jpg"
width="200" height="150" vspace="5" />
<img
src="
http://www.ouachitamaps.com/picture_library/Eagle%20Rock/Eagle%20Rock%20Vista%202034.jpg"
width="200" height="150" vspace="5" />
<p>more pictures in this cell</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p></td>
</tr>
</table>
<p> </p>
<p> </p></td>
</tr>
</table>
<table width="955" border="0" align="center"
cellpadding="0" cellspacing="2"
class="outertable">
<tr>
<td align="center"><p><span
class="style4">Weatherproof Topographic Maps at
OuachitaMaps.com - Hiking Trails of the Ouachitas and
Ozarks</span><br />
<strong>Featured Topographic Maps in Oklahoma and
Arkansas</strong> <br />
<strong>Ouachita Trail Loops: </strong><a
href="/Horsethief.html">Billy
Creek Trail</a> - <a
href="/Boardstand.html">Boardstand Trail</a> - <a
href="/Holson.html">Holson Valley Loop</a> - <a
href="/Horsethief.html">Horse Thief Springs
Trail</a> - <a
href="/Boardstand.html">Old Military Road Trail</a>
- <a
href="/TalimenaBo.html">Talimena-Bohannon
Loop</a><br />
<strong>Other Ouachita Hikes: </strong><a
href="/Beech Creek.html">Beech
Creek Trail</a> - <a href="/Buckeye.html">Buckeye
Trail</a> - <a
href="/Caney Area.html">Caney Creek Area</a> - <a
href="/Buckeye.html">Caney
Creek Trail</a> - <a href="/Eagle
Rock.html">Eagle Rock Loop</a><br />
<strong>Selected Ozark Hikes: </strong><a
href="/Butterfield.html">Butterfield Trail (Devils
Den)</a> - <a
href="/White Rock.html">White Rock-Shores Lake
Loop</a> </p>
<a
href="/index.html"><strong>Home</strong></a></td>
</tr>
</table>
<p> </p>
<p> </p>
</body>
</html>
Nadia
Adobe® Community Expert : Dreamweaver
CSS Templates |Tutorials |SEO Articles
http://www.DreamweaverResources.com
~ Customisation Service Available ~
http://www.csstemplates.com.au

Similar Messages

  • Detailed layered ADF tables and reports; CSV

    I have implemented this http://kuba.zilp.pl/?id=361 to produce CSV files from view objects and BC's. This worked fine when dealing with one simple queried View object. I have hit a wall because my data and queries have become more involved. Example:
    Sponsor 112234
    Item Qty Site Cost Description
    NSN 0000-00-000-0003 122 122 $0.00 SCDR TST
    NSN 0000-00-000-0003 30 PHL $0.00 SCDR TST
    Total Cost for 112234: $0.00
    Sponsor ARMY-TACOM
    Item Qty Site Cost Description
    C/P (*0000) 29742 1 PHL $100.00 PUMP, BRONZE
    C/P (*0000) 320 01434 02 1 PHL $10.00 POWER SWITCH
    C/P (*0000) 320 01437 01 1 PHL $10.00 SWITCH, WATER DRAIN
    C/P (*0000) 321 30671 01 1 PHL $2,637.18 SAMPLING, MEASURE
    C/P (*0000) 321 30676 1 PHL $10.00 HOUSING, VIBRATOR
    View the above data as ONE table, and not TWO seperate tables.
    In this example, I am showing all the info. for EACH sponsor.
    Is is possible to create ONE table/View Object to give me this information? And can an HTML report be produced from that View Object?
    Thanks.

    Hi,
    sure, you can create read-only VO that are based on SQL queriesincluding one to many tables. If you need the Views to be updateable then you create Entities for each table and createa VO on top of that
    Frank

  • Cannot add layers/tables to an editable region

    I created a template the other day, and then created pages
    from that template. The main editable region which was meant to be
    for all my info, pictures, wont let me add layers or tables to
    position my text/images.... Have I missed something here?
    \Robert

    Yes, there would be no restriction on what you can place in
    that editable
    region. But I don't like the way you have started with this
    page. Layers
    should not be used as a primary layout methodology....
    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
    ==================
    "the full monty" <[email protected]> wrote
    in message
    news:epqp0m$lrc$[email protected]..
    > This is the code: The whole of the layer region should
    be editable... ie.
    > be
    > able to add layers/tables to position text?
    >
    > <!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" />
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Untitled Document</title>
    > <!-- TemplateEndEditable -->
    > <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    > <style type="text/css">
    > <!--
    > #Layer1 {
    > position:absolute;
    > left:382px;
    > top:30px;
    > width:329px;
    > height:268px;
    > z-index:1;
    > }
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <div id="Layer1"><!-- TemplateBeginEditable
    name="EditRegion1" --> <!--
    > TemplateEndEditable --></div>
    > </body>
    > </html>
    >
    > \Robert
    >

  • How to provide joins between oracle tables and sql server tables

    Hi,
    I have a requirement that i need to generate a report form two different data base. i.e Oracle and Sql Server.
    how to provide joins between oracle tables and sql server tables ? Any help on this
    Regards,
    Malli

    user10675696 wrote:
    I have a requirement that i need to generate a report form two different data base. i.e Oracle and Sql Server. Bad idea most times. Heterogeneous joins do not exactly scale and performance can be severely degraded by network speed and b/w availability. And there is nothing you can do in the application and database layers to address performance issue at the network level in this case - your code's performance is simply at the mercy of network performance. With a single glaring fact - network performance is continually degrading. All the time. Always. Until it is upgraded. When the performance degradation starts all over again.
    If the tables are not small (few 1000 rows each) and row volumes static, I would not consider doing a heterogeneous join. Instead I would rather go for a materialised view on the Oracle side, use a proper table and index structure, and do a local database join.

  • Trouble with Tables and image rollovers

    I hope someone might be able to help me. l am
    designing a website using tables and was wondering if l can have a
    thumbnail image in mutliple cells that can be rollovered to open a
    larger images in a common cell without the use of layers. If
    someone was to even point me in the right direction using the right
    terminology l should be able to find the info l need. Or maybe it's
    as simple as letting me know that l must use layers in a cell to
    get that result. Thanking you in advance for your help.

    NEVER use layers directly in a table cell, or any absolutely
    positioned
    element for that matter.
    There are good methods for doing exactly what you want -
    posted here on this
    forum - search for "show pic"....
    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
    ==================
    "Bill Hewitt" <[email protected]> wrote in
    message
    news:ff59up$kcc$[email protected]..
    >
    I hope someone might be able to help me. l am
    designing a
    > website
    > using tables and was wondering if l can have a thumbnail
    image in mutliple
    > cells that can be rollovered to open a larger images in
    a common cell
    > without
    > the use of layers. If someone was to even point me in
    the right direction
    > using the right terminology l should be able to find the
    info l need. Or
    > maybe
    > it's as simple as letting me know that l must use layers
    in a cell to get
    > that
    > result. Thanking you in advance for your help.
    >

  • Need help getting record(s) from layered tables

    Greetings,
       The company database has what I can only describe as layered tables.  Table 1 has a record that references actual data in another table.  The data in Table 1 is a numeric reference to the data in Table 2.  I need to be able to get the referenced data from Table 2 based on the identifier in Table 1. 
       Hopefully this makes some sense.  I am on a very short deadline having spent the majority of the weekend trying to figure this out. 
       Any help would be greatly appreciated!!
    Thank you,
    Martin

    The join is in place.  The problem is that I can't get just the data for the record I want.  I think I need to provide more information here...
    diaryentries.did is linked to TNTEntry.did and medsentry.did and painentry.did
    for diaryentries.MID i want to get the related medsentry.medication and the painentry.painlevel and the TNTentry."treatmenttype"  but treatmenttype is a numeric value that is defined in the dropdown_items table.  This table is used for many drop down menus.  I need to be able to extract the corrosponding data to my TNTentry table based on the MID. 
    The TNTEntry table is linked to the dropdown_items table by TNTEntry.DID -> dropdown_items.dd_id.  The dropdown_items table then has several rows that basically translate the various items to different languages.  If I put dropdown_items.english in my report, I seem to get each and every possible entry in the dropdown_items table as opposed to only those entries that corrospond to the MID from diaryentries.

  • Different types of tables and modes

    Hi Experts
    What is the specification of different tables in console and different modes in data manager.
    What is the major difference between them.
    Can we create a table of one type in console and can use the same table in another mode in data manager, say if I create a taxanomy table and can I use it as the hierarchy mode in the data manager.
    have fun..
    Hari

    Hi Hari,
    Differnt types of tables in Console are :
    Actually the Tables in Console are further categorized as :
    Main Table and Sub table which include:
    Flat Tables : It is a simple table consisting of record and fields ( rows and column) . In MDM Main table is always a flat table.
    Hierarchy Table : A hierarchy table organizes information in a hierarchy, where each record is related to a parent record (even if the only parent is the root) and may also be related to sibling records and/or child records.
    Taxonomy Table : A taxonomy is the classification scheme that defines the categories and subcategories that apply to a collection of records. Categorizing records enables you to isolate subsets of records for various organizing, searching, editing and publishing purposes.
    Qualified Table : A qualified table in MDM stores a set of lookup records,and also supports qualifiers, u201Csubfieldsu201D that apply not to the qualified table record by itself, but rather to each association of a qualified table record with a main table record. MDM supports multiple simultaneous qualified tables.
    Tables are also Categorized as Object Tables like :
    Images : For storing Images
    Sounds : For Sound File.
    Videos : For storing Video Files .
    Binary Objects : To store Binary Objects.
    Text Blocks : To store block of text.
    Copy Blocks : Stores block of text interpreted as a Copy.
    Text HTML`s : Stores block of text interpreted as a HTML.
    PDFs : To store PDF files.
    There are various types of Special Tables also:
    Image Variants : Used to define the structure
    and format of each of the variants for each image. Each variant is a modified version derived from an original image; the original image is never modified.
    Masks : In this defined subset of records are included in Mask i.e. in any scenario whether new records are added or deleted in the repository the records in the Mask remains the same unless edited by the user.
    Families : Used to further partition main table records in each category into smaller groups based upon the values of other fields and/or attributes.
    Relationships : Used to define each of the different record-level relationships. Each relationship can be either bidirectional (sibling) or unidirectional (parent-child).
    Workflows : Stores the workflows of an MDM repository, where each workflow is stored as a record in the table.
    Name Searches : Unlike Masks in case of Name search there are again a defined set of records but those records are selected on the basis of Search Selection. In this case if a record is added then the record is checked whether it fulfills the particular search criteria if it does than it is added to the Name serach else not.
    Data Groups : Stores the hierarchy of data groups used to break the entire set of objects in the MDM repository into manageable subgroups.
    There are various types of System Tables :
    Roles :  A single table named Roles. One of three tables used to implement MDM repository security and access control. Each role can selectively grant or deny access to any MDM function and to any table or field. This table is managed in the MDM Console and is not visible in the MDM Client.
    Users : A single table named Users. One of three tables used to implement MDM repository security and access control. Each user can have one or more roles. This table is managed in the MDM Console and is not visible in the MDM Client.
    Connections : A single table named Connections. One of three tables used to implement MDM repository security and access control. Contains an entry for each currently connected MDM client application, which can be terminated by the MDM Console user. This table is not visible in the MDM Client.
    Change Tracking : A single table named Change Tracking. Allows you to specify the fields for which adds, modifies, and deletes should be tracked and stored in the Change Tracking table.
    Remote Systems : A single table named Remote Systems. Used to define the different remote systems for import and export. Each specifies whether it supports inbound, outbound, or both. This table is managed in the MDM Console and is not visible in the MDM Client.
    Ports : A single table named Ports. Used to encapsulate the logistical and configuration info for inbound and outbound processing of MDM data, for consolidation and distribution respectively. This table is managed in the MDM Console and is not visible in the MDM Client.
    Links : A single table named Links. Used to specify the URLs that can be used as the target of an embedded browser in the Web tab in the MDM Client. This table is managed in the MDM Console and is not visible in the MDM Client.
    XML Schema : A single table named XML Schemas. Used to identify the XML schemas for import and syndication. Each XML schema is the name of an .xsd file. This table is managed in the MDM Console and is not visible in the MDM Client.
    Reports : A single table named Reports. Contains an entry for each report file generated by the various MDM repository operations, which can be accessed and viewed by the MDM Console user. This table is not visible in the MDM Client.
    Logs : A single table named Logs. Contains an entry for the log files generated by the MDM Server, which can be accessed and viewed by the MDM Console user. This table is not visible in the MDM Client.
    Data Manager:
    Data Manager in simple terms can be stated as a place where we manage the data that is taken from various systems.
    All the data that you take from all the various systems that a business is using is then taken into data manager, so that it could be cleansed and can be maintained easily in future.
    There are basically four different modes in Data Manager:
    1. Record Mode:  This mode allows us to search, view and edit the records of any table in MDM repository. This is the mode that one uses most often, primarily to view and edit records in the main table and also to view and edit records in any of the sub tables.
    2. Hierarchy mode. This mode allow us to view and edit the hierarchy tables in the MDM repository, including regular hierarchy tables, taxonomy tables, and the Masks table. Though we can also view and edit the records of a hierarchy table in Record mode, Hierarchy mode specifically allows us to edit the parent/child relationships and the sibling ordering of the hierarchy.
    3. Taxonomy mode. This mode allows us to view and edit the taxonomy tables in the MDM repository. We usually use this mode to create and maintain the category hierarchy used in the repository, and to manage the attributes associated with each category and subcategory. Though we can also view and edit taxonomy tables in both Record mode (for searching) and Hierarchy mode (for editing the other fields of information associated with each category), Taxonomy mode is unique in that instead of focusing on the records of the taxonomy table, it allows you to create and manage the pool of attributes associated with the taxonomy table, and to assign attributes to categories on a category-by-category basis.
    4. Matching mode.  This mode allows us to identify and eliminate duplicate records within an MDM repository. When you view the main table in Matching mode, MDM allows you to perform u201Cmatching-and-mergingu201D on and against any or all of its records, using various user-defined criteria (like creation of Rules and Strategies) to decide whether or not records are potential duplicates.
    5. Family mode. This mode allows us to view and edit the Families table, which layers a hierarchy of families upon the taxonomy hierarchy to further break down each category into smaller groups of main table records. We usually use this mode to partition the categories of the taxonomy hierarchy by the values of other fields and/or attributes, and then to associate family data (such as an image, a paragraph, and bullets) once with each family of main table records rather than each individual record.
    Can we create a table of one type in console and can use the same table in another mode in data manager, say if I create a taxanomy table and can I use it as the hierarchy mode in the data manager.
    The structure of the tables are defined in Console and those tables are then used in Data Manager, but if you have defined a table as a Hierarchy table you cannot use that table in Taxonomy Mode but you will be able to see all the tables in Record Mode.
    Hope this would be useful...
    If useful do reward points!!!!
    Regards,
    Parul

  • How to use one query against multiple table and recieve one report?

    I have duplicate tables, (except for their names of course) with commodities prices. They have the same column headings, but the data is different of course. I have a query that gives me a certain piece of information I am looking for but now I need to run this query against every table. I will do this every day as well, to see if the buying criteria is met. There are alot of tables though (256). Is there a way to say run query in all tables and return the results in one place? Thanks for your help.

    hey
    a. the all 256 tables whuld be one big partitoned table
    b. you can use all_tables in order to write a select that will write the report for you:
    SQL> set head off
    SQL> select 'select * from (' from dual
      2  union all
      3  select 'select count(*) from ' || table_name || ' union all ' from a
      4  where table_name like 'DB%' AND ROWNUM <= 3
      5  union all
      6  select ')' from dual;
    select * from (
    select count(*) from DBMS_LOCK_ALLOCATED union all
    select count(*) from DBMS_ALERT_INFO union all
    select count(*) from DBMS_UPG_LOG$ union all
    remove the last 'union all', and tun the generated quary -
    SQL> set head on
    SQL> select * from (
      2  select count(*) from DBMS_LOCK_ALLOCATED union all
      3  select count(*) from DBMS_ALERT_INFO union all
      4  select count(*) from DBMS_UPG_LOG$
      5  );
      COUNT(*)
             0
             0
             0
    Amiel

  • How to disable a single cell in a table (and not the whole column)

    Hi there,
    I've got a webdynpro table with a few columns, rows can be created dynamically through a button in the table toolbar.
    Depending on the value of a certain cell I have to disable another cell (in the same row).
    I tried to manipulate the view in the modifyview but no joy. I also tried to manipulate the attribute property through the coding below:
      DATA lv_knttp TYPE knttp.
      lo_nd_kostl = wd_context->path_get_node( path = `MULTIVALUES.KOSTL` ).
      lo_el_kostl = lo_nd_kostl->get_element( ).
      lo_el_kostl->set_attribute_property(
      attribute_name = 'LTEXT'
              property       = lo_el_kostl->e_property-enabled
              value          = ''
    but it disables the whole column!!!! I just need the cell to be disabled (I thought the code above, through the lead selection, would affect a certain cell only - but I was wrong).
    Any ideas?
    Thanks!!!

    Hi,
    using cell variants you can do this.,
    check this article: [Cell Variants in WDA|http://wiki.sdn.sap.com/wiki/display/WDABAP/WebDynproforABAPCellVariants]
    Instead of binding the read only property of table as a whole , just bind the read only property of column group of table., You can do this bu drill down the table and select the required column and bind the read only column.,
    then In onAction Event of button .,
    loop the table, if condition satisfied set the read only property to true else false.,!!
    hope this helps u.,
    Thanks & regards,
    Kiran

  • Table and the filed of the codition type in PO

    hi,
    can somebody tell me in a purchase oder what is the table and the field which i can get the "condition" 
    Gayani

    hi Gayani,
    try table EKKN
    ec

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • What the difference and use between   of  TABLES and SY-REPID?

    Hi,
    Experts,
    I have came accross 2 cases that i can't able understand
    EX1:
    TABLES: VBAP   -
    >( Here also Appplication Server(AS) creates Wrokarea of Structure VBAP but, by 
    data: v_vbeln like vbap-vbeln.    double clicking on variable v_vbeln AS taking me to DDIC VBAP table VBELN field then what the using declaring tables. )
    ( and ) 
    DATA: VBAP TYPE VBAP -->( Here also Appplication Server(AS) creates Wrokarea of Structure VBAP data: v_vbeln like vbap-vbeln.    but,double clicking on variable v_vbeln AS taking me to user declared VBAP
                                                  i.e., above DATA declaration statement )
    Then Which one is better in Functionality wise as well as Performance wise or when we have to go for TABLES and when we have to go for DATA declaration of DDIC objects.
    EX2:
    what the difference between
    I know that SY_REPID is not a system variable. And also that
    Data: vrepid type SY_REPID.--> Predefined data type in ABAP
    and
    Data: vrepid like SY_REPID.-> Predefined Constatnt in ABAP( it is a constant it allowing with out VALUE                                                                               
    attribute)
    what difference between them and when we have to go Data: vrepid type SY_REPID and when we have to go Data: vrepid like SY_REPID.
    Thank U,
    Shabeer Ahmed.

    Hi Ahmed,
    TABLES:
      VBAP.   " DDIC
    DATA:
      v_vbeln like vbap-vbeln.
    *Here you are using the DDIC VBAP
    DATA:
      VBAP TYPE VBAP.
    DATA:
      vbeln like vbap-vbeln.
    *Here you are using the local data object as your data type so it will always
    * take you to user declared VBAP which is declared by you.
    DATA:
      T_VBAP TYPE VBAP.
    DATA:
      vbeln like vbap-vbeln.
    * here its using T_VBAP not DDIC VBAP
    And for performance always the second option is better, use Data instead of tables, declare your own local structure.
    Data:
      vrepid type SY_REPID.  thereis nop redefined data type in ABAP as SY_REPID
    * its SY-REPID which is a system variable.
    Data:
      vrepid type SY-REPID.
    Also refer to the links:
    Difference between tables statement and by using type statement
    for type and like:
    Re: LIKE and Type in abap statements
    With luck,
    Pritam.

  • Difference between Temp table and Variable table and which one is better performance wise?

    Hello,
    Anyone could you explain What is difference between Temp Table (#, ##) and Variable table (DECLARE @V TABLE (EMP_ID INT)) ?
    Which one is recommended to use for better performance?
    also Is it possible to create CLUSTER and NONCLUSTER Index on Variable table?
    In my case: 1-2 days transactional data are more than 3-4 Millions. I tried using both # and table variable and found table variable is faster.
    Is that Table variable using Memory or Disk space?
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Check following link to see differences b/w TempTable & TableVariable: http://sqlwithmanoj.com/2010/05/15/temporary-tables-vs-table-variables/
    TempTables & TableVariables both use memory & tempDB in similar manner, check this blog post: http://sqlwithmanoj.com/2010/07/20/table-variables-are-not-stored-in-memory-but-in-tempdb/
    Performance wise if you are dealing with millions of records then TempTable is ideal, as you can create explicit indexes on top of them. But if there are less records then TableVariables are good suited.
    On Tables Variable explicit index are not allowed, if you define a PK column, then a Clustered Index will be created automatically.
    But it also depends upon specific scenarios you are dealing with , can you share it?
    ~manoj | email: http://scr.im/m22g
    http://sqlwithmanoj.wordpress.com
    MCCA 2011 | My FB Page

  • HELP! FOR LOOP TO SCROLL THROUGH TABLE AND CREATE DATABASE LINK

    Hi,
    Here's the scenario, not much of a PL programmer, just basic SQL so really need some help people!
    I have 2 tables. 1 contains list of DB's and the other contains rules to follow.
    I need to create a loop that goes through the table containing the DB's and on each row a DB link is created (Only 1 link allowed!)
    Once created, the schema currently logged in with also has an account on the linked DB in order to run scripts- The scripts are stored centrally hence the requirement for the link to the target DB.
    There are numerous scripts that need to be executed and can all be called from 1 script, once executed the loop exists and the database link needs to be dropped.
    Once dropped, the first loop continues, creating a DB link for the next DB listed in the table (and all the scripts are fired again)
    This continues against all the DB's listed in the table.

    Hi BlueShadow,
    Thanks again for the response, you've hit the nail on the head. SQL scripts on a unix server, a loop goes through a table 1 at a time. Each row gets a link created and then all the scripts stored on the server are executed against the db linked to. So I'm assuming this is a loop within a loop.
    1 loop to go through the table to create the link and then another loop within once connected to execute all the scripts against the connected DB. Once the scripts are run, the loop exits and moves onto the next server and so on until all the servers have the scripts are run.
    It's PL/SQL scripts we're after and not shell scripts as this would free us from the OS constraints.
    We have to drop the links due to security. Any idea on o

  • How to protect SAP Application Tables and Reports in R/3

    Hi Gurus,
                 Any one please explain me detail how to protect tables in R/3 with different senarios.
                  How to protect reports in SAP R/3 without assigning SA38 transaction access
                  How to protect Program in SAP R/3 in R/3

    Hello Happyman,
    <b>What do you mean by Protect Table, Program and Report?</b>
    Let me ask you one base Question, On which area are you working? Are you from functional side or Technical side (Developement or Basis guy)?
    This is very clear cut answer that with the restricted autorization you can protect table and programs. Do not provide the change autorization.
    CATCH your BASIS guy and he will do rest of the things. Just explain him what are you want to protect.
    Hope this helps.
    Regards
    Arif Mansuri

Maybe you are looking for

  • Unable to run a report from developer 10g

    Hi, i can´t run a report from developer 10g when i run the report with the web icon appears the message Thu Jan 07 14:44:29 CST 2010 javax.servlet.jsp.JspException javax.servlet.jsp.JspException      at oracle.reports.jsp.ReportTag.doStartTag(ReportT

  • Creation of purchase order in MRP

    Hi All, Is it possible to create purchase order as an output of MRP? If yes, then how? regards, Mohit

  • PrE 8 used assets not checked in Task Pane

    I recently upgraded to PrE 8 after using PrE 3 for years. My first project in 8 is quite involved with a lot of sound drops and still photos.Since I'm trying to learn and apply a lot of new features, I've brought into the project a lot of assets I en

  • Documents needed for Configuration of BCS

    I want to configure a system for BCS. Pls let me knwo the documents for Configuration.

  • HT201304 i need to go back to the spanish App Store

    for some reason im in an App Store that doesnt allow me to buy things, i need to go back to my App Store, im in spain please explain how. tx