‎2007 Nov 24 5:54 AM
Hello frnds
what is the difference between below two statements:
data : f(5) value 'sap',
f(5) default 'sap'.
thnks,
SUnny
‎2007 Nov 24 5:57 AM
DEFAULT is used to put values in the Selection-screen parameters.
VALUES is used to put the values in the variables.
Regards,
Naimesh Patel
‎2007 Nov 24 5:57 AM
DEFAULT is used to put values in the Selection-screen parameters.
VALUES is used to put the values in the variables.
Regards,
Naimesh Patel
‎2007 Nov 24 6:37 AM
Hi,
data: name type char10 value 'Hello'.
*data: name type char10 default 'Hello'. "it throws syntax error
parameters: p_name type char10 default 'Hello'.
‎2007 Nov 24 8:16 AM