IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JDBC Java Discussion :

problème de recupération du rowid


Sujet :

JDBC Java

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Août 2017
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2017
    Messages : 2
    Points : 1
    Points
    1
    Par défaut problème de recupération du rowid
    Bonjour,

    je voudrais exécuter une procédure stockée à partir de ma classe java. Pour cela j'ai fait appel à la fonction CallableStatement.
    la connexion à la base de données Oracle marche normalement.
    Ma procédure stockée prend deux(2) paramètres en entrées:
    create_invoices_prc (p_trx_number IN VARCHAR2, p_rowid IN VARCHAR2)

    La procédure stockée est un API d’enregistrement de facture sur Oracle E-business suite.

    Maintenant j'ai tenté tous les paramètres possibles pour le ROWID (varchar ou INT) mais à chaque fois que j'exécute le code ça m'affiche comme erreur :
    "rowid no valid"

    je voudrais de l'aide SVP
    Merci d'avance !

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    package javaoracle;
     
    import java.sql.CallableStatement;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.sql.Types;
    import oracle.jdbc.OracleTypes;
     
    /**
     *
     * @author stg_cisse8417
     */
    public class ConnexionIsotest {
     
        public static void main(String[] args) throws SQLException {
     
            try {
                Class.forName ("oracle.jdbc.OracleDriver");
     
                Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@10.100.235.13:1590:ISOTEST", "Apps", "******");
     
                    Statement stmt = conn.createStatement();
     
                     //create callableStatement obj
                    CallableStatement appel = conn.prepareCall("{call apps.XXNES_FACTURE_IMMEDIATE_PKG.create_invoices_prc(?, ?) }");
     
    						appel.setString(1,"test");
    						appel.setInt(2,101048);
    						//appel.registerOutParameter(2, OracleTypes.VARCHAR);
     
                                                    appel.executeQuery();
     
     
     
                System.out.println("connexion bien établie");
            }catch (ClassNotFoundException e){
                System.out.println("Erreur connexion");
            }
     
        }
     
    }
    Code sql : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    PROCEDURE create_invoices_prc (p_trx_number IN VARCHAR2, p_rowid IN VARCHAR2)
       IS
          l_return_status                  VARCHAR2 (1);
          l_batch_source_rec               ar_invoice_api_pub.batch_source_rec_type;
          l_trx_header_tbl                 ar_invoice_api_pub.trx_header_tbl_type;
          l_trx_lines_tbl                  ar_invoice_api_pub.trx_line_tbl_type;
          l_trx_dist_tbl                   ar_invoice_api_pub.trx_dist_tbl_type;
          l_trx_salescredits_tbl           ar_invoice_api_pub.trx_salescredits_tbl_type;
          v_description                    VARCHAR2 (300);
          v_line_type                      VARCHAR2 (300);
          l_msg_data                       VARCHAR2 (2000);
          v_uom_code                       VARCHAR2 (50);
          v_batch_source_name              VARCHAR2 (50);
          v_cust_trx_type_name             VARCHAR2 (20);
          v_currency_code                  VARCHAR2 (15);
          vorig_system_bill_customer_ref   VARCHAR2 (240);
          vorig_system_bill_address_ref    VARCHAR2 (240);
          v_trx_number                     VARCHAR2 (20);
          v_rowid                          VARCHAR2 (100);
          v_error_buffer                   VARCHAR2 (4000);
          v_status_flag                    VARCHAR2 (4);
          v_trx_date                       DATE;
          x_msg_count                      NUMBER;
          x_cust_account_id                NUMBER;
          x_site_use_id                	   NUMBER;
          i                                NUMBER;
          l_cust_trx_id                    NUMBER;
          v_resp_id                        NUMBER;
          v_tax_rate                       NUMBER;
          v_memo_line_id                   NUMBER;
          v_code_combination_id            NUMBER;
          v_trx_dist_id                    NUMBER;
          v_trx_line_id                    NUMBER;
          v_cust_trx_id                    NUMBER;
          l_msg_count                      NUMBER;
          v_trx_header_id                  NUMBER;
          v_item_id                        NUMBER;
          v_attribute12                    VARCHAR2 (240);
          v_org_id                         NUMBER;
          v_invoice_number                 VARCHAR2 (50);
          v_created_invoice                VARCHAR2(20);
          v_customer_trx_id                NUMBER;
          v_site_number                    NUMBER;
          x_inv_id                         NUMBER;
          lx_customer_trx_id               NUMBER;
          v_ord_id                         NUMBER;
          v_tax_code                       NUMBER;
          v_offer_id                       VARCHAR2 (100);
          v_count                          NUMBER                            := 0;
          v_item                           VARCHAR2 (200);
          v_taxable                        NUMBER;
          v_batch_source_id                NUMBER;
          v_term_id                        NUMBER;
          v_term_name                      VARCHAR2(15);
          v_nb_erreur                      NUMBER;
     
          /* Parcours des entetes factures (headers) */
          CURSOR lheader
          IS
             SELECT batch_source_name, cust_trx_type_name, currency_code,
                    trx_date, orig_system_bill_customer_ref,
                    orig_system_bill_address_ref, trx_number, ROWID, tax_rate,
                    interface_source_system, telephone_number, oa_client, date_echeance
               FROM xxnes_invoice_header_isol_tbl
              WHERE trx_number = p_trx_number AND ROWID = p_rowid;
     
          /*  Recuperations des infos correspondantes ¿a facture du header factures en cours de traitement*/
          CURSOR linvoice (v_trx_number IN VARCHAR, v_org_id VARCHAR2)
          IS
             SELECT DISTINCT product, quantity, unit_selling_price,
                                               amount, trx_number, attribute1,
                             attribute2, segment1
                        FROM xxnes_invoice_lines_isol_tbl
                       WHERE trx_number = v_trx_number
                       ;
                        -- AND interface_source_system = v_org_id;
     
          -- Cursor to get the error message if any
          CURSOR error_cursor
          IS
             SELECT error_message
             FROM ar_trx_errors_gt;
    BEGIN
    	BEGIN
     
                BEGIN
                        SELECT batch_source_id
                        INTO v_batch_source_id
                        FROM ra_batch_sources_all
                        WHERE name = 'NESSICO'
                        ;
     
                EXCEPTION
                        WHEN NO_DATA_FOUND
                        THEN
                            v_batch_source_id := 1309;
     
                END;
     
     
             FOR hcur IN lheader
             LOOP
                v_org_id := 86;
     
                -- fnd_client_info.set_org_context (86);
                 /*   v_org_id := 86;
                    fnd_global.apps_initialize (0, 50549, 600);
                    mo_global.set_policy_context ('S', 86);
                    mo_global.init ('AR');*/
                IF ((   TRIM (hcur.interface_source_system) = 'OSN'
                        OR TRIM (hcur.interface_source_system) = 'SN'
                     OR TRIM (hcur.interface_source_system) = 'SONATEL'
                    )
                   )
                THEN
                   --fnd_client_info.set_org_context (86);
                   v_org_id := 86;
                   fnd_global.apps_initialize (150255, 50549, 600);
                   mo_global.set_policy_context ('S', 86);
                   mo_global.init ('AR');
     
                   ---controle d'existance de la facture dans ra_cust_trx_all
                   --               BEGIN
                   --                  SELECT COUNT (*)
                   --                    INTO v_count
                   --                    FROM ra_customer_trx_all
                   --                   WHERE trx_number = hcur.trx_number AND org_id = 86;
                   --               EXCEPTION
                   --                  WHEN NO_DATA_FOUND
                   --                  THEN
                   --                     v_count := 0;
                   --                  WHEN TOO_MANY_ROWS
                   --                  THEN
                   --                     v_count := 1;
                   --               END;
     
                   --- On ne doit traiter que les nouvelles factures (eviter les doublons factures)
                   --  IF v_count = 0
                   --  THEN
                   --               IF hcur.tax_rate <> 0
                   --               THEN
                   --                  v_tax_code := 1021;
                   --               ELSE
                   --                  v_tax_code := 1007;
     
                   --               END IF;
     
                   -- fnd_global.apps_initialize (1064, 50549, 600);
                   IF hcur.cust_trx_type_name LIKE 'PERIODIQUE%'
                   THEN
                      l_trx_header_tbl (1).cust_trx_type_id := 1155;
                   ELSIF hcur.cust_trx_type_name LIKE 'IMMEDIATE%'
                   THEN
                      l_trx_header_tbl (1).cust_trx_type_id := 1156;
                   ELSIF hcur.cust_trx_type_name LIKE 'ISOLE%'
                   THEN
                      l_trx_header_tbl (1).cust_trx_type_id := 1153;
                   END IF;
     
     
                   l_batch_source_rec.batch_source_id := v_batch_source_id; --HIGHDEAL
     
                ELSIF TRIM (hcur.interface_source_system) = 'OML'
                THEN
                   fnd_client_info.set_org_context (84);
                   v_org_id := 84;
     
                   IF hcur.tax_rate <> 0
                   THEN
                      v_tax_code := 1023;
                   ELSE
                      v_tax_code := 1003;
                   END IF;
     
                   fnd_global.apps_initialize (1064, 50551, 600);
                   -- 107096
     
                   IF hcur.cust_trx_type_name LIKE 'PERIODIQUE%'
                   THEN
                      l_trx_header_tbl (1).cust_trx_type_id := 1157;
                   ELSIF hcur.cust_trx_type_name LIKE 'IMMEDIATE%'
                   THEN
                      l_trx_header_tbl (1).cust_trx_type_id := 1159;
                   ELSIF hcur.cust_trx_type_name LIKE 'ISOLE%'
                   THEN
                      l_trx_header_tbl (1).cust_trx_type_id := 1158;
                   END IF;
     
     
     
     
                   l_batch_source_rec.batch_source_id := v_batch_source_id;
                END IF;
     
                IF TRIM (hcur.orig_system_bill_customer_ref) IS NOT NULL
                THEN
                   -- Get the Customer Account id and assign it to the bill to field.
                   /*xx_pos_ar_utilities_pkg.pos_get_cust_account_id
                                             (hcur.orig_system_bill_customer_ref,
                                              hcur.orig_system_bill_address_ref,
                                              x_cust_account_id
                                             );*/
     
                  /* get_customer_infos('Mobile-' || hcur.orig_system_bill_address_ref,
                                       x_site_use_id,
                                       x_cust_account_id
                                      );   */
     
                   get_cust_infos_from_codecompte(hcur.orig_system_bill_address_ref,
                                                   x_site_use_id,         
                                                   x_cust_account_id
                                                  );
                   -- PROCEDURE pour trouver le site_use_id
                   --GET_SITE_USE_ID (hcur.telephone_number, x_cust_account_id, x_site_use_id);
     
     
                   -- batch_source_rec.batch_source_id and l_trx_header_tbl (1).trx_header_id
                   -- should depend on the source system
                   SELECT xx_invoices_seq.NEXTVAL
                     INTO v_trx_header_id
                     FROM DUAL;
     
    --               BEGIN
    --                  SELECT order_header_id
    --                    INTO v_ord_id
    --                    FROM pos_schema.pos_order_header
    --                   WHERE invoice_number = p_trx_number
    --                     AND org_id =
    --                            DECODE (hcur.interface_source_system,
    --                                    'OSN', '86',
    --                                    'OML', '84',
    --                                    'SONATEL', '86',
    --                                    hcur.interface_source_system
    --                                   );
    --               --                     AND order_type IN (1263, 1296);
    --               EXCEPTION
    --                  WHEN NO_DATA_FOUND
    --                  THEN
    --                     v_ord_id := -1;
    --                  WHEN TOO_MANY_ROWS
    --                  THEN
    --                     SELECT order_header_id
    --                       INTO v_ord_id
    --                       FROM pos_schema.pos_order_header
    --                      WHERE invoice_number = p_trx_number
    --                        AND org_id =
    --                               DECODE (hcur.interface_source_system,
    --                                       'OSN', '86',
    --                                       'OML', '84',
    --                                       'SONATEL', '86',
    --                                       hcur.interface_source_system
    --                                      )
    --                        --                      AND order_type IN (1263, 1296)
    --                        AND ROWNUM = 1;
    --               END;
    --
    --               BEGIN
    --                  SELECT line_name_id
    --                    INTO v_offer_id
    --                    FROM pos_schema.pos_order_lines
    --                   WHERE order_header_id = v_ord_id
    --                         AND line_obj_type = 'OFFER';
    --               EXCEPTION
    --                  WHEN NO_DATA_FOUND
    --                  THEN
    --                     v_offer_id := '-1';
    --               END;
     
                   -- IF v_offer_id <> 'OCS_ALIZE' and v_produ <> 'CS_ALIZ_ABONNEMENT'
                   --   THEN
                   IF hcur.trx_number like 'VDECH%'
                   THEN
                        v_term_name := TO_CHAR((TRUNC(hcur.date_echeance ) - TRUNC(hcur.trx_date))) ;
     
                                dbms_output.put_line('Dans le cas d''une facture Echelonne ' || hcur.trx_number);
                                dbms_output.put_line('valeur du v_term_name = ' || v_term_name);
     
                               BEGIN
                                    select term_id
                                    into v_term_id
                                    from ra_terms_tl
                                    where upper(name) =  v_term_name || ' NET'
                                    and language = 'F'
                                    ;   
     
                               EXCEPTION
                                 WHEN NO_DATA_FOUND
                                 THEN 
                                        v_term_id := -1 ;
                               END;
     
                   ELSE 
                                v_term_id := 4;
     
                   END IF;
     
     
                  -- test sur la valeur de l'echeance
                  IF v_term_id != -1
                  THEN
     
                        UPDATE xxnes_invoice_header_isol_tbl
                        set RETURNED_ADJ_ID = v_term_id
                        where trx_number = hcur.trx_number
                        and rowid = hcur.rowid;
     
                        commit;
     
                       l_trx_header_tbl (1).trx_header_id       := v_trx_header_id;
                       l_trx_header_tbl (1).trx_date            := hcur.trx_date;
                       l_trx_header_tbl (1).gl_date             := TRUNC (SYSDATE);  -- to_date('30/10/2014','dd/mm/yyyy');  --
                       l_trx_header_tbl (1).bill_to_site_use_id := x_site_use_id;
                       if length(hcur.trx_number) <= 20
                       then
                          l_trx_header_tbl (1).trx_number          := hcur.trx_number;  
                       end if;
     
                       l_trx_header_tbl (1).trx_currency        := hcur.currency_code;
                       l_trx_header_tbl (1).bill_to_customer_id := x_cust_account_id;
                       l_trx_header_tbl (1).attribute1          := hcur.telephone_number;
                       l_trx_header_tbl (1).term_id             := v_term_id;
                       l_trx_header_tbl (1).finance_charges     := 'N';
                       l_trx_header_tbl (1).status_trx          := 'OP';
                       l_trx_header_tbl (1).printing_option     := 'NOT';
                       l_trx_header_tbl (1).attribute10         := v_ord_id;
                       l_trx_header_tbl (1).finance_charges     := 'N';
                       l_trx_header_tbl (1).interface_header_attribute1 := hcur.oa_client;
                       i := 1;
     
                       /* parcours des lignes factures de chaque entete facutre (header) ) */
                       FOR icur IN linvoice (hcur.trx_number,
                                             hcur.interface_source_system
                                            )
                       LOOP
                          icur.product := TRIM (icur.product);
                          xx_pos_ar_utilities_pkg.pos_get_inv_item_id (icur.product,
                                                                       v_org_id,
                                                                       x_inv_id
                                                                      );
     
     
     
                          /** Mois@ Evol Newton : Complément numéraire**/
                          IF (icur.product = 'PAP_COMP_NUM')
                          THEN
                             SELECT description
                               INTO v_item
                               FROM mtl_system_items_b
                              WHERE attribute2 = 'PAP_COMP_NUM'
                                AND organization_id = 85;
     
                             v_item := v_item || '-' || icur.attribute1;
                             l_trx_lines_tbl (i).description := v_item;
                          END IF;
     
     
                          IF x_inv_id = -1 AND icur.segment1 is not null
                          THEN
                             BEGIN
                                SELECT inventory_item_id
                                INTO x_inv_id
                                FROM mtl_system_items_b
                                WHERE segment1 = icur.segment1
                                AND organization_id = 86
                                ;
                                dbms_output.put_line('valeur du segment ' || icur.segment1);
                                dbms_output.put_line('Inventory_item_id recupere à partir du segment = ' || x_inv_id);
     
                             EXCEPTION 
                                WHEN NO_DATA_FOUND
                                THEN 
                                    x_inv_id := -1;
                             END;  
     
                          END IF;
     
                          -- Recherche si article taxable
     
                          BEGIN
                              select 1 
                              into v_taxable
                              from mtl_system_items_b
                              where organization_id = 86
                              and inventory_item_id = x_inv_id
                              and tax_code is not null
                              and tax_code not in ('EXO', 'TVA_0%');
     
                          EXCEPTION
                            WHEN NO_DATA_FOUND
                            THEN
                                v_taxable := 0;
     
                          END;
     
                          -- dbms_output.put_line('  affectation des infos de ligne pour la facture  ');
                          dbms_output.put_line('Numero de la ligne : ' || i || ' Pour la facture ' || hcur.trx_number);
     
                          dbms_output.put_line(' les infos de la ligne cette facture ');
     
                        dbms_output.put_line('x_inv_id : ' || x_inv_id || ' produit ' || icur.product || ' unit_selling_price ' || icur.unit_selling_price );
     
                          l_trx_lines_tbl (i).trx_header_id         := v_trx_header_id;
                          l_trx_lines_tbl (i).trx_line_id           := i;
                          l_trx_lines_tbl (i).line_number           := i;
                          l_trx_lines_tbl (i).inventory_item_id     := x_inv_id;
                          l_trx_lines_tbl (i).description           := icur.product;    --AJOUT ABDOUKARIM
                          l_trx_lines_tbl (i).quantity_invoiced     := icur.quantity;  -- 1;
                          l_trx_lines_tbl (i).attribute4            := icur.quantity;
                          l_trx_lines_tbl (i).unit_selling_price    := icur.unit_selling_price;  -- icur.amount;
                          l_trx_lines_tbl (i).line_type             := 'LINE';
                          --l_trx_lines_tbl (i).vat_tax_id := v_tax_code;
                          l_trx_lines_tbl (i).tax_exempt_flag       := 'S';
     
     
     
                          i := i + 1;
                       END LOOP;
     
                      /* UPDATE xxnes_invoice_header_isol_tbl
                       set TOTAL_APPLIED_AMOUNT = -1
                       where trx_number = hcur.trx_number
                       and rowid = hcur.rowid;
                       
                       commit;*/
     
                       dbms_output.put_line('appel API pour creation facture ' || hcur.trx_number  );
     
                       ar_invoice_api_pub.create_single_invoice
                                    (p_api_version               => 1.0,
                                     p_init_msg_list             => 'T',
                                     p_commit                    => 'T',
                                     p_batch_source_rec          => l_batch_source_rec,
                                     p_trx_header_tbl            => l_trx_header_tbl,
                                     p_trx_lines_tbl             => l_trx_lines_tbl,
                                     p_trx_dist_tbl              => l_trx_dist_tbl,
                                     p_trx_salescredits_tbl      => l_trx_salescredits_tbl,
                                     x_customer_trx_id           => lx_customer_trx_id,
                                     x_return_status             => l_return_status,
                                     x_msg_count                 => l_msg_count,
                                     x_msg_data                  => l_msg_data
                                    );
                       i := 1;
     
                       dbms_output.put_line(' fin appel API pour ' || hcur.trx_number  );
     
     
                   /*    UPDATE xxnes_invoice_header_isol_tbl
                       set TOTAL_APPLIED_AMOUNT = 10
                       where trx_number = hcur.trx_number
                       and rowid = hcur.rowid;
                       
                   */
     
                       commit;
     
                        -- =======================================
                     /*  FOR err_cur IN error_cursor
                       LOOP
                          v_error_buffer :=
                                v_error_buffer
                             || '('
                             || i
                             || ')'
                             || err_cur.error_message
                             || CHR (10);
                       END LOOP; */
     
                       -- =========================================
     
                       dbms_output.put_line('return_status from create single invoice ' || l_return_status );
                       dbms_output.put_line('l_msg_count from create single invoice ' || l_msg_count );
     
     
                     /*  IF l_return_status <> apps.fnd_api.g_ret_sts_success
                       THEN
                        v_error_buffer :=
                              v_error_buffer
                           || apps.fnd_msg_pub.get
                                                  (p_msg_index      => apps.fnd_msg_pub.g_last,
                                                   p_encoded        => apps.fnd_api.g_false
                                                  );
                       END IF;   */
     
     
                       BEGIN
                            SELECT COUNT (*)
                            INTO v_count
                            FROM ar_payment_schedules_all
                            WHERE trx_number = hcur.trx_number;
                       EXCEPTION
                            WHEN NO_DATA_FOUND
                            THEN
                              v_count := 0;
                        END;
     
     
                      IF v_count>0
                      THEN
                         v_status_flag := 'S';
                           v_error_buffer:=null;
                      ELSE
                         v_status_flag := 'E';
                         v_nb_erreur  := 0;
     
                          FOR err_cur IN error_cursor
                             LOOP
                                 v_nb_erreur  := v_nb_erreur + 1;
                                 v_error_buffer :=
                                          -- v_error_buffer
                                         '('
                                         || i
                                         || ')'
                                         || err_cur.error_message
                                         || CHR (10);
     
                                /* v_error_buffer :=
                                       v_error_buffer
                                    || '('
                                    || i
                                    || ')'
                                    || err_cur.error_message
                                    || CHR (10); */
     
                                    dbms_output.put_line(' contenu de v_error_buffer ' || v_error_buffer);
                                    dbms_output.put_line(' valeur de v_nb_erreur ' || v_nb_erreur);
     
                              END LOOP;
                      END IF;
     
                   -- delete from ar_trx_errors_gt;
                   --  execute immediate ('truncate table ar_trx_errors_gt'); 
                   DBMS_OUTPUT.PUT_LINE('message d''erreur ' || v_error_buffer);
     
                     execute immediate ('delete from ar_trx_errors_gt');   
                     COMMIT;
     
     
     
     
                    /*   BEGIN
                            SELECT trx_number
                            INTO v_created_invoice
                            FROM ra_customer_trx_all
                            WHERE customer_trx_id = lx_customer_trx_id;
                            
                       EXCEPTION
                            WHEN NO_DATA_FOUND
                            THEN          
                                v_created_invoice  := NULL;
                                lx_customer_trx_id := NULL;
                       END;
                       
                       IF v_created_invoice IS NULL
                       THEN
                            v_status_flag := 'E';
                       ELSE 
                            v_status_flag := 'S';
                       END IF; */
     
                      /* IF x_return_status != apps.fnd_api.g_ret_sts_success
                       THEN
                          v_error_buffer :=
                                v_error_buffer
                             || apps.fnd_msg_pub.get
                                              (p_msg_index      => apps.fnd_msg_pub.g_last,
                                               p_encoded        => apps.fnd_api.g_false
                                              );
                       END IF;*/
     
                  /*   IF l_msg_count > 0 -- l_return_status != apps.fnd_api.g_ret_sts_success
                    THEN
                        DBMS_OUTPUT.PUT_LINE('On est dans le if l_msg_count ' || l_msg_count);
                        FOR i IN 1 .. l_msg_count
                             LOOP
                                v_error_buffer :=
                                      v_error_buffer
                                   || l_msg_data
                                   || (   i
                                       || '. '
                                       || SUBSTR
                                             (fnd_msg_pub.get
                                                         (p_encoded      => fnd_api.g_false),
                                              1,
                                              255
                                             )
                                      );
                             END LOOP;
                    END IF;  */
     
     
     
                     /* IF LENGTH (v_error_buffer) > 1 OR l_msg_data IS NOT NULL
                       THEN
                          v_status_flag := 'E';
                       ELSE
                          v_status_flag := 'S';
                       END IF; */
                       if length(hcur.trx_number) <= 20
                       then
                           v_trx_number := hcur.trx_number;
                       end if;
     
                       /* Mise ¿our de la table XXCRMO.XX_INVOICE_HEADERS_TBL */
                       UPDATE xxnes_invoice_header_isol_tbl
                          SET interface_creation_date   = SYSDATE,
                              interface_status          = v_status_flag,
                              interface_error_message   = v_error_buffer,
                                  --NVL (v_error_buffer, l_msg_data)
                                  --|| x_cust_account_id,
                              returned_cust_trx_id      = lx_customer_trx_id,
                              returned_cust_acct_id     = x_cust_account_id,
                              returned_site_use_id      = x_site_use_id
                        WHERE trx_number                = hcur.trx_number -- AND ROWID = hcur.ROWID;
                       ;     -- END IF;
     
                  ELSE
     
                        UPDATE xxnes_invoice_header_isol_tbl
                          SET interface_creation_date = NULL,
                              interface_status        = 'E',
                              interface_error_message = 'INVALID TERM_ID'
                        WHERE trx_number = hcur.trx_number 
                        AND ROWID = hcur.ROWID;
     
     
                  END IF;
     
     
                ELSE
                       UPDATE xxnes_invoice_header_isol_tbl
                          SET interface_creation_date = NULL,
                              interface_status        = 'E',
                              interface_error_message = 'CUSTOMER ID IS NULL'
                        WHERE trx_number = hcur.trx_number AND ROWID = hcur.ROWID;
                END IF;
     
     
     
                v_status_flag   := NULL;
                v_error_buffer  := '';
                l_return_status := NULL;
                l_msg_count     := NULL;
                l_msg_data      := NULL;
             -- END IF;                 --- Fin test existence facture dans Oracle
             END LOOP;
     
             v_tax_code := NULL;
          END;
    END;
    Fichiers attachés Fichiers attachés

  2. #2
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Salut,

    Déjà, le second paramètre étant du type VARCHAR, tu devrais avoir :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    appel.setString(2,"101048");
    Ou alors, passer le type de p_rowid en NUMBER.

    Citation Envoyé par mseesay Voir le message
    Maintenant j'ai tenté tous les paramètres possibles pour le ROWID (varchar ou INT) mais à chaque fois que j'exécute le code ça m'affiche comme erreur :
    Si tu parles du ROWID dans ta procédure stockée, c'est plutôt sur le forum Oracle qu'il faudrait poser la question.
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  3. #3
    Nouveau Candidat au Club
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Août 2017
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2017
    Messages : 2
    Points : 1
    Points
    1
    Par défaut
    Merci @joel.drigo pour votre précieuse aide.
    je m'excuse encore d'avoir mélangé les forums (je suis novice)

    Comme vous l'avez souligné, j'ai essayé avec :

    appel.setString(1,"test");
    appel.setString(2,"101048");

    mais ça marche toujours pas. Merci pour votre réponse

Discussions similaires

  1. Réponses: 2
    Dernier message: 14/12/2006, 15h43
  2. [PHP-JS] Problème de Recupération en liste Dynamique
    Par Alexino2 dans le forum Langage
    Réponses: 12
    Dernier message: 21/07/2006, 09h48
  3. Réponses: 49
    Dernier message: 13/03/2006, 11h25
  4. [MySQL] Problème de recupération d'info dans ma db
    Par kaygee dans le forum PHP & Base de données
    Réponses: 3
    Dernier message: 05/01/2006, 16h55
  5. [rowid] recupération du rowid
    Par cibouseb dans le forum Oracle
    Réponses: 17
    Dernier message: 14/08/2003, 14h23

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo