nerdexam
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)
  • A
    4% (1)
  • B
    7% (2)
  • C
    18% (5)
  • D
    71% (20)

Community Discussion

No community discussion yet for this question.

Full C_HANAIMP142 Practice