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

F4 help getting timed out.

Former Member
0 Likes
791

I'm using the function module

CHECKTABLE_GET to get the vales for the field PRODH.

When i use this function module it is giving time out.

I've used it like this.

call function 'CHECKTABLE_GET'.

EXPORTING

valuecheckfieldname = space

valuechecktable = space

valuecheckvalue = '?'

valuefieldname = 'PRODH'

valuelanguage = 'E'

valuetabname = 'T179T'

maxentries = 99999

showlist = space

IMPORTING

retcode = retcode

TABLES

dynpselect = seltab

values = values

valuestructure = valuestructure

EXCEPTIONS

OTHERS = 1.

In the development system it is retriving the values after 5 minutes. But in Quality system it is always giving time out.

Where am I going wrong?

I'm using the function module

CHECKTABLE_GET to get the vales for the field PRODH.

When i use this function module it is giving time out.

I've used it like this.

call function 'CHECKTABLE_GET'.

EXPORTING

valuecheckfieldname = space

valuechecktable = space

valuecheckvalue = '?'

valuefieldname = 'PRODH'

valuelanguage = 'E'

valuetabname = 'T179T'

maxentries = 99999

showlist = space

IMPORTING

retcode = retcode

TABLES

dynpselect = seltab

values = values

valuestructure = valuestructure

EXCEPTIONS

OTHERS = 1.

In the development system it is retriving the values after 5 minutes. But in Quality system it is always giving time out.

Where am I going wrong?

5 REPLIES 5
Read only

Former Member
0 Likes
733

Use the function module:

F4TOOL_CHECKTABLE_HELP instead.

Regards,

Ravi

Read only

0 Likes
733

Hi ravi,

My problem here is I'm not dispalying the values s it is now. Whatever data that i get from this function module i have to do some processing i.e. to take onky the first two characters of the product hierarchy and then using the FM values_display I'm displaying the values. Is there any other way to do it?

Read only

Former Member
0 Likes
733

Hi,

This is bcz in development system the no. of records are less as compared to Quality/Production system. THe Max. entries should be changed to some other value say 500 etc.

Bcz i dont see any point in providing F4 help with so many values.

call function 'CHECKTABLE_GET'.

EXPORTING

valuecheckfieldname = space

valuechecktable = space

valuecheckvalue = '?'

valuefieldname = 'PRODH'

valuelanguage = 'E'

valuetabname = 'T179T'

<b>maxentries = 500</b>

showlist = space

IMPORTING

retcode = retcode

TABLES

dynpselect = seltab

values = values

valuestructure = valuestructure

EXCEPTIONS

OTHERS = 1.

Best regards,

Prashant

Read only

Former Member
0 Likes
733

you can remove the line

maxentries = 99999

check this FM also

VALUES_GET

Read only

Former Member
0 Likes
733

Hi,

If possible Filter the records based on certain condition. The only reason for Time out is `Processing of records is taking more time`. So inorder to reduce the processing time, the only thing which you can do is to select records based on some where condition or to filter some records if they are not to be displayed.

Best regards,

Prashant