Program List with descriptions?

aidan2474

Member
Hi,

I am working for a World client going through audits. The auditors are showing examples of programs with only the program number from another client that uses One World .
I've been asked to get a list of all the programs and descriptions that One World uses and I am not sure how to get this information because I have not worked with One World. Can anyone point me in the right direction or provide a list?

I did see in the download section a table list with descriptions for One World, I need the same thing but for the programs.

Thanks,
Frank
 
Frank,

The following SQL will give you your list:

select siobnm, simd from ol910.f9860
where sifuno in ('APPL', 'UBE')
order by siobnm

siobnm is the application/UBE name and simd is the description.
 
Back
Top