cancel
Showing results for 
Search instead for 
Did you mean: 

runtime error applying basis patch KB70103 in solman 7.0/EHP1

0 Kudos

Hi,

at the time of applying basis patch KB70103 i am getting this dump, not able to get spam screen. every time i am getting this dump at the time of logging.

Runtime Errors SYNTAX_ERROR

Date and Time 26.11.2009 17:16:59

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 terminated because it has

come across a statement that unfortunately cannot be executed.

The following syntax error occurred in program

"CL_DYNPRO_PROPERTY_BAG========CP " in include

"CL_DYNPRO_PROPERTY_BAG========CM009 " in

line 176:

"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"."

" "

The include has been created and last changed by:

Created by: "SAP "

Last changed by: "SAP "

Error in the ABAP Application Program

The current ABAP program "SAPLSCR2" had to be terminated because it has

come across a statement that unfortunately cannot be executed.

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

Source Code Extract

Line SourceCde

1 FUNCTION RS_SCRP_PROP_ADD_TO_PROP_LIST.

2 *"----


3 ""Local Interface:

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_i

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.

regards,

Dhr.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Have a look at note : 822379 for this SP and then go to Note: 1273082 does this apply ?

Mark

Former Member
0 Kudos

Hi,

I also have this problem during the SAPKB70018 import phase in the upgrade. Currently working with SAP on solution.

Were you able to find a solution?

Regards,

Keen

Former Member
0 Kudos

this is a chance to import the support package, and use transaction spam after that

markus_doehr2
Active Contributor
0 Kudos

I would not use the tp r3i command without explicit advise from the support.

Markus