Link of vehicle to SD/MM

Hi, what's the best way to display the document flow for a particular vehicle?
Interested in SD docs like Order/Delivery/Invoice and
MM docs like PO/Del/Invoice and
FI docs like Invoice/GL Postings etc.
right now I'm looking through SE16 and searching on item specifics in the order line VBAP. It's not for the users!
thanks!
Philip

HI Phillip,
Even it is VMS or DBM, all the standard documents like PO, Delivery, material movements documents, billing can be accessed through history.
History would be able to take you to the physical documents. If that is not happening, you can check with the authorizations that you may have in that system.
Best regards,
Harsha

Similar Messages

  • Application design problem

    Hello. I am attempting to create a desktop standalone application for my mechanic. The application needs to store customer information, address information, vehicle information, repair history information, mechanic information, and job information. I have started creating data objects to represent these entities. I would like the front-end to be swing based or something else that would not take up alot of memory. The database will be a mysql database. The main purpose is to track jobs. A job will be created and an mechanic will be assigned to the job. It will track the hours worked and the type of job that was done. It will track the vehicle the job was done on and which customer the vehicle belongs to. The main view of the application should be a schedule of jobs that are marked visually showing if they are complete or not. I would like to have different views so that I can see a list of the most current customers. I would like to click on a customer and have thier last repair information be shown. This is a rough desc of what the application will do. Being a beginner I do not know where to start or what the design pattern should be. Can anyone suggests a life cycle perhaps that I should follow? As well as some guidelines to what I should code first? Again I have the data objects coded but what should I do next? Thank you.

    The architecture question will depend a lot on how you foresee the program being used in the future. If it's likely to remain a single-user application, a desktop interface is the way to go. If it looks like several PCs will be accessing the data (perhaps one or two in the office and others in the workshop) then a web application may be the way to go.
    A desktop application will probably be a 2-tier application (database in one tier, UI and business logic in the other). The web application will probably be a 3-tier application. One other factor that may influence your choice is that Swing is a much richer UI than is a web browser.
    Next step is a class diagram, showing relationships between customers, vehicles, jobs and mechanics. This will give you a good overview of the system you're building. At the same time, write some use cases for the business functions � many of them will be the usual crud (create, read, update and delete).
    Break the coding up into sub-systems and get each working before moving onto the next. For example, a suite of windows to collect, display and edit customers. Then do the same with the vehicles. There will be a link between vehicles and customers and some questions to think on (What happens if the customer sells the car and the new owner brings the car in for service? What happens if the customer gets custom plates for the car? ie. Is the plate number the primary key to the vehicle table?). Once customers and vehicles are stable, move onto the jobs.
    As each sub-system is completed, you should have an executable that the customer can review and test. Get the customer to test to ensure you're on the right track. Watch out for scope creep though as the customer begins to see potential in areas that weren't apparent earlier in the project.

  • Polymorphism - retrieving type informati[Ref:C520982]

    Hi Tim.
    Just a few thoughts on your question, based on some of the work we've done here.
    We use your solution (1) to deal with this type of problem. As an example we
    deal with it:
    We have class called Constraint, with several subclasses (eg. Permanent,
    TimeBased, ) requiring different attributes.
    They are all stored in the database table Constraint, with an additional column
    for the class of constraint - we call this ConstraintType.
    On reading from the database, we have a class called GenericConstraint which
    contains all the attributes from all the subclasses and the ConstraintType
    column. We read from the database into an array of GenericConstraint.
    To convert GenericConstraint into the proper subclass, we instantiate the
    correct class, determined by looking at the ConstraintType attribute, and then
    calling it's create method, which takes a Generic Constraint parameter. (An
    alternative would be to call a method on GenericConstraint which did something
    similar and returned the correct class).
    This works very well for us, as the GenericConstraint class and methods which
    use it provide a nice interface between the class structure we use and the
    database structure in the database, and therefore flexibility.
    Looking at the pattern of nulls to determine which class to instantiate may be
    much more restrictive. The separate table idea that you mentioned sounds like a
    one-to-one relationship - is there much benefit in implementing this separately
    and then having to join the additional table ?
    Hope this helps.
    Steve Elvin
    Frontline Ltd.
    UK.
    -----Original Message-----
    From: INTERNET [email protected]
    Sent: Monday, June 15, 1998 12:29 PM
    To: Stephanie Mahay; Steve Elvin; X400
    p=NET;a=CWMAIL;c=GB;DDA:RFC-822=forte-users(a)sagesoln.com;
    Subject: Polymorphism - retrieving type informati [Ref:C520982]
    Suppose I have a class structure containing one base class with several speciali
    sations. Say, "Vehicle", with specialisations of "Car", "Van" and "Truck". All v
    ehicles are persisted in the database, in a rolled-up table, and I want a generi
    c retrieval mechanism, which fetches a vehicle based on the license plate number
    . (It will probably be a service object, which I will call a Persistent Object M
    anager).
    I wish to retrieve ALL vehicles, and calculate the road tax for each. However, c
    ars, vans and trucks are all subject to different tax rules, and require a diffe
    rent method to calculate their road tax. To put it another way, there is a polym
    orphic method 'CalculateRoadTax' on the "Vehicle" class.
    Q: As each vehicle is extracted from the database, how does the rest of the Fort
    e application know what type of vehicle it is?
    I am sure that others must have solved this problem before, but it is new to us.
    We have come up with the following solutions:
    (1) Add a "sub-type" column to the "Vehicle" table. Use the type information to
    instantiate a Forte object of the correct type
    (2) Maintain a completely separate table linking the vehicle licence plate to i
    ts sub-type.
    (3) Deduce the type of the object from the pattern of null columns in the row.
    I think (1) is the best solution, but I'm interested to know what the experts sa
    y!
    Incidentally, if Express can help or hinder in this situation, I would be intere
    sted in that as well.
    regards,
    Tim Kimber
    EDS (UK)
    << File: untitled.dat >>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • RE: Polymorphism - retrieving type information from thedatabase

    I would disagree with your statement that either the object or data model
    must be wrong. The problem is more fundamental-trying to store objects in a
    relational database. The object and relational paradigms can be made to
    work together, but usually only by compromising tenets of one or the other
    (or both). Now granted, there are many ways of making them work
    together-and some are definitely better than others.
    CJ
    Chris Johnson
    612-594-2535 (direct)
    612-510-4077 (pager)
    -----Original Message-----
    From: Rottier, Pascal [SMTP:[email protected]]
    Sent: Monday, June 15, 1998 8:17 AM
    To: Forte Users Mailing list
    Subject: RE: Polymorphism - retrieving type information from
    the database
    > ----------
    > From: Rottier, Pascal[SMTP:[email protected]]
    > Sent: Monday, June 15, 1998 8:17:16 AM
    > To: Forte Users Mailing list
    > Subject: RE: Polymorphism - retrieving type information from
    the database
    > Auto forwarded by a Rule
    >
    This issue has already passed this mailing list a couple of
    times in the past. To put it in more general terms, you have
    different classes which you store in the same DB table.
    This is always tricky. Nine out of ten times, this means
    either your Object model or your DataBase model is wrong.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    This issue has already passed this mailing list a couple of
    times in the past. To put it in more general terms, you have
    different classes which you store in the same DB table.
    This is always tricky. Nine out of ten times, this means
    either your Object model or your DataBase model is wrong.
    If you can differentiate between different classes, this
    means you're dealing with different entities, which should
    be stored in different tables. What if one class has an
    attribute the other one doesn't. This would mean you have
    to add a column to the database which is filled it the row
    represends one class and is NULL if the row represends
    another class. This is not good database practice!
    Differentiating between different classes by means of
    a "type" attribute is the classic procedural approach.
    The OO approach would be to create subclasses. How-
    ever, a relational database doesn't support subclasses.
    The best way, would be to have a different table for
    each subclass. If this gives you problems with norma-
    lizing your database, you can create a table with all
    the attributes generic to vehicle, and a table for each
    subclass with only the attributes relevant to this sub-
    class and a foreign key relation to the main table. If all
    of this is not feasable, you're left with the need to find
    some mechanism to identify what kind of class a cer-
    tain row represends and then instantiate this class. The
    tree solutions you suggested all work. It doesn't really
    matter which one you chose, they're all equally dirty.
    Hope this helps,
    Pascal.
    -----Original Message-----
    From: General [SMTP:[email protected]]
    Sent: Monday 15 June 1998 12:20
    To: [email protected]
    Subject: Polymorphism - retrieving type information from the
    database
    Suppose I have a class structure containing one base class with
    several specialisations. Say, "Vehicle", with specialisations of
    "Car", "Van" and "Truck". All vehicles are persisted in the database,
    in a rolled-up table, and I want a generic retrieval mechanism, which
    fetches a vehicle based on the license plate number. (It will probably
    be a service object, which I will call a Persistent Object Manager).
    I wish to retrieve ALL vehicles, and calculate the road tax for each.
    However, cars, vans and trucks are all subject to different tax rules,
    and require a different method to calculate their road tax. To put it
    another way, there is a polymorphic method 'CalculateRoadTax' on the
    "Vehicle" class.
    Q: As each vehicle is extracted from the database, how does the rest
    of the Forte application know what type of vehicle it is?
    I am sure that others must have solved this problem before, but it is
    new to us. We have come up with the following solutions:
    (1)  Add a "sub-type" column to the "Vehicle" table. Use the type
    information to instantiate a Forte object of the correct type
    (2)  Maintain a completely separate table linking the vehicle licence
    plate to its sub-type.
    (3)  Deduce the type of the object from the pattern of null columns in
    the row.
    I think (1) is the best solution, but I'm interested to know what the
    experts say!
    Incidentally, if Express can help or hinder in this situation, I would
    be interested in that as well.
    regards,
    Tim Kimber
    EDS (UK)
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • VMS and Equipment Master creation for Warranty

    Hi, Can anyone tell me what is the recommended method for assigning warranties for vechicles when using VMS. Is the Equipment master or General Object number and what is the difference between the two ?

    Hi
    I have one question according warranty in VMS:
    what is the difference between warranty assigned to vehicle and the one assigned to Equipment?
    I am comparing solution and see some missing parts in both cases
    My summary is like that:
    Solution 1 - Warranty is assigned to Vehicle WITHOUT equipment
    + WTY recognizes VIN as valid warranty object
    + there is an action in VMS to assign warranty master (vendor and customer one)
    + in VELO you can see claim history (in tab Warranty)
    problems
    -there is no template for measurements points (as in equipment)
    Solution 2 Warranty assigned to Equipment - equ created in VELO linked to vehicle
    + standard actions in VELO to create equipment,
    + standard solution to define template for equipment with measurement points
    +warranty assignment is also as one action in velo
    Problems
    -tab with warranty history in VELO does not get claims related to EQU
    -in WTY equipment must be entered u2013 better would be with VIN
    -measurement points and warranty in velo are not visible (button in vehicle details)
    I will be glad for your feedback
    BR
    Mimo

  • Where to load Vehicle Document Links

    Hi experts,
    we are extracting data for automotive using BI content.
    Enabled the DataSource 0AU_VM_BW_GD in order to load documents linked to a vehicle, we don't know where to load these data, because the DSO provided (0AUVMSO01) deals with Vehicle data and does not have the correct InfoObjects.
    How we can manage this? Anyone has experienced this before?
    Thanks in advance,
    cs

    hi costabile,
    The Technical Name of the InfoCube is related to 0AU_VM_BW_GD is  0AUVMSC01
    hope it will solve ur problem.
    thanks

  • BAPI in CMR for Vehicle Business Partner Link

    Hi
    Is there a BAPI that I could use in CRM Automotive to create the link between a Vehicle and Business Partner?

    Hi Anne,
    Sorry about that..The correct function is BAPI_TRANSACTION_COMMIT.
    As you are using the BAPI_TRANSACTION_COMMIT before BAPI_BUPA_ROLE_ADD, the BAPI BAPI_BUPA_ROLE_ADD is probably called before the data is actually commited onto the DB.
    So while calling the BAPI_TRANSACTION_COMMIT set the WAIT parameter. This should do the trick.
    Also after the BAPI_BUPA_ROLE_ADD you have to do another COMMIT using BAPI_TRANSACTION_COMMIT.
    Let me know if it worked.
    Regards, Debasish

  • Z10 no longer able to link to hands free in vehicle after last update.

    I download the last software update to my Z10 phone about two weeks again and now it will not remain link to my hands free for phone use in my vehicle. Is this a problem with the new software? I deleted the orginal link I had and started over from the begining and it worked till I shut off the vehicle and once restarted it would not link.

    I did both several times, but I found the problem, it was a permission to syc that need to be activated, and once I re syc. all went well, I'm up and working again. Thanks for the interest.

  • Regarding creating a LOOSE LINK between Sales Order and Vehicle

    Hi,
    Does anyone has any idea on how to establish a LOOSE LINK between Sales Order and Vehicle using BAPI_VEHICLE_CREATE or any other Function module.
    Any help will be highly appreciated and rewarded.
    Kind Regards,
    Tanuja

    Dear Kumar,
    Strategy - 40
    Consumption of PIR (not Redution)
    1) the first point in strategy in 40 is, incoming sales order consumes PIR
    2 )both sales order and PIR takes place in MRP planning run
    2) this is where it is in mostly used in many indutries
    just a small example how this strategy works
    1) creat PIR for ur FERT- 100Nos
    2) check in MD04- u will get PIR (VSF) as 100
    3) now creat sales order for 120 for same month
    4 )run MRP for that particular FERT
    5) check the result in MD04, here ur PIR gets vanishied and an plan order will be generated for 120 Nos.
    Regards
    kumar
    Edited by: kumar kumar on Jul 22, 2009 8:29 AM

  • I mistakenly chose Firefox rather than an e-mail vehicle to sent links to sites when I first had to do so on a new HP computer. Would appreciate help to remove this choice and set up a correct one.

    whenever I try to send a page by clicking File and Send Link, the Firefox homepage attempts to download continuously. I need a way to remove my original choice so I can hopefully establish an e-mail vehicle in its place. Many thanks. Soon-To-Be-Pensioner- With-No-IT-Dept.

    Get an external hard drive at least the same size as your internal hard drive, bigger is better. Use Time Machine to back up your files and applications. Once you've done that Start your computer from your original install disc, erase the hard drive and reinstall the original OS X and applications that came with your computer. Then start up using your Snow leopard install disc and upgrade the system to 10.6, run software update to get to 10.6.8 and restore your files and applications from your Time machine backup. Continue to use Time Machine to back up your computer regularly.
    Apple's software will generally serve you well for everyday tasks like browsing and email, counting on unproven third party software to do the same tasks sometimes can give you headaches.

  • I have a problem with my Template as I keep receiving this message in DW CS6; Template is nested inside itself? All my other pages linked to the Template is also not working fine. I tried to us the answer in this forum, but its not working

    <!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"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Home | Greatman Group of Company</title>
    <!-- InstanceEndEditable -->
    <!-- Start WOWSlider.com HEAD section -->
    <link rel="stylesheet" type="text/css" href="../engine1/style.css" />
    <script type="text/javascript" src="../engine1/jquery.js"></script>
    <!-- End WOWSlider.com HEAD section -->
    <style type="text/css">
    .shadowblockmenu-v{
        font: bold 14px Palatino Linotype, Book Antiqua, Palatino, serif;
        width: 180px; /* width of menu */
    .shadowblockmenu-v ul{
    border: 2px solid #03F;
    padding: 0;
    margin: 0;
    list-style: none;
    .shadowblockmenu-v ul li{
    margin:0;
    padding:0;
    .shadowblockmenu-v ul li a{
    display:block;
    color: #03F;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #03F;
    border-right: 1px solid #03F; /*right border between menu items*/
    -moz-box-shadow: inset 7px 0 10px rgba(114,114,114, 0.6); /* Add inset shadow to each menu item. First 3 values in (114,114,114, 0.5) specifies rgb values, last specifies opacity */
    -webkit-box-shadow: inset 7px 0 10px rgba(114,114,114, 0.6);
    box-shadow: inset 7px 0 10px rgba(114,114,114, 0.6);
    text-shadow: 0 -1px 1px #03F; /* CSS text shadow to give text some depth */
    -moz-transition: all 0.2s ease-in-out; /* Enable CSS transition between property changes */
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    .shadowblockmenu-v ul li a:hover, .shadowblockmenu-v ul li a.selected{
    color: black;
    -moz-box-shadow: inset 7px 0 10px rgba(216,89,39, 0.5), inset 0 0 15px rgba(216,89,39, 0.6), inset 0 0 20px rgba(216,89,39, 0.8); /* Add 3 inset shadows to each menu item  */
    -webkit-box-shadow: inset 7px 0 10px rgba(216,89,39, 0.5), inset 0 0 15px rgba(216,89,39, 0.6), inset 0 0 20px rgba(216,89,39, 0.8);
    box-shadow: inset 7px 0 10px rgba(216,89,39, 0.5), inset 0 0 15px rgba(216,89,39, 0.6), inset 0 0 20px rgba(216,89,39, 0.8);
    #wholepage {
        height: 1300px;
        width: 1000px;
        float: none;
        margin: auto;
    .companylogo {
        height: 150px;
        width: 250px;
    .navigationmenu {
        height: 150px;
        width: 750px;
        margin: 0px;
        float: right;
    .bannerimg {
        margin: auto;
        height: 350px;
        width: 950px;
    .marqueetext {
        height: 60px;
        width: 980px;
        margin: auto;
        background-color: #03F;
        color: #FFF;
        padding-top: 1px;
        padding-bottom: 10px;
        font-size: 22px;
        font-weight: bolder;
        border-radius: 20px;
        border: medium solid #F00;
    .footer {
        height: 58px;
        width: 1000px;
        color: #FFF;
        background-color: #03F;
    #bodycontent {
        display: block;
        margin: auto;
        height: 680px;
        width: 980px;
    #body3 {
        display: block;
        float: right;
        height: 225px;
        width: 780px;
        margin-top: 10px;
    #body4 {
        display: block;
        float: right;
        height: 220px;
        width: 780px;
        margin-top: 5px;
    #body1 {
        display: block;
        height: 450px;
        width: 200px;
        float: left;
    #body2 {
        display: block;
        height: 220px;
        width: 780px;
        float: right;
    </style>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    <!-- InstanceBeginEditable name="head" -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <!-- InstanceEndEditable -->
    <!-- InstanceParam name="editablebody" type="boolean" value="true" -->
    </head>
    <body onload="MM_preloadImages('../Images/CJ4Sale.jpg','../Images/Cars4Sale.jpg','../Images/CP4 Sale.jpg')">
    <div id="wholepage">
      <div class="navigationmenu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="../index.html">Home</a>      </li>
          <li><a href="../aboutus.html" class="MenuBarItemSubmenu">About Us</a>
            <ul>
              <li><a href="../aboutus.html">Director / CEO</a></li>
            </ul>
          </li>
          <li><a href="../webdesign.html" class="MenuBarItemSubmenu">Products</a>
            <ul>
              <li><a href="../webdesign.html">Web Design</a></li>
              <li><a href="../jerseys.html">Jerseys</a></li>
              <li><a href="#">Cars</a></li>
              <li><a href="#">Laptops / Phones &amp; Accessories</a></li>
            </ul>
          </li>
          <li><a href="#">Site Map</a>      </li>
          <li><a href="#">Contact Us</a></li>
          <img src="../Images/bannerlogo.jpg" width="745" height="115" alt="My Company Logo" />
        </ul>
      </div>
      <div class="companylogo"><a href="../index.html"><img src="../Images/Logo.jpg" width="250" height="150" alt="My Company Logo" /></a></div><hr/ color="red" />
      <div class="bannerimg">
      <!-- Start WOWSlider.com BODY section -->
    <div id="wowslider-container1">
    <div class="ws_images"><ul>
            <li><img src="../data1/images/customized_barcelona_jerseys.jpg" alt="Customized Barcelona Jerseys" title="Customized Barcelona Jerseys" id="wows1_0"/>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
            <li><img src="../data1/images/customized_chelsea_jerseys.jpg" alt="Customized Chelsea Jerseys" title="Customized Chelsea Jerseys" id="wows1_1"/>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
            <li><img src="../data1/images/cars__jeeps_and_space_buses.jpg" alt="Cars, Jeeps and Space Buses" title="Cars, Jeeps and Space Buses" id="wows1_2"/>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
            <li><img src="../data1/images/cars.jpg" alt="Cars" title="Cars" id="wows1_3"/>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
            <li><img src="../data1/images/cell_phones.jpg" alt="Cell Phones & Accessories" title="Cell Phones & Accessories" id="wows1_4"/>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
            <li><img src="../data1/images/laptops.jpg" alt="Laptops & Accessories" title="Laptops & Accessories" id="wows1_5"/>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
            <li><a href="http://wowslider.com/vi"><img src="../data1/images/customized_arsenal_jerseys.jpg" alt="slider html" title="Customized Arsenal Jerseys" id="wows1_6"/></a>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
            <li><img src="../data1/images/customized_man_utd__chelsea_and_barceloa_jerseys.jpg" alt="Customized Man Utd, Chelsea and Barcelona Jerseys" title="Customized Man Utd, Chelsea and Barcelona Jerseys" id="wows1_7"/>Contact Us :- </br>
    Email: [email protected] </br>
    Mobile: +2349092974966 or +234817493851</li>
        </ul></div>
        <div class="ws_bullets"><div>
            <a href="#" title="Customized Barcelona Jerseys"><span><img src="../data1/tooltips/customized_barcelona_jerseys.jpg" alt="Customized Barcelona Jerseys"/>1</span></a>
            <a href="#" title="Customized Chelsea Jerseys"><span><img src="../data1/tooltips/customized_chelsea_jerseys.jpg" alt="Customized Chelsea Jerseys"/>2</span></a>
            <a href="#" title="Cars, Jeeps and Space Buses"><span><img src="../data1/tooltips/cars__jeeps_and_space_buses.jpg" alt="Cars, Jeeps and Space Buses"/>3</span></a>
            <a href="#" title="Cars"><span><img src="../data1/tooltips/cars.jpg" alt="Cars"/>4</span></a>
            <a href="#" title="Cell Phones & Accessories"><span><img src="../data1/tooltips/cell_phones.jpg" alt="Cell Phones & Accessories"/>5</span></a>
            <a href="#" title="Laptops & Accessories"><span><img src="../data1/tooltips/laptops.jpg" alt="Laptops & Accessories"/>6</span></a>
            <a href="#" title="Customized Arsenal Jerseys"><span><img src="../data1/tooltips/customized_arsenal_jerseys.jpg" alt="Customized Arsenal Jerseys"/>7</span></a>
            <a href="#" title="Customized Man Utd, Chelsea and Barcelona Jerseys"><span><img src="../data1/tooltips/customized_man_utd__chelsea_and_barceloa_jerseys.jpg" alt="Customized Man Utd, Chelsea and Barcelona Jerseys"/>8</span></a>
        </div></div><div class="ws_script" style="position:absolute;left:-99%"><a href="http://wowslider.com">carousel jquery</a> by WOWSlider.com v7.8</div>
    <div class="ws_shadow"></div>
    </div>   
    <script type="text/javascript" src="../engine1/wowslider.js"></script>
    <script type="text/javascript" src="../engine1/script.js"></script>
    <!-- End WOWSlider.com BODY section -->
    </div>
      <!-- InstanceBeginEditable name="EditRegion5" --><br/>
      <div class="marqueetext">
        <p>
          <marquee>
            For your Static and Dynamic Websites Design at an affordable price. Contact Us :- Email: <em style="color:#FF0"> [email protected] </em> Mobile: <em style="color:#FF0"> +2349092974966 or +234817493851 </em>
          </marquee>
        </p>
      </div>
      <!-- InstanceEndEditable -->
      <hr/ color="red" />
    <div id="bodycontent">
        <div id="body1">
          <div class="shadowblockmenu-v">
            <ul>
              <li><a href="../index.html" style="color:#03F">&deg; Home</a></li>
              <li><a href="../aboutus.html" style="color:#03F">&deg; About Us</a></li>
              <li><a href="../aboutus.html" style="color:#F00">   &deg; Director / CEO</a></li>
              <li><a href="../webdesign.html" style="color:#03F">&deg; Products</a></li>
              <li><a href="../webdesign.html" style="color:#F00">   &deg; Web Design</a></li>
              <li><a href="../jerseys.html" style="color:#F00">   &deg; Jerseys</a></li>
              <li><a href="../index.html" style="color:#F00">   &deg; Cars</a></li>
              <li><a href="../index.html" style="color:#F00">   &deg; Laptops / Phones & Accessories</a></li>
              <li><a href="../index.html" style="color:#03F">&deg; Site Map</a></li>
              <li><a href="../index.html" style="color:#03F">&deg; Contact Us</a></li>
            </ul>
          </div>
        </div>
        <div id="body2"><!-- InstanceBeginEditable name="EditRegion1" -->
          <h4 align="center" style="color:#F00">ALL CLUBS &amp; COUNTRIES SALES &amp; CUSTOMIZE JERSEYS FOR SALE!!! </h4>
          <a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image4','','../Images/CJ4Sale.jpg',1)"><img src="../Images/BJ4Sale.jpg" alt="Jerseys For Sale" width="200" height="150" id="Image4" align="left" hspace="10" /></a>
          <p style="color: #000; font-size: 18px;">We recently ventured into customising T-shirts for occassions &amp; Jerseys for all your favorite clubs. We do welcome negative criticism as to help us improve on our production quality as we are full of optimism &amp; we would appreciate ideas that would help this business improve. Just kindly feel free to fill our Feedback form and make a comment. We would work on getting improved based on your comments for us to satisfy all (you) our numerous customers.</p>
        <!-- InstanceEndEditable --></div>
        <div id="body3"><!-- InstanceBeginEditable name="EditRegion2" -->
          <h4 align="center" style="color:#F00">CARS, JEEPS &amp; SPACE BUSES FOR SALE!!! </h4>
          <a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image5','','../Images/Cars4Sale.jpg',1)"><img src="../Images/Car4Sale.jpg" alt="Cars, Jeeps and Space Buses for sale" width="200" height="150" id="Image5" hspace="10" align="left" /></a>
          <p style="color: #000; font-size: 18px;">We've been in the business of selling all types of vehicles for 6 years. We supply qualities and well conditioned vehicles to our customers which made us one of the best Car Dealers in town. We satisfy our customers to their satisfaction. We address some sellers nowadays as an Old Timer. They think they know everything, they don't want to learn new things, they are average (or below average) salespeople and they take great fun out of bringing new salespeople down to their weak level.</p>
        <!-- InstanceEndEditable --></div>
        <div id="body4"><!-- InstanceBeginEditable name="EditRegion3" -->
          <h4 align="center" style="color:#F00">LAPTOPS / PHONES &amp; ACCESSORIES FOR SALE!!! </h4>
          <a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image6','','../Images/CP4Sale.jpg',1)"><img src="../Images/Laptops4Sale.jpg" alt="Laptops/Phones and Accessories for sale" width="200" height="150" id="Image6" hspace="10" align="left" /></a>
          <p style="color: #000; font-size: 18px;">We have been in the business of selling all types of Laptops, Phones and Accessories (Branded new, UK Used and Nigeria Used)for 8 years. We supply qualities Laptops, Phones and Accessories to our customers which made us one of the best Sellers in this business. We satisfy our customers to their satisfaction by offering very good greeting to all our customers in a very respectful manners both on call,  e-mails as well as in our office.</p>
        <!-- InstanceEndEditable --></div>
      </div>
      <div><!-- InstanceBeginEditable name="EditRegion4" --><!-- InstanceEndEditable --></div>
      <hr/ color="red" />
      <div class="footer">
        <div align="center">Copyright &copy; 2015 Greatman Group of Company<br />
          Design By: Musty Greatman<br/>
        All Rights Reserved.</div>
      </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>

    The following line tells me that this is not a template file, but a document created from a template called index.dwt
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    This means that you saved a child document as a template file at some stage.
    If you go to Modify->Templates->Detach from Template, you can remove the template structure from your document. All you then need to do is to re-save the document as a template.

  • DBM Creation of New Vehicle and the relationship with Valuation Class

    HI SAP,
    I'm having problem when creating new vehicle in /DBM/VM.  The Valuation Class that i use for VEHI is 4010. when i click
    on save the system show valuation class 3200 not allowed for material type vehicle config. i already check my valution class
    configuration, My Materia Type VEHI does not link with 3200. how do i resolve this issue ?

    Commander Sauk,
    From the error message it appears that valuation class tied up with your vehicle model is 3200.
    Is it a very new model for which no vehicles created so far?
    Can you please post accounting 1 view of material too showing valuation class as well as valuation category settings?
    Please also check split valuation is correctly setup for plant you are selecting for vehicle.
    check and reply with findings.
    Thanks
    Ritesh

  • I work a long list. Each line has a link that I click on to work. I then click submit. It does not return to the last line worked. Goes to the begining.

    I go to the Insurance Auto Auction website to access a list of vehicles up for auction. When using "explorer" I can follow the link and set a bid value then click submit. It will return me to the last position on one the list. Firefox will sometimes doe this too but more often than not it brings me back to the top of the list. When I am looking at 300 units this becomes very frustrating.

    Try opening each link in a new Tab, and when you're done with each Tab, close it. The "list" page will be sitting exactly where you left it, ''unless that page did an automatic refresh to add newer information while you were viewing a different tab.''
    Middle-click a link
    or use { Ctrl + click }
    or right-click and use Open Link in New Tab

  • Asset Evaluation Group Link to Asset Class

    Hi
    I have a requirement of Linking Asset Evalaution Group with Asset Class.
    For Exapmpe;
    Assetc Class is                Vehicle
    Evaluation group 1            Light, Heavy Medium
    Evaluation Group2             Two, Four,
    Etc.
    At the time of Master creation, Under allocation Tab, i am getting all evaluation groups, I mean, in 1st Group i have more than 50 entries.
    Now the requirement is to get the evaluation group based on the Asset class.
    I do understand, evaluation group creation time,. we don't have option to link with Asset Class.
    Also, there is an option to default Evaluation group for Classes.
    But our requirement is to get filter based on Class, so that at the time of mater data creation, to avoid mistakes..
    Can we meet this requirement ??
    Thanks in advance
    Shinas

    Hi Ajay,
    Thanks for the response..
    You are right, Validation is the only Option.
    But i have lots of evaluation group in each category.
    I dont think client is going to accept it...
    how about AIST0002
    Can we do something on this...

  • How to link to an image from database result.

    Hey all,
    So i have created a search form for a user to search a vehicle in a scrap yard. The vehicles are stored in database with no images( i have no idea how to do this. So i want to be able to allow the user to click on a link to view the vehicle from the search result in a database. Any ideas?
    Thank you! 

    Sorry, I'm new to this game. Thanks. Well i'm using MySQL and Php. Here is the code from my stock list page which display all the results in the database aswell as a search engine to search for specific stock by searching for keywords. I know its very scrappy but here it is anyway:
    <?php require_once('../Connections/cbdb.php'); ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "login.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_cbdb, $cbdb);
    $query_rsStock = "SELECT * FROM stock ORDER BY `date` DESC";
    $rsStock = mysql_query($query_rsStock, $cbdb) or die(mysql_error());
    $row_rsStock = mysql_fetch_assoc($rsStock);
    $totalRows_rsStock = mysql_num_rows($rsStock);
    $maxRows_rsStock = 30;
    $pageNum_rsStock = 0;
    if (isset($_GET['pageNum_rsStock'])) {
      $pageNum_rsStock = $_GET['pageNum_rsStock'];
    $startRow_rsStock = $pageNum_rsStock * $maxRows_rsStock;
    mysql_select_db($database_cbdb, $cbdb);
    $key = $_GET['keyword'];
    $query_rsStock = "SELECT * FROM stock WHERE stock.keywords LIKE '%$key%' ORDER BY stock.date DESC";
    $query_limit_rsStock = sprintf("%s LIMIT %d, %d", $query_rsStock, $startRow_rsStock, $maxRows_rsStock);
    $rsStock = mysql_query($query_limit_rsStock, $cbdb) or die(mysql_error());
    $row_rsStock = mysql_fetch_assoc($rsStock);
    if (isset($_GET['totalRows_rsStock'])) {
      $totalRows_rsStock = $_GET['totalRows_rsStock'];
    } else {
      $all_rsStock = mysql_query($query_rsStock);
      $totalRows_rsStock = mysql_num_rows($all_rsStock);
    $totalPages_rsStock = ceil($totalRows_rsStock/$maxRows_rsStock)-1;
    ?>
    <!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"><!-- InstanceBegin template="/Templates/admin.dwt.php" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Stock Management System</title>
    <!-- InstanceEndEditable -->
    <link href="../style/admin_style.css" rel="stylesheet" type="text/css" media="screen" />
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">
    function tmt_confirm(msg){
    document.MM_returnValue=(confirm(unescape(msg)));
    </script>
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <div id="wrapper">
    <div id="header">Eugene Hoade Car Breakers</div>
    <div id="navigation">
    <ul id="mainav">
    <li><a href="stock_list.php">List of stock</a></li>
    <li><a href="stock_add.php">Add new stock</a></li>
    <li></li>
    <li><a href="logout.php">Logout</a></li>
    <li id="front"></li>
    </ul>
    </div>
    <div id="container"><!-- InstanceBeginEditable name="Content" -->
      <p id="ptitle">Stock</p>
      <form id="forminsert" name="forminsert" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
      <table border="0" align="center" cellpadding="0" cellspacing="0" id="tblinsert">
      <caption>
        Search for Stock
      </caption>
      <tr>
        <th><label>Keyword:</label></th>
        <td><input type="text" name="keyword" id="keyword" /></td>
        <td><input type="submit"  id="button" value="Submit" /></td>
        </tr>
    </table>
      </form>
      <?php if ($totalRows_rsStock > 0) { // Show if recordset not empty ?>
      <table border="0" align="center" cellpadding="0" cellspacing="0" id="tblrepeat">
        <tr>
          <th scope="col">Make</th>
          <th scope="col">Model</th>
          <th scope="col">Year</th>
          <th scope="col">Engine cc</th>
          <th scope="col">Fuel</th>
          <th scope="col">Doors</th>
          <th scope="col">Body</th>
          <th scope="col">Arrival Date</th>
          <th scope="col">Reg.</th>
          <th scope="col">Edit</th>
          <th scope="col">Delete</th>
        </tr>
        <?php do { ?>
          <tr>
            <td><?php echo $row_rsStock['make']; ?></td>
            <td><?php echo $row_rsStock['model']; ?></td>
            <td><?php echo $row_rsStock['year']; ?></td>
            <td><?php echo $row_rsStock['cc']; ?></td>
            <td><?php echo $row_rsStock['fuel']; ?></td>
            <td><?php echo $row_rsStock['doors']; ?></td>
            <td><?php echo $row_rsStock['body']; ?></td>
            <td><?php echo $row_rsStock['date']; ?></td>
            <td><?php echo $row_rsStock['registration']; ?></td>
            <td><a href="stock_edit.php?id=<?php echo $row_rsStock['stockId']; ?>">Edit</a></td>
            <td><a href="stock_remove.php?id=<?php echo $row_rsStock['stockId']; ?>" onclick="tmt_confirm('Are%20you%20sure%20you%20want%20to%20perform%20this%20action?');ret urn document.MM_returnValue">Delete</a></td>
          </tr>
          <?php } while ($row_rsStock = mysql_fetch_assoc($rsStock)); ?>
      </table>
      <?php } // Show if recordset not empty ?>
    <?php if ($totalRows_rsStock == 0) { // Show if recordset empty ?>
      <p>Sorry, there are no records matching your searching criteria.</p>
      <?php } // Show if recordset empty ?>
    <!-- InstanceEndEditable --></div>
    <div id="footer"><p>© <a href="http://www.blablabla.com/" title="Web Designer" target="_blank">Crockett Ink Web Design</a></p></div>
    </div>
    </body>
    <!-- InstanceEnd --></html>
    <?php
    mysql_free_result($rsStock);
    ?>

Maybe you are looking for

  • Best Buy is not a good business...

    I recently bought an iPad Air 2 from Apple.com, 3 days ago. I went into best buy to get a screen cover. The installer mishandled the new device and scratched it. I was a bit taken back, as I just bought this device for $700+ and took it in to be prot

  • Why won't this slide show run it compiles

    import java.awt.*; import java.applet.*; import java.net.*; public class SlideShow extends Applet {   private Image[] images;   private String[] text;   private Label captions;   private volatile int curFrame;   private Thread timerThread;   private

  • Migrate SharePoint's SQL Server (physical) to another SQL Server (virtual server)

    Infrastructure team is migrating domain\SQLSERVER db to new 'XYZ' Location.  Also they are moving these DBs to virtual server. Currently these are physical DB servers. I am trying to keep the server names as same 'SQLSERVER ', but IP address may chan

  • Authorized Credit card orders going for Reauthorization

    Hi All, I have an issue pertaining to Third party Sales orders where Credit cards are being used for payment,Even though these Third party credit card orders  have valid authorization. The system automatically goes for reauthorization through the Aut

  • Get a better performance with audio interface?

    Hi all. I got a silly question. I run Logic 7 on a Powerbook G4 12" with 1.33 Ghz and (only) 768 Mb RAM and a (hard to built in) 160 Gb Harddrive. After having often the "Disk is too slow..." message I was thinking about buying a external audio inter