Smartforms Conditions
Hi,
I have a problem with condition in a window.
I do this condition :
( SFSY-FORMPAGES = SFSY-FORMPAGES
IS_BIL_INVOICE-HD_GEN-BIL_TYPE = 'ZREG' )
OR
( SFSY-FORMPAGES = SFSY-FORMPAGES
IS_BIL_INVOICE-HD_GEN-BIL_TYPE <> 'ZINT' )
When i debug, i enter in this condition so that
SFSY-FORMPAGES = SFSY-FORMPAGES
IS_BIL_INVOICE-HD_GEN-BIL_TYPE = 'ZREG'
I have test that :
SFSY-FORMPAGES = SFSY-FORMPAGES
( IS_BIL_INVOICE-HD_GEN-BIL_TYPE = 'ZREG'
OR
( SFSY-FORMPAGES = SFSY-FORMPAGES
IS_BIL_INVOICE-HD_GEN-BIL_TYPE <> 'ZINT' )
and it's the same.
Thanks for your help.
Ramana Prasad Tarapatla replied
Hi,
Give the condition as,
SFSY-FORMPAGES = SFSY-FORMPAGES and IS_BIL_INVOICE-HD_GEN-BIL_TYPE NE 'ZREG'.
Thanks & Regards,
Ramana.