USE THIS CODE AN REPLACE THE FIELDS WITH TAGA AND TAGB IF DOES FIELDS ARE ALPHANUMERIC DON'T USE D_PRID DEFINE FIELD
DEFINE FILE SCO_PROCESSES
D_PRID/A10 = TRIM('B',FTOA(PROCESSES_ID,'(F10)',D_PRID),10,' ',1,'A10');
D_DESC/A100 = '<option value="'||D_PRID||'">'||PRO_CODE||'</option>';
END...
i want to put the LOG_DESCRIPTION title in vertical orientation. the problem is LOG_DESCRIPTION is an ACROSS FIELD and the values for this field are so long, and the column is too big, i want to make it small.
SAMPLE OF VALUES:
SCO_ACTUALIZA_CLIENTES_PR
SCO_AGREGA_CLIENTES_NVOS_PR...
Hi, you can use this sample to fill your list box.
DEFINE FILE SCO_PROCESSES
D_PRID/A10 = TRIM('B',FTOA(PROCESSES_ID,'(F10)',D_PRID),10,' ',1,'A10');
D_DESC/A100 = '<option value="'||D_PRID||'">'||PRO_CODE||'</option>';
END
TABLE FILE SCO_PROCESSES
PRINT
D_DESC
BY PRO_CODE NOPRINT
ON TABLE...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.