Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

whether a PTAEO is required

Note

It would be best to call the existing Oracle API:

 

FUNCTION getBillingViaSN ( a_netid IN VARCHAR2,

a_charge_code OUT NUMBER,

a_ptaeo_required OUT VARCHAR2)
RETURN NUMBER

0 request successful

-2 netid invalid

-n: a database error occured 

 

Don't use the next method, because getBillingViaSN is exactly what we need.

 

Note

existing oracle API:

FUNCTION getSrvcChargeInfo (a_netid             IN  VARCHAR2,
                              a_service_cd           IN  VARCHAR2,
                              a_expenditure_type  OUT VARCHAR2,
                              a_charge_code       OUT NUMBER,
                              a_student_indicator OUT VARCHAR2,
                              a_charge_code_name  OUT VARCHAR2,
                              a_ptaeo_required    OUT VARCHAR2)

...