System: C
Error Code: C 0834 (C-0834)
Explanation
Departure transport means "N", "O", or "R" based on inland mode, declaration type, and procedure. For example, "N" if no inland mode or specific combinations. Error if provided/missing wrong.
When it happens (Reason)
IF //GoodsShipment/Consignment/inlandModeOfTransport is NOT PRESENT THEN //GoodsShipment/Consignment/DepartureTransportMeans = "N" ELSE IF //ExportOperation/declarationType is EQUAL to 'EX' AND //GoodsShipment/GoodsItem/Procedure/requestedProcedure is in SET {21, 22} THEN IF //GoodsShipment/Consignment/inlandModeOfTransport is in SET {5,7} THEN //GoodsShipment/Consignment/DepartureTransportMeans = "N" ELSE //GoodsShipment/Consignment/DepartureTransportMeans = "O" ELSE IF //ExportOperation/declarationType is EQUAL to 'EX' AND //GoodsShipment/GoodsItem/Procedure/requestedProcedure is in SET {10, 11, 23, 31} THEN IF //GoodsShipment/Consignment/inlandModeOfTransport is in SET {5,7} THEN //GoodsShipment/Consignment/DepartureTransportMeans = "O" ELSE //GoodsShipment/Consignment/DepartureTransportMeans = "R" ELSE IF //ExportOperation/declarationType is EQUAL to 'CO' AND //GoodsShipment/GoodsItem/Procedure/requestedProcedure is in SET {76, 77} THEN IF //GoodsShipment/Consignment/inlandModeOfTransport is in SET {5,7} THEN //GoodsShipment/Consignment/DepartureTransportMeans = "N" ELSE //GoodsShipment/Consignment/DepartureTransportMeans = "R" ELSE //GoodsShipment/Consignment/DepartureTransportMeans = "N"
Quick Fix
Check if inlandModeOfTransport present. If not, remove DepartureTransportMeans ("N"). Based on declarationType and requestedProcedure, determine "N", "O", or "R" for specific inland modes (5,7). Provide or remove accordingly. Resubmit.
Step-by-step resolution
Check if inlandModeOfTransport present. If not, remove DepartureTransportMeans ("N"). Based on declarationType and requestedProcedure, determine "N", "O", or "R" for specific inland modes (5,7). Provide or remove accordingly. Resubmit.
Keywords
C 0834, C-0834, C0834
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article