‎2006 Jul 18 9:17 AM
Hi,
Why doesn't this compile? skwfc_prop_relative_url a constant in type group SKWFC.
data: LS_PROP type SDOKPROPTY.
LS_PROP-NAME = skwfc_prop_relative_url.Compile error:
"LS_PROP-" expected, not "SKWFC_PROP_".Thanks!
Jeroen
‎2006 Jul 18 9:23 AM
Hi jeroen,
1. just include the type pool, ten it will work.
<b>TYPE-POOLS : SKWFC.</b>
data: LS_PROP type SDOKPROPTY.
LS_PROP-NAME = skwfc_prop_relative_url.
regards,
amit m.
‎2006 Jul 18 9:21 AM
at the first line you have declared variable "LS_PROP",
and in the second line you are giving "skwfc_prop_relative_url",that is not any filed.
give "skwfc_prop-relative_url" .
‎2006 Jul 18 9:21 AM
Hi Jeroen,
Include the type group in your report.
type-groups : SKWFC.
data: LS_PROP type SDOKPROPTY.
LS_PROP-NAME = skwfc_prop_relative_url.
Should work.
Regards,
Laxman Nayak
‎2006 Jul 18 9:21 AM
‎2006 Jul 18 9:23 AM
Hi jeroen,
1. just include the type pool, ten it will work.
<b>TYPE-POOLS : SKWFC.</b>
data: LS_PROP type SDOKPROPTY.
LS_PROP-NAME = skwfc_prop_relative_url.
regards,
amit m.
‎2006 Jul 18 9:23 AM
‎2006 Jul 18 9:30 AM
For me it is working fine. Whatever Amit has posted just copy that. It should work.