2006 Sep 19 11:45 AM
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?
2006 Sep 19 11:48 AM
Use the function module:
F4TOOL_CHECKTABLE_HELP instead.
Regards,
Ravi
2006 Sep 19 11:59 AM
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?
2006 Sep 19 11:49 AM
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
2006 Sep 19 11:53 AM
you can remove the line
maxentries = 99999
check this FM also
VALUES_GET
2006 Sep 19 12:03 PM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |