I don't think you can get random numbers for a three-parameter generalized gamma distribution using the builtin generators. If it's possible I would also like to know how to do it.
However, JMP 9 can get random numbers from R. See JSL example below.
// Function that returns random numbers from
// generalized gamma distribution generated
// by R package VGAM
rgengamma = Function( {n = 100, b = 1, d = 1, k = 1},
R Init();
R Submit( "
library(VGAM)
rggam <- rgengamma(100,1,2,3)
" );
rggam = R Get( rggam );
R Term();
rggam
);
// Example of how touse the function to populate a
// data table with n=100 random numbers
dt = New Table( "Generalized Gamma", New Column( "Random" ) );
Column( dt, "Random" ) << setvalues( rgengamma( 100, 1, 2, 3 ) );