I am trying to have multiple OPTIONS when I try to get data from python to SAP tables. As I showed below, the only option is LGNUM = '376'
. How can I have more options here?
Thank you!
table = 'LTAP'
**options = [{ 'TEXT': "LGNUM = '376'"}]**
fields = ['TANUM','VLTYP','VLPLA','NLTYP','NLPLA','QDATU','QNAME']
pp = PrettyPrinter(indent=4)
rowskips = 0
print("----Begin of Batch---")
result = conn.call("RFC_READ_TABLE",
QUERY_TABLE = table,
DELIMITER='|',
FIELDS = fields,\
OPTIONS = options,
ROWSKIPS = rowskips,
ROWCOUNT = 10, )
pp.pprint(result['DATA'])
options = [{ 'TEXT': "LGNUM = '376'"}, {'TEXT':"BUDAT = '2022'}]