If I run the following code then it generates marginal effect for 2nd outcome.

Code:
webuse sysdsn3
mprobit insure age male nonwhite site2 site3
margins, dydx(nonwhite) predict(outcome(2))
But how can I make it report marginal effect of nonwhite on every outcome in one shot? I tried

Code:
margins, dydx(nonwhite) predict(outcome(1) outcome(2) outcome(3))
but it didn't work.