on 2005 Nov 10 3:42 PM
I have assigned some value to the field symbol.
I am getting the following error in Short Dump
error
ABAP runtime errors GETWA_NOT_ASSIGNED
Occurred on 11/10/2005 at 10:20:46
>> Short dump has not been completely stored. It is too big.
Field symbol has not yet been assigned.
IS there any system Exception to catch this exception. I tried following code but it is giving me error.
CATCH SYSTEM-EXCEPTIONS GETWA_NOT_ASSIGNED = 5
<MY CODE>
ENDCATCH.
If sy-subrc eq 5.
endif.
Please let me know if there is any system exception to catch this error.
Aman
Hi Amandeep
Check this OSS note 442280
cheers
Sameer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
before using the field-symbol you can check if it is assigned
if <fieldsymbol> is assigned.
... do something ...
enddo.
If you are refering to a field-symbols that is not assigned a short dump occurs.
Regards, Manuel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
can you type in your piece of code where you assigned the values to the field symbol?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This error is when your field symbol is not assigned and you try to access it .
Always check sy-subrc before using the field symbol.
ASSIGN FIELD TO <F1>.
IF SY-SUBRC EQ 0.
FIELD2 = <F1>.
ENDIF.
If for any reason the assign fails and you donot have the sy-subrc check then your statement FIELD2 = <F1> will throw the error.
Cheers.
Sanjay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.