Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (2024)

');}else {$('.followThisTopic').text("Add To Favorites");alert("Something is wrong with the network. Try again.");}},'json');}// stop following topic buttonif ($(target).hasClass('followingTopic')) {e.preventDefault();$('.followingTopic').text('...sending');var topic = $('.topicHeading').data("topic");var options = {"stopFollowingTopic":1, "topicId": topic};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {if (data.status == "success") {$('.followingTopic').replaceWith('

Add To Favorites

');}else {$('.followThisTopic').text("Add To Favorites");alert("Something is wrong with the network. Try again.");}},'json');}// show tag list buttonif ($(target).hasClass('showTagList')) {$('.newTopicWrapper').hide();$('.tagListWrapper').fadeIn();}});$('.editorButtonDiv').on('click', function(e) {var closestDiv = $(e.target).closest('div');if ($(closestDiv).is('.tableFormatButton')) {var textAreaBox = $('.textAreaBox');var commandBefore = ($(e.target).closest('.tableButton').data('commandbefore'));var commandAfter = ($(e.target).closest('.tableButton').data('commandafter'));var selectionStart = $(textAreaBox).getSelection().start;var selectionEnd = $(textAreaBox).getSelection().end;if ($(textAreaBox).getSelection().length == 0) {$(textAreaBox).focus();var textToInsert = commandBefore + '' + commandAfter;$(textAreaBox).insertText(textToInsert, selectionStart);if (commandBefore == "

") {$(textAreaBox).setCursorPosition(selectionStart + 12);}else if (commandBefore == "") {$(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 [email protected] 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 = 'Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - 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 25034 | Page 1

  • Trucker's Forum
  • Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (2)
  • General Category
  • Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (3)
  • Can someone clarify the difference between "arrived at shipper" and "arrived at stop"?

Page 1 of 1

John M.'s Comment

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (4)

John M.

Posts: 1

Joined Us:

5 years, 5 months ago

5 years, 5 months ago

Mentor keeps explaining it but I'm not following

OWI:

Operating While Intoxicated

David F.'s Comment

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (5)

David F.

Home State: AZ

Rookie Solo Driver

Posts: 26

Joined Us:

5 years, 7 months ago

1 Photos

5 years, 5 months ago

Arrived at shipper is your origin. Where you pick up your load to be delivered. Arrived at stop is used once your loaded and have arrived at your first stop if you have more than one stop IE split load. If you only have one delivery you would just use arrived at final destination. Then when empty you send in an empty call. Hope this helps.

Mentor keeps explaining it but I'm not following

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

OWI:

Operating While Intoxicated

000's Comment

5 years, 5 months ago

The shipper is the person/company loading your trailer. When you arrive there you are being loaded.

Some loads have multiple stops and you have to put in whatever macro you use for deliveries and the stop number for that delivery.

At Prime we have arrived at shipper which is macro 3. Then arrived at reciever which is macro 4. Within those macros, they ask you which number stop it is. 01. 02, 03, with 90 being the final destination.

Hope that helps.

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

Suicide Jockey's Comment

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (7)

Suicide Jockey

Home State: NC

Experienced Driver

Posts: 369

Joined Us:

7 years ago

72 Photos

5 years, 5 months ago

For Prime arriving at any location is macro 1. You then fill in what stop location it is you have arrived at.

Macro 2 is departure macro for shippers, and macro 3 is departure macro for receivers.

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

Suicide Jockey's Comment

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (8)

Suicide Jockey

Home State: NC

Experienced Driver

Posts: 369

Joined Us:

7 years ago

72 Photos

5 years, 5 months ago

Oops

Wrong numbers lol.

3 is depart shippers and 4 depart receiver.

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

JuiceBox's Comment

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (9)

JuiceBox

Clarksville, TN

Rookie Solo Driver

Posts: 333

Joined Us:

7 years, 9 months ago

38 Photos

5 years, 5 months ago

For what company? That may yield a more specific answer

Grumpy Old Man's Comment

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (10)

Grumpy Old Man

Grand Island, NY

Experienced Driver

Posts: 2528

Joined Us:

6 years, 1 month ago

175 Photos

5 years, 5 months ago

Stop for us is for multiple consignee or receiver loads.

For instance you arrived at shipper and got a load with half going to one place and the rest going elsewhere. The first delivery would be a stop, the second would be arrived at final destination.

Single stop loads use arrived at consignee.

Consignee:

The customer the freight is being delivered to. Also referred to as "the receiver". The shipper is the customer that is shipping the goods, the consignee is the customer receiving the goods.

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

Sid V.'s Comment

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (11)

Sid V.

Posts: 314

Joined Us:

5 years, 8 months ago

4 Photos

5 years, 5 months ago

Shipper is the origin of the trip. Receiver(consignee)is the end of the trip.

Stops are the deliveries or pickups in between the shipper and the reciever.

Consignee:

The customer the freight is being delivered to. Also referred to as "the receiver". The shipper is the customer that is shipping the goods, the consignee is the customer receiving the goods.

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

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

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (12)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (13)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (14)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (15)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (16)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (17)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (18)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (19)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (20)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (21)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (22)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (23)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (24)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (25)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (26)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (27)Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (28)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

Can Someone Clarify The Difference Between 'arrived At Shipper' And 'arrived At Stop'? - Page 1 (2024)
Top Articles
Host Liability Insurance Programme summary
Hiding Assets in Bankruptcy
Automated refuse, recycling for most residences; schedule announced | Lehigh Valley Press
417-990-0201
Www.1Tamilmv.cafe
Restaurer Triple Vitrage
Phcs Medishare Provider Portal
Encore Atlanta Cheer Competition
Tribune Seymour
South Ms Farm Trader
Clairememory Scam
Craigslist Dog Kennels For Sale
Rainfall Map Oklahoma
Snow Rider 3D Unblocked Wtf
Dover Nh Power Outage
Craigslist Prescott Az Free Stuff
Bernie Platt, former Cherry Hill mayor and funeral home magnate, has died at 90
Katie Sigmond Hot Pics
Self-Service ATMs: Accessibility, Limits, & Features
Www.craigslist.com Savannah Ga
Jail View Sumter
Parkeren Emmen | Reserveren vanaf €9,25 per dag | Q-Park
Dhs Clio Rd Flint Mi Phone Number
*!Good Night (2024) 𝙵ull𝙼ovie Downl𝚘ad Fr𝚎e 1080𝚙, 720𝚙, 480𝚙 H𝙳 HI𝙽DI Dub𝚋ed Fil𝙼yz𝚒lla Isaidub
Craigslist Sf Garage Sales
Aid Office On 59Th Ashland
Roadtoutopiasweepstakes.con
Deleted app while troubleshooting recent outage, can I get my devices back?
Reli Stocktwits
De beste uitvaartdiensten die goede rituele diensten aanbieden voor de laatste rituelen
Diana Lolalytics
Darrell Waltrip Off Road Center
KITCHENAID Tilt-Head Stand Mixer Set 4.8L (Blue) + Balmuda The Pot (White) 5KSM175PSEIC | 31.33% Off | Central Online
Baywatch 2017 123Movies
8005607994
Blasphemous Painting Puzzle
Dollar Tree's 1,000 store closure tells the perils of poor acquisitions
Mixer grinder buying guide: Everything you need to know before choosing between a traditional and bullet mixer grinder
Cygenoth
Wayne State Academica Login
Sukihana Backshots
F9 2385
Nina Flowers
Perc H965I With Rear Load Bracket
Grace Family Church Land O Lakes
Sitka Alaska Craigslist
Michaelangelo's Monkey Junction
Besoldungstabellen | Niedersächsisches Landesamt für Bezüge und Versorgung (NLBV)
Morgan State University Receives $20.9 Million NIH/NIMHD Grant to Expand Groundbreaking Research on Urban Health Disparities
Cheryl Mchenry Retirement
Latest Posts
Article information

Author: Jeremiah Abshire

Last Updated:

Views: 6417

Rating: 4.3 / 5 (74 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Jeremiah Abshire

Birthday: 1993-09-14

Address: Apt. 425 92748 Jannie Centers, Port Nikitaville, VT 82110

Phone: +8096210939894

Job: Lead Healthcare Manager

Hobby: Watching movies, Watching movies, Knapping, LARPing, Coffee roasting, Lacemaking, Gaming

Introduction: My name is Jeremiah Abshire, I am a outstanding, kind, clever, hilarious, curious, hilarious, outstanding person who loves writing and wants to share my knowledge and understanding with you.