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

COEP Access

Former Member
0 Likes
1,136

Hi ,

I am accessing coep without key field belnr .It taking hell lot of time.Any suggestions for fast accesing this table without key field.

Regards

Ivneet

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,103

Not unless you can tell us which fields you are using.

Rob

8 REPLIES 8
Read only

Former Member
0 Likes
1,104

Not unless you can tell us which fields you are using.

Rob

Read only

0 Likes
1,103

year ,objnr,wrttp as input fields.

Read only

0 Likes
1,103

Add:

LEDNR = 0

to the where. this will allow it to use index ~1.

Rob

Read only

0 Likes
1,103

Show your query.

Just to confirm again are you using these input

(OBJNR

GJAHR

WRTTP) fields with where condition?

Read only

0 Likes
1,103

>

>LEDNR = 0.

Will this really Improve Performance?

Correct me if i'm wrong.

I think by adding alone LEDNR wont improve performance much casue it has already only One value defined in value range which 00 .

I guess Along this he can add

VERSN
PERIO
VRGNG

.

Read only

0 Likes
1,103

>

> >

> >LEDNR = 0.

>

>

> Will this really Improve Performance?

> Correct me if i'm wrong.

> I think by adding alone LEDNR wont improve performance much casue it has already only One value defined in value range which 00 .

>

> I guess Along this he can add

VERSN
> PERIO
> VRGNG

.

Try it.

There seems to be a conversion exit. Use:

SELECT        * FROM  coep
       WHERE  lednr  = '00'                           <====== 00
       AND    objnr  = your_objnr..

Rob

Edited by: Rob Burbank on Dec 1, 2008 5:24 PM

Read only

0 Likes
1,103

thks guys it working fast with only lednr "00'

Read only

Former Member
0 Likes
1,103

There are other these key fields also:

KOKRS
BELNR BUZEI

And what fields you are selecting?you can make secondry index too.