Skip to Content
0
Former Member
Sep 29, 2005 at 01:59 PM

Structure

47 Views

The SELECT-statement does not work - why? Is it not possible to use the structure st_order, which I have created?

PARAMETERS pa_order TYPE vbeln.

TYPES: BEGIN OF st_order,

vbeln TYPE vbeln_va,

audat TYPE audat,

matnr TYPE matnr,

rfsta TYPE rfsta,

rfstk TYPE rfstk,

END OF st_order.

DATA: it_order TYPE STANDARD TABLE OF st_order,

wa_order LIKE LINE OF it_order.

SELECT: * FROM st_order INTO wa_order WHERE VBELN = pa_order.