Failed Schneider Hair Follicle Test - Page 2 (2025)

") {$(textAreaBox).setCursorPosition(selectionStart + 8);}else {$(textAreaBox).setCursorPosition(selectionStart + 3);}}else {$(textAreaBox).focus();$(textAreaBox).surroundSelectedText(commandBefore, commandAfter);}}if ($(closestDiv).is('.tableLinkButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkButton').addClass('tableButtonPressed');$('.linkForm').fadeIn();}if ($(closestDiv).is('.tableImageButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableImageButton').addClass('tableButtonPressed');$('.imageForm').fadeIn();}if ($(closestDiv).is('.tableLinkTTButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkTTButton').addClass('tableButtonPressed');$('.linkOnTTForm').fadeIn();}if ($(closestDiv).is('.tableSmileyButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableSmileyButton').addClass('tableButtonPressed');$('.smileyForm').fadeIn();}});$('.formatFormCancel').on('click', function() {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();});$('.previewButton').on('click', function(e) {e.preventDefault();$('.previewButton').html('...Creating Preview')var comment = $('.textAreaBox').val();var dataToSend = {"comment": comment, "createPreview":1};$.post('/truckers-forum/includes/php/admin.php', dataToSend, function(data) {$('html, body').animate({'scrollTop':'+=300'}, 600);$('.previewButton').html('Preview');$('.previewDivInner').html(data.comment);$('.previewDiv').fadeIn();},'json');});$('.previewCancel').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();});$('.previewReply').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();$('.replyButton').trigger('click');});$('.replyButton').on('click', function(e) {e.preventDefault();if ($('.textAreaBox').val().length > 5500) {alert('Your post is too long. Please reduce the size to below 5,500 characters. The count is shown below the window you\'re typing into.');}else {$('.replyButton').html('Sending...');var topicBody = $('.textAreaBox').val();var categoryID = $('.categoryHeading').data('category');var topic = $('.topicHeading').data('topic');if ($('.subscribeButton').hasClass('subscribedToTopic')) {var subscribed = "yes";}else {var subscribed = "no";}var dataArray = {'categoryID': categoryID, 'comment': topicBody, 'topic': topic, 'subscribed': subscribed};$.post('/truckers-forum/includes/php/insertNewComment.php', dataArray, function(data) {var dataReturned = $.parseJSON(data);if (dataReturned.status == "success") {$('.replyButton').html('Success! Reloading page...');location.reload(true);}// if they posted too recentlyelse if (dataReturned.status == "timeLimit") {alert('Sorry, you can only post a new comment every two minutes. Please wait a short time and hit Submit again.');}else if (dataReturned.status == "moderation") {alert('Your comment is awaiting moderation. We will send you an email if it is approved. Hopefully it will only be a few minutes but it could be a few hours so we appreciate your patience. We\'re doing all we can to keep this a friendly and helpful community for everyone. Thanks!');location.reload(true);}else if (dataReturned.status == "commentLimit") {alert('Sorry, you have too many comments in moderation right now. Please be patient while we get caught up and submit this again in a little while. Thanks.')}else if (dataReturned.status == "banned") {alert('Sorry, you have been banned from posting in our forum.');}else {alert('There was an error of some sort. Please hit the "Submit" button again. If this error continues, contact brett@truckingtruth.com and we\'ll get it straightened out. Thanks.');}});}});$('.tagListUL').on('click', function(e) {e.preventDefault();var $target = $(e.target);if ($target.hasClass('btn')) {$target.toggleClass('tagged');}});$('.submitTagsButton').on("click", function(e) {e.preventDefault();$('.submitTagsButton').html('...sending');var taggedElements = $('.tagListUL').find('.tagged');var tagArray = [];for (i=0; i\n\n'; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(insertedHtml, selectionStart, true);$('.imageForm').fadeOut();$('.tableImageButton').removeClass('tableButtonPressed');$('.urlForImage').val('');}img.src = imageUrl;}$('.submitImageButton').on('click', function() {var imageUrl = $('.urlForImage').val();validateImageUrl(imageUrl); });function validateLink(link) {return fetch(link, { method: 'HEAD' }).then(response => {return (response.status === 200 || response.status === 301 || response.status === 302);}).catch(error => {console.log('Error:', error);return false;});}$('.submitLinkButton').on('click', function(e) {e.preventDefault();var textForLink = $('.textForLink').val();if (textForLink.length < 4) {alert('Please put a description for the page you\'re linking to in the "Link Text" field.');}else {var linkUrl = $('.urlForLink').val();var linkHtml = '' + textForLink + '';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);$('.linkForm').fadeOut();$('.tableLinkButton').removeClass('tableButtonPressed');$('.textForLink').val('');$('.urlForLink').val('');}});$('.ttLinkButton').on('click', function(e) {e.preventDefault();var link = parseInt($(this).data('link'));// we have to subtract 1 from link to get the proper array indexvar linkHtml = ttLinkButtonArray[link - 1];// var linkText = $(this).html();// var linkHtml = '' + linkText + ''; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);});$('.smileyForm').on('click', function(e) {e.preventDefault();if ($(e.target).data('name') == "cancel") {return;}var imageName = $(e.target).closest('img').data('name');if (imageName !== 'cancel') {var imageHtml = 'Failed Schneider Hair Follicle Test - Page 2 (1) ';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(imageHtml, selectionStart, true);}});$('.quoteButton').on('click', function(e) {e.preventDefault();$('.newTopicWrapper').show();var comment = $(this).parents('.commentWrapper').find('.commentText');var commentor = $(this).parents('.commentWrapper').find('.nickname').html();$('html, body').animate({scrollTop: ($('.newTopicWrapper').offset().top)}, 500);// gotta get the glossary .definitionTerm spans and .tooltipElements out of the quote$(comment).find('.tooltipElements').remove();$(comment).find('.definitionTerm').each(function(i,v) {$(this).replaceWith($(this).text().trim());});$(comment).find('.viewMoreQuoteButton').remove();// $(comment).find('span[itemprop="text"]').unwrap();// $(comment).trim();var commentWrapped = "
" + $(comment).html().trim() + "
\n\n";var uidOfSender = $('.uidDiv').data('uid');// we have to get the current content of the textarea then append this quotevar currentTextAreaVal = $('.textAreaBox').val();var newTextAreaVal = currentTextAreaVal + "\n\n\n\n" + commentWrapped;// $('.textAreaBox').val(commentWrapped);$('.textAreaBox').val(newTextAreaVal);textAreaCheck(0, 1);});// this is the report button$('.reportButton').on("click", function(e) {e.preventDefault();$thisButton = $(this);if (confirm("Just confirming that you would like to report this comment?")) {$thisButton.text("..sending");var $commentWrapper = $(this).parents('.commentWrapper');var commentId = $commentWrapper.data('commentid');var commentText = $commentWrapper.find('.commentText').html();var nickname = $commentWrapper.find('.nickname a').text();var topicID = $('.topicHeading').data('topic');var topicHeading = $('.topicHeading').text();var page = $('.topicHeading').data('page');var uidOfSender = $('.uidDiv').data('uid');var options = {"reportComment":"1", "topic":topicID, "nickname":nickname, "commentText":commentText, "commentId":commentId, "uidOfSender":uidOfSender, "topicHeading":topicHeading, "page":page};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {$thisButton.text('Report');if (data.status == "success") {alert("Thanks! We've received your report about this comment and you can be certain we'll be taking a close look at it. We appreciate the help!");}else {alert("hmmmm....that didn't go through for some reason. Try hitting the 'report' button one more time. Thanks.");}},'json');}});$('.subscribeButton').on('click', function(e) {e.preventDefault();$(this).toggleClass('subscribedToTopic');});$('.goToPageSubmit').on('click', function(e) {e.preventDefault();var topic = $('.topicHeading').data('topic');var page = $(this).parents('.topicPaginationWrapper').find('.goToPage').val();var subjectString = $('.topicHeading').data('subjectstring');var locationString = "https://www.truckingtruth.com/truckers-forum/Topic-" + topic + "/";locationString += "Page-" + page + "/" + subjectString;location.href=locationString;});// this looks for the first blockquote in each commentTextWrapper and shortens it if it's really long$.each($('.commentWrapper'), function(i,comment) {// console.log($(this));var $quote = $(this).find('blockquote:first');// console.log($quote);// if the quote is taller than 450 pxif ($quote.height() > 450) {// create the "View More" buttonvar a = $("").addClass('btn btnDarkBlueArrowDown viewMoreQuoteButton').attr('data-id', i).html('View More');// add the heightReduced class to the quote$quote.addClass('heightReduced');// append the View More button and clearTall$(a).insertAfter($quote);$('').insertAfter($(a));}});// this will expand the blockquote which we shortened with the previous .each function$('.viewMoreQuoteButton').on("click", function(e) {e.preventDefault();// find the blockquotevar $blockquote = $(this).parents('.commentText').find('blockquote:eq(0)')// if the height is currently reducedif ($blockquote.hasClass('heightReduced')) {// remove the height restrictino$blockquote.removeClass('heightReduced');// convert the arrow down to an arrow up$(this).html("View Less").removeClass('btnDarkBlueArrowDown').addClass('btnDarkBlueArrowUp');// scroll to the top of the blockquote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}// if it's currently at full heightelse {// add heightReduced to reduce the height$blockquote.addClass('heightReduced');// convert the button to arrow down$(this).html("View More").removeClass('btnDarkBlueArrowUp').addClass('btnDarkBlueArrowDown');// scroll back to the top of the quote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}});// if there are new comments this will scroll the page to themif ($('.topicHeading').data('pagename') == "Newest" && $('.newTopic').length) {$('html, body').animate({scrollTop: ($('.newTopic:eq(0)').offset().top - 20)}, 500);}// this creates a searchable list out of the tags with List.js (/includes/js/List.js)// and the fuzzysearch plugin (/includes/js/fuzzysearch.js)var listOptions = { valueNames: [ 'sorted' ], listClass: 'tagListUL', page: 500, plugins:[ListFuzzySearch()]};var tagList = new List('tagListInnerDiv', listOptions);// this is for the page button// make an array of elements that should be included in page menuvar inclusionArray = ["h1","h2","h3",".commentInfo",".nextPageButton",".prevPageButton",".startNewTopic",".returnButtons"];// make an array of elements that should not be included in page menuvar exclusionArray = [".mobileShortcutDiv",".tooltipElements",".previewDiv",".jumpDiv",".newTopicWrapper",".tagListWrapper"];// createPageMenuButton(inclusionArray,exclusionArray);// this is for submitting ratings and tags for each conversation$('.ratingSubmitButton').on('click', function(e) {e.preventDefault();$(this).html('...sending');var rating = $('.ratingSelect').val();var topic = $('.topicHeading').data('topic');$.post('/truckers-forum/includes/php/updateTags.php', {"rating":rating, "topic_id": topic}, function(data) {$('.ratingSubmitButton').html('Success!');setTimeout(function() {$('.ratingSubmitButton').html("Submit");}, 600);});});});

Topic 33037 | Page 2

  • Trucker's Forum
  • Failed Schneider Hair Follicle Test - Page 2 (2)
  • General Category
  • Failed Schneider Hair Follicle Test - Page 2 (3)
  • Failed Schneider Hair follicle test
  • Failed Schneider Hair Follicle Test - Page 2 (4)
  • Page 2 of 3

Page 2 of 3Previous Page Next PageGo To Page:

NaeNaeInNC's Comment

Failed Schneider Hair Follicle Test - Page 2 (5)

NaeNaeInNC

Home State: NC

Experienced Driver

Posts: 681

Joined Us:

4 years, 3 months ago

69 Photos

1 year, 11 months ago

Dude. If you are going to have a snowballs chance in hades, you are going to have to complete the SAP in good faith. Anything reported on your DAC is just as valid for a "pre employment drug screen failure." But sure. Argue that you don't have to do it. See exactly how quickly someone will put your butt in the seat.

Failed Schneider Hair Follicle Test - Page 2 (6)

Once your appeal is completed, you will need to look at SAP for a return to driving. Until that point you will have a brick wall in front of you for driving a CMV.

Failed Schneider Hair Follicle Test - Page 2 (7)

This hair test was not reported to Clearing house as only urine tests are reported so i dont have to complete SAP and its not on my record. but its now on my DAC report and hindering my ability to get a job. so far it looks like the only options i have for hiring are the "second chance" mega carriers

SAP:

Substance Abuse Professional

The Substance Abuse Professional (SAP) is a person who evaluates employees who have violated a DOT drug and alcohol program regulation and makes recommendations concerning education, treatment, follow-up testing, and aftercare.

CMV:

Commercial Motor Vehicle

A CMV is a vehicle that is used as part of a business, is involved in interstate commerce, and may fit any of these descriptions:

  • Weighs 10,001 pounds or more
  • Has a gross vehicle weight rating or gross combination weight rating of 10,001 pounds or more
  • Is designed or used to transport 16 or more passengers (including the driver) not for compensation
  • Is designed or used to transport 9 or more passengers (including the driver) for compensation
  • Is transporting hazardous materials in a quantity requiring placards

DAC:

Drive-A-Check Report

A truck drivers DAC report will contain detailed information about their job history of the last 10 years as a CDL driver (as required by the DOT).

It may also contain your criminal history, drug test results, DOT infractions and accident history. The program is strictly voluntary from a company standpoint, but most of the medium-to-large carriers will participate.

Most trucking companies use DAC reports as part of their hiring and background check process. It is extremely important that drivers verify that the information contained in it is correct, and have it fixed if it's not.

PackRat's Comment

Failed Schneider Hair Follicle Test - Page 2 (8)

PackRat

Moderator

Home State: VA

Experienced Driver

Posts: 10048

Joined Us:

9 years, 3 months ago

855 Photos

1 year, 11 months ago

Previously someone mentioned being hired by Pam after failing a hair test done at a different company.

I remember. I do not take those folks as telling the truth. Just my thoughts. There may be substance users that can be trusted out there.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

Stephen S.'s Comment

Failed Schneider Hair Follicle Test - Page 2 (9)

Stephen S.

reader

Posts: 1

Joined Us:

1 year, 10 months ago

1 year, 10 months ago

I recently got my CDL and applied to my first trucking job, to my surprise I failed Schneider's hair follicle test even thought I paid for my own hair screening before just to make sure and came back negative. anyway I was sent home and am now applying to any trucking job I can get my hands on but most of them are now denying my application due to the report being filled on my DriverIQ website report. Is there anyway to get rid of this or fight this? will it be removed from my report with time? what is my best option or company that I should apply to or is my driving career over before I even started? I am extremely frustrated because Schneider didnt even let me explain my case or appeal it and sent me home immediately as if there's never false positives for hair tests ( which national average shows about 15% are false positive)

Hey Cameron, sorry to hear this happened to you. Was it for cannabis? Do you remember approximately what your test results were, was it over 1pg/mg? I'm basically wondering if anything above a "0" on prehire is a fail. Supposedly the general cutoff is 1pg/mg.

I haven't smoked in about six months and have been testing positive on urine for maybe four, but I'm just paranoid anything at all will mess up my career before it starts.

1pg is 1/1,000,000,000,000 of a gram.

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Prehire:

What Exactly Is A Pre-Hire Letter?

Pre-hire letters are acceptance letters from trucking companies to students, or even potential students, to verify placement. The trucking companies are saying in writing that the student, or potential student, appears to meet the company's minimum hiring requirements and is welcome to attend their orientation at the company’s expense once he or she graduates from truck driving school and has their CDL in hand.

We have an excellent article that will help you Understand The Pre-Hire Process.

A Pre-Hire Letter Is Not A Guarantee Of Employment

The people that receive a pre-hire letter are people who meet the company's minimum hiring requirements, but it is not an employment contract. It is an invitation to orientation, and the orientation itself is a prerequisite to employment.

During the orientation you will get a physical, drug screen, and background check done. These and other qualifications must be met before someone in orientation is officially hired.

Banks's Comment

Failed Schneider Hair Follicle Test - Page 2 (10)

Banks

North East, PA

Experienced Driver

Posts: 1777

Joined Us:

7 years, 1 month ago

60 Photos

1 year, 10 months ago

Failed Schneider Hair Follicle Test - Page 2 (11)

I recently got my CDL and applied to my first trucking job, to my surprise I failed Schneider's hair follicle test even thought I paid for my own hair screening before just to make sure and came back negative. anyway I was sent home and am now applying to any trucking job I can get my hands on but most of them are now denying my application due to the report being filled on my DriverIQ website report. Is there anyway to get rid of this or fight this? will it be removed from my report with time? what is my best option or company that I should apply to or is my driving career over before I even started? I am extremely frustrated because Schneider didnt even let me explain my case or appeal it and sent me home immediately as if there's never false positives for hair tests ( which national average shows about 15% are false positive)

Failed Schneider Hair Follicle Test - Page 2 (12)

Hey Cameron, sorry to hear this happened to you. Was it for cannabis? Do you remember approximately what your test results were, was it over 1pg/mg? I'm basically wondering if anything above a "0" on prehire is a fail. Supposedly the general cutoff is 1pg/mg.

I haven't smoked in about six months and have been testing positive on urine for maybe four, but I'm just paranoid anything at all will mess up my career before it starts.

1pg is 1/1,000,000,000,000 of a gram.

Cameron hasn't been here since this post. Give yourself a year.

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Prehire:

What Exactly Is A Pre-Hire Letter?

Pre-hire letters are acceptance letters from trucking companies to students, or even potential students, to verify placement. The trucking companies are saying in writing that the student, or potential student, appears to meet the company's minimum hiring requirements and is welcome to attend their orientation at the company’s expense once he or she graduates from truck driving school and has their CDL in hand.

We have an excellent article that will help you Understand The Pre-Hire Process.

A Pre-Hire Letter Is Not A Guarantee Of Employment

The people that receive a pre-hire letter are people who meet the company's minimum hiring requirements, but it is not an employment contract. It is an invitation to orientation, and the orientation itself is a prerequisite to employment.

During the orientation you will get a physical, drug screen, and background check done. These and other qualifications must be met before someone in orientation is officially hired.

Kenneth P.'s Comment

Failed Schneider Hair Follicle Test - Page 2 (13)

Kenneth P.

reader

Posts: 16

Joined Us:

1 year, 11 months ago

1 year, 6 months ago

I don't like this answer. Talk about ambiguous. How many months were you clean? When was your last date of drug use, and what was your drug of choice? Where did they take the sample from? Head, armpits, chest, legs, arms, facial hair? I would never rely on a home test holding up against the more expensive testing this huge corporations use.

You took a drug test at home because you suspected you might not test clean. You rolled the dice and put your faith in that home test. Schneider's test likely did not produce a false positive, your home test obviously was not to the same standard of detection.

Now I have read that Schneider in some cases allows for those failing a hair follicle test to reapply after waiting some period of time if that person at least passed the UA portion of the testing. I'm not positive about that and its best to discuss with a recruiter.

I have smoked pot in the past, given it up a year ago this past January before I went to Colombia for a month and a half. During that month and a half, I quit chewing tobacco, gave up the weed, and returned feeling good about kicking both habits.

I have remained weed and tobacco free since Jan and will be attending Schneider's orientation in October this year. So I am most curious about the specifics in your case. Date of last use, where sample was taken from, and what drug or drugs you tested positive for. I want to avoid at all costs potentially having to deal with any issues that would prevent me from being hired. I've invested too much time and money pursuing my CDL and I want this opportunity with Schneider to move forward in a manner that leads to a satisfying career in trucking.

I have no hair on my head. Doubt I would even grow enough hair on my head to sample in six months. I have now discernable body hair, no armpit hair, no chest hair, no leg hair. Very thin arm hair that again might not produce enough of a sample to test. Only real hair i have these days is facial hair. Apparently this will be sufficient to use for testing. But I have heard facial or body hair will show THC metabolites for a longer period of time than hair taken from the scalp.

Again, I would appreciate specifics related to your situation. I can't risk a positive test for THC.

How would you fight it? Did you use prohibited substances and get caught through their testing procedures?

No i have been clean for many months as im taking my trucking career seriously, I even paid for my own hair screen before going to orientation to make sure and the results were negative. So i emailed Schneider telling them I wish to appeal my termination and to show them the hair test results I paid for out of pocket and that their test was a false positive. I also opened a case on driver IQ/cisive to appeal their report on my termination as its now affecting my ability to get hired at other trucking companys

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

ID Mtn Gal's Comment

Failed Schneider Hair Follicle Test - Page 2 (14)

ID Mtn Gal

South Central , ID

Experienced Driver

Posts: 1582

Joined Us:

8 years ago

359 Photos

1 year, 6 months ago

I don't like this answer. Talk about ambiguous. How many months were you clean? When was your last date of drug use, and what was your drug of choice? Where did they take the sample from? Head, armpits, chest, legs, arms, facial hair? I would never rely on a home test holding up against the more expensive testing this huge corporations use.

You will probably not be hearing from him because he has not come back after his last post. He never let us know what ever became of his situation.

El E.'s Comment

Failed Schneider Hair Follicle Test - Page 2 (15)

El E.

reader

Posts: 1

Joined Us:

9 months ago

9 months ago

I experienced a similar situation too .How did you sort it out and was there any other company that was able to hire you

I recently got my CDL and applied to my first trucking job, to my surprise I failed Schneider's hair follicle test even thought I paid for my own hair screening before just to make sure and came back negative. anyway I was sent home and am now applying to any trucking job I can get my hands on but most of them are now denying my application due to the report being filled on my DriverIQ website report. Is there anyway to get rid of this or fight this? will it be removed from my report with time? what is my best option or company that I should apply to or is my driving career over before I even started? I am extremely frustrated because Schneider didnt even let me explain my case or appeal it and sent me home immediately as if there's never false positives for hair tests ( which national average shows about 15% are false positive)

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

BK's Comment

Failed Schneider Hair Follicle Test - Page 2 (16)

BK

Madison, WI

Experienced Driver

Posts: 5727

Joined Us:

8 years, 1 month ago

296 Photos

9 months ago

I experienced a similar situation too .How did you sort it out and was there any other company that was able to hire you

Failed Schneider Hair Follicle Test - Page 2 (17)

I recently got my CDL and applied to my first trucking job, to my surprise I failed Schneider's hair follicle test even thought I paid for my own hair screening before just to make sure and came back negative. anyway I was sent home and am now applying to any trucking job I can get my hands on but most of them are now denying my application due to the report being filled on my DriverIQ website report. Is there anyway to get rid of this or fight this? will it be removed from my report with time? what is my best option or company that I should apply to or is my driving career over before I even started? I am extremely frustrated because Schneider didnt even let me explain my case or appeal it and sent me home immediately as if there's never false positives for hair tests ( which national average shows about 15% are false positive)

Failed Schneider Hair Follicle Test - Page 2 (18)

El E, the original poster will probably not see your question. Happens a lot that someone asks for advice on something that is not possible to correct. Then we never hear from them again.

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Nick's Comment

Failed Schneider Hair Follicle Test - Page 2 (19)

Nick

reader

Home State: WA

Rookie Solo Driver

Posts: 41

Joined Us:

9 months ago

9 months ago

Hi there,

This is my first post on the forum! I recently graduated from CDL school and just accepted a job offer from Schneider which will start middle of July 2024 - next month. I came across this thread while doing some research about the hair follicle test they will perform and I have some questions that I think some of you experts may be able to answer.

Prior to getting my CDL, I was a pretty regular user of marijuana and smoked (vaped actually) daily. I was a heavy user. At the time, I was in a position where I could. I also live in a state where it’s legal - not that this matters for DOT purposes however.

I got sober on May 8th, 2023 and have been sober ever since. May 8th was the last time I ever used any cannabis. I have also had no other drugs or alcohol in my system since. I am 100% sober and did this knowing at the time a few months later I would be getting my CDL and eventually a job. Well, that time has come with the opportunity Schneider has offered me.

My question is, as of writing this post, it has been over one year since I’ve used anything, 404 days to be exact, and when I have my first day of orientation with Schneider, it will be just over 1 year and two months, about 434 days. I probably have nothing to worry about with it being that long ago now but of course, my curiosity is peaked, especially after seeing the OPs post and some of the reply’s. The last thing I want is for anything to happen - again even though I don’t think it would at this point.

How long does marijuana/cannabis use from a regular, daily user stay in for a hair follicle test? How far back does the Schneider hair follicle test go? A lot of what I’m seeing suggests it goes back as far as 90 days, with the urine sample testing for any drugs currently in your system. If it makes any difference, I have fairly long hair - down past the bridge of my nose. Based on all of this information, do I need to worry, even a year and two months AFTER the last time I ever used anything? I appreciate any replies!

Nick

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

DOT:

Department Of Transportation

A department of the federal executive branch responsible for the national highways and for railroad and airline safety. It also manages Amtrak, the national railroad system, and the Coast Guard.

State and Federal DOT Officers are responsible for commercial vehicle enforcement. "The truck police" you could call them.

OWI:

Operating While Intoxicated

BK's Comment

Failed Schneider Hair Follicle Test - Page 2 (20)

BK

Madison, WI

Experienced Driver

Posts: 5727

Joined Us:

8 years, 1 month ago

296 Photos

9 months ago

Hi Nick. Welcome to the forum.

I only know what I read on the forum from others who are more knowledgeable. Based on that, you are probably in the clear……. But, get a private hair follicle test done before the Schneider test. Even then, it’s not 100% fool proof, as was the case with the original poster. In your case, it would be money well spent.

BTW, where did you go to CDL school?

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Page 2 of 3Previous Page Next PageGo To Page:

Return To General CategoryTrucker's Forum Homepage

New Reply:

New! Check out our help videos for a better understanding of our forum features

Bold

Italic

Underline

Quote

Photo

Link

Smiley

Links On TruckingTruth

Done

Failed Schneider Hair Follicle Test - Page 2 (21)Failed Schneider Hair Follicle Test - Page 2 (22)Failed Schneider Hair Follicle Test - Page 2 (23)Failed Schneider Hair Follicle Test - Page 2 (24)Failed Schneider Hair Follicle Test - Page 2 (25)Failed Schneider Hair Follicle Test - Page 2 (26)Failed Schneider Hair Follicle Test - Page 2 (27)Failed Schneider Hair Follicle Test - Page 2 (28)Failed Schneider Hair Follicle Test - Page 2 (29)Failed Schneider Hair Follicle Test - Page 2 (30)Failed Schneider Hair Follicle Test - Page 2 (31)Failed Schneider Hair Follicle Test - Page 2 (32)Failed Schneider Hair Follicle Test - Page 2 (33)Failed Schneider Hair Follicle Test - Page 2 (34)Failed Schneider Hair Follicle Test - Page 2 (35)Failed Schneider Hair Follicle Test - Page 2 (36)Failed Schneider Hair Follicle Test - Page 2 (37)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

Failed Schneider Hair Follicle Test - Page 2 (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Trent Wehner

Last Updated:

Views: 6304

Rating: 4.6 / 5 (56 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Trent Wehner

Birthday: 1993-03-14

Address: 872 Kevin Squares, New Codyville, AK 01785-0416

Phone: +18698800304764

Job: Senior Farming Developer

Hobby: Paintball, Calligraphy, Hunting, Flying disc, Lapidary, Rafting, Inline skating

Introduction: My name is Trent Wehner, I am a talented, brainy, zealous, light, funny, gleaming, attractive person who loves writing and wants to share my knowledge and understanding with you.