cancel
Showing results for 
Search instead for 
Did you mean: 

Syntax Error while applying support package stack 8

Former Member
0 Kudos

I get the following short dump while I was applying support package stack 8. I'm at the latest saint version 34

Runtime Errors SYNTAX_ERROR

Date and Time 23.07.2009 14:09:27

Short text

Syntax error in program "CL_DYNPRO_PROPERTY_BAG========CP ".

What happened?

Error in the ABAP application program.

The current ABAP program "SAPLSCR2" had to be interrupted because it con

a statement that cannot be executed.

In the include "CL_DYNPRO_PROPERTY_BAG========CM009 " in the line 176 of

program "CL_DYNPRO_PROPERTY_BAG========CP " the following syntax

errors occur:

"The field "SPROP_C_TAG_CUSTOMPROPERTY" is unknown, but there is a fiel"

"d with the similar name "SPROP_C_TAG_TOOLTIPTEXT". "SPROP_C_TAG_TOOLTI"

"PTEXT"."

" "

Author and last person to change the include are:

Author "SAP "

Last changer "SAP "

Error analysis

The following syntax error was found in the program

CL_DYNPRO_PROPERTY_BAG========CP :

"The field "SPROP_C_TAG_CUSTOMPROPERTY" is unknown, but there is a fiel"

"d with the similar name "SPROP_C_TAG_TOOLTIPTEXT". "SPROP_C_TAG_TOOLTI"

"PTEXT"."

" "

Trigger Location of Runtime Error

Program SAPLSCR2

Include LSCR2U47

Row 31

Module type (FUNCTION)

Module Name RS_SCRP_PROP_ADD_TO_PROP_LIST

1 FUNCTION RS_SCRP_PROP_ADD_TO_PROP_LIST.

2 *"----


3 ""Lokale Schnittstelle:

4 *" IMPORTING

5 *" REFERENCE(P_TEXTFIELD) TYPE D021S-FNAM OPTIONAL

6 *" REFERENCE(P_TOOLTIPTEXT_TEXTELEM) TYPE CHAR3 OPTIONAL

7 *" REFERENCE(P_TOOLTIPTEXT_VARIABLE) TYPE D021S-FNAM OPTIONAL

8 *" REFERENCE(P_KEEPTAB) TYPE SEU_BOOL OPTIONAL

9 *" REFERENCE(P_DISABLEIMPLICITLABELS) TYPE SEU_BOOL OPTIONAL

10 *" REFERENCE(P_BARCODEINPUT) TYPE SEU_BOOL OPTIONAL

11 *" CHANGING

12 *" REFERENCE(P_PROP_LIST) TYPE PROP_LIST

13 *"----


14

15 data: l_prop type prop_line,

16 l_prop_list type prop_list,

17 l_string type prop_str.

18

19 * Property TextField

20 * -


21

22 if p_textfield is supplied.

23 clear l_prop_list.

24 clear l_prop.

25 l_prop-name = sprop_c_tag_textfield_name.

26 l_prop-syntax = sprop_c_syntax_content .

27 l_prop-value = p_textfield.

28 append l_prop to l_prop_list.

29 * Zusammensetzen eines Strings der Form

30 * <Name>value_1</Name> ... <Name>value_n</Name>

>> call method cl_dynpro_property_bag=>fill_prop_list_into_properties

32 exporting

33 prop_list = l_prop_list

34 importing

35 properties = l_string.

36 * Property-Eintrag zusammensetzen

37 clear l_prop.

38 l_prop-name = sprop_c_tag_textfield.

39 l_prop-type = sprop_c_type_string.

40 l_prop-syntax = sprop_c_syntax_content .

41 l_prop-value = l_string.

42 * Property-Eintrag in PROP_LIST aufnehmen/ersetzen

43 read table p_prop_list transporting no fields

44 with key name = l_prop-name.

45 if sy-subrc = 0.

46 modify p_prop_list index sy-tabix

47 from l_prop.

48 else.

49 append l_prop to p_prop_list.

50 endif.

Can anyone help me? I now get the same error with executing other transactions as well.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Please let us know the component which you are trying to apply. Is it BASIS or ABAP or BW and also let us know the version?

I hope you are applying the BW patch 8, as per SAP's recommendation we need to apply both 8 an 9 patch of BW at the same time. If not we need to apply some notes which you could find in the service market place. Once you apply the notes, you can proceed with the SP application.

Regards,

Varadhu