Oracle EBS:根据请求简称在数据库PLSQL中查找请求信息 carlo

根据请求简称'GLXRLACH',查找请求:

 

SELECT *
  FROM apps.fnd_concurrent_programs fcp
 WHERE fcp.concurrent_program_name = 'GLXRLACH';

 

取出请求的程序ID 之后,从多语言表中读取 其他信息

SELECT *
  FROM apps.fnd_concurrent_programs_tl t
 WHERE t.concurrent_program_id = 31697;

 

 

原文地址:https://www.cnblogs.com/carlo/p/2834366.html