De vuelta en la estructura ZSO_INVOICE_ITEM
, Seleccione Verificar el objetivo de desarrollo ABAP (Ctrl + F2). Luego seleccione Activar (Ctrl + F3).
Estructura del diccionario de datos ZSO_INVOICE_ITEM
ahora implementado.
Tu código debería verse así:
@EndUserText.label : 'Invoice Item Structure'
@AbapCatalog.enhancementCategory : #NOT_EXTENSIBLE
define type zso_invoice_item {
company_name : snwd_company_name;
@Semantics.amount.currencyCode : 'zso_invoice_item.currency_code'
amount : snwd_ttl_gross_amount;
currency_code : snwd_curr_code;
payment_status : snwd_soi_payment_status_code;
}