Splitting Of Quota

Hi,
Splitting of Requirement between two suppliers not happening for MRP type PD and Lot size ES
Working fine with VB and ES
With regards
Ram

Dear Sriram,
For quota arrangement split mainly check this,
In T Code OMI4 for lot size ES include the check box for allow splitting in quota.
Assuming that you have maintained quota arrangement usage for the material as 4 and maintained
Purchase info record,Source list and quota alotment in MEQ1.
check with this and revert back.
Regards
Mangalraj.S

Similar Messages

  • BADI CRM_COPY_BADI for item splitting in Quote - Contract

    Hi all,
    i have this requirement to split the item quantity into 1 per line when a contract gets created from a quotation.
    im new to both CRM and BADI but after doing some research online i figure that my scope should involve creating an implementation of the BADI, configurating the transaction type, and then adding my splitting code in method PRODUCT_I.
    but problem is, i've created my implementation and put a breakpoint in both method COPY and PRODUCT_I... and when i try to create a follow-up from a quote to contract, only the COPY method breakpoint gets caught. however, im quite sure it's the PRODUCT_I method which i should be using as it contains the item level internal table being pass into it. but it doesnt seems to be called in this process (am wondering if it's some config thing which i've missed).
    can someone provide some guidance into BADI, CRM_COPY_BADI and possibly the requirement's approach?
    many thanks in advance.
    cheers,
    Ryan.

    Hi Karthik,
    thanks for the info!
    technically, my understanding is that when u create an implementation, the process should goes through all these methods at relevant point on relevant business transaction. but strangely after putting breakpoints in all the said methods above, it seems to just going through the COPY method everytime a followup is being created (from quotation to contract). btw, i'm processing it through tcode CRMD_BUS2000112-> openning an existing quote-> then creating a follow-up contract.
    or should should i instead be coding these method-calling manually (on ORDERADM_I and SCHEDLIN_I) or is there some config i'm missing?
    lost in badi, was working more on the old exits for MM/SD. any pointers are much appreciated.
    many thanks!
    cheers,
    Ryan.

  • Splitting of quota Arrangement

    We maintained quota arrangement for a part , the demand got split across both vendors, but unfortunately due to demand being odd quantity, the demand got split as 4467.50 We donu2019t need to get the decimal places when this split occurs, what needs to be done to avoid the same?
    Thanks
    Dinesh

    You can specify the max allocated qty to the vendor.
    Or through Qta base qty we can control the allocations of quantities to the vendors.

  • Is there a way of splitting quoted posts?

    So I click "Reply" to a post and click the "Quote" button and up comes the whole post to which I wish to reply. I realise it's possible to snip anything irrelevant to the reply, but is it possible to split the quoted post so that it goes:
    quoted selection
    my reply
    2nd quoted selection
    my reply
    Value Added Guest (Inspiring Not Aspiring)
    Rate a post if you like it! - just click the star under the user's name on the left. (N.B. ratings facility no longer available in Forum Help and Suggestions; nor is it available in the Lounge)

    AlunH wrote:
    Have you tried pressing quote a second time?
    Let's try... 1st quote:
    Pash deleted all below the 1st line, then replied: I didn't. Then he pressed the Quote button again.
    Pasha_Selim wrote: click the "Quote" button
    If this works, basiucally, press reply, then quote, edit it, then move the cursor past the quote, and hit "quote" again... edit away.
    Cheers
    Alun
    P.S.  In the spirit of fairness... I'm off to the general PC question thread to rate your post... wouldn't want to overtake you now
    ...and deleted a bit, and added another reply.
    Then thought, oh **bleep**, that seems to work, I'd better give him a rating.
    (The double-spacing seems unnecessary)
    Value Added Guest (Inspiring Not Aspiring)
    Rate a post if you like it! - just click the star under the user's name on the left. (N.B. ratings facility no longer available in Forum Help and Suggestions; nor is it available in the Lounge)

  • Allocation quantity using quota arrangement

    Hi folks.
    please let me know what I need to do in order to allocate the schedule lines according the quota defined. I mean.. if I have a demand for 100 PC for each weak and a quota arrangement with 60% for vendor A and 40% for vendor B how can I get for each weak a schedule line with 60 PCs to vendor A and 40PCs to vendor B?
    tks

    Tks Baweja. But actually what is happening is that the system is allocating quantity only to a one vendor and not distributing the quantities for both. 
    week    qty    vendor
    1           60       A
    1           40       B
    2           60       A
    2           40       B
    3           60       A
    3           40       B
    4           60       A
    4           40       B
    5           60       A
    5           40       B
    What I found out was that to split the quota we have to set up it in the lot size procedure.
    spro->production->materials requirements planning->planning->lot size calculation->check lot-size procedure->mrp lot size

  • PS suspendHistory() workaround

    Hello,
    CS SDK 1.5 are out, and while I really like them a huge lot, the Photoshop document's method suspendHistory() in ActionScript is still bugged... sigh!
    Waiting for an official fix (please, please ), I've come up with a (maybe obvious) workaround, which involves HostObject (as described by Zak Nelson in this CookBook entry) and a little tweak. Basically I bounce from AS3 to JSX and back to AS3 writing my own suspendHistory function.
    If someone else is having troubles as I've had, this is possibly a viable solution to adopt.
    Any suggestion to make it better: obviously welcome.
    In a Controller.as class I embed a Javascript file
    [ Embed (source="jsx/Bounce.jsx" , mimeType=  "application/octet-stream" )]
    private static var myScriptClass:Class;
    Then I declare my own SuspendHistory function:
    public function SuspendHistory(title:String, myFunction:String):void
       var  jsxInterface:HostObject = HostObject.getRoot(HostObject.extensions[0]);
       jsxInterface.eval( new myScriptClass ().toString());
       jsxInterface.init( this );
       jsxInterface.Bounce(title,myFunction);
    where title is the only History tag that will appear in the history states list, and myFunction is... the function that I'd like to call.
    On the JSX side, I've a Bounce.jsx file
    var asInterface = {};
    function init(wrapper)
       asInterface = wrapper;
    function Bounce(title, myFunction)
       var foo = "asInterface." + myFunction;
       app.activeDocument.suspendHistory (title, foo)
    The Bounce function takes the very same two parameters and bounces them back to ActionScript, calling the requested function wrapped inside a (natural working) ExtendScript suspendHistory call.
    Using it in the AS3 class is straightforward, and you can even forget that there's some JSX action behind the scenes:
    public function run():void
       SuspendHistory("Stuff Happening", "myASFunction()");
    public function myASFunction():void
       app.activeDocument.activeLayer.duplicate();
       app.activeDocument.activeLayer.duplicate();  // really fancy stuff...
    The nice part is that the function called from within suspendHistory can have parameters as well (obviously, uh)
    public function run():void
       var loops:uint = 5
       SuspendHistory("Stuff Happening", "myASFunction("+loops+")");
    public function myASFunction(loops:uint)
       for (var i:uint = 0; i<loops; i++)
          app.activeDocument.activeLayer.duplicate();
    even though to split with quotes the function code to add the parameter isn't that elegant... but as long as it works, I'm happy - and it's better than nothing.
    Cheers,
    Davide
    Nevertheless a fix in the CSAW libraries would be better

    Forgot to mention you still have to have CS5 installed on your non-compliant laptop.  Wouldn't it be funny if this is a PS bug requiring a toggled bit to be set in order to render in 3D?

  • Thunderbird changing existing color, and occasionally font, from original messages in replies

    Hello,
    Thunderbird keeps consistently changing text color (always) and font (sometimes, intermittently) when I reply to a message. I hope the attached images will make clear what I mean.
    I have many e-mail exchanges where individuals involved use both font and color to make it instantly possible to distinguish who said what, and often in what order, based upon the font being specific to the individual and the color specific to the response given.
    You will see in the attached screen shots that the original message contained two different fonts in dark blue colors. When I hit "Reply" the compose window switches all the text from the old messages to black. In this case it wouldn't matter much, but it can be very disorienting when you have an e-mail exchange going on that's got more participants all of whom use signature fonts and change either the font and/or color as the conversation progresses. Having everything "go black" removes essential context.
    I also find it odd that when you place your cursor in the middle of existing text and open up a new line to insert your own material that the new material always mimics the last font that was in the material you've just "split open" to add your own reply. In virtually every other e-mail editor I've used when you place yourself in existing text and split it apart by hitting a return the opened area typically would use the font and font color you currently have specified in the compose window.
    If there are settings I need to tweak to:
    1. Force Thunderbird to maintain all existing fonts and font colors when replying to an existing e-mail message,
    2. Get Thunderbird to use the font and font color I have chosen in the compose window any time I split existing quoted material to add new material,
    I'd love to know what those settings are.

    Matt,
    I decided to do some experimentation with creating multiple messages and replies strictly within Gmail's web interface and then to reply to same from Thunderbird. After that, I attempted to start the same sort of chain strictly using Thunderbird to create the messages. The difference is pretty stark.
    The first attachment is how the multiple fonts and colors that originated from Gmail show in Thunderbird's reading window. They are all correct here.
    The second shows how the multiple fonts and colors that originated from Gmail show up when I reply from within Thunderbird. Again, all of those fonts and colors are maintained as sent and the font and color I designated in my Thunderbird options are what get used when composing the reply.
    The last shows what happens when I sent a message created in Thunderbird with one font and color and then go to reply to it from within Thunderbird after having switched my default font and color choice for composition intentionally prior to replying. The font from the original message is retained in the reply, but the color is converted to what has been selected for composition. This suggests to me that Thunderbird is not retaining color information at each "level" within a reply. It has to have sent color information in the original message because it shows up in that color on receipt when reading (I didn't bother with a screen shot, but if you want one I can get one). When replying it is stripping or overwriting the color information from the original message and using the current compose color and applying it to everything in the window.
    As far as I'm concerned, that's a bug.
    Brian

  • Common response pattern now impossible

    A common pattern when answering a forum question is to quote the original post, then interleave responses contextually at various relevant points. In the previous incarnation of the OTN forums it was simple to quote or unquote content, either by adding or deleting a ">" at the start of the line, or using {quote} tags.
    Now there appears to be no way to split the quoted text using the so-called "Full Editor". Attempting to do it using the HTML, Jive produces this gobbet of non-conforming HTML:
    <body><pre class="jive_text_macro jive_macro_quote" jivemacro="quote" _modifiedtitle="true">
    <p>985678 wrote:</p>
    <p></p>
    <p><br />Is it possible to show the count of number or rows in table on the Home page Tab button.</p>
    <p>On home page there is a Tab called Count and I want to show the count on the right corner of this tab button.</p>
    Is the only way to insert responses contextually to pollute ourselves by going along with this monstrous abuse of the pre element? Clearly Jive's developers would top post on Usenet...
    Message was edited by: fac586:
    Strangely, when the response is shown in the thread view, it correctly uses the blockquote element to render the quoted text. Why not do that in the editor?
    Anyway, please consider this an enhancement request for means to add and split block quoted content via the editor.

    BluShadow wrote:
    fac586 wrote:
    A common pattern when answering a forum question is to quote the original post, then interleave responses contextually at various relevant points. In the previous incarnation of the OTN forums it was simple to quote or unquote content, either by adding or deleting a ">" at the start of the line, or using {quote} tags.
    Now there appears to be no way to split the quoted text using the so-called "Full Editor". Attempting to do it using the HTML, Jive produces this gobbet of non-conforming HTML:
    Ah... but there is a way. 
    When you go into the editor (I'm using the advanced editor here)... you click the quote button to quote the text of the person you're replying to and it puts the whole shebang in there for you.
    If you click on the quoted section of text a little speak bubbly thing pops up at the side.  Click on that and it expands with a little cross button in it... which "unquotes" the text.
    Alas it's impossible to perform that click when using iOS :-(
    You can then type your text where you want and highlight the parts of the originally quoted text and re-quote it using the Insert (>>) button and "Quote" option.
    Perhaps not a straigtforward as just putting {quote} tags like we used to, but it's not quite as difficult as trying to delve into the depths of the HTML editor. 
    Since I can apparently write better HTML than Jive, I'd make the HTML Editor my default, however I can't quote the OP from there, and there doesn't seem to be a true preview option...

  • Lot size Key without splitting Quota

    Hi,
    Can any one explain me what is the use of Lot size Key without splitting Quota.
    We had created a lot size Key - XY with following seting:-
    1) Lotsize Proceed = P
    2) Lotsize indicator -K
    3) Scheduling =2
    4) No of periods = 1
    5) Splitting Quota = Not checked(blank)
    If we had configured this lot size key, what is the benefits of the above setting, What testing need to be done to know whether this lot size key is working perfectly after configuration?.
    Thanks in advance

    Hi,
    If splitting quota indicator not set, then qouta arrangement is not used during planning wrt to selected lot size.
    Lot size procedure you selected, it is a periodic lot sizing procedure. Here the system groups several requirements within a time interval together to form a lot.
    Lot size indicator  Determines how the lot size is calculated for a certain lot-sizing procedure during material requirements planning. For your selection system creates lot size by refereing to planning calender defined in the system
    Scheduling -
    This indicator defines the time in the period the system is to create the availability date or the start date for the lot for period
    lot-sizing procedures.
    The availability date is the date on which the material, including the goods receipt processing time, is available again. In the MRP  list, the  availability date is equal to the MRP date.
    In in-house production, the start date is the order start date, in external procurement the start date is the release date.
    according to your selection - Availability date at period end
    No of periods - 1
    Run a complete MRP cycel  to check whether it is working properly or not.
    Post the results what you get.
    Regards,
    Pavan

  • CTM  with Inbound Quota..with demand and time split

    Hi Experts,
    I am trying to use two different quota figures for two different time periods( with no overlap).
    Product X at Loc1 is supplied by Vendor1 and Vendor2.
    Inbound Quota with Demand Split is used as given below:
    A) 1st Jan2011 to 31st Dec2012     Quota for Vendor1= 80   Quota for Vendor1= 20
    B) 1st Jan2013 to 31st Dec 2099    Quota for Vendor1= 50   Quota for Vendor1= 50
    But CTM considers it as given below.
    A) 1st Jan2011 to 31st Dec9999     Quota for Vendor1= 80   Quota for Vendor1= 20
    B) 1st Jan2013 to 31st Dec 9999    Quota for Vendor1= 50   Quota for Vendor1= 50
    I have two queries....Why CTM is not considering correct time period for Line A? Also why its taking end point as 31st Dec 9999 and not 31st Dec 2099?
    Will appeciate your opinion.
    Thanks

    Hi Sachin
    Thanks for the input.
    However, this does not solve the issue with decreasing time phased safety stock in combination with multiple demand priorities.
    If you run CTM with the settings you mentioned, it will respect the demand priorities, but builds up safety stock when the time phased safety stock is decreasing. (This is a release restriction). According to the documentation available, you should run CTM with the additional settings 'do not plan demand' and 'consider shortage' to overcome this. However, it does not repect the other demand priorities anymore. I tried multiple runs (with use of pegging, with different planning settings), but they all do not lead to the required result.
    Edited by: S. Geurds on Nov 17, 2008 1:57 PM

  • Quota Splitting

    Dear Experts,
    AM working in Quota, SPlitting...
    Can any body send me the setting for ES-Lot size, in my server, ES Lot size is not there.
    Plz Take it from OMI4 & reply..am waiting for reply.

    Hi,
    Copy EX and enable the split quota indicator.
    LSP - S(static LSP)
    LS indicator - E(lot for lot)
    Regards,
    deepak.
    Edited by: K B Deepak on Feb 12, 2009 8:03 AM

  • SSRS Report Returning Double Quote string from a Single Quote String

    Hi, I'm getting weird thing in resultset from SSRS report when executed. When I pass parameter to a report, which passes String that has single quote value to a split function , it returns rows with double quote. 
    For example  following string:
    'N gage, Wash 'n Curl,Murray's, Don't-B-Bald
    Returns: 
    ''N gage, Wash ''n Curl,Murray''s, Don''t-B-Bald
    through SSRS report.
    Here is the split function Im using in a report.
    CREATE Function [dbo].[fnSplit] (
    @List varchar(8000), 
    @Delimiter char(1)
    Returns @Temp1 Table (
    ItemId int Identity(1, 1) NOT NULL PRIMARY KEY , 
    Item varchar(8000) NULL 
    As 
    Begin 
    Declare @item varchar(4000), 
    @iPos int 
    Set @Delimiter = ISNULL(@Delimiter, ';' ) 
    Set @List = RTrim(LTrim(@List)) 
    -- check for final delimiter 
    If Right( @List, 1 ) <> @Delimiter -- append final delimiter 
    Select @List = @List + @Delimiter -- get position of first element 
    Select @iPos = Charindex( @Delimiter, @List, 1 ) 
    While @iPos > 0 
    Begin 
    -- get item 
    Select @item = LTrim( RTrim( Substring( @List, 1, @iPos -1 ) ) ) 
    If @@ERROR <> 0 Break -- remove item form list 
    Select @List = Substring( @List, @iPos + 1, Len(@List) - @iPos + 1 ) 
    If @@ERROR <> 0 Break -- insert item 
    Insert @Temp1 Values( @item ) If @@ERROR <> 0 Break 
    -- get position pf next item 
    Select @iPos = Charindex( @Delimiter, @List, 1 ) 
    If @@ERROR <> 0 Break 
    End 
    Return 
    End
    FYI: I'm getting @List value from a table and passing it as a string to split function. 
    Any help would be appreciated!
    ZK

    Another user from TSQL forum posted this code which is returning the same resultset but when I execute both codes in SQL server it works and return single quote as expected.
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/8d5c96f5-c498-4f43-b2fb-284b0e83b205/passing-string-which-has-single-quote-rowvalue-to-a-function-returns-double-quoate?forum=transactsql
    CREATE FUNCTION dbo.splitter(@string VARCHAR(MAX), @delim CHAR(1))
    RETURNS @result TABLE (id INT IDENTITY, value VARCHAR(MAX))
    AS
    BEGIN
    WHILE CHARINDEX(@delim,@string) > 0
    BEGIN
    INSERT INTO @result (value) VALUES (LEFT(@string,CHARINDEX(@delim,@string)-1))
    SET @string = RIGHT(@string,LEN(@string)-CHARINDEX(@delim,@string))
    END
    INSERT INTO @result (value) VALUES (@string)
    RETURN
    END
    GO
    ZK

  • Passing String Which Has Single Quote Row/Value to a Function Returns Double Quoate

    Hi, I'm getting weird thing in resultset. When I pass String which has single quote value in it to a split function , it returns rows with double quote. 
    For example  following string:
    'N gage, Wash 'n Curl,Murray's, Don't-B-Bald
    Returns:
    ''N gage, Wash ''n Curl,Murray''s, Don''t-B-Bald
    Here is the split function:
    CREATE Function [dbo].[fnSplit] (
    @List varchar(8000), 
    @Delimiter char(1)
    Returns @Temp1 Table (
    ItemId int Identity(1, 1) NOT NULL PRIMARY KEY , 
    Item varchar(8000) NULL 
    As 
    Begin 
    Declare @item varchar(4000), 
    @iPos int 
    Set @Delimiter = ISNULL(@Delimiter, ';' ) 
    Set @List = RTrim(LTrim(@List)) 
    -- check for final delimiter 
    If Right( @List, 1 ) <> @Delimiter -- append final delimiter 
    Select @List = @List + @Delimiter -- get position of first element 
    Select @iPos = Charindex( @Delimiter, @List, 1 ) 
    While @iPos > 0 
    Begin 
    -- get item 
    Select @item = LTrim( RTrim( Substring( @List, 1, @iPos -1 ) ) ) 
    If @@ERROR <> 0 Break -- remove item form list 
    Select @List = Substring( @List, @iPos + 1, Len(@List) - @iPos + 1 ) 
    If @@ERROR <> 0 Break -- insert item 
    Insert @Temp1 Values( @item ) If @@ERROR <> 0 Break 
    -- get position pf next item 
    Select @iPos = Charindex( @Delimiter, @List, 1 ) 
    If @@ERROR <> 0 Break 
    End 
    Return 
    End
    FYI: I'm getting @List value from a table and passing it as a string to split function.
    Any help would be appreciated!
    ZK

    fixed the issue by using Replace function like
    Replace(value,'''''','''')
    Big Thanks Patrick Hurst!!!!! :)
    Though I came to another issue which I posted here:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/a26469cc-f7f7-4fb1-ac1b-b3e9769c6f3c/split-function-unable-to-parse-string-correctly?forum=transactsql
    ZK

  • CS5.5 I can't get testing server, "design" and "Split" views operational

    I just upgraded from DWCS3 to DWCS5.5 and am trying to get php (dynamically related) files working. Very frustrating.
    I have set up everything according to the tutorial at http://www.adobe.com/devnet/dreamweaver/articles/setup_testing_server.html Nothing seems to work. And no one seems to currently be answering posts...so I apologize if this is a faux pas, but I'm starting a new thread in hopes that I and others can get some help.
    Here's what I have:
    WAMP server: : C:\TNG813onMowesII\www\ (Mowes Portable II is  software that enables you to quickly set up a WAMP (Windows, Apache, MySQL and PHP) system on any Windows system.))
    Site Name: localhost genealogy Local Site Folder: C:\TNG813onMowesII\www\ Server Name: localhost  Server Folder: C:\TNG813onMowesII\www\  Web URL: http://localhost/genealogy/ Server Model: PHP MySQL Connection: Local/Network
    Remote - unchecked
    Testing - checked
    I also have an idnetical image at D:/MyWebs/public_html/ for syncing with my remote website - http:larryvoyer.com
    My "Design", "Split", "Live View" and "Inspect" buttons are greyed out.
    Again, I apologize if I messed things up bu opening a thread on a prvious subject
    Larry Voyer
    Site Creator/Administrator
    http://larryvoyer.com/genealogy/
    Attempting to solve this on another thread, I was asked for the code that I was trying to see in design view...here it is if it's important:
    <?php
    $flags['noicons'] = true;
    $flags['noheader'] = true;
    $flags['nobody'] = true;
    //Change the text in quotes below to reflect the title of your site
    tng_header( "{$tmp['t5_maintitle']}", $flags );
    ?>
    <body>
    <div align="center">
    <table width="90%" class="maintable">
      <tr>
        <td class="row" colspan="6"></td>
      </tr>
    <tr>
      <td class="imagesection"> </td>
      <td class="spacercol">  </td>
      <td class="content" colspan="4">
       <table border="0" cellpadding="5" cellspacing="0" width="2%" class="innertable">
            <tr>        
        <td class="leftimage"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_leftimg']; ?>" alt="louis voyer" ></td>
        <td class="banner" colspan="2"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_titleimg']; ?>" alt="title"/></td>
        <td class="rightimage"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_rightimg']; ?>" alt="louis voyer" ></td>
      </td>
    </tr>
        <tr>
            <td colspan="4" class="boxback">
       <a href="whatsnew.php" class="lightlink2"><?php echo $text['mnuwhatsnew']; ?></a>
                | <a href="browsemedia.php?mediatypeID=photos" class="lightlink2"><?php echo $text['mnuphotos']; ?></a>
                | <a href="browsemedia.php?mediatypeID=documents" class="lightlink2"><?php echo $text['documents']; ?></a>
                | <a href="browsemedia.php" class="lightlink2"><?php echo $text['allmedia']; ?></a><br />
    <!-- SECOND LINE OF LINKS-->
                <a href="mostwanted.php" class="lightlink2"><?php echo $text['mostwanted']; ?></a>
                | <a href="reports.php" class="lightlink2"><?php echo $text['mnureports']; ?></a>
                | <a href="cemeteries.php" class="lightlink2"><?php echo $text['mnucemeteries']; ?></a>
          | <a href="browsemedia.php?mediatypeID=headstones" class="lightlink2"><?php echo $text['mnutombstones']; ?></a>
          | <a href="anniversaries.php" class="lightlink2"><?php echo $text['anniversaries']; ?></a>
          | <a href="places.php" class="lightlink2"><?php echo $text['places']; ?></a><br />
    <!-- THIRD LINE OF LINKS-->
          <a href="browsenotes.php" class="lightlink2"><?php echo $text['notes']; ?></a>
          | <a href="browsesources.php" class="lightlink2"><?php echo $text['mnusources']; ?></a>
             | <a href="browsetrees.php" class="lightlink2"><?php echo $text['mnustatistics']; ?></a>
             | <a href="bookmarks.php" class="lightlink2"><?php echo $text['bookmarks']; ?></a>
          | <a href="suggest.php" class="lightlink2"><?php echo $text['contactus']; ?></a>
    <?php
    if( $allow_admin ) {
      echo "| <a href=\"showlog.php\" class=\"lightlink2\">{$text['mnushowlog']}</a>\n";
      echo "| <a href=\"admin.php\" class=\"lightlink2\">{$text['mnuadmin']}</a>\n";
    ?>
      </td>
         </tr>
          <tr>
         <td class="leftcontent" rowspan="3">
      <div class="header">
                  <p>Our Noble Background</p>
       </div>
       <p>Recently, the <a href="Longueval" _mce_href="http://www.habitant.org/longueval/">Longueval">http://www.habitant.org/longuev al/">Longueval Research Project </a> has established the connection, through Anne Couvent, into the royalty database.
        This site includes that ancestry.
        Anne Couvent is in your ancestry, have fun loking at some of our famous and infamous ancestors. </p>
        <li><div align="left">
         <ul>
          <li> <a href="pedigree.php?personID=I63070&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I63070amp;tree=v7_28" class="pers" id="pI63070_tv7_28">Queen Cleopatra </a>  </li>
          <li> <a href="pedigree.php?personID=I107713&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I107713&amp;tree=v7_28" class="pers" id="pI185929_tv7_28">Alexander the Great</a>  </li>     
          <li> <a href="pedigree.php?personID=I186817&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I186817&amp;tree=v7_28" class="pers" id="pI186817_tv7_28">Attila the Hun</a>  </li>
          <li> <a href="pedigree.php?personID=I83464&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I83464&amp;tree=v7_28" class="pers" id="pI83464_tv7_28">Charlemagne</a>  </li>
          <li> <a href="pedigree.php?personID=I185929&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I185929&amp;tree=v7_28" class="pers" id="pI185929_tv7_28">King Louis XIV</a>  </li>
         </ul>
          </div></li>
       <p> Here are some links showing noble ancestors as they are related to me </p>
          <ul><li>
          <div align="left"><a href="rulers/rulers_france.php">Rulers of France</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_germany.php">Rulers of Germany</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_hre.php">Rulers of theHoly Roman Empire</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_italy.php">Rulers of Italy</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_visigoths.php">Rulers of the Visigoths</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_franks.php">Rulers of the Franks</a></div>
        </li>
         </ul>
         <p>  </p>
         <span class="style26o">Please note: this is not complete and is included for the user to see their potential relationship to past nobility
              The nobility database is far from the primary focus of the site and will not be supported other than the correction of errors.</span></div>
            </td>
      <td>
       <div class="header">
                  <?php echo $text['welcome']; ?>!
       </div>
       <div class="normal">
          <img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_mainimage']; ?>" alt="" style="float:right" class="indexphoto" width="300"  /><br /><br />
         <p>Welcome to the genealogy site devoted to Voyer and Bedard ancestry. Why Voyer and Bedard? My father was a Voyer. My mother a Bedard
         I believe that this is the largest compilation of Voyers with 4000+ and 24,000+ Bedards. I hope that it will be useful to those looking for their heritage.</p>
         </p>I am indebted to my cousin Jacqueline TIERNAN Poudrier for her tireless research and contributions to this site. </p>
         <p>If you have any questions or comments about the information on
         this site, <a href="suggest.php">please contact us</a>.
         We look forward to hearing from you.</p>
         <ul>
          <?php
           if(!$currentuser) {
            if(!$tngconfig['disallowreg'])
             echo "<li><a href=\"newacctform.php\">{$text['mnuregister']}</a></li>\n";
            echo "<li><a href=\"login.php\">{$text['mnulogon']}</a></li>\n";
           else {
            echo "<li><a href=\"logout.php\">{$text['mnulogout']}</a></li>\n";
           if($chooselang)
            echo "<li><a href=\"changelanguage.php\">{$text['mnulanguage']}</a></li>\n";
          ?>
         </ul>
         <p></p>
         <div>
         <div class="header">
                  <p>DNA Genealogy</p>
       </div>
       <p></p>
         <p>DNA technology allows us another way to investigate our ancestry, especially with regard to lines that have been difficult or even impossible to resolve as is our case with the lack of records in France.<p></p> 
    There are many ways to test and analyze DNA, but there are two particular kinds of DNA testing that are especially useful in genealogy:  Y-chromosome DNA (Y-DNA) testing and mitochondrial DNA (mtDNA) testing.  The genealogical usefulness of these two DNA tests is based on two aspects of human inheritance:
       <ol>
       <li>  that the Y chromosome is passed on only by the father</li>
       <li>  that mitochondria are passed on only by the mother</li>
       </p>
       <p>Both a VOYER and a BEDARD DNA project have been created and can reached through the links below. Please make sure that the person submitted for DNA tests is in our dtabase so that we can determine the earliest ancestor.
       If you are submitting for a mitochondrial DNA test, please contact us so that we can attempt to trace your maternal pedigree.
              <div class="subheader"><span class="style41"><a href="Voyer" _mce_href="http://www.worldfamilies.net/surnames/voyer">Voyer">http://www.worldfamilies.n et/surnames/voyer">Voyer DNA Project</a> <a href="Bedard" _mce_href="http://www.worldfamilies.net/surnames/bedard">Bedard">http://www.worldfamilies .net/surnames/bedard">Bedard DNA Project</a></span></div>
        <div>
        </td>
      </div>
      <td> </td>
            <td class="rightcontent">
        <div class="language_box">
         <?php
          if($chooselang) {
           $query = "SELECT languageID, display, folder FROM $languages_table ORDER BY display";
           $result = mysql_query($query) or die ($text['cannotexecutequery'] . ": $query");
           $numlangs = mysql_num_rows( $result );
           if($numlangs > 1) {
            echo getFORM( "savelanguage2", "get", "tngmenu3", "" );
            echo "<select name=\"newlanguage3\" id=\"newlanguage3\" style=\"font-size:11px;\" onchange=\"document.tngmenu3.submit();\">";
            while( $row = mysql_fetch_assoc($result)) {
             echo "<option value=\"{$row['languageID']}\"";
             if( $languages_path . $row['folder'] == $mylanguage )
              echo " selected=\"selected\"";
             echo ">{$row['display']}</option>\n";
            echo "</select>\n";
            echo "<input type=\"hidden\" name=\"instance\" value=\"3\" /></form>\n";
           mysql_free_result($result);
          echo "</p>\n";
         ?>
       </div>
       <form action="search.php" method="get">
        <table class="indexbox">
         <tr>
          <td class="padding"><span class="boxback"><?php echo $text['mnulastname']; ?>:<br />
           <input type="text" name="mylastname" class="searchbox" size="14" /></span></td></tr>
           <tr><td class="padding"><span class="boxback"><?php echo $text['mnufirstname']; ?>:<br />
           <input type="text" name="myfirstname" class="searchbox" size="14" /></span>
          </td>
         </tr>
         <tr>
          <td class="padding"><span class="normal"><input type="hidden" name="mybool" value="AND" />
          <input type="submit" name="search" value="<?php echo $text['mnusearchfornames']; ?>" class="small" /><br /><br />
          <?php
           echo "<a href=\"surnames.php\" class=\"lightlink2\">{$text['mnulastnames']}</a><br />\n";
           echo "<a href=\"searchform.php\" class=\"lightlink2\">{$text['mnuadvancedsearch']}</a>\n";
          ?></span>
          </td>
         </tr>
        </table>
       </form>
       <p></p>
       <div class="help">
       <div class="subheader">Can You Help?</div>
       <p></p>
        <p.request>Can you make yourself available to translate correspondence and site content into French?.</p>
        <p.request>Do you read the Obituaries? If you find BEDARD and VOYER obituaries (links or scans)? </p>
        <p.request>Are you a BEDARD or VOYER and not in our database? </p>
        <p.request>Are you interested in being part of the site research or development team?
        <p> </p><a href="suggest.php">please contact us</a>..</p>
       </div>
      </td>
          </tr>
        </table>
        </td>
      </tr>
      <tr>
        <td colspan="6" class="row12"></td>
      </tr>
      <tr>
      <div class="c3"></div>
    </td>
    </tr>
    </table>
    <br />
    <div>
      <br />
      <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <div align="center">
      <input type="hidden" name="cmd" value="_s-xclick" />
      <input type="hidden" name="hosted_button_id" value="1942114" />
      <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="" />
      <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
      </div>
    </form>
    </div>
    </td></tr>
    <tr><td class="tableheader"><img src="img/spacer.gif" width="25" height="25" alt="" /></td></tr></table>
    <div class="footer small">
    <br />
    This site powered by <a href="http://lythgoes.net/genealogy/software.php" class="footer">The Next Generation of Genealogy Sitebuilding</a> &copy;, v. 8.1.3, written by Darrin Lythgoe 2001-2012.
    <br /><br />
    Voyer & Bedard Genealogy &copy; Larry Voyer 2008-2012.
    <br /><br />
    <span class="sitecounter">Unique visitors since January 1, 2012: </span>
         <div>
            <!-- Start of StatCounter Code for Default Guide -->
       <script type="text/javascript"> var sc_project=7546502; var sc_invisible=0; var sc_security="d0ac87ac"; </script> <script type="text/javascript" src="http://www.statcounter.com/counter/counter.js"></script>
       <noscript><div class="statcounter"><a title="web counter" href="http://statcounter.com/free-hit-counter/" target="_blank"><img class="statcounter" src="http://c.statcounter.com/7546502/0/d0ac87ac/0/" alt="web counter"></a></div></noscript>
      <!-- End of StatCounter Code for Default Guide -->
    </div>
    </div> <!-- end of footer div -->
    </div> <!-- end of center div -->
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-2104283-2");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    <!-- end footer.php for template 5--><script type="text/javascript" src="js/litbox.js"></script>
    </div> <!-- end of center div -->
    </body>
    </html>

    John,
    I misundrstood you response
    I entered http://localhost in my browser and recieved the following page:
    Asd you can see everything is working. I thought that when you called local host, it went to the www/ directory where I have my sites
    I still don't see a problem with my settings
    Server Folder: C:\TNG813onMowesII\www\
    Web URL: http://localhost/genealogy/
    I hate it when the tool is more trouble than the work.
    Larry Voyer
    Site Creator/Administrator
    http://larryvoyer.com/genealogy/

  • Can a split in the cable of a MagSafe fry my MacBook Air?

    I first noticed that my 2011 MacBook Air's battery power was still low after a charge period that should have brought it to 100%. This is when I found that the cord had split.
    I purchased a new cord that is exactly the same 45W model as my old cord. I did not know anything about Apple replacing power cords.
    By this time my MBA appeared to be totally out of power.
    When I tried to use the new cord, the expected LED light did not light up and the MBA did not charge after being left on the new charger overnight. I cleaned the contact on the MBA but this made no difference.
    I tried warming up the transformer part of the MagSafe with a hair dryer as some sights suggested when LED light does not light up. No go.
    I tried resetting my MBA's SMC by simultaneously pushing the (left side) Shift/Control/Option and Power buttons. Still no result to Power up the MBA.
    My call to Apple support was turned away as I did not have Apple Care. According to them, service from an Apple store is 2 or 3 days away from me in Mexico City.
    Buying a new laptop is equally complicated as my home base Apple.ca won't ship out of country.
    Anything else I can try to wake up my dead MBA?

    As PlotinusVeritas, I also thought that the frayed cable had fried the charging block but NO!
    I returned home from Mexico and brought the MacBook Air to a Canadian Apple Store for repair.
    They started by changing the port where you plug in the MagSafe Power cord: No Difference.
    They changed the Charging block/card: No Difference, laptop remained dead refusing to charge.
    They quoted me $800. to change the motherboard and at that point as the laptop was not worth that much, I decided to let it R.I.P. (Rest In Peace). The Motherboard was the ONLY thing left that would be the reason why the laptop was no longer charging.
    Apple took no responsability for a frayed power cord frying a MotherBoard.
    Fellow Apple Owners take note! If your power cord starts splitting/fraying DO NOT CONTINUE USING IT! ! !
    A power cord issue can destroy your Motherboard as a worst case scenario. I paid the price as I had to purchase a new laptop.
    My other issue is data. The Solid State drive on the laptop is unreachable without a lot of effort. Taking a hammer to it is my cheapest option.

Maybe you are looking for

  • How to find the capacity of admin server in weblogic server?

    1. how to calculate the capacity of admin server in weblogic 8.1 a admin server can handle how many requests at a time. 2. if 50 threads are given to admin server then with this 50 threads how many messages/requests the admin server can handle??? ple

  • How do I cancel a sub vi stuck in an infinite loop?

    Hi, I am attempting an implementation of the Constrained Nonlinear Optimization sub vi.  It works perfectly 99.9% of the time but gets stuck the other .1% of the time.  It is supposed to time out when it cannot find a solution, but it is failing to d

  • R12 Istore Technical reference manaul

    Hi On the internet and Oracle docs , i'm just able to see the implementation and the quick ref guide. I'm not able to find the Technical reference document for R12 I could find it for 11i, but not for R12 Could you please assist THanks

  • FC Valuation at Year End- Balance sheet items

    ECC-6.00 (FI-CO) We are maintaing the FC exchange rate on monthly basis. We follow a calender year for our group reporting. Is there a way to carry forward all the open items as at 31st December 2007 to new year at the closing rate of December.

  • EXS' Sampler Instrument Count Limitation

    Hello everyone, Does anyone happen to know of a workaround/ solution to EXS' sampler instrument count limitation? I find myself constantly shuffling instruments and libraries in and out of the Sampler Instruments folder, a process which, given my 1TB