cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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