cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
uday_guntupalli
Level VIII

Get list of All Table Scripts

All, 

     i know this is simple and there might exist a function. But I will go ahead and ask anyways. 

     Is there a function that extracts all the saved scripts in a data table ? 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

dt << Get Property List(); // I was hoping this function does that 

    

 

Best 

uday 

 

Best
Uday
1 ACCEPTED SOLUTION

Accepted Solutions
uday_guntupalli
Level VIII

Re: Get list of All Table Scripts

My bad - found it . Its called "Get Table Script Names" 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
names = dt << Get Table Script Names;

 

Best
Uday

View solution in original post

1 REPLY 1
uday_guntupalli
Level VIII

Re: Get list of All Table Scripts

My bad - found it . Its called "Get Table Script Names" 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
names = dt << Get Table Script Names;

 

Best
Uday