SAP
C_HANAIMP142 · Question #278
Table SALES_TABLE contains the columns COUNTRY and SALES. Function calc_tax calculates sales tax based on input parameter SALES. Using a scripted calculation view, how can you call the calc_tax…
The correct answer is D. v_tax = SELECT COUNTRY, calc_tax(SALES) AS TAX FROM SALES_TABLE. See the full explanation below for the reasoning.
Question
Table SALES_TABLE contains the columns COUNTRY and SALES. Function calc_tax calculates sales tax based on input parameter SALES. Using a scripted calculation view, how can you call the calc_tax function?
Options
- Av_tax = CE_PROJECTION(SALES_TABLE, ["COUNTRY","calc_tax(SALES)"]);
- B:v_tax = CE_PROJECTION(SALES_TABLE, ["COUNTRY","CALL :calc_tax(SALES)"]);
- C:v_tax = SELECT COUNTRY, CALL :calc_tax(SALES) AS TAX FROM :SALES_TABLE;
- Dv_tax = SELECT COUNTRY, calc_tax(SALES) AS TAX FROM SALES_TABLE;
How the community answered
(28 responses)- A4% (1)
- B7% (2)
- C18% (5)
- D71% (20)
Community Discussion
No community discussion yet for this question.