WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (2024)

") {$(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 = 'WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (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 14413 | Page 1

  • Trucker's Forum
  • WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (2)
  • General Category
  • WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (3)
  • WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC

Page 1 of 1

Sal Q.'s Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (4)

Sal Q.

Posts: 4

Joined Us:

8 years, 2 months ago

8 years, 1 month ago

Hello, so I want to become a truck driver. After using this page I successfully passed all written exams. However a friend and told me he heard of ppl not being US citizens or permanent residents getting a permit and passing the driving test but then receiving a letter saying your CDL will not be issued. DOES ANYBODY KNOW A MEXICAN PERSON WITH THE DACA (DREAM ACT OR DEFFERED ACTION) VISA THAT GOT THEIR CDL IN CALIFORNIA. IVE DONE SOME RESEARCH AND CANT FIND ANSWERS IVE CALLED SCHOOLS AND THE DMV BUT THEY ARE NOT SURE . I DONT GIVE ANT TO BURN MY 1000$ ON TRUCKING DRIVING SCHOOL TO THEN GET DENIED. I DO HAVE MY CA DRIVERS LICENSE BUT I HEARD STORIES OF CDL DENIALS BUT HAVE NOT MET ANYBODY YET WHO WENT THROUGH IT.

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.

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

DMV:

Department of Motor Vehicles, Bureau of Motor Vehicles

The state agency that handles everything related to your driver's licences, including testing, issuance, transfers, and revocation.

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.

OldRookie's Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (5)

OldRookie

Home State: VA

Experienced Driver

Posts: 212

Joined Us:

8 years, 3 months ago

8 years, 1 month ago

I don't know for sure... but, I read somewhere that if you are from Mexico or Canada you can use your CDL from those two countries, in the U.S, but you cannot get a U.S.-based CDL. Again... I do not know this to be fact, it's just something I came across and read a while back. Good luck.

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.

Rick S.'s Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (6)

Rick S.

Technical Advisor

Fort Lauderdale, FL

Company Driver In Training

Posts: 3118

Joined Us:

15 years, 1 month ago

114 Photos

8 years, 1 month ago

Do you have a GREEN CARD - or other USIC documents that authorize you to work?

For example: Arizona's DMV has this to say: USCIS Employment Authorization Document (I-688A, I688B, I-766) – An EmploymentAuthorization Document resulting from a Deferred Action Childhood Arrival is not acceptable

If you are not able to LEGALLY WORK in the U.S. - then getting a CDL will not enable you to GET A JOB. And due to security concerns, people that are not legal permanent residents, are not going to be able to get a CDL.

I'm going to stay out of the political aspects of this - but will reiterate that you need to have WORK AUTHORIZATION IN HAND. And this may vary from state to state.

California may be the most lenient when it comes to this - even allowing undocumented immigrants to obtain drivers licenses. But a CDL is a totally other story. Also keep in mind your DACA is only good for a couple of years (regardless of whether or not you may be granted "permanent resident status" down the road), and most states (and federal regs) around CDL's require permanent residence (green card) along with the right to work.

Rick

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.

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

DMV:

Department of Motor Vehicles, Bureau of Motor Vehicles

The state agency that handles everything related to your driver's licences, including testing, issuance, transfers, and revocation.

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.

OWI:

Operating While Intoxicated

Sal Q.'s Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (7)

Sal Q.

Posts: 4

Joined Us:

8 years, 2 months ago

8 years, 1 month ago

Hello, so I want to become a truck driver. After using this page I successfully passed all written exams. However a friend and told me he heard of ppl not being US citizens or permanent residents getting a permit and passing the driving test but then receiving a letter saying your CDL will not be issued. DOES ANYBODY KNOW A MEXICAN PERSON WITH THE DACA (DREAM ACT OR DEFFERED ACTION) VISA THAT GOT THEIR CDL IN CALIFORNIA. IVE DONE SOME RESEARCH AND CANT FIND ANSWERS IVE CALLED SCHOOLS AND THE DMV BUT THEY ARE NOT SURE . I DONT GIVE ANT TO BURN MY 1000$ ON TRUCKING DRIVING SCHOOL TO THEN GET DENIED. I DO HAVE MY CA DRIVERS LICENSE BUT I HEARD STORIES OF CDL DENIALS BUT HAVE NOT MET ANYBODY YET WHO WENT THROUGH IT.

BY THE WAY MY DACA GAVE ME A WORK PERMIT AND SOCIAL SECURITY CARD .

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.

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

DMV:

Department of Motor Vehicles, Bureau of Motor Vehicles

The state agency that handles everything related to your driver's licences, including testing, issuance, transfers, and revocation.

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.

Eckoh's Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (8)

Eckoh

Home State: VA

Experienced Driver

Posts: 637

Joined Us:

9 years, 10 months ago

5 Photos

8 years, 1 month ago

From what i have been told you must be a legal resident. I do not know what is entailed from that but i was sitting in a drivers lounge not long ago talking politics (dont ask) and a guy from Mexico put in his 2 cents saying who he would vote for if he could vote and the question was asked how he got a CDL he said he worked his butt off to be a legal resident to get his CDL.

I do not know what you got to do or if you are already listed as that but that is what i was told by a non citizen that works for the same company as i do

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.

Sal Q.'s Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (9)

Sal Q.

Posts: 4

Joined Us:

8 years, 2 months ago

8 years, 1 month ago

Well I am not a permanent resident but I am here legally and have a work permit

Hello, so I want to become a truck driver. After using this page I successfully passed all written exams. However a friend and told me he heard of ppl not being US citizens or permanent residents getting a permit and passing the driving test but then receiving a letter saying your CDL will not be issued. DOES ANYBODY KNOW A MEXICAN PERSON WITH THE DACA (DREAM ACT OR DEFFERED ACTION) VISA THAT GOT THEIR CDL IN CALIFORNIA. IVE DONE SOME RESEARCH AND CANT FIND ANSWERS IVE CALLED SCHOOLS AND THE DMV BUT THEY ARE NOT SURE . I DONT GIVE ANT TO BURN MY 1000$ ON TRUCKING DRIVING SCHOOL TO THEN GET DENIED. I DO HAVE MY CA DRIVERS LICENSE BUT I HEARD STORIES OF CDL DENIALS BUT HAVE NOT MET ANYBODY YET WHO WENT THROUGH IT.

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.

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

DMV:

Department of Motor Vehicles, Bureau of Motor Vehicles

The state agency that handles everything related to your driver's licences, including testing, issuance, transfers, and revocation.

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.

Eckoh's Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (10)

Eckoh

Home State: VA

Experienced Driver

Posts: 637

Joined Us:

9 years, 10 months ago

5 Photos

8 years, 1 month ago

Well I am not a permanent resident but I am here legally and have a work permit

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (11)

Hello, so I want to become a truck driver. After using this page I successfully passed all written exams. However a friend and told me he heard of ppl not being US citizens or permanent residents getting a permit and passing the driving test but then receiving a letter saying your CDL will not be issued. DOES ANYBODY KNOW A MEXICAN PERSON WITH THE DACA (DREAM ACT OR DEFFERED ACTION) VISA THAT GOT THEIR CDL IN CALIFORNIA. IVE DONE SOME RESEARCH AND CANT FIND ANSWERS IVE CALLED SCHOOLS AND THE DMV BUT THEY ARE NOT SURE . I DONT GIVE ANT TO BURN MY 1000$ ON TRUCKING DRIVING SCHOOL TO THEN GET DENIED. I DO HAVE MY CA DRIVERS LICENSE BUT I HEARD STORIES OF CDL DENIALS BUT HAVE NOT MET ANYBODY YET WHO WENT THROUGH IT.

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (12)

go to the DMV and ask is all i can tell you.

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.

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

DMV:

Department of Motor Vehicles, Bureau of Motor Vehicles

The state agency that handles everything related to your driver's licences, including testing, issuance, transfers, and revocation.

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.

Mario V.'s Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (13)

Mario V.

Miami, Beach, FL

Considering A Career

Posts: 54

Joined Us:

8 years, 3 months ago

8 years, 1 month ago

Well I am not a permanent resident but I am here legally and have a work permit

you are wrong here buddy, with DACA you are still illegal and have now lawful status in the U.S it was just given to temporarily protect young immigrants and allow them to go to college/ work. with the Daca program you get a social security and a 2 year work permit which can be renewed however keep in mind that there is no direct path from deferred action to lawful permanent residence or to citizenship. And, it can be revoked at any time.

Donald trump has said removing the DACA will be the first thing he does if elected president. and since DACA was placed with presidential power, with the same power it can be removed instantly.

California is one of i believe 5 states that give driver license to illegals, that driver license either says "federal Limit applies" or "driving privelages" only. those can't get a CDL job because they still can't work in the U.S (Florida don't have this so i can't be 100% sure on the notice but you get the point)

with DACA you can get a temporarly driver license, Social security and 2 year work permit. you can Legally apply and try to get a CDL license. and are free to work aslong as you renew your work permit and aslong as the DACA is still in place. you're only restrictions are you cannot leave the U.S to drive into mexico or canada , and no HAZMAT (HAZMAT requires you to be either a citizen or a legal permenent resident)

Goodluck

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.

HAZMAT:

Hazardous Materials

Explosive, flammable, poisonous or otherwise potentially dangerous cargo. Large amounts of especially hazardous cargo are required to be placarded under HAZMAT regulations

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.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

Scott L. aka Lawdog's Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (14)

Scott L. aka Lawdog

Thatcher, UT

Experienced Driver

Posts: 165

Joined Us:

9 years ago

8 years, 1 month ago

Checkout FMCSA 383.71 Subpart E (b) (9).

CSA:

Compliance, Safety, Accountability (CSA)

The CSA is a Federal Motor Carrier Safety Administration (FMCSA) initiative to improve large truck and bus safety and ultimately reduce crashes, injuries, and fatalities that are related to commercial motor vehicle

FMCSA:

Federal Motor Carrier Safety Administration

The FMCSA was established within the Department of Transportation on January 1, 2000. Their primary mission is to prevent commercial motor vehicle-related fatalities and injuries.

What Does The FMCSA Do?

  • Commercial Drivers' Licenses
  • Data and Analysis
  • Regulatory Compliance and Enforcement
  • Research and Technology
  • Safety Assistance
  • Support and Information Sharing

Fm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

Rick S.'s Comment

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (15)

Rick S.

Technical Advisor

Fort Lauderdale, FL

Company Driver In Training

Posts: 3118

Joined Us:

15 years, 1 month ago

114 Photos

8 years, 1 month ago

Checkout FMCSA 383.71 Subpart E (b) (9).

Which pretty much covers it.

But there are some "sanctuary states" that do afford illegal (zero docs) and DACA's some leeway to drive and work.

I doubt this extends to CDL Drivers, but sometimes it depends on the level of ignorance/sympathy of the examiner at the DMV on that day.

There is also the "1 year regular operators license" requirement for CDL's - which some states appear to enforce more stringently than others. Despite the fact that CDL's are "supposed to be" federally regulated and "uniform" in regs/requirements from state to state, sometimes that just doesn't appear to be the case.

Rick

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.

CSA:

Compliance, Safety, Accountability (CSA)

The CSA is a Federal Motor Carrier Safety Administration (FMCSA) initiative to improve large truck and bus safety and ultimately reduce crashes, injuries, and fatalities that are related to commercial motor vehicle

FMCSA:

Federal Motor Carrier Safety Administration

The FMCSA was established within the Department of Transportation on January 1, 2000. Their primary mission is to prevent commercial motor vehicle-related fatalities and injuries.

What Does The FMCSA Do?

  • Commercial Drivers' Licenses
  • Data and Analysis
  • Regulatory Compliance and Enforcement
  • Research and Technology
  • Safety Assistance
  • Support and Information Sharing

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

Fm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

DMV:

Department of Motor Vehicles, Bureau of Motor Vehicles

The state agency that handles everything related to your driver's licences, including testing, issuance, transfers, and revocation.

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.

Page 1 of 1

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

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (16)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (17)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (18)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (19)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (20)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (21)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (22)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (23)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (24)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (25)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (26)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (27)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (28)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (29)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (30)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (31)WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (32)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

WILL MY CDL BE DENIED, IM MEXICAN WITH DACA WORK PERMIT AND SSC - Page 1 (2024)
Top Articles
Latest Posts
Article information

Author: Prof. An Powlowski

Last Updated:

Views: 6353

Rating: 4.3 / 5 (44 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Prof. An Powlowski

Birthday: 1992-09-29

Address: Apt. 994 8891 Orval Hill, Brittnyburgh, AZ 41023-0398

Phone: +26417467956738

Job: District Marketing Strategist

Hobby: Embroidery, Bodybuilding, Motor sports, Amateur radio, Wood carving, Whittling, Air sports

Introduction: My name is Prof. An Powlowski, I am a charming, helpful, attractive, good, graceful, thoughtful, vast person who loves writing and wants to share my knowledge and understanding with you.