Advertisement
Guest User

BI_APLICACION

a guest
Feb 19th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. alter table bi_t_aplicacion add RETURN_URL VARCHAR2(255 BYTE);
  2. comment on column bi_t_aplicacion.RETURN_URL is 'Si se informa este campo, se muestra un botón de "Volver" que apunta a la URL indicada. Si se deja vacío no genera nada';
  3.  
  4. CREATE OR REPLACE FORCE EDITIONABLE VIEW "BI_APLICACION" ("ID_APLICACION", "DESC_APLICACION", "ICONO", "URL", "ORDEN", "AYUDA_APLICACION", "IND_MOSTRAR", "RETURN_URL") AS
  5. SELECT
  6. id_aplicacion AS id_aplicacion,
  7. nombre_aplicacion AS desc_aplicacion,
  8. icono,
  9. url,
  10. orden,
  11. ayuda_aplicacion AS ayuda_aplicacion,
  12. ind_mostrar_en_menu AS ind_mostrar,
  13. return_url as return_url
  14. FROM
  15. bi_t_aplicacion;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement