Look up from 0FI_AR_4 to 2LIS_13_VDITM

HI There,
Need some help from experts.
Basically I'm trying to write look up to fetch the LAND1 (Destination Country) data from Billing Item Doucment Datasourse
2LIS_13_VDITM into 0FI_AR_4 flow. We have BELNR, KUNNR, XBLNR & VBELN in 0FI_AR_4, but i'm not sure whether we can use VBELN field to link the two datasources and fetch the data?
Can some one suggest me which field need to be used to write look up from 0FI_AR_4 to 2LIS_13_VDITM ?
Thanks
Vandana

Thanks for your reply.
Cant we write look ups rather then going for datasource enhancement?
I'm looking for the link between 0FI_AR_4 and 2LIS_13_VDITM, so that we can write look up from
0FI_AR_4 flow and fetch the data from 2LIS_13_VDITM.
If anyone has done this before, please advise.
Thanks for your time
Vandana.

Similar Messages

  • Why do my Organizer & Editor pages look different from those in books and the brochure that came?

    Why do my Organizer and Editor screens look different from the ones in books and in the brochure that came with installation cd?

    Which version of the photoshop elements are you using.
    You can get the help files of the latest version of photoshop elements 11 from the following link:
    http://helpx.adobe.com/photoshop-elements.html
    Thanks
    Harshit yadav

  • Layout Looks Different from Dreamweaver to Email?

    I am currently using Adobe Dreamweaver CS5 to create emails for my work. Last month I started having an issue where the 3 columns I have in the template would look even in Dreamweaver, but when I sent a test email to myself they looked completely off. This past week I have encountered another issue where the cellpadding of the email looks different from Dreamweaver to email. I am new to HTML and coding so it could just be me, but is anyone having a similar problem and if so, is there a way to fix it?

    Nancy-O posted this recently.  You might find it helpful.
    Martin
    http://alt-web.com/Articles/HTML-Emails.shtml
    Achieving consistent results across email clients is not as straightforward as it should be!

  • How to make ScrollBar look independent from ScrollPane in JScrollPane???

    I have a JScrollPane. I am trying to add border to ScrollBar so ScrollBar looks seprate from pane.
    Is there anyother way to do this so ScrollBar look seprate from scrollPane?? thanks in advance!!!
    thanks
    amit

    Please don't repost a question as a new thread when someone has taken the time to answer your identical question already. At least post in the existing thread if you need to comment or add something.
    http://forum.java.sun.com/thread.jsp?forum=57&thread=159987

  • My firefox home page looks different from your tutorial

    I am trying to learn to use firefox. Sometimes the firefox home page looks different from the one in your tutorial. Fox example, now I am looking above and the "plus sign" symbol to add a new tab is not there. Please advise me. Thank you.

    You can find the New Tab button showing as a '+' on the Tab bar.
    You can open the Customize window and drag the New Tab button that shows as a plus sign (+) from the Tab bar on another toolbar and it will become a regular toolbar button like the New Tab button that you have in Firefox 3 versions.
    If you can't find the New Tab button then click the "Restore Default Set" button in the Customize window.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    If you want the New Tab button at the far right end of the Tab bar then place a flexible space to the left of it.
    * New tab toolbar button: https://addons.mozilla.org/firefox/addon/new-tab-toolbar-button/

  • Want Thunderbird look (theme) from 2.0.0.4. Where is it and if not, please make it. I don't like the newer theme

    1. Want Thunderbird look (theme) from 2.0.0.24 Where is it and if not, please make it. I don't like the newer theme.
    2. When these newer Thunderbirds set up they do not, unless one knows about software, leave the choice of erasing email from the carriers site. Please fix so that with the automatic NON POP setup the option page lets you not save emails on the carrier's (outside computer). FIX THIS. The automatic setup should also offer POP. FIX THIS TOO

    1. Tools menu (ALT+T) > Add-ons > get add-ons and scroll to the bottom and look on the bottom right for complete thems
    2. The default is IMAP. If you want something else specify it to the wizard. Where the wizard is aware of both POP and IMAP you are offered a choice, but nothing stops you from manually specifying the account setting.
    2a. Nothing will see the return of mail being removed from the server on download by default. To many expect their mail to stay on the server forever as a defacto backup. Rightly or wrongly the default was changed because people like me could no longer put up with the whining of people who were not happy their mail moved off the server.

  • HT5930 Why does my Aperture v3.5.i look different from the one shown in the online videos

    Why does my Aperture v3.5.i look different from the one shown in the online videos

    Are you asking about the colorful icons in the video?
    The video must have been done with an Aperture version 3.2.4 or earlier. Since Aperture 3.3 are the icons drab and gray - the Aperture 3.3 Release Notes are calling this:
    Newly designed monochrome source list and toolbar icons.
    The Release notes will tell you, what has changed since then:
    http://support.apple.com/kb/TS2518
    --Léonie

  • Looking data from more than one table and inserting into another.

    Hello,
    I am giving you the Table structures as per my requirement..
    CREATE TABLE TEMP_A
    (NAME VARCHAR2(100) primary key);
    CREATE TABLE TEMP_B
    (STRUCTURE VARCHAR2(10));
    CREATE TABLE TEMP_C
    ( NAME VARCHAR2(100),
    STRUCTURE VARCHAR2(10),
    VALUE VARCHAR2(10));
    Alter table TEMP_C
    add constraint fk_name_tempc foreign key(name) references TEMP_A(name)
    INSERT INTO TEMP_A VALUES('SMITH');
    INSERT INTO TEMP_A VALUES('ALLEN');
    INSERT INTO TEMP_A VALUES('WARD');
    INSERT INTO TEMP_A VALUES('JONES');
    COMMIT;
    INSERT INTO TEMP_B VALUES('IN');
    INSERT INTO TEMP_B VALUES('IN_MIN');
    INSERT INTO TEMP_B VALUES('IN_TYP');
    INSERT INTO TEMP_B VALUES('IN_MAX');
    INSERT INTO TEMP_B VALUES('DIP');
    INSERT INTO TEMP_B VALUES('TIM');
    COMMIT;
    INSERT INTO TEMP_c VALUES('SMITH','C1','');
    INSERT INTO TEMP_c VALUES('SMITH','C2','');
    INSERT INTO TEMP_c VALUES('SMITH','D1','');
    INSERT INTO TEMP_c VALUES('ALLEN','D2','');
    INSERT INTO TEMP_c VALUES('ALLEN','R1','');
    INSERT INTO TEMP_c VALUES('WARD','R2','');
    COMMIT;
    i want to say is it should insert into table 'TEMP_C' values as :
    For 'SMITH' there should be (6 * 3) = 18 records.
    ( 6 distinct values of TEMP_B for SMITH to be inserted into TEMP_C against 'C1')
    ( 6 distinct values of TEMP_B for SMITH to be inserted into TEMP_C against 'C2')
    ( 6 distinct values of TEMP_B for SMITH to be inserted into TEMP_C against 'D1')
    For 'ALLEN' there should be (6 * 2) = 12 records.
    ( 6 distinct values of TEMP_B for ALLEN to be inserted into TEMP_C against 'D2')
    ( 6 distinct values of TEMP_B for ALLEN to be inserted into TEMP_C against 'R1')
    For 'WARD' there should be (6 * 1) = 6 records.
    ( 6 distinct values of TEMP_B for WARD to be inserted into TEMP_C against 'R2')
    Like this if there are records for JONES also , it should also do the same way( Depending on the No. of records present
    in the table 'TEMP_C' for 'JONES').
    Thanks in advance,
    Amkotz

    Is this what you are looking for?
    SQL> insert into temp_c (name, structure, value)
      2  select c.name, c.structure, b.structure
      3  from temp_a a, temp_c c, temp_b b
      4  where a.name = c.name
      5  ;
    36 rows created.
    SQL> select * from temp_c;
    NAME    STRUCTURE  VALUE
    SMITH   C1
    SMITH   C2
    SMITH   D1
    ALLEN   D2
    ALLEN   R1
    WARD    R2
    SMITH   C1         IN
    SMITH   C1         IN_MIN
    SMITH   C1         IN_TYP
    SMITH   C1         IN_MAX
    SMITH   C1         DIP
    SMITH   C1         TIM
    SMITH   C2         IN
    SMITH   C2         IN_MIN
    SMITH   C2         IN_TYP
    SMITH   C2         IN_MAX
    SMITH   C2         DIP
    SMITH   C2         TIM
    SMITH   D1         IN
    SMITH   D1         IN_MIN
    SMITH   D1         IN_TYP
    SMITH   D1         IN_MAX
    SMITH   D1         DIP
    SMITH   D1         TIM
    ALLEN   D2         IN
    ALLEN   D2         IN_MIN
    ALLEN   D2         IN_TYP
    ALLEN   D2         IN_MAX
    ALLEN   D2         DIP
    ALLEN   D2         TIM
    ALLEN   R1         IN
    ALLEN   R1         IN_MIN
    ALLEN   R1         IN_TYP
    ALLEN   R1         IN_MAX
    ALLEN   R1         DIP
    ALLEN   R1         TIM
    WARD    R2         IN
    WARD    R2         IN_MIN
    WARD    R2         IN_TYP
    WARD    R2         IN_MAX
    WARD    R2         DIP
    WARD    R2         TIM
    42 rows selected.
    SQL>

  • How to use JNDI look up from a JSP

    Hello,
    I know I should not be doing this (writing the lookup code in a JSP) but have to do it for some reasons.
    I am using this code in my JSP:
    try
         Context ctx = new InitialContext();
         dataSource = (DataSource)ctx.lookup("jdbc/mybillingora");
         conn = dataSource.getConnection();
         statement = conn.createStatement();
    catch(Exception excep)
    Is this code enough for a JNDI look up?? When I use this code, I get an exception:
    "javax.naming.NameNotFound exception:jdbc/mybillingora"
    Do I need to do something else??
    Why do we use :
    Properties env = new Properties();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "<some_context_factory>");
    env.put(Context.PROVIDER_URL, PROVIDER_URL);
    env.put(Context.SECURITY_PRINCIPAL, JNDI_USER);
    env.put(Context.SECURITY_CREDENTIALS, JNDI_PWD);
    InitialContext = new InitialDirContext(env);
    where JNDI_USER is the userid If ACL is configured at the JNDI server
    where JNDI_PWD is the password If ACL is configured at the JNDI server
    Context.INITIAL_CONTEXT_FACTORY is the initial Context factory and depends on ur JNDI service provider.
    PROVIDER_URL is the url of the JNDI server containing protocol/ip/port
    do i need to use this??
    would appreciate your help on this....
    Thanks

    I am working on a pretty similar problem and posted my problem minute ago.
    Include JNDI.jar from <Oracle_HOME>\jlib. (This is what I found in Oracle docs).
    I presume you are also trying to create the Datasource using Datasource interface via JNDI rather than using Driver Manager.
    Thanks
    Mei

  • Page that is uploaded to the server looks different from the preview in Dreamweaver browser

    Hi, I have a couple of questions.  Does anyone happen to know why my homepage looks different in Dreamweaver when I preview in browser then it does when I upload the page onto the server?  http://www.iewaterkeeper.org/  I see a join our mailing list button is intact when I preview in browser but is no where to be found when I view the uploaded page from the server.  Other weird things have been going on with Dreamweaver today like I wasn't able to absolute position a div tag in it's intended place and all the typography on my homepage looks very blurry in Dreamweaver but looks clearer when it's uploaded to the server.  Does anyone know what's going on?  Any help would be greatly appreciated.  .... Could it be a virus?

    That's so weird because I'm looking at the code in Dreamweaver and line 181 has a closing </body>.   Here's the code straight from Dreamweaver: 
    <!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>Inland Empire Waterkeeper</title>
    <link href="_css/styles.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body,td,th {
        color: #999999;
        font-family: Verdana, Geneva, sans-serif;
    body {
        background-color: #FFFFFF;
        color: #D6D6D6;
        background-image: url(_images/background_1255hompage.png);
        background-repeat: repeat-x;
        margin: auto;
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    </style>
    </head>
    <body>
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="container">
      <div class="header"><img src="_images/banner1.jpg" alt="Inland Empire Waterkeeper" width="933" height="300" /></div>
      <div class="menubar">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html" class="MenuBarItemSubmenu">Home</a>
            <ul>
              <li><a href="mission.html" class="MenuBarItemSubmenu">About Us</a>
                <ul>
                  <li><a href="mission.html">Our Mission</a></li>
                  <li><a href="history.html">Our History</a></li>
                  <li><a href="community.html">Our Community</a></li>
                </ul>
              </li>
              <li><a href="staff.html" class="MenuBarItemSubmenu">Our Team</a>
                <ul>
                  <li><a href="staff.html">Staff</a></li>
                  <li><a href="supporters.html">Supporters</a></li>
                  <li><a href="advisoryboard.html">Advisory Board</a></li>
                </ul>
              </li>
              <li><a href="coastkeeper.html">Coastkeeper</a></li>
            </ul>
          </li>
          <li><a href="projects.html" class="MenuBarItemSubmenu">What We Do</a>
            <ul>
              <li><a href="advocacy.html" class="MenuBarItemSubmenu">Programs</a>
                <ul>
                  <li><a href="advocacy.html">Advocacy</a></li>
                  <li><a href="education.html">Education</a></li>
                  <li><a href="research.html">Research</a></li>
                  <li><a href="restoration.html">Restoration</a></li>
                  <li><a href="enforcement.html">Enforcement</a></li>
                </ul>
              </li>
              <li><a href="projects.html">Projects</a></li>
              <li><a href="datareports.html">Data &amp; Reports</a></li>
            </ul>
          </li>
          <li><a href="volunteer.html" class="MenuBarItemSubmenu">Get Involved</a>
            <ul>
              <li><a href="volunteer.html">Volunteer</a></li>
              <li><a href="employment.html">Employment</a></li>
              <li><a href="events.html">Events &amp; Meetings</a></li>
              <li><a href="donate.html">Donate</a></li>
            </ul>
          </li>
          <li><a href="pressreleases.html" class="MenuBarItemSubmenu">News Room</a>
            <ul>
              <li><a href="pressrelease.html">In the News and Press Releases</a></li>
              <li><a href="legislation.html">Legislative Updates</a></li>
              <li><a href="waternews.html">Water in the News</a></li>
            </ul>
          </li>
          <li><a href="reportpollution.html" class="MenuBarItemSubmenu">Resources</a>
            <ul>
              <li><a href="watershed.html" class="MenuBarItemSubmenu">Information</a>
                <ul>
                  <li><a href="watershed.html">Our Watershed</a></li>
                  <li><a href="reportpollution.html">Report Pollution</a></li>
                </ul>
              </li>
              <li><a href="photos.html">Photo Gallery</a></li>
            </ul>
          </li>
          <li><a href="contact.html">Contact Us</a></li>
        </ul>
      </div>
        <div class="missionstatement"><img src="_images/mssionstatement.gif" alt="Inland Empire Waterkeeper" width="933" height="110" /></div>
    <div class="space1"><img src="_images/bar_left.png" alt="Inland Empire Waterkeeper" width="20" height="315" /></div>
    <div class="facebook">
          <div class="facebooktop">
          <img src="_images/facebooktop.gif" width="106" height="125" alt="Inland Empire Waterkeeper" /></div>
        <div class="facebookmailinglist">
        <div class="fb-like" data-href="http://www.iewaterkeeper.org/" data-send="true" data-width="106" data-show-faces="false"></div>
    <!-- BEGIN: Constant Contact Standard Email List Button -->
    <div align="center">
    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_tl_gray.gif" width="6" height="6" alt=""></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_top_gray.gif"> </td>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_tr_gray.gif" width="6" height="6" alt=""></td>
    </tr>
    <tr>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_left_gray.gif"></td>
    <td bgcolor="#cccccc"><a href="http://visitor.r20.constantcontact.com/d.jsp?llr=wejp69bab&p=oi&m=1101488694422" target="_blank" style="text-decoration:none; font-weight: bold;  font-family:Arial; font-size:10px; color:#336666;">Join Our Email List</a></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_right_gray.gif"></td>
    </tr>
    <tr>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bl_gray.gif" width="6" height="6" alt=""></td>
    <td background="https://imgssl.constantcontact.com/ui/images/visitor/bevel_bg_bottom_gray.gif"> </td>
    <td><img src="https://imgssl.constantcontact.com/ui/images/visitor/bevel_br_gray.gif" width="6" height="6" alt=""></td>
    </tr>
    </table>
    </div>
    <!-- END: Constant Contact Standard Email List Button -->
        </div>   
        <div class="space2"><img src="_images/bar_right.png" width="21" height="315" alt="Inland Empire Waterkeeper" /></div>
       <div class="video"><iframe width="560" height="315" src="http://www.youtube.com/embed/3OU8D8kBjWg" frameborder="0" allowfullscreen></iframe></div>
        <div class="space3"></div>
        <div class="photospace1"></div>
        <div class="photo1"><a href="_images/kayaking_6lg.png"><img src="_images/kayaking_6.jpg" alt="Inland Empire Waterkeeper" width="176" height="95" /></a></div>
        <div class="photospace2"></div>
        <div class="photo2"><a href="_images/riverkat_57lg.png"><img src="_images/riverkat_57.jpg" width="176" height="95" alt="Inland Empire Waterkeeper" /></a></div>
        <div class="photospace3"></div>
        <div class="photo3"><a href="_images/riverkat_172lg.png"><img src="_images/riverkat_172.jpg" width="176" height="95" alt="Inland Empire Waterkeeper" /></a></div>
        <div class="photospace4"></div>
        <div class="space4"></div>
      <div class="pillars"><img src="_images/pillars_grey.jpg" alt="Inland Empire Waterkeeper Pillars" width="933" height="400" border="0" usemap="#Map" />
        <map name="Map" id="Map">
          <area shape="rect" coords="77,54,297,198" href="advocacy.html" alt="Inland Empire Waterkeeper Advocacy" />
          <area shape="rect" coords="361,51,584,195" href="education.html" alt="Inland Empire Waterkeeper Education" />
          <area shape="rect" coords="636,54,858,196" href="research.html" alt="Inland Empire Waterkeeper Research" />
          <area shape="rect" coords="212,220,430,352" href="restoration.html" alt="Inland Empire Waterkeeper Restoration" />
          <area shape="rect" coords="502,222,726,364" href="enforcement.html" alt="Inland Empire Waterkeeper Enforcement" />
        </map>
      </div>
      <div class="footer"><img src="_images/footer2.png" width="933" height="100" alt="Inland Empire Waterkeeper" /></div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • Subjects' faces look red from export out of Motion 4

    Hello,
    I am using Motion 4 and FCP 7 for a video project. When I export out of M4 into FCP 7, the subjects' face look reddish. I originally exported from FCP 7 into Motion 4 and added text and other graphics. When loading the video exported from Motion 4, I am having problems with the red faces. Any suggestions? Would appreciate your feedback.
    Thanks,
    Mike

    This is a part of Final Touch that was lost when it got married to FCP as COLOR. The issue you now have is that COLOR doesn't actually create export lists, it modifies existing XMLs (and cut-lists) that are created at the time of SEND To... from FCP. I'm gathering you did a form of CMX 'import as cut-list' to get the media and event/clips into COLOR. And then there's no apparent way out.
    If its a CMX-flow, it was probably a V1-only list, all cuts. If all the material was rendered back to 10-bit Uncompressed, then that media exists somewhere, all neatly tucked into individual folders numbered corresponding to their order in the cut list. In the old days, we would do a FinalGather which would herd all these clips into either a reference Quicktime or a folder where the clips were exposed in such a way that you could grab them all and drop them onto a Final Cut sequence. There are some automator scripts laying around here and there for pulling all the clips into a single directory... it'll take a bit of searching, or you can create your own.
    If I'm on the right track with this, creating a new FCP timeline with the rendered media is as simple as selecting them all and dropping them on a new sequence, since they are oriented with names like 1_g1.mov, 2_g1.mov, and so on. Search for those with Finder if you haven't already, and then you'll know what to do. The tough part is that they, each individual clip, are all imbedded in their own folder which makes it a beeotch to wrangle them as a collection.
    jPo

  • Div tag looks different from mac to pc?

    I have a very simple page with a background image as a CSS style (centered).  I added a Div tag on the top and built a form inside of the div tag.  The div tag is set to absolute positioning and looks great in dreamweaver and the pc.  I tested it on my mac and the whole div/form moves all the way to the left side of the screen.  I appreciate any help.

    Try this code instead of what you have now.
    <!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>Harley-Davidson Police Survey</title>
    <style type="text/css">
    /**zero out browser defaults**/
    * {margin:0; padding: 0; line-height: 1}
    body {
    background: silver;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 100%;
    #wrapper{
    background: #000 url(http://www.hdpolicesurvey.com/images/purl_background.jpg) no-repeat;
    width: 780px;
    margin:0 auto; /**centered on screen**/
    text-align:left;
    color: #fff;
    #form {
    margin-left: 235px;
    width:500px;
    font-size: 12px;
    padding-top: 120px;
    /**Text Styles**/
    p {
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 1em;
    </style>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <script language="JavaScript" type="text/javascript" src="_mmServerScripts/XMPJS.ashx?XMPJavaScript=Tracking"></script>
    <script language="JavaScript" type="text/javascript"> /* Track Current Page Visits */
    var obj = new Object(); obj.type = "Page Visit"; XMP_TrackThis(obj, "HarleyPURL", "Page Visit", "Page Visit");
    </script>
    </head>
    <body>
    <div id="wrapper">
    <div id="form">
    <form name="form2" method="POST" action="landing.aspx?rid=testPURL&amp;XMPieOrgBaseURL=http%3a%2f%2fwww.hdpolicesurvey.com%2f" id="form2">
    <div>
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTIzMzY3MzEzNQ9kFgQCBQ8VAQpIYXJsZXlQVVJMZAIGD2QWAmYPFQoDTXMuB01lbGFuaWUIU2hlZmNoaWsWVGV1dGViZXJnIEluY29ycG9yYXRlZAw0MTQtMjA3LTEzNTESMTIyMDAgVy4gV2lydGggU3QuCVdhdXdhdG9zYQJXSQU1MzIyMgpIYXJsZXlQVVJMZGTcAVE098MvJaXoGbNLgITf6vth/g==" />
    </div>
    <p>* = required fields</p>
    <table width="474" border="0">
    <tr>
    <td valign="top">Title</td>
    <td valign="top"><input name="title" type="text" id="title" value='Ms.' size="6" maxlength="6" /></td>
    <td> </td>
    <td colspan="2" valign="top">First*</td>
    <td colspan="3"><span id="sprytextfield5">
    <input name="first" type="text" id="first" value='Melanie' />
    </span></td>
    </tr>
    <tr>
    <td width="58">Last*</td>
    <td width="144"><span id="sprytextfield6">
    <input name="last" type="text" id="last" value='Shefchik' />
    </span></td>
    <td width="32"> </td>
    <td width="43" colspan="2">Dept*</td>
    <td width="144" colspan="3">
    <input name="company" type="text" id="company" value='Teuteberg Incorporated' /></td>
    </tr>
    <tr>
    <td>Phone*</td>
    <td><span id="sprytextfield7">
    <input name="phone" type="text" id="phone" value='414-207-1351' />
    </span></td>
    <td>  </td>
    <td colspan="2">Street</td>
    <td colspan="3">
    <input name="street" type="text" id="street" value='12200 W. Wirth St.' /></td>
    </tr>
    <tr>
    <td height="24">City</td>
    <td><input name="city" type="text" id="city" value='Wauwatosa' /></td>
    <td> </td>
    <td>ST</td>
    <td><input name="state" type="text" id="state" value='WI' size="6" maxlength="2" /></td>
    <td> </td>
    <td>ZIP</td>
    <td><input name="zip" type="text" id="zip" value='53222' size="14" maxlength="10" /></td>
    </tr>
    </table>
    <p><br />
    Do you currently employ a motor unit?
    <br />
    <label>
    <input type="radio" name="employ" value="employ_no" id="employ_1" />
    yes<br />
    <input type="radio" name="employ" value="employ_yes" id="employ_0" />
    no</label>
    </p>
    <p>What brand are you currently using? (Check all that apply)<br />
    <label>
    <input type="checkbox" name="brand_HD" value="HD" id="brand_0" />
    HD</label>
    <br />
    <label>
    <input type="checkbox" name="brand_BMW" value="BMW" id="brand_1" />
    BMW</label>
    <br />
    <label>
    <input type="checkbox" name="brand_Honda" value="Honda" id="brand_2" />
    Honda</label>
    <br />
    <label>
    <input type="checkbox" name="brand_Kawasaki" value="Kawasaki" id="brand_3" />
    Kawasaki</label>
    <br />
    <label>
    <input type="checkbox" name="brand_Other" value="checkbox" id="brand_4" />
    Other</label>
    </p>
    <p>Total Motorcylce Fleet Size:<br />
    <label>
    <input type="radio" name="fleet" value="fleet1-5" id="fleet_0" />
    1-5</label>
    <br />
    <label>
    <input type="radio" name="fleet" value="fleet6-15" id="fleet_1" />
    6-15</label>
    <br />
    <label>
    <input type="radio" name="fleet" value="fleet16-25" id="fleet_2" />
    16-25</label>
    <br />
    <label>
    <input type="radio" name="fleet" value="fleet26-50" id="fleet_3" />
    26-50</label>
    <br />
    <label>
    <input type="radio" name="fleet" value="fleet51" id="fleet_4" />
    51+<br />
    <br />
    </label>
    Do you anticipate purchasing new motorcycles in... (Check all that apply)<br />
    <label>
    <input type="checkbox" name="purchase_3month" value="3month" id="purchase_0" />
    within 3 months</label>
    <br />
    <label>
    <input type="checkbox" name="purchase_3to6month" value="3-6month" id="purchase_1" />
    3 - 6 months</label>
    <br />
    <label>
    <input type="checkbox" name="purchase_6to12month" value="6-12month" id="purchase_2" />
    6 - 12 months</label>
    <label><br />
    <input type="checkbox" name="purchase_1yearmore" value="1year" id="purchase_3" />
    1 year or more</label>
    <br />
    </p>
    <p>
    <label>        Would you like someone from H-D to contact
    you regarding our
    2010 products?<br />
    <input type="radio" name="contact" value="contact_yes" id="contact_0" />
    yes</label>
    <br />
    <label>
    <input type="radio" name="contact" value="contact_no" id="contact_1" />
    no<br />
    <br />
    Would you like to receive a H-D Police motorcycle catalog?<br />
    <input type="radio" name="receive" value="receive_yes" id="receive_0" />
    yes</label>
    <br />
    <label>
    <input type="radio" name="receive" value="receive_no" id="receive_1" />
    no</label>
    </p>
    <p>
    <input onmouseup='XMP_TrackThis(this, "HarleyPURL", "Button", "Performed Action");' type="submit" name="submit" id="submit" value="Submit" />
    <label>      </label>
    <label>      </label>
    <br />
    <br />
    <br />
    <br />
    <br />
    </p>
    <input type="hidden" name="XMP_SetNewAdors" value="form2" />
    </form>
    </div>  <!--end #form -->
    <script type="text/javascript">
    <!--
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3");
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4");
    var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5");
    var sprytextfield6 = new Spry.Widget.ValidationTextField("sprytextfield6");
    var sprytextfield7 = new Spry.Widget.ValidationTextField("sprytextfield7");
    //-->
    </script>
    </div> 
    <!--end #wrapper -->
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Font looks different from page to page - InDesign

    The font looks BOLD in page 1 but looks correct in page 2/3.  The font is exactly the same (from what I can tell).  It also seems to be a page thing, because I can drag the font to page 2/3 and it looks correct.  Drag it back to page 1 and it looks bold.

    Is there an image, or an element with an applied effect on the page that is displaying a bold font? If so, try putting the text on its own separate layer.
    As a side note, in the future you'll get quicker and more useful help on questions regarding specific problems by posting in the primary product forums. The InDesign forum can be found here: http://forums.adobe.com/community/indesign

  • Colors in PDF preview look different from ai file.

    Hello,
    I am having a little trouble with the pdf I created in Illustrator. See images below for explanation. It's only happening to certain text. Can someone explain what is happening, how can it be fixed, and how to prevent it from happening again?
    Thank you in advance!
    I get this as thumbnail image on my desktop and in Finder, when I click space bar to quick view, and when its preview as an attachment in an email.
    This is how it's supposed to look. This only happens when the PDF is actually opened..it goes from the above img to this.

    Not quite sure, but it's a high possibilty I am using spot colors. I pulled the color from the panetone swatch. Is there a way to turn that off? No, "INVOICE" isn't placed twice. Im currently trying to research this on the net.
    thanks for responding.
    s

  • How to build what a parent child record looked like from audit history

    I've got a simple parent child relationship (eg DEPT/EMP) and I have audit triggers on the 2 tables that log any changes. The 2 tables are seen by the User as 1 entity, so if an EMP record changes, that is essentially a DEPT change. I want to show a record where the info shown is correct at that particular point in time.
    Now for a very crude example to illustrate...
    So, says it's 9:00 and we have:
    Dept 1=Sales
    Emp 1=Clark
    Emp 2=Smith
    Now we change Emp 1 at 9:01 to Smythe
    Next we change Dept 2 at 9:02 to Sales UK
    Next we add Emp 3=Jones at 9:04
    Next we change Emp1 at 9:05 to Clarke
    So now if the User looks at the history of Dept 1 they will see it has changed at the following times:
    9:01 (emp change)
    9:02 (dept change)
    9:04 (emp change)
    9:05 (emp change)
    even though the actual Dept table was only changed once.
    This part is easy enough to extract but the next part I'm struggling to get my head around (must be Friday afternoon!).
    The User wants to be able to view what the "Dept" looked like at the time of the change. So we would get the following results:
    9:00 Dept 1=Sales, Emp 1=Clark, Emp 2=Smith (as per original data)
    9:01 Dept 1=Sales, Emp 1=Clark, Emp 2=Smythe
    9:02 Dept 1=Sales UK, Emp 1=Clark, Emp 2=Smythe
    9:04 Dept 1=Sales UK, Emp 1=Clark, Emp 2=Smythe, Emp 3=Jones
    9:05 Dept 1=Sales UK, Emp 1=Clarke, Emp 2=Smythe, Emp 3=Jones
    I'm trying to write a bit of SQL to do this but the tricky bit comes in due to having 2 different tables that have triggered the change to a "DEPT". I see the output as being as many rows as there are children, so the raw output for the above summary would be along the lines of:
    9:00, Dept 1=Sales, Emp 1=Clark
    9:00, Dept 1=Sales, Emp 2=Smith
    9:01, Dept 1=Sales, Emp 1=Clark
    9:01, Dept 1=Sales, Emp 2=Smythe
    9:02, Dept 1=Sales UK, Emp 1=Clark
    9:02, Dept 1=Sales UK, Emp 2=Smythe
    9:04, Dept 1=Sales UK, Emp 1=Clark
    9:04, Dept 1=Sales UK, Emp 2=Smythe
    9:04, Dept 1=Sales UK, Emp 3=Jones
    9:05, Dept 1=Sales UK, Emp 1=Clarke
    9:05, Dept 1=Sales UK, Emp 2=Smythe
    9:05, Dept 1=Sales UK, Emp 3=Jones
    Any help appreciated!!
    An alternative to all this is to make my trigger on each table populate this info (ie write whatever is currently in place) into a table structured as I have mentioned above (so Dept i denormalised) but that looks to be a bit messy.

    Two tables, Dept and Emp. Both have audit triggers inserting into it's own audit table.
    create or replace table DEPT(
    dept_no number,
    dept_name varchar2(50),
    dept_city varchar2(50));
    create or replace table EMP(
    emp_no number,
    emp_surname varchar2(100),
    emp_firstname varchar2(50),
    emp_dept_no number);dept_no pk of DEPT
    emp_no pk of EMP
    emp_dept_no FK from EMP to DEPT.dept_no
    create or replace table DEPT_AUDIT(
    dept_no number,
    dept_name varchar2(50),
    dept_city varchar2(50),
    audit_date_time date);
    create or replace table EMP_AUDIT(
    emp_no number,
    emp_surname varchar2(100),
    emp_firstname varchar2(50),
    emp_dept_no number,
    audit_date_time date)
    create or replace trigger dept_audit
    after insert or update
    on dept for each row
    begin
      insert into dept_audit(dept_no, dept_name, dept_city, audit_date_time)
      values(:NEW.dept_no, :NEW.dept_name, :NEW.dept_city, sysdate);
    end;
    create or replace trigger emp_audit
    after insert or update
    on emp for each row
    begin
      insert into emp_audit(emp_no, emp_surname, emp_firstname, emp_dept_no, audit_date_time)
      values(:NEW.emp_no, :NEW.emp_surname, :NEW.emp_firstname, :NEW.emp_dept_no, sysdate);
    end;My above example (ignoring that the columns don't match up but hopefully you get the drift) would end up with the following results in the 2 audit tables:
    DEPT_AUDIT
    9:00 Dept 1=Sales (insert)
    9:02 Dept 1=Sales UK (update)
    EMP_AUDIT
    9:00 Emp 1=Clark (insert)
    9:00 Emp 2=Smith (insert)
    9:01 Emp 2=Smythe (update)
    9:04 Emp 3=Jones (insert)
    9:05 Emp 1=Clarke (update)
    As I said originally, I want to get a view of what the "DEPT" looked like at a particular time and to do this I need to take into account the EMP changes for the DEPT which is why my results would be as follows:
    9:00 Dept 1=Sales, Emp 1=Clark, Emp 2=Smith
    9:01 Dept 1=Sales, Emp 1=Clark, Emp 2=Smythe
    9:02 Dept 1=Sales UK, Emp 1=Clark, Emp 2=Smythe
    9:04 Dept 1=Sales UK, Emp 1=Clark, Emp 2=Smythe, Emp 3=Jones
    9:05 Dept 1=Sales UK, Emp 1=Clarke, Emp 2=Smythe, Emp 3=Jones
    Though what I really want is the rows that make it up like:
    9:00, Dept 1=Sales, Emp 1=Clark
    9:00, Dept 1=Sales, Emp 2=Smith
    9:01, Dept 1=Sales, Emp 1=Clark
    9:01, Dept 1=Sales, Emp 2=Smythe
    9:02, Dept 1=Sales UK, Emp 1=Clark
    9:02, Dept 1=Sales UK, Emp 2=Smythe
    9:04, Dept 1=Sales UK, Emp 1=Clark
    9:04, Dept 1=Sales UK, Emp 2=Smythe
    9:04, Dept 1=Sales UK, Emp 3=Jones
    9:05, Dept 1=Sales UK, Emp 1=Clarke
    9:05, Dept 1=Sales UK, Emp 2=Smythe
    9:05, Dept 1=Sales UK, Emp 3=Jones
    Hope that is a bit clearer.
    thanks for taking time to look.

Maybe you are looking for

  • How to set default date of 3 weeks(21 days) from today's date during page load?

    I want to show the default date as 3 weeks from today's date during page load. For example ,i have given as adf.CurrentDate + 21 in EO for the attribute 'DueDate'. But it is showing me the date as 9.7.2013. 3 weeks default date is not getting set.If

  • CS4 Bridge does not open JPEGs in Camera Raw 5.6 which is grey

    I downloaded Camera Raw 5.6 onto my iMac (Snow Leopard).   I have an Olympus E-620.   ORFs (raw) open in bridge, but the Camera Raw is greyed out in the file menu.   Also, Camera Raw does not show up under "open with".   My husband has iMac (same con

  • Question with variable syntax

    Ok I run this; select name from shuttle_demo_category where id = 30; It returns this: name ITEM 10 I am making this stored procedure: create or replace PROCEDURE loadname AS BEGIN declare f utl_file.file_type; V_dir varchar2(10); cursor c_item is sel

  • ATI Monitor running in the background

    Hi all, On my new MacBook Pro 2.33Ghz I have something called ATI Monitor constantly running in the background. It shows up in Activity Monitor, using 15mb of RAM, and it shows it as a PowerPC type of application. Can someone tell me: - Do I need thi

  • Apple ID not signing in?!?

    I've been trying heaps of times to sign into my iPod with my iTunes account and it's not letting me...I have reset the password and its still not working what can I do?