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

Table data Exporting error

0 Likes
1,844

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.

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,511

- 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 wrote, look for OSS notes for your system level

Regards,

Raymond

5 REPLIES 5
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
1,511

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

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,512

- 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 wrote, look for OSS notes for your system level

Regards,

Raymond

Read only

0 Likes
1,511

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.

.

Read only

0 Likes
1,511

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

Read only

0 Likes
1,511

Thanks for all,

  I got solution to my problem.

  OSS Note : 1571782 has solved my problem.