‎2008 Dec 01 10:01 PM
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
‎2008 Dec 01 10:05 PM
‎2008 Dec 01 10:05 PM
‎2008 Dec 01 10:08 PM
‎2008 Dec 01 10:11 PM
Add:
LEDNR = 0to the where. this will allow it to use index ~1.
Rob
‎2008 Dec 01 10:12 PM
Show your query.
Just to confirm again are you using these input
(OBJNR
GJAHR
WRTTP) fields with where condition?
‎2008 Dec 01 10:17 PM
>
>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.
‎2008 Dec 01 10:20 PM
>
> >
> >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
‎2008 Dec 01 10:46 PM
‎2008 Dec 01 10:07 PM
There are other these key fields also:
KOKRS
BELNR BUZEIAnd what fields you are selecting?you can make secondry index too.