2014 Jul 21 7:36 PM
hi.
This is my error at Se38
The data type zonone1 can be enhanced in anyway. After a structure enhancement this assignment ro
parameter mgiht be syntatically incorrect
I am fetching some data 3 fields from the t001 table by using Function Module.
plz have a look on below 1,2,3 images.
1) i open se11 and under data type i create some components
2) i create one function module,under export above se11 data type name i was given.
3) i create one program name at se38 ...
but above error is comming.
PARAMETER PR_BUKRS TYPE T001-BUKRS.
DATA WA_T001 LIKE ZONEONE1.
CALL FUNCTION 'ZCOMPANYCODE'
EXPORTING
P_BUKRS = PR_BUKRS
importING
WA = wa_t001
EXCEPTIONS
NO_DATA = 1
OTHERS = 2
.
IF SY-SUBRC <> 0.
WRITE: 'INVALID DATA'.
ELSE.
WRITE:/ wa_t001-bukrs, wa_t001-butxt, wa_t001-ort01.
ENDIF.
Any solutions plz give me.
what i have done the mistake..
2014 Jul 21 9:47 PM
Hi $riniva$,
The message isn't an error, it is a warning. It says that your structure can be enhanced, and if it get enhanced in the future, the FM can't support it anymore without being changed.
To supress this message you can do the following:
SE11 --> <set your structure> --> Extras --> Enhancement Category
In the enhancement category you can set it as "cannot be enhanced". Notice that this option depends on what you have planned for this structure.
I never have seen this error before, even when i have done similar steps with FM as you did. If you discover something about it, share with us.
Regards,
Renan
2014 Jul 21 9:47 PM
Hi $riniva$,
The message isn't an error, it is a warning. It says that your structure can be enhanced, and if it get enhanced in the future, the FM can't support it anymore without being changed.
To supress this message you can do the following:
SE11 --> <set your structure> --> Extras --> Enhancement Category
In the enhancement category you can set it as "cannot be enhanced". Notice that this option depends on what you have planned for this structure.
I never have seen this error before, even when i have done similar steps with FM as you did. If you discover something about it, share with us.
Regards,
Renan
2014 Jul 22 5:10 AM
hi.
Renan Thanks for your reply..
i will check it.
Plz give me some time..
I remember i has done Ehhancement.
but whether i clicked on cannot be enhanced or other i need to check it...
2014 Jul 22 4:22 PM
Hi,
Renan is correct.
it is regarding the enhancement category of structure
Regards,
Nitin
2014 Jul 23 5:54 PM