Вы находитесь на странице: 1из 1

report ztx0901.

tables ztxlfa1.
parameters `land1 like ztxlfa1-land1 obligatory default 'US'.
write: / 'Current date:', sy-datum,
/ 'Current time:', sy-uzeit,
/ 'Current user:', sy-uname,
/ 'Vendors having country code', `land1,
/.
select * from ztxlfa1
where land1 = `land1
order by lifnr.
write: / sy-dbcnt, ztxlfa1-lifnr.
endselect.
write: / sy-dbcnt, 'records found'.
if sy-subrc <> 0.
write: / 'No vendors exist for country', `land1.
endif.

Вам также может понравиться