Skip to main content
Solved

Package procedure field to Crystal Report Quick report

  • March 26, 2021
  • 3 replies
  • 230 views

Forum|alt.badge.img+1
  • Do Gooder (Customer)

Hello,

I am wondering what is the procedure for adding package procedures to Crystal Report Quick Reports in IFS? For example I would like to add  Delivery_Route_API.Get_Description(ROUTE_ID).

Is there any way to add this without joining the Delivery Route table or it’s just not supported?

 

Thank you.

Best answer by EntNadeeL

Hi @GTGes ,

Try adding PLSQL procedures in a Crystal Report (Using SQL Expression Fields)as below. This should work. 

<ifsowner>.Delivery_Route_API.Get_Description(ROUTE_ID)

ifsapp.Delivery_Route_API.Get_Description(ROUTE_ID)

This topic has been closed for replies.

3 replies

dhlelk
Superhero
Forum|alt.badge.img+15
  • Superhero
  • March 26, 2021

Hi @GTGes,

 

As per the documentation,

PLSQL Package procedures are not supported.
PLSQL Package procedures are not supported by the IFS reporting framework. Instead one can use Oracle Stored Procedures. If an Oracle stored procedure is used in the report, the necessary permission should be granted.

 

Cheers !
Dhananjaya.


EntNadeeL
Hero (Partner)
Forum|alt.badge.img+10
  • Hero (Partner)
  • Answer
  • March 29, 2021

Hi @GTGes ,

Try adding PLSQL procedures in a Crystal Report (Using SQL Expression Fields)as below. This should work. 

<ifsowner>.Delivery_Route_API.Get_Description(ROUTE_ID)

ifsapp.Delivery_Route_API.Get_Description(ROUTE_ID)


Forum|alt.badge.img+1
  • Author
  • Do Gooder (Customer)
  • March 29, 2021

Hello,

I am wondering what is the procedure for adding package procedures to Crystal Report Quick Reports in IFS? For example I would like to add  Delivery_Route_API.Get_Description(ROUTE_ID).

Is there any way to add this without joining the Delivery Route table or it’s just not supported?

 

Thank you.

That worked.

Thank you @EntNadeeL