table 的某些列未显示在弹出显示 ABAP 中

Some of the columns of a table are not displayed in popup display ABAP

我正在分配一个按钮来显示我在 SAP 的 table。我用 popup_with_table_display 实现了这一点。在弹出屏幕中,我可以看到我的一些专栏,但不是全部。这是我的代码:

DATA: t_interview TYPE TABLE OF ZBS_HR_I0001

CASE sy-ucomm.
  WHEN 'DISP'.
select * from ZBS_HR_I0001 into table t_interview.
CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
  EXPORTING
    ENDPOS_COL         = 100
    ENDPOS_ROW         = 10
    STARTPOS_COL       = 10
    STARTPOS_ROW       = 1
    TITLETEXT          = 'Interview Table'
  TABLES
    VALUETAB           = t_interview
  EXCEPTIONS
    BREAK_OFF          = 1
    OTHERS             = 2
          .

顺便说一句,此代码部分在我的 PAI 中有效。 Here's the output that I'm getting. And here's the original table with all of its columns。如何让它显示我的所有专栏?

这是我的工作代码:

DATA: t_interview TYPE TABLE OF ZBS_HR_I0001,
      ts_interview TYPE REF TO cl_salv_table.

select * from ZBS_HR_I0001 into table t_interview.
cl_salv_table=>factory(
  IMPORTING
    r_salv_table = ts_interview
  CHANGING
    t_table      = t_interview
).

CASE sy-ucomm.
  WHEN 'DISP'.
   ts_interview->display( ).
ENDCASE.