Yes... Thanks all....
Finally I found it myself...... though it was difficult to understand from books...
(i) Key for the relation is (ship_id,s_date) because there does not exist any dependency as R-->key for key being a proper subset of R+. and all attributes are dependent on the key.
(ii) None of the given dependencies is redundant. So, non redundant cover for the dependency set is (Ship_id -->S_capacity;Ship_id, S_date --> cargo;Cargo, S_capacity --> amount)
(iii)Converting to the BCNF gives the following three relations for breakup of the given one:
shipment1(Ship_id,S_capacity);
shipment2(ship_id,s_date);
shipment2(ship_id,Cargo,amount)