‎2012 Jun 22 7:38 AM
Hi Experts,
I am getting error in downloading table data.
After displaying EKBE table data.whenever I am clicking on 'Local File ' button to export data to local file
it's lead to short dump and it's giving below error.
Runtime Errors GETWA_NOT_ASSIGNED
Date and Time 22.06.2012 11:56:09
ASSIGN
- You address a field symbol that pointed to the line of an
internal table that was deleted
- You address a field symbol that was previously reset using
UNASSIGN or that pointed to a local field that no
longer exists
- You address a global function interface, although the
respective function module is not active - that is, is
not in the list of active calls. The list of active calls
can be taken from this short dump.
Trigger Location of Runtime Error
Program SAPLKKBL
Include LKKBLF99
Row 4,207
Module type (FORM)
Module Name GEN_FIELD_OUT2
Source Code Extract
Line SourceCde
4177 of structure t_outtab to <decimals>.
4178 gs_fc-decimals_out = <decimals>.
4179 endif.
4182 if not gs_fc-no_sign is initial.
4183 if not gs_fc-no_zero is initial or <unit> is initial.
4184 if gs_fc-decimals_out is initial.
4185 write at (gs_fc-outputlen) <field> currency <unit>
4186 round gs_fc-round
4187 no-gap no-sign no-zero.
4188 else.
4189 write at (gs_fc-outputlen) <field> currency <unit>
4190 round gs_fc-round
4191 decimals gs_fc-decimals
4192 no-gap no-sign no-zero.
4193 endif.
4194 else.
4195 if gs_fc-decimals_out is initial.
4196 write at (gs_fc-outputlen) <field> currency <unit>
4197 round gs_fc-round
4198 no-gap no-sign.
4199 else.
4200 write at (gs_fc-outputlen) <field> currency <unit>
4201 round gs_fc-round
4202 decimals gs_fc-decimals
4203 no-gap no-sign.
4204 endif.
4205 endif.
4206 else.
>>>>> if not gs_fc-no_zero is initial or <unit> is initial.
4208 if gs_fc-decimals_out is initial.
This problem also existing for LFB1 table.
Please tell me how to solve this problem.
Is there any Note or any solution?.
Thanks in Advance.
Nagaraju.
‎2012 Jun 22 10:42 AM
- Are you using SE16, try SE16N (Those table have quantity/currency fields, but the unit/currency field is missing)
- If it is a custom program, perform The Consistency Check. (you could also try this check on SE16/16n)
- In a not up-to-date system, as Sandeep Kumar wrote, look for OSS notes for your system level
Regards,
Raymond
‎2012 Jun 22 10:19 AM
Hi,
It seems like an issue iwth your ALV grid.
There are many OSS nootes related to this , what Basis version you are using?
Cheers,
Sandeep
‎2012 Jun 22 10:42 AM
- Are you using SE16, try SE16N (Those table have quantity/currency fields, but the unit/currency field is missing)
- If it is a custom program, perform The Consistency Check. (you could also try this check on SE16/16n)
- In a not up-to-date system, as Sandeep Kumar wrote, look for OSS notes for your system level
Regards,
Raymond
‎2012 Jun 22 1:49 PM
Hi Raymond,
Thanks for your reply,
Your right, I am getting problem with Quantity fields (MENGE,BPMNG in EKBE Table) and
Currency fields (WEBTR in LFB! Table). If hide this I could download the data.
In Debugging I have known that in fieldcatalog of EKBE table Cfieldname comming as MEINS,BPRME (which for Quantity Ref fields).
This problem is exist for SE11 ,SE16 and SE16N working fine.
I have done the consistency check. I got some errors which are related to Quantity fields.
Here I am sending Screen shot
Give me any solution.
.
‎2012 Jun 22 2:31 PM
There is not much that can be done. Just look for OSS notes applicable to your system relative to SE11 and SE16. (or use only SE16N )
Hint: Look for OSS notes with keywords like LSETBF03, SAPLSETB or SETB on your system version/SP
For information, none of my systems has this problem, the program just clears the unit in fields catalog, and "no unit" or "no currency" is only a warning in Consistency check...
Regards,
Raymond
‎2012 Jun 25 11:49 AM
Thanks for all,
I got solution to my problem.
OSS Note : 1571782 has solved my problem.