the session created by the insert record behavior is "WADA_Insert_inventory_tbl":
$WA_sessionName = "WADA_Insert_inventory_tbl";
in the upload behavior, you dont set the image name using the post in the upload folder:
'UploadFolder' => "./".$_SESSION['Dealer_Name'] ."/images/".$_POST["WADA_Insert_inventory_tbl"] ."/",
should be:
'UploadFolder' => "./".$_SESSION['Dealer_Name'] ."/images/".$_SESSION["WADA_Insert_inventory_tbl"] ."/",