--取得帐薄

SELECT sob.chart_of_accounts_id
  INTO l_id_flex_num
  FROM financials_system_params_all fsp, gl_sets_of_books sob
 WHERE org_id = p_org_id
   AND sob.set_of_books_id = fsp.set_of_books_id;

 

--帐薄分隔符

    SELECT concatenated_segment_delimiter
 
      FROM fnd_id_flex_structures
     WHERE application_id = 101
       AND id_flex_code = 'GL#'
       AND id_flex_num = l_id_flex_num;

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2021-07-04
  • 2022-12-23
  • 2021-06-05
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
猜你喜欢
  • 2022-01-13
  • 2021-12-04
  • 2022-12-23
  • 2021-07-19
  • 2021-05-27
  • 2022-12-23
相关资源
相似解决方案