I'm using .Net Sap Connector 3 and function "RFC_READ_TABLE" to read PA0001 table data.
Where condition I'm using seem stupid, but it's only to explain that my problem is the length of this expression.
If I use:
MANDT = '100' OR MANDT = '100' OR MANDT = '100' OR MANDT = '100'
it work. But if I use
MANDT = '100' OR MANDT = '100' OR MANDT = '100' OR MANDT = '100' OR MANDT = '100'
I have this exception: "A condition specified dynamically has an unexpected format".
I tried to break the string with the character ~ and specify this character as a separator
function.SetValue ("DELIMITER", "~")
but the problem persists
Help me!