27 lines
719 B
Plaintext
27 lines
719 B
Plaintext
@EndUserText.label: '감가상각 스케쥴표'
|
|
define table function ztf_asset_depr
|
|
returns
|
|
{
|
|
key mandt : mandt;
|
|
key assettype : zassettype;
|
|
key assetcode : mconame4;
|
|
// key ASSETDATE : /sapquery/s_bdate;
|
|
// aname : /bofu/text;
|
|
// depr_method : zdepmethod;
|
|
// useful_life : abap.int1;
|
|
month_cnt : abap.int1;
|
|
start_ym : zstart_ym;
|
|
end_ym : zend_ym;
|
|
|
|
// assetprice : s_sum;
|
|
yearmonth : vdm_yearmonth;
|
|
seq_no : zseq_no;
|
|
|
|
@Semantics.amount.currencyCode: 'waers'
|
|
dep_amt : zdepamt;
|
|
WAERS : waers;
|
|
|
|
}
|
|
implemented by method
|
|
zcl_custom_tax_amdp=>get_asset_depr_plan;
|