Extract table name & field

Veenit Kumar

New Member
I am not able to extract table name & their field-name.Can anyone Suggest me any procedure through which we can get the table name of database & their field name in CHUI.The table name what i got can be extracted from hidden tables.Can you please further help me out to get their field name.
 

ss_kiran

Member
Hello vineet,

did you try something like this:
FOR EACH _file NO-LOCK:
IF _file-name BEGINS "_" THEN NEXT.
FOR EACH _field OF _file NO-LOCK:
disp _field-name.
end.
end.

i hope this works

-kiran
 
Top