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

Abap Page Down Error in C201 tcode

Former Member
0 Likes
840

Hi ,

I have a problem with page down .

the scenario is :

at a time it will show 10 records..

After 10 th record i'm pressing =P+ ok code..

but whenever i'm pressing page down it's going to first record and some times the cursor going to 12th record .....

Please Suggest exact solution...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
779

Dear All,

Tqs for ur valuable Suggestion ..

I fixed this Issue my self ,

Rgds,

Lokesh.

6 REPLIES 6
Read only

Former Member
0 Likes
779

Hi Lokesh,

I suppose you have done a BDC recording and the error is relevant to that.

How the table control looks on the screen depends on the screen resolution. To make it independent of that, the below code is required.

i_ctu_params type ctu_params

and

i_ctu_params-dismode = 'N'.

i_ctu_params-nobinpt = 'X'.

i_ctu_params-defsize = 'X'.

CALL TRANSACTION 'C201' USING BDCTAB

                  OPTIONS FROM I_CTU_PARAMS.

OR

Use the Insert Button in the below tab will always put the cursor on the first row

Add the values in the first row only no need for a page down.

Regards

Read only

0 Likes
779

Is it problem of configuration ...

Its working properly in Dev server and differently in Quality server

Read only

0 Likes
779

Dear Mohammed ,

Stil Im facing this Issue ,

Can Pls Suggest ,

Here upto now im trying with P+ Button after 10 Records,

Any other solution ...

Read only

Former Member
0 Likes
779

Is therre any one who knows exactly about Page Down Error in BDC for tcode :

Page Down Scenario :

Dev Server :

In case of Recipe BDC :

First it will take 10 records , then by entering page down it will show next 9 records with last 10 th record 

This is working properly in case of any no of records.

In Quality server :

first 10 records it is taking perfectly , up to 12 th record it's coming perfectly , at 13th record , if I press page down , its going to first record (row no : 1.)

regarding this I'm checking in System configuration also ...

Regards ,

Lokesh.

Read only

0 Likes
779

Did you try using the insert button after entering the record

If you use the insert button above the table control it will put the cursor on the first row always.

Read only

Former Member
0 Likes
780

Dear All,

Tqs for ur valuable Suggestion ..

I fixed this Issue my self ,

Rgds,

Lokesh.