List of Tables Method X++
public class SLD_MethodList
{
public static void main(Args _args)
{
SysDictMethod sysDictMethod;
SysDictTable sysDictTable;
Set dictMethod;
sysDictTable = new SysDictTable(tableName2Id('CustTable'));
dictMethod = sysDictTable.methods(true, true, true);
SetEnumerator enumerator =
dictMethod.getEnumerator();
while (enumerator.moveNext())
{
sysDictMethod =
enumerator.current();
info(sysDictMethod.name());
}
}
}