Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Help in finding an OSS notes for a SAP Program

Former Member
0 Likes
667

Hi,

A runtime error TIME_OUT has occured in the program LSCD2F01.

I need to find an OSS notes which deals with the correction of this dump.I have checked with the latest date of modification of this program and it is 18.02.2006

So the OSS notes which has been generated earlier to this date has been implemented in the program.

I have attached the Dump details below: Any inputs on this will be helpful.

<b>Information on where terminated</b>

The termination occurred in the ABAP program "SAPLSCD1" in "READ_CD_FROM_DB".

The main program was "SAPMSSY1 ".

The termination occurred in line 1031 of the source code of the (Include)

program "LSCD2F01"

of the source code of program "LSCD2F01" (when calling the editor 10310).

<b>Source Code Extract</b>

1020 FORM read_cd_from_db CHANGING pt_cdhdr TYPE cdhdr_tab

1021 pt_cdpos TYPE cdpos_tab

1022 pt_cdpos_uid TYPE cdpos_uid_tab.

1023

1024 DATA: lt_cdhdr_for_uid TYPE cdhdr_tab

1025 ,lv_guid_true TYPE i.

1026 FIELD-SYMBOLS: <fs_cdhdr> TYPE cdhdr.

1027

1028 CLEAR: lt_cdhdr_for_uid[], lv_guid_true.

1029

1030 * select header from cdhdr

<b>>>>> SELECT * FROM cdhdr INTO TABLE pt_cdhdr</b>

1032 WHERE objectclas IN lt_sl_objectclas

1033 AND objectid IN lt_sl_objectid

1034 AND changenr IN lt_sl_changenr

1035 AND username IN lt_sl_username

1036 AND (

1037 (

1038 udate = date_of_change

1039 AND

1040 utime >= time_of_change

1041 )

1042 OR

1043 udate > date_of_change

1044 )

Regards,

Raj

4 REPLIES 4
Read only

Former Member
0 Likes
590

goto sap.service.com and access oss notes using userid and password and fine the relevant note for it and apply the same.

Award points...

Read only

Former Member
0 Likes
590

Check notes:

459838 Performance improvement with very large datasets

and

671283 Performance problem with change documents material master

Rob

Read only

Former Member
0 Likes
590

Hi

Probably the problem is not here, but in the report is calling the fm CHANGEDOCUMENT_READ: it's not using the right keys.

Max

Read only

Former Member
0 Likes
590

Thanks for the help. Especially Rob, thanks for your comments