Skip to main content
Question

Creating an IAL

  • August 1, 2023
  • 2 replies
  • 211 views

Forum|alt.badge.img+10

Hello - I am trying to create an IAL but it keeps failing with the following (Failed executing statement (ORA-00903: invalid table name).  I can run the same code in SQL developer with no issues, can someone tell me what I am doing wrong please ?

2 replies

Jens
Hero (Employee)
Forum|alt.badge.img+10
  • Hero (Employee)
  • 137 replies
  • August 1, 2023

Hi @JannetteC

Can you please show us your SELECT statement or IAL please?

Probably you have to add the schema as prefix of your table.

E.g. table is CUSTOMER_INFO_TAB

→ IFSAPP.CUSTOMER_INFO_TAB

 

My recommendation is always to use the DB view instead of using the DB table.

select * from ifsapp.customer_info

/Jens


NiyomalN
Hero (Partner)
Forum|alt.badge.img+11
  • Hero (Partner)
  • 104 replies
  • August 8, 2023

Hi @JannetteC 

 

Please use the Views instead of tables.  and don’t forget to add prefix  &AO.. for each views, tables and method call.

 

for example,  &AO..Customer_info,