-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_proc_trans_agr_1_ne.sql
2969 lines (2828 loc) · 195 KB
/
gen_proc_trans_agr_1_ne.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
declare
cursor MTDT_TABLA
is
SELECT
DISTINCT TRIM(MTDT_TC_SCENARIO.TABLE_NAME) "TABLE_NAME",
--TRIM(TABLE_BASE_NAME) "TABLE_BASE_NAME",
TRIM(mtdt_modelo_summary.TABLESPACE) "TABLESPACE"
FROM
MTDT_TC_SCENARIO, mtdt_modelo_summary
WHERE MTDT_TC_SCENARIO.TABLE_TYPE = 'A' and
trim(MTDT_TC_SCENARIO.TABLE_NAME) = trim(mtdt_modelo_summary.TABLE_NAME)
and
--trim(MTDT_TC_SCENARIO.TABLE_NAME) in ('DMA_TRAFD_CU_MES_DN', 'DMA_TRAFE_CU_MES_DN', 'DMA_TRAFV_CU_MES_DN', 'DMA_PARQUE_MVNO_MES_DN');
--trim(MTDT_TC_SCENARIO.TABLE_NAME) in ('DMF_MOVIMIENTOS_MVNO', 'DMF_RECARGAS_MVNO', 'DMF_PARQUE_MVNO');
trim(MTDT_TC_SCENARIO.TABLE_NAME) in ('DMA_PARQUE_SERIADOS_MES_DN');
--trim(MTDT_TC_SCENARIO.TABLE_NAME) in ('DMF_PMP', 'DMF_PARQUE_SERIADOS', 'DMF_FACT_SERIADOS', 'DMF_MOVIMIENTOS_SERIADOS');
cursor MTDT_SCENARIO (table_name_in IN VARCHAR2)
is
SELECT
TRIM(TABLE_NAME) "TABLE_NAME",
TRIM(TABLE_TYPE) "TABLE_TYPE",
TRIM(TABLE_COLUMNS) "TABLE_COLUMNS",
TRIM(TABLE_BASE_NAME) "TABLE_BASE_NAME",
TRIM("SELECT") "SELECT",
TRIM ("GROUP") "GROUP",
TRIM(FILTER) "FILTER",
TRIM(INTERFACE_COLUMNS) "INTERFACE_COLUMNS",
TRIM(SCENARIO) "SCENARIO",
DATE_CREATE,
DATE_MODIFY
FROM
MTDT_TC_SCENARIO
WHERE
TRIM(TABLE_NAME) = table_name_in;
CURSOR MTDT_TC_DETAIL (table_name_in IN VARCHAR2, scenario_in IN VARCHAR2)
IS
SELECT
TRIM(TABLE_NAME) "TABLE_NAME",
TRIM(TABLE_COLUMN) "TABLE_COLUMN",
TRIM(TABLE_BASE_NAME) "TABLE_BASE_NAME",
TRIM(SCENARIO) "SCENARIO",
TRIM("OUTER") "OUTER",
SEVERIDAD,
TRIM(TABLE_LKUP) "TABLE_LKUP",
TRIM(TABLE_COLUMN_LKUP) "TABLE_COLUMN_LKUP",
TRIM(TABLE_LKUP_COND) "TABLE_LKUP_COND",
TRIM(IE_COLUMN_LKUP) "IE_COLUMN_LKUP",
TRIM(LKUP_COM_RULE) "LKUP_COM_RULE",
TRIM(VALUE) "VALUE",
TRIM(RUL) "RUL",
TRIM(CRUCE) "CRUCE",
TRIM(INSERT_OPE) "INSERT_OPE",
TRIM(UPDATE_OPE) "UPDATE_OPE",
DATE_CREATE,
DATE_MODIFY
FROM
MTDT_TC_DETAIL
WHERE
TRIM(TABLE_NAME) = table_name_in and
TRIM(SCENARIO) = scenario_in;
CURSOR MTDT_TC_LOOKUP (table_name_in IN VARCHAR2)
IS
SELECT
TRIM(TABLE_NAME) "TABLE_NAME",
TRIM(TABLE_COLUMN) "TABLE_COLUMN",
TRIM(TABLE_BASE_NAME) "TABLE_BASE_NAME",
TRIM(TABLE_LKUP) "TABLE_LKUP",
TABLE_COLUMN_LKUP "TABLE_COLUMN_LKUP",
TABLE_LKUP_COND "TABLE_LKUP_COND",
IE_COLUMN_LKUP "IE_COLUMN_LKUP",
TRIM("VALUE") "VALUE"
FROM
MTDT_TC_DETAIL
WHERE
RUL = 'LKUP' and
TRIM(TABLE_NAME) = table_name_in;
CURSOR MTDT_TC_FUNCTION (table_name_in IN VARCHAR2)
IS
SELECT
DISTINCT
TRIM(TABLE_LKUP) "TABLE_LKUP",
TABLE_COLUMN_LKUP "TABLE_COLUMN_LKUP",
TABLE_LKUP_COND "TABLE_LKUP_COND",
IE_COLUMN_LKUP "IE_COLUMN_LKUP",
TRIM("VALUE") "VALUE"
FROM
MTDT_TC_DETAIL
WHERE
RUL = 'FUNCTION' and
TRIM(TABLE_NAME) = table_name_in;
reg_tabla MTDT_TABLA%rowtype;
reg_scenario MTDT_SCENARIO%rowtype;
reg_detail MTDT_TC_DETAIL%rowtype;
reg_lookup MTDT_TC_LOOKUP%rowtype;
reg_function MTDT_TC_FUNCTION%rowtype;
type list_columns_primary is table of varchar(30);
type list_strings IS TABLE OF VARCHAR(30);
type list_campos_group_by is table of varchar(100); /* (20151123) Angel Ruiz. NF: AGREGADOS */
type list_campos_where_ori is table of varchar(30); /* (20151123) Angel Ruiz. NF: AGREGADOS */
type list_campos_where_des is table of varchar(30); /* (20151123) Angel Ruiz. NF: AGREGADOS */
lista_pk list_columns_primary := list_columns_primary ();
v_list_campos_group_by list_campos_group_by := list_campos_group_by();
v_list_campos_where_ori list_campos_where_ori := list_campos_where_ori();
v_list_campos_where_des list_campos_where_des := list_campos_where_des();
tipo_col varchar2(50);
primera_col PLS_INTEGER;
columna VARCHAR2(2000);
prototipo_fun VARCHAR2(2000);
fich_salida_load UTL_FILE.file_type;
fich_salida_desagrega UTL_FILE.file_type;
fich_salida_exchange UTL_FILE.file_type;
fich_salida_pkg UTL_FILE.file_type;
nombre_fich_carga VARCHAR2(60);
nombre_fich_exchange VARCHAR2(60);
nombre_fich_pkg VARCHAR2(60);
nombre_fich_desagrega VARCHAR2(60);
lista_scenarios_presentes list_strings := list_strings();
lista_table_base_name list_strings := list_strings();
lista_lkup list_strings := list_strings();
campo_filter VARCHAR2(2000);
nombre_proceso VARCHAR2(30);
nombre_tabla_reducido VARCHAR2(30);
v_nombre_particion VARCHAR2(30);
nombre_tabla_T VARCHAR2(30);
nombre_tabla_T_agr VARCHAR2(30);
OWNER_SA VARCHAR2(60);
OWNER_T VARCHAR2(60);
OWNER_DM VARCHAR2(60);
OWNER_MTDT VARCHAR2(60);
NAME_DM VARCHAR(60);
OWNER_TC VARCHAR(60);
PREFIJO_DM VARCHAR(60);
nombre_funcion VARCHAR2(100);
v_encontrado VARCHAR2(1):= 'N';
v_contador PLS_INTEGER:=0;
v_existe_scn_AGR PLS_INTEGER:=0;
v_existe_scn_DSG PLS_INTEGER:=0;
v_REQ_NUMER MTDT_VAR_ENTORNO.VALOR%TYPE;
v_indice_DSG PLS_INTEGER:=0;
function split_string_coma ( cadena_in in varchar2) return list_strings
is
lon_cadena integer;
elemento varchar2 (50);
pos integer;
pos_ant integer;
lista_elementos list_strings := list_strings ();
begin
lon_cadena := length (cadena_in);
pos := 0;
pos_ant := 0;
if lon_cadena > 0 then
loop
dbms_output.put_line ('Entro en el LOOP. La cedena es: ' || cadena_in);
if pos < lon_cadena then
pos := instr(cadena_in, ',', pos+1);
else
pos := 0;
end if;
dbms_output.put_line ('Primer valor de Pos: ' || pos);
if pos > 0 then
dbms_output.put_line ('Pos es mayor que 0');
elemento := substr(cadena_in, pos_ant+1, (pos - pos_ant)-1);
dbms_output.put_line ('El elemento es: ' || elemento);
lista_elementos.EXTEND;
lista_elementos(lista_elementos.LAST) := UPPER(LTRIM(RTRIM (elemento)));
pos_ant := pos;
end if;
exit when pos = 0;
end loop;
lista_elementos.EXTEND;
lista_elementos(lista_elementos.LAST) := UPPER(LTRIM(RTRIM (substr(cadena_in, pos_ant+1, lon_cadena))));
dbms_output.put_line ('El ultimo elemento es: ' || UPPER(LTRIM(RTRIM (substr(cadena_in, pos_ant+1, lon_cadena)))));
end if;
return lista_elementos;
end split_string_coma;
function procesa_campo_filter (cadena_in in varchar2) return varchar2
is
lon_cadena integer;
cabeza varchar2 (1000);
sustituto varchar2(100);
cola varchar2(1000);
pos PLS_integer;
pos_ant PLS_integer;
posicion_ant PLS_integer;
cadena_resul varchar(1000);
begin
lon_cadena := length (cadena_in);
pos := 0;
posicion_ant := 0;
cadena_resul:= cadena_in;
if lon_cadena > 0 then
/* Busco VAR_FCH_CARGA */
sustituto := ' to_date ( fch_datos_in, ''yyyymmdd'') ';
loop
dbms_output.put_line ('Entro en el LOOP. La cedena es: ' || cadena_resul);
pos := instr(cadena_resul, 'VAR_FCH_CARGA', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('VAR_FCH_CARGA'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
--pos_ant := pos + length (' to_date ( fch_datos_in, ''yyyymmdd'') ');
--pos := pos_ant;
end loop;
/* Busco VAR_PROFUNDIDAD_BAJAS */
sustituto := ' 90 '; /* Temporalmente pongo 90 dias */
pos := 0;
posicion_ant := 0;
loop
dbms_output.put_line ('Entro en el LOOP de VAR_PROFUNDIDAD_BAJAS. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, 'VAR_PROFUNDIDAD_BAJAS', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('VAR_PROFUNDIDAD_BAJAS'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_DM */
sustituto := OWNER_DM;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_DM#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_DM#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_SA */
sustituto := OWNER_SA;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_SA#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_SA#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_T */
sustituto := OWNER_T;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_T#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_T#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_MTDT */
sustituto := OWNER_MTDT;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_MTDT#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_MTDT#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
end if;
return cadena_resul;
end;
/************/
/*************/
function procesa_campo_filter_dinam (cadena_in in varchar2) return varchar2
is
lon_cadena integer;
cabeza varchar2 (1000);
sustituto varchar2(100);
cola varchar2(1000);
pos PLS_integer;
pos_ant PLS_integer;
posicion_ant PLS_integer;
cadena_resul varchar(1000);
begin
lon_cadena := length (cadena_in);
pos := 0;
posicion_ant := 0;
cadena_resul:= cadena_in;
if lon_cadena > 0 then
/* Busco VAR_FCH_CARGA */
sustituto := ' to_date ('''''' || fch_datos_in || '''''', ''''yyyymmdd'''') ';
loop
dbms_output.put_line ('Entro en el LOOP. La cedena es: ' || cadena_resul);
pos := instr(cadena_resul, 'VAR_FCH_CARGA', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('VAR_FCH_CARGA'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
--pos_ant := pos + length (' to_date ( fch_datos_in, ''yyyymmdd'') ');
--pos := pos_ant;
end loop;
/* Busco VAR_PROFUNDIDAD_BAJAS */
sustituto := ' 90 '; /* Temporalmente pongo 90 dias */
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de VAR_PROFUNDIDAD_BAJAS. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, 'VAR_PROFUNDIDAD_BAJAS', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('VAR_PROFUNDIDAD_BAJAS'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_DM */
sustituto := OWNER_DM;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_DM#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_DM#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_SA */
sustituto := OWNER_SA;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_SA#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_SA#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_T */
sustituto := OWNER_T;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_T#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_T#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
/* Busco OWNER_MTDT */
sustituto := OWNER_MTDT;
pos := 0;
loop
dbms_output.put_line ('Entro en el LOOP de OWNER_DM. La cadena es: ' || cadena_resul);
pos := instr(cadena_resul, '#OWNER_MTDT#', pos+1);
exit when pos = 0;
dbms_output.put_line ('Pos es mayor que 0');
dbms_output.put_line ('Primer valor de Pos: ' || pos);
cabeza := substr(cadena_resul, (posicion_ant + 1), (pos - posicion_ant - 1));
dbms_output.put_line ('La cabeza es: ' || cabeza);
dbms_output.put_line ('La sustitutoria es: ' || sustituto);
cola := substr(cadena_resul, pos + length ('#OWNER_MTDT#'));
dbms_output.put_line ('La cola es: ' || cola);
cadena_resul := cabeza || sustituto || cola;
end loop;
end if;
return cadena_resul;
end;
function genera_campo_insert_merge ( reg_detalle_in in MTDT_TC_DETAIL%rowtype) return VARCHAR2 is
valor_retorno VARCHAR (2000);
posicion PLS_INTEGER;
cad_pri VARCHAR(2000);
cad_seg VARCHAR(2000);
cadena VARCHAR(2000);
pos_del_si NUMBER(3);
pos_del_then NUMBER(3);
pos_del_else NUMBER(3);
pos_del_end NUMBER(3);
condicion VARCHAR2(2000);
constante VARCHAR2(2000);
v_nombre_func_lookup VARCHAR2(40);
v_nombre_paquete VARCHAR2(40);
v_nombre_tabla_reducido VARCHAR2(40);
v_IE_COLUMN_LKUP VARCHAR(400);
begin
/* Seleccionamos el escenario primero */
dbms_output.put_line('El valor de reg_detalle_in.UPDATE_OPE es: ' || reg_detalle_in.UPDATE_OPE);
dbms_output.put_line('El valor de reg_detalle_in.INSERT_OPE es: ' || reg_detalle_in.INSERT_OPE);
dbms_output.put_line('El valor de reg_detalle_in.RUL es: ' || reg_detalle_in.RUL);
dbms_output.put_line('El valor de value es: ' || reg_detalle_in.VALUE);
case reg_detalle_in.INSERT_OPE
when 'ASIGNA' then
case reg_detalle_in.RUL
when 'SELECT' then
/* Se mantienen el valor del campo de la tabla que estamos cargando */
valor_retorno := reg_detalle_in.VALUE;
when 'VAR_FCH_INICIO' then
--valor_retorno := ''' || fch_registro_in || ''';
valor_retorno := 'TO_DATE('''''' || fch_registro_in || '''''', ''''YYYYMMDDHH24MISS'''')';
else
valor_retorno := 'ORIGEN.' || reg_detalle_in.TABLE_COLUMN;
end case;
when 'INCREMENTA' then
valor_retorno := 'DESTINO.' || reg_detalle_in.TABLE_COLUMN || ' + ORIGEN.' || reg_detalle_in.TABLE_COLUMN;
when 'DECREMENTA' then
valor_retorno := 'DESTINO.' || reg_detalle_in.TABLE_COLUMN || ' - ORIGEN.' || reg_detalle_in.TABLE_COLUMN;
end case;
return valor_retorno;
end;
function genera_campo_update_merge ( reg_detalle_in in MTDT_TC_DETAIL%rowtype) return VARCHAR2 is
valor_retorno VARCHAR (2000);
posicion PLS_INTEGER;
cad_pri VARCHAR(2000);
cad_seg VARCHAR(2000);
cadena VARCHAR(2000);
pos_del_si NUMBER(3);
pos_del_then NUMBER(3);
pos_del_else NUMBER(3);
pos_del_end NUMBER(3);
condicion VARCHAR2(2000);
constante VARCHAR2(2000);
v_nombre_func_lookup VARCHAR2(40);
v_nombre_paquete VARCHAR2(40);
v_nombre_tabla_reducido VARCHAR2(40);
v_IE_COLUMN_LKUP VARCHAR(400);
begin
/* Seleccionamos el escenario primero */
dbms_output.put_line('El valor de reg_detalle_in.UPDATE_OPE es: ' || reg_detalle_in.UPDATE_OPE);
dbms_output.put_line('El valor de reg_detalle_in.RUL es: ' || reg_detalle_in.RUL);
dbms_output.put_line('El valor de value es: ' || reg_detalle_in.VALUE);
case reg_detalle_in.UPDATE_OPE
when 'ASIGNA' then
case reg_detalle_in.RUL
when 'SELECT' then
/* Se mantienen el valor del campo de la tabla que estamos cargando */
valor_retorno := reg_detalle_in.VALUE;
when 'VAR_FCH_INICIO' then
--valor_retorno := ''' || fch_registro_in || ''';
valor_retorno := 'TO_DATE('''''' || fch_registro_in || '''''', ''''YYYYMMDDHH24MISS'''')';
else
valor_retorno := 'ORIGEN.' || reg_detalle_in.TABLE_COLUMN;
end case;
when 'INCREMENTA' then
valor_retorno := 'DESTINO.' || reg_detalle_in.TABLE_COLUMN || ' + ORIGEN.' || reg_detalle_in.TABLE_COLUMN;
when 'DECREMENTA' then
valor_retorno := 'DESTINO.' || reg_detalle_in.TABLE_COLUMN || ' - ORIGEN.' || reg_detalle_in.TABLE_COLUMN;
end case;
return valor_retorno;
end;
function genera_campo_select ( reg_detalle_in in MTDT_TC_DETAIL%rowtype) return VARCHAR2 is
valor_retorno VARCHAR (2000);
posicion PLS_INTEGER;
cad_pri VARCHAR(2000);
cad_seg VARCHAR(2000);
cadena VARCHAR(2000);
pos_del_si NUMBER(3);
pos_del_then NUMBER(3);
pos_del_else NUMBER(3);
pos_del_end NUMBER(3);
condicion VARCHAR2(2000);
constante VARCHAR2(2000);
v_nombre_func_lookup VARCHAR2(40);
v_nombre_paquete VARCHAR2(40);
v_nombre_tabla_reducido VARCHAR2(40);
v_IE_COLUMN_LKUP VARCHAR(400);
begin
/* Seleccionamos el escenario primero */
case reg_detalle_in.RUL
when 'KEEP' then
/* Se mantienen el valor del campo de la tabla que estamos cargando */
valor_retorno := ' ' || reg_detalle_in.TABLE_NAME || '.' || reg_detalle_in.TABLE_COLUMN;
when 'LKUP' then
/* Se trata de hacer el LOOK UP con la tabla dimension */
--if (trim(reg_detalle_in.LKUP_COM_RULE) <> "") then
/* (20150309) Angel Ruiz. Anyado esta nueva funcionalidad */
/*Puede ocurrir que en el campo VALUE de la llamada a LOOKUP se use la variable VAR_FCH_CARGA */
v_IE_COLUMN_LKUP := procesa_campo_filter (reg_detalle_in.IE_COLUMN_LKUP);
/****************************/
/* (20150306) ANGEL RUIZ. Hay un error que corrijo */
v_nombre_tabla_reducido := substr(reg_detalle_in.TABLE_NAME, 5);
if (length(reg_detalle_in.TABLE_NAME) < 25) then
v_nombre_paquete := reg_detalle_in.TABLE_NAME;
else
v_nombre_paquete := v_nombre_tabla_reducido;
end if;
/* (20150130) Angel Ruiz. Nueva Incidencia. */
/* La tabla de LookUp puede ser una SELECT y no solo una tabla */
if (instr (reg_detalle_in.TABLE_LKUP,'SELECT ') > 0) then
/* Aparecen queries en lugar de tablas para LookUp */
v_nombre_func_lookup := 'LK_' || reg_detalle_in.TABLE_COLUMN; /* Llamo a mi funcion de LookUp esta concatenacion con el nombre del campo resultado del LookUp */
else
v_nombre_func_lookup := 'LK_' || reg_detalle_in.TABLE_LKUP; /* Llamo a mi funcion de LookUp esta concatenacion */
end if;
if (reg_detalle_in.LKUP_COM_RULE is not null) then
/* Ocurre que tenemos una regla compuesta, un LKUP con una condicion */
cadena := trim(reg_detalle_in.LKUP_COM_RULE);
pos_del_si := instr(cadena, 'SI');
pos_del_then := instr(cadena, 'THEN');
pos_del_else := instr(cadena, 'ELSE');
pos_del_end := instr(cadena, 'END');
condicion := substr(cadena,pos_del_si+length('SI'), pos_del_then-(pos_del_si+length('SI')));
constante := substr(cadena, pos_del_else+length('ELSE'),pos_del_end-(pos_del_else+length('ELSE')));
valor_retorno := 'CASE WHEN ' || trim(condicion) || 'THEN ' || 'PKG_' || v_nombre_paquete || '.' || v_nombre_func_lookup || ' (' || v_IE_COLUMN_LKUP || ') ELSE ' || trim(constante);
else
valor_retorno := ' ' || 'PKG_' || v_nombre_paquete || '.' || v_nombre_func_lookup || ' (' || v_IE_COLUMN_LKUP || ')';
end if;
--valor_retorno := ' ' || 'PKG_' || reg_detalle_in.TABLE_NAME || '.' || 'LKUP_' || reg_detalle_in.TABLE_LKUP || ' (' || reg_detalle_in.IE_COLUMN_LKUP || ')';
when 'FUNCTION' then
/* se trata de la regla FUNCTION */
valor_retorno := ' ' || 'PKG_' || reg_detalle_in.TABLE_NAME || '.' || 'LK_' || reg_detalle_in.TABLE_LKUP || ' (' || reg_detalle_in.IE_COLUMN_LKUP || ')';
when 'DLOAD' then
valor_retorno := ' ' || 'TO_DATE (fch_datos_in, ''YYYYMMDD'')';
when 'DSYS' then
valor_retorno := ' ' || 'SYSDATE';
when 'CODE' then
valor_retorno := ' ' || trim(reg_detalle_in.VALUE);
posicion := instr(valor_retorno, 'VAR_IVA');
if (posicion >0) then
cad_pri := substr(valor_retorno, 1, posicion-1);
cad_seg := substr(valor_retorno, posicion + length('VAR_IVA'));
valor_retorno := cad_pri || '16' || cad_seg;
end if;
posicion := instr(valor_retorno, 'VAR_FCH_CARGA');
if (posicion >0) then
cad_pri := substr(valor_retorno, 1, posicion-1);
cad_seg := substr(valor_retorno, posicion + length('VAR_FCH_CARGA'));
valor_retorno := cad_pri || ' to_date(fch_datos_in, ''yyyymmdd'') ' || cad_seg;
end if;
when 'HARDC' then
valor_retorno := ' ' || reg_detalle_in.VALUE;
when 'SEQ' then
valor_retorno := ' ' || OWNER_DM || '.SEQ_' || nombre_tabla_reducido || '.NEXTVAL';
--if (instr(reg_detalle_in.VALUE, '.NEXTVAL') > 0) then
--valor_retorno := ' ' || reg_detalle_in.VALUE;
--else
--valor_retorno := ' ' || reg_detalle_in.VALUE || '.NEXTVAL';
--end if;
when 'BASE' then
/* Se toma el valor del campo de la tabla de staging */
valor_retorno := ' ' || reg_detalle_in.TABLE_BASE_NAME || '.' || reg_detalle_in.VALUE;
when 'SUM' then
/* (20151123) Angel Ruiz. NF: AGREGADOS */
valor_retorno := ' SUM(' || reg_detalle_in.VALUE || ')';
when 'GROUP_BY' then
/* (20151123) Angel Ruiz. NF: AGREGADOS */
valor_retorno := ' ' || reg_detalle_in.VALUE;
v_list_campos_group_by.EXTEND;
v_list_campos_group_by (v_list_campos_group_by.LAST) := reg_detalle_in.VALUE;
when 'VAR_FCH_INICIO' then
/* (20160113) Angel Ruiz. BUG. */
--valor_retorno := ' ' || 'var_fch_inicio';
valor_retorno := ' TO_DATE(fch_registro_in, ''YYYYMMDDHH24MISS'')'; /*(20151221) Angel Ruiz BUG. Debe insertarse la fecha de inicio del proceso de insercion */
when 'VAR' then
/* Se toma el valor de una variable de entorno */
if reg_detalle_in.VALUE = 'VAR_FCH_DATOS' then /* Si se trata de la fecha de carga, la podemos coger del parametro de la funcion */
-- valor_retorno := ' ' || 'TO_DATE (fch_carga_in, ''YYYYMMDD'')';
valor_retorno := ' ' || 'fch_datos_in';
end if;
if reg_detalle_in.VALUE = 'VAR_FCH_CARGA' then /* Si se trata de la fecha de carga, la podemos coger del parametro de la funcion */
-- valor_retorno := ' ' || 'TO_DATE (fch_carga_in, ''YYYYMMDD'')';
valor_retorno := ' ' || 'fch_datos_in';
end if;
if reg_detalle_in.VALUE = 'VAR_PAIS_TM' then /* Si se trata de la fecha de carga, la podemos coger del parametro de la funcion */
valor_retorno := ' ' || '1';
end if;
end case;
return valor_retorno;
end;
/*************/
function genera_encabezado_funcion_pkg (reg_lookup_in in MTDT_TC_LOOKUP%rowtype) return VARCHAR2 is
valor_retorno VARCHAR (500);
lkup_columns list_strings := list_strings();
ie_lkup_columns list_strings := list_strings();
v_nombre_func_lookup VARCHAR2(40);
v_nombre_tabla VARCHAR2(30);
begin
/* (20150130) Angel Ruiz . Nueva incidencia. */
if (instr (reg_lookup_in.TABLE_LKUP,'SELECT ') > 0) then
/* Aparecen queries en lugar de tablas para LookUp */
v_nombre_func_lookup := 'LK_' || reg_lookup_in.VALUE; /* Llamo a mi funcion de LookUp esta concatenacion con el nombre del campo resultado del LookUp */
v_nombre_tabla := reg_lookup_in.TABLE_BASE_NAME; /* Si lo que tengo es una SELECT tengo que recurrir al nombre de la tabla BASE para posteriormente saber el tipo de campo */
else
v_nombre_func_lookup := 'LK_' || reg_lookup_in.TABLE_LKUP; /* Llamo a mi funcion de LookUp esta concatenacion */
v_nombre_tabla := reg_lookup_in.TABLE_LKUP; /* Como no tengo una SELECT uso la tabla de LookUp para posteriormente saber el tipo de campo */
end if;
/* Se trata de hacer el LOOK UP con la tabla dimension */
/* Miramos si hay varios campos por los que hay que hay que hacer JOIN */
if (instr (reg_lookup_in.TABLE_LKUP,'SELECT ') > 0) then /* (20150102) Angel Ruiz . Nueva incidencia. Hay una SELECT en lugar de una tabla para hacer LookUp */
/* Para hacer el prototipo de la funcion he de usar la tabla base y los campos ie_olumn_lookup ya que no tenemos los campos de LookUp al ser una select */
lkup_columns := split_string_coma (reg_lookup_in.TABLE_COLUMN_LKUP);
ie_lkup_columns := split_string_coma (reg_lookup_in.IE_COLUMN_LKUP);
if (lkup_columns.COUNT > 1)
then
valor_retorno := ' FUNCTION ' || v_nombre_func_lookup || ' (';
FOR indx IN lkup_columns.FIRST .. lkup_columns.LAST
LOOP
if indx = 1 then
valor_retorno := valor_retorno || lkup_columns(indx) || '_IN ' || OWNER_SA || '.' || v_nombre_tabla || '.' || ie_lkup_columns(indx) || '%TYPE';
else
valor_retorno := valor_retorno || ', ' || lkup_columns(indx) || '_IN ' || OWNER_SA || '.' || v_nombre_tabla || '.' || ie_lkup_columns(indx) || '%TYPE';
end if;
END LOOP;
valor_retorno := valor_retorno || ') return ' || reg_tabla.TABLE_NAME || '.' || reg_lookup_in.VALUE || '%TYPE RESULT_CACHE;';
else
valor_retorno := ' FUNCTION ' || v_nombre_func_lookup || ' (cod_in IN ' || OWNER_SA || '.' || v_nombre_tabla || '.' || reg_lookup_in.IE_COLUMN_LKUP || '%TYPE) return ' || reg_tabla.TABLE_NAME || '.' || reg_lookup_in.value || '%TYPE RESULT_CACHE;';
end if;
else /* (20150102) Angel Ruiz . Nueva incidencia. Hay una tabla de LookUp normal. No SELECT */
lkup_columns := split_string_coma (reg_lookup_in.TABLE_COLUMN_LKUP);
if (lkup_columns.COUNT > 1)
then
valor_retorno := ' FUNCTION ' || v_nombre_func_lookup || ' (';
FOR indx IN lkup_columns.FIRST .. lkup_columns.LAST
LOOP
if indx = 1 then
valor_retorno := valor_retorno || lkup_columns(indx) || '_IN ' || reg_lookup_in.TABLE_LKUP || '.' || lkup_columns(indx) || '%TYPE';
else
valor_retorno := valor_retorno || ', ' || lkup_columns(indx) || '_IN ' || reg_lookup_in.TABLE_LKUP || '.' || lkup_columns(indx) || '%TYPE';
end if;
END LOOP;
valor_retorno := valor_retorno || ') return ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.VALUE || '%TYPE RESULT_CACHE;';
else
valor_retorno := ' FUNCTION ' || v_nombre_func_lookup || ' (cod_in IN ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || '%TYPE) return ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.value || '%TYPE RESULT_CACHE;';
end if;
end if;
return valor_retorno;
end;
/************/
function gen_encabe_regla_function (reg_function_in in MTDT_TC_FUNCTION%rowtype) return VARCHAR2 is
valor_retorno VARCHAR (300);
lkup_columns list_strings := list_strings();
begin
valor_retorno := ' FUNCTION ' || 'LK_' || reg_function_in.VALUE;
return valor_retorno;
end gen_encabe_regla_function;
procedure genera_cuerpo_regla_function (reg_function_in in MTDT_TC_FUNCTION%rowtype) is
begin
UTL_FILE.put_line (fich_salida_pkg, ' FUNCTION ' || 'LK_' || reg_function_in.VALUE);
UTL_FILE.put_line (fich_salida_pkg, ' RESULT_CACHE');
UTL_FILE.put_line (fich_salida_pkg, ' IS');
UTL_FILE.put_line (fich_salida_pkg, ' BEGIN');
UTL_FILE.put_line (fich_salida_pkg, '');
UTL_FILE.put_line (fich_salida_pkg, ' dbms_output.put_line (''Aqui iria el cuerpo de la funcion'');');
UTL_FILE.put_line (fich_salida_pkg, ' /* AQUI IRIA EL CUERPO DE LA FUNCION */');
UTL_FILE.put_line (fich_salida_pkg, '');
UTL_FILE.put_line (fich_salida_pkg, ' END ' || 'LK_' || reg_function_in.TABLE_LKUP);
end genera_cuerpo_regla_function;
/************/
procedure genera_cuerpo_funcion_pkg (reg_lookup_in in MTDT_TC_LOOKUP%rowtype) is
valor_retorno VARCHAR (500);
lkup_columns list_strings := list_strings();
ie_lkup_columns list_strings := list_strings();
v_alias VARCHAR2(40);
mitabla_look_up VARCHAR2(200);
v_nombre_func_lookup VARCHAR2(40);
v_nombre_tabla VARCHAR2(30);
l_registro ALL_TAB_COLUMNS%rowtype;
begin
/* Se trata de hacer el LOOK UP con la tabla dimension */
/* (20150130) Angel Ruiz . Nueva incidencia. */
if (instr (reg_lookup_in.TABLE_LKUP,'SELECT ') > 0) then
/* Aparecen queries en lugar de tablas para LookUp */
v_nombre_func_lookup := 'LK_' || reg_lookup_in.TABLE_COLUMN; /* Llamo a mi funcion de LookUp esta concatenacion con el nombre del campo destino del LookUp */
v_nombre_tabla := reg_lookup_in.TABLE_BASE_NAME; /* Si lo que tengo es una SELECT tengo que recurrir al nombre de la tabla BASE para posteriormente saber el tipo de campo */
else
v_nombre_func_lookup := 'LK_' || reg_lookup_in.TABLE_LKUP; /* Llamo a mi funcion de LookUp esta concatenacion */
v_nombre_tabla := reg_lookup_in.TABLE_LKUP; /* Como no tengo una SELECT uso la tabla de LookUp para posteriormente saber el tipo de campo */
end if;
if (instr (reg_lookup_in.TABLE_LKUP,'SELECT ') > 0) then /* (20150102) Angel Ruiz . Nueva incidencia. Hay una SELECT en lugar de una tabla para hacer LookUp */
/* Para hacer el prototipo de la funcion he de usar la tabla base y los campos ie_olumn_lookup ya que no tenemos los campos de LookUp al ser una select */
/* Miramos si hay varios campos por los que hay que hay que hacer JOIN */
lkup_columns := split_string_coma (reg_lookup_in.TABLE_COLUMN_LKUP);
ie_lkup_columns := split_string_coma (reg_lookup_in.IE_COLUMN_LKUP);
if (lkup_columns.COUNT > 1)
then
valor_retorno := ' FUNCTION ' || v_nombre_func_lookup || ' (';
FOR indx IN lkup_columns.FIRST .. lkup_columns.LAST
LOOP
if indx = 1 then
valor_retorno := valor_retorno || lkup_columns(indx) || '_IN ' || OWNER_SA || '.' || v_nombre_tabla || '.' || ie_lkup_columns(indx) || '%TYPE';
else
valor_retorno := valor_retorno || ', ' || lkup_columns(indx) || '_IN ' || OWNER_SA || '.' || v_nombre_tabla || '.' || ie_lkup_columns(indx) || '%TYPE';
end if;
END LOOP;
valor_retorno := valor_retorno || ') return ' || reg_tabla.TABLE_NAME || '.' || reg_lookup_in.TABLE_COLUMN || '%TYPE RESULT_CACHE';
UTL_FILE.put_line (fich_salida_pkg, valor_retorno);
else
valor_retorno := ' FUNCTION ' || v_nombre_func_lookup || ' (cod_in IN ' || OWNER_SA || '.' || v_nombre_tabla || '.' || reg_lookup_in.IE_COLUMN_LKUP || '%TYPE) return ' || reg_tabla.TABLE_NAME || '.' || reg_lookup_in.TABLE_COLUMN || '%TYPE RESULT_CACHE';
UTL_FILE.put_line (fich_salida_pkg, valor_retorno);
end if;
else
/* Miramos si hay varios campos por los que hay que hay que hacer JOIN */
lkup_columns := split_string_coma (reg_lookup_in.TABLE_COLUMN_LKUP);
if (lkup_columns.COUNT > 1)
then
valor_retorno := ' FUNCTION ' || v_nombre_func_lookup || ' (';
FOR indx IN lkup_columns.FIRST .. lkup_columns.LAST
LOOP
if indx = 1 then
valor_retorno := valor_retorno || lkup_columns(indx) || '_IN ' || reg_lookup_in.TABLE_LKUP || '.' || lkup_columns(indx) || '%TYPE';
else
valor_retorno := valor_retorno || ', ' || lkup_columns(indx) || '_IN ' || reg_lookup_in.TABLE_LKUP || '.' || lkup_columns(indx) || '%TYPE';
end if;
END LOOP;
valor_retorno := valor_retorno || ') ';
UTL_FILE.put_line (fich_salida_pkg, valor_retorno);
else
UTL_FILE.put_line (fich_salida_pkg, ' FUNCTION ' || v_nombre_func_lookup || ' (cod_in IN ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || '%TYPE)');
end if;
UTL_FILE.put_line (fich_salida_pkg, ' return ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.value || '%TYPE');
UTL_FILE.put_line (fich_salida_pkg, ' RESULT_CACHE RELIES_ON (' || reg_lookup_in.TABLE_LKUP || ')');
end if;
UTL_FILE.put_line (fich_salida_pkg, ' IS');
/* Se trata de hacer el LOOK UP con la tabla dimension */
/* (20150130) Angel Ruiz . Nueva incidencia. */
if (instr (reg_lookup_in.TABLE_LKUP,'SELECT ') > 0) then
UTL_FILE.put_line (fich_salida_pkg, ' l_row ' || reg_tabla.TABLE_NAME || '.' || reg_lookup_in.TABLE_COLUMN || '%TYPE;');
else
UTL_FILE.put_line (fich_salida_pkg, ' l_row ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.VALUE || '%TYPE;');
end if;
UTL_FILE.put_line (fich_salida_pkg, ' BEGIN');
/**********************************************************/
/* (20150217) Angel Ruiz. Incidencia debido a que no esta retornando bien el valor de LookUp cuando se hace LookUp por varios campos */
if (lkup_columns.COUNT > 1) then
UTL_FILE.put_line (fich_salida_pkg, '');
FOR indx IN lkup_columns.FIRST .. lkup_columns.LAST
LOOP
SELECT * INTO l_registro
FROM ALL_TAB_COLUMNS
WHERE TABLE_NAME = reg_lookup_in.TABLE_LKUP and
COLUMN_NAME = trim(lkup_columns(indx));
if (instr(l_registro.DATA_TYPE, 'VARCHAR') > 0) then /* se trata de un campo VARCHAR */
if (indx = 1) then
UTL_FILE.put_line (fich_salida_pkg, ' if (' || lkup_columns(indx) || '_IN ' || 'IS NULL OR ' || lkup_columns(indx) || '_IN' || ' = ''NI#'' OR ' || lkup_columns(indx) || '_IN' || ' = ''NO INFORMADO''');
else
if (indx = lkup_columns.LAST) then
UTL_FILE.put_line (fich_salida_pkg, ' ' || 'OR ' ||lkup_columns(indx) || '_IN' || ' IS NULL OR ' || lkup_columns(indx) || '_IN' || ' = ''NI#'' OR ' || lkup_columns(indx) || '_IN' || ' = ''NO INFORMADO'') then');
else
UTL_FILE.put_line (fich_salida_pkg, ' ' || 'OR ' ||lkup_columns(indx) || '_IN' || ' IS NULL OR ' || lkup_columns(indx) || '_IN' || ' = ''NI#'' OR ' || lkup_columns(indx) || '_IN' || ' = ''NO INFORMADO''');
end if;
end if;
else
if (indx = 1) then
UTL_FILE.put_line (fich_salida_pkg, ' if (' || lkup_columns(indx) || '_IN' || ' IS NULL OR ' || lkup_columns(indx) || '_IN' || ' = -3');
else
if (indx = lkup_columns.LAST) then
UTL_FILE.put_line (fich_salida_pkg, ' ' || 'OR ' || lkup_columns(indx) || '_IN' || ' IS NULL OR ' || lkup_columns(indx) || '_IN' || ' = -3) then');
else
UTL_FILE.put_line (fich_salida_pkg, ' ' || 'OR ' || lkup_columns(indx) || '_IN' || ' IS NULL OR ' || lkup_columns(indx) || '_IN' || ' = -3');
end if;
end if;
end if;
END LOOP;
UTL_FILE.put_line (fich_salida_pkg, ' l_row := -3;');
UTL_FILE.put_line (fich_salida_pkg, ' else');
end if;
UTL_FILE.put_line (fich_salida_pkg, '');
/*********************************************************/
UTL_FILE.put_line (fich_salida_pkg, ' SELECT nvl(' || reg_lookup_in.VALUE || ', -2) INTO l_row');
/*(20150130) Angel Ruiz */
/* Nueva Incidencia. */
if (instr (reg_lookup_in.TABLE_LKUP, 'SELECT ') > 0) then
/* Aparecen queries en lugar de tablas en la columna de nombre de tabla para LookUp */
v_alias := 'LKUP';
mitabla_look_up := '(' || reg_lookup_in.TABLE_LKUP || ') "LKUP"';
UTL_FILE.put_line (fich_salida_pkg, ' FROM ');
UTL_FILE.put_line (fich_salida_pkg, ' ' || mitabla_look_up);
else
v_alias := reg_lookup_in.TABLE_LKUP;
UTL_FILE.put_line (fich_salida_pkg, ' FROM ' || reg_lookup_in.TABLE_LKUP);
end if;
if (lkup_columns.COUNT > 1) then
valor_retorno := ' WHERE ' ;
FOR indx IN lkup_columns.FIRST .. lkup_columns.LAST
LOOP
if indx = 1 then
valor_retorno := valor_retorno || v_alias || '.' || lkup_columns(indx) || ' = ' || lkup_columns(indx) || '_in';
else
valor_retorno := valor_retorno || ' and ' || v_alias || '.' || lkup_columns(indx) || ' = ' || lkup_columns(indx) || '_in';
end if;
END LOOP;
if (reg_lookup_in.TABLE_LKUP_COND IS NULL) THEN
valor_retorno := valor_retorno || ';';
else
valor_retorno := valor_retorno || reg_lookup_in.TABLE_LKUP_COND || ';';
end if;
UTL_FILE.put_line (fich_salida_pkg, valor_retorno);
else
/* 20141204 Angel Ruiz - Añadido para las tablas de LOOK UP que son un rango */
if (instr (reg_lookup_in.TABLE_LKUP,'RANGO') > 0) then
/* Se trata de una tabla de Rango y la trato diferente */
if (reg_lookup_in.TABLE_LKUP_COND IS NULL) THEN
UTL_FILE.put_line (fich_salida_pkg, ' WHERE cod_in >= ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || ' and cod_in <= ' || reg_lookup_in.TABLE_LKUP || '.' || 'MAX' || substr(reg_lookup_in.TABLE_COLUMN_LKUP,4) || ';' );
else
UTL_FILE.put_line (fich_salida_pkg, ' WHERE cod_in >= ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || ' and cod_in <= ' || reg_lookup_in.TABLE_LKUP || '.' || 'MAX' || substr(reg_lookup_in.TABLE_COLUMN_LKUP,4) || ' and ' || reg_lookup_in.TABLE_LKUP_COND || ';');
end if;
else
if (reg_lookup_in.TABLE_LKUP_COND IS NULL) THEN
UTL_FILE.put_line (fich_salida_pkg, ' WHERE ' || v_alias || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || ' = ' || 'cod_in;' );
else
UTL_FILE.put_line (fich_salida_pkg, ' WHERE ' || v_alias || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || ' = ' || 'cod_in and ' || reg_lookup_in.TABLE_LKUP_COND || ';' );
end if;
end if;
--if (reg_lookup_in.TABLE_LKUP_COND IS NULL) THEN
-- UTL_FILE.put_line (fich_salida_pkg, ' WHERE ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || ' = ' || 'cod_in;' );
--else
-- UTL_FILE.put_line (fich_salida_pkg, ' WHERE ' || reg_lookup_in.TABLE_LKUP || '.' || reg_lookup_in.TABLE_COLUMN_LKUP || ' = ' || 'cod_in and ' || reg_lookup_in.TABLE_LKUP_COND || ';' );
--end if;
end if;
/* (20150217) Angel Ruiz. Incidencia debido a que no esta retornando bien el valor de LookUp cuando se hace LookUp por varios campos */
if (lkup_columns.COUNT > 1) then
UTL_FILE.put_line (fich_salida_pkg, '');
UTL_FILE.put_line (fich_salida_pkg, ' end if;');
end if;
/***********************************/
UTL_FILE.put_line (fich_salida_pkg, '');
UTL_FILE.put_line (fich_salida_pkg, ' RETURN l_row;');
UTL_FILE.put_line (fich_salida_pkg, '');
UTL_FILE.put_line (fich_salida_pkg, ' exception');
UTL_FILE.put_line (fich_salida_pkg, ' when NO_DATA_FOUND then');
UTL_FILE.put_line (fich_salida_pkg, ' RETURN -2;');
UTL_FILE.put_line (fich_salida_pkg, ' when others then');
UTL_FILE.put_line (fich_salida_pkg, ' RETURN -2;');
UTL_FILE.put_line (fich_salida_pkg, '');
UTL_FILE.put_line (fich_salida_pkg, ' END ' || v_nombre_func_lookup || ';');
UTL_FILE.put_line (fich_salida_pkg, '');
UTL_FILE.put_line (fich_salida_pkg, '');
end genera_cuerpo_funcion_pkg;
/************/
begin
/* (20141223) ANGEL RUIZ*/
/* ANTES DE NADA LEEMOS LAS VAR. DE ENTORNO PARA TIEMPO DE GENERACION*/
SELECT VALOR INTO OWNER_SA FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'OWNER_SA';
SELECT VALOR INTO OWNER_T FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'OWNER_T';
SELECT VALOR INTO OWNER_DM FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'OWNER_DM';
SELECT VALOR INTO OWNER_MTDT FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'OWNER_MTDT';
SELECT VALOR INTO NAME_DM FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'NAME_DM';
SELECT VALOR INTO OWNER_TC FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'OWNER_TC';
SELECT VALOR INTO v_REQ_NUMER FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'REQ_NUMBER';
SELECT VALOR INTO PREFIJO_DM FROM MTDT_VAR_ENTORNO WHERE NOMBRE_VAR = 'PREFIJO_DM';
/* (20141223) FIN*/
open MTDT_TABLA;
loop
fetch MTDT_TABLA
into reg_tabla;
exit when MTDT_TABLA%NOTFOUND;
v_existe_scn_AGR := 0;
v_existe_scn_DSG := 0;
dbms_output.put_line ('Estoy en el primero LOOP. La tabla que tengo es: ' || reg_tabla.TABLE_NAME);
nombre_fich_carga := 'load_he_' || reg_tabla.TABLE_NAME || '.sh';
nombre_fich_exchange := 'load_ex_' || reg_tabla.TABLE_NAME || '.sh';
nombre_fich_desagrega := 'load_ds_' || reg_tabla.TABLE_NAME || '.sh';
nombre_fich_pkg := 'pkg_' || reg_tabla.TABLE_NAME || '.sql';
fich_salida_load := UTL_FILE.FOPEN ('SALIDA',nombre_fich_carga,'W');
--fich_salida_desagrega := UTL_FILE.FOPEN ('SALIDA',nombre_fich_desagrega,'W');
--fich_salida_exchange := UTL_FILE.FOPEN ('SALIDA',nombre_fich_exchange,'W');
fich_salida_pkg := UTL_FILE.FOPEN ('SALIDA',nombre_fich_pkg,'W');
nombre_tabla_reducido := substr(reg_tabla.TABLE_NAME, 5); /* Le quito al nombre de la tabla los caracteres DMD_ o DMF_ */
/* Angel Ruiz (20150311) Hecho porque hay paquetes que no compilan porque el nombre es demasiado largo*/
if (length(reg_tabla.TABLE_NAME) < 25) then
nombre_proceso := reg_tabla.TABLE_NAME;
else
nombre_proceso := nombre_tabla_reducido;
end if;
/* (20150414) Angel Ruiz. Incidencia. El nombre de la partición es demasiado largo */
if (length(nombre_tabla_reducido) <= 18) then
v_nombre_particion := 'PA_' || nombre_tabla_reducido;
else
v_nombre_particion := nombre_tabla_reducido;
end if;
/* (20151112) Angel Ruiz. BUG. Si el nombre de la tabla es superior a los 19 caracteres*/
/* El nombre d ela tabla que se crea T_*_YYYYMMDD supera los 30 caracteres y da error*/
if (length(nombre_tabla_reducido) > 19) then
nombre_tabla_T := substr(nombre_tabla_reducido,1, length(nombre_tabla_reducido) - (length(nombre_tabla_reducido) - 19));
else
nombre_tabla_T := nombre_tabla_reducido;
end if;
UTL_FILE.put_line (fich_salida_pkg,'CREATE OR REPLACE PACKAGE ' || OWNER_DM || '.pkg_' || nombre_proceso || ' AS');
lista_scenarios_presentes.delete;
lista_table_base_name.delete; /*(20151126) Angel Ruiz. NF: AGREGACION */
v_list_campos_group_by.delete; /*(20151123) Angel Ruiz. NF: AGREGADOS */
/******/
/* COMIEZO LA GENERACION DEL PACKAGE DEFINITION */
/******/
/* Primero de todo miro si hay funciones de LOOKUP para crear */
lista_lkup.delete;
v_contador:=0;
open MTDT_TC_LOOKUP (reg_tabla.TABLE_NAME);
loop
fetch MTDT_TC_LOOKUP
into reg_lookup;
exit when MTDT_TC_LOOKUP%NOTFOUND;
if (instr(reg_lookup.TABLE_LKUP, 'SELECT ') > 0) then
/* Se trata de una LookUp con una SELECT en lugar de una Tabla */
nombre_funcion := 'LK_' || reg_lookup.TABLE_COLUMN;
else
nombre_funcion := 'LK_' || reg_lookup.TABLE_LKUP;
end if;
/* Se trata de hacer el LOOK UP con la tabla dimension */
/* Buscamos si la funcion de lookup ya la hemos generado, ya que si ya esta generada no hay que generarla de nuevo */
v_encontrado := 'N';
if (v_contador = 0) then
lista_lkup.EXTEND;
lista_lkup (lista_lkup.last) := nombre_funcion;
prototipo_fun := genera_encabezado_funcion_pkg (reg_lookup);
UTL_FILE.put_line(fich_salida_pkg,'');
UTL_FILE.put_line(fich_salida_pkg, prototipo_fun);
v_contador:=v_contador+1;
else
for indx in lista_lkup.FIRST .. lista_lkup.LAST
loop