24 August, 2022

API To unapply regular Credit Memo

Below script unapply a regular Credit Memo from an invoice. API uses procedure AR_CM_APPLICATION_PUB.unapply_regular_cm.

DECLARE 

           p_api_version                               NUMBER;
           p_init_msg_list                             VARCHAR2(200);
           p_commit                                    VARCHAR2(200);
           p_validation_level                          NUMBER;
           x_return_status                             VARCHAR2(200);
           x_msg_count                                 NUMBER;
           X_MSG_DATA                                  varchar2(200);
           p_customer_trx_id                           NUMBER; 
           p_reversal_gl_date                          DATE;      
           p_called_from                               VARCHAR2(200);    
           p_org_id                                    NUMBER;

   p_cm_customer_trx_id      NUMBER; 
   p_cm_trx_number VARCHAR2(200);
p_app_customer_trx_id NUMBER; 
p_app_trx_number      VARCHAR2(200);
p_installment      NUMBER; 
p_applied_payment_schedule_id  NUMBER; 
p_receivable_application_id   NUMBER; 
p_reversal_gl_date   DATE;     
p_called_from VARCHAR2(200);
p_org_id              NUMBER; 

BEGIN



      BEGIN 
         --
               FND_GLOBAL.APPS_INITIALIZE (  1001, 1234, 222);
mo_global.set_policy_context('S',812);    
      END;
  
 AR_CM_APPLICATION_PUB.unapply_regular_cm(

p_api_version          =>  1.0,
p_init_msg_list             => FND_API.G_TRUE,
p_commit                    =>FND_API.G_TRUE,    
p_validation_level         =>FND_API.G_VALID_LEVEL_FULL ,  
x_return_status            => x_return_status,   
x_msg_count               =>x_msg_count ,         
x_msg_data                 => x_msg_data,      
p_cm_customer_trx_id       => 567655,
p_cm_trx_number      => 346346,
p_app_customer_trx_id =>   2455424,
p_app_trx_number => 346346,
p_installment =>1,
p_applied_payment_schedule_id  =>233235,
p_receivable_application_id =>2352353,
p_reversal_gl_date =>  '22-AUG-2022',
p_called_from =>Null,
p_org_id              =>204
);
IF (x_return_status = 'S') THEN

   COMMIT;
   
       dbms_output.put_line('SUCCESS');
       dbms_output.put_line('Return Status            = '|| SUBSTR (x_return_status,1,255));
       dbms_output.put_line('Message Count             = '||x_msg_count);
    dbms_output.put_line('Message Data            = '||x_msg_data);
    dbms_output.put_line('p_receivable_application_id   = '||p_receivable_application_id);   
ELSE     

   ROLLBACK;
   
   dbms_output.put_line('Return Status    = '|| SUBSTR (x_return_status,1,255));
   dbms_output.put_line('Message Count     = '|| TO_CHAR(x_msg_count ));
   dbms_output.put_line('Message Data    = '|| SUBSTR (x_msg_data,1,255));
   dbms_output.put_line(APPS.FND_MSG_PUB.Get ( p_msg_index    => APPS.FND_MSG_PUB.G_LAST,    
          p_encoded      => APPS.FND_API.G_FALSE));
  
   IF x_msg_count >=0 THEN
   
      FOR I IN 1..10 LOOP
               dbms_output.put_line(I||'. '|| SUBSTR (FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE ), 1, 255));
     
      END LOOP;
   END IF;
   
END IF;        
 EXCEPTION 
  WHEN OTHERS THEN
 dbms_output.put_line('Exception :'||sqlerrm);
END;


Reference:

Find responsibility name of a program

 Use below query to find the responsibility of a concurrent program


Select fcpt.user_concurrent_program_name,

frg.request_group_name,

frt.responsibility_name

From apps.fnd_Responsibility fr,

apps.fnd_responsibility_tl frt,

apps.fnd_request_groups frg,

apps.fnd_request_group_units frgu,

apps.fnd_concurrent_programs_tl fcpt

Where fcpt.user_concurrent_program_name =  <Insert Program name here>

and fcpt.concurrent_program_id = frgu.request_unit_id

and frgu.request_group_id = frg.request_group_id

and frg.request_group_id = fr.request_group_id

and fr.responsibility_id = frt.responsibility_id

Order By 2

;

Accounts Payable Trial Balance Report Query

 Report name: Accounts Payable Trial Balance

The standard summary report for AP Trial Balance is based on below query.


SELECT

summary_dat.definition_code,

summary_dat.ledger_id,

gl.name,

gl.short_name,

gl.currency_code,

''SUMMARY'',

summary_dat.source_application_id,

summary_dat.code_combination_id,

decode(gl.ledger_category_code,''PRIMARY'',summary_dat.SUM_acctd_unrounded_orig_amt ,0),

decode(gl.ledger_category_code,''PRIMARY'',summary_dat.SUM_acctd_rounded_orig_amt,0),

summary_dat.sum_entd_unrounded_rem_amount,

summary_dat.sum_entd_rounded_rem_amount,

summary_dat.sum_acctd_unrounded_rem_amount,

summary_dat.sum_acctd_rounded_rem_amount,

summary_dat.party_name,

summary_dat.party_id,

summary_dat.balancing_segment_value,

summary_dat.natural_account_segment_value,

summary_dat.cost_center_segment_value,

summary_dat.intercompany_segment_value,

summary_dat.management_segment_value,

gl.currency_code



FROM

    (

        SELECT

  tb.definition_code,

  tb.ledger_id,

  tb.source_application_id,

  tb.code_combination_id,

  SUM(tb.entered_unrounded_rem_amount) SUM_ENTD_UNROUNDED_REM_AMOUNT,

  SUM(tb.entered_rounded_rem_amount) SUM_entd_rounded_rem_amount ,

  SUM(tb.acctd_unrounded_rem_amount) SUM_acctd_unrounded_rem_amount ,

  SUM(tb.acctd_rounded_rem_amount) SUM_acctd_rounded_rem_amount ,

  SUM(nvl(tiv.base_amount,tiv.invoice_amount)) SUM_acctd_unrounded_orig_amt,

  SUM(nvl(tiv.base_amount,tiv.invoice_amount)) SUM_acctd_rounded_orig_amt,

  tiv.party_name,

  tb.party_id,

  tb.balancing_segment_value,

  tb.natural_account_segment_value,

  tb.cost_center_segment_value,

  tb.intercompany_segment_value,

  tb.management_segment_value

 FROM

  AP_SLA_INVOICES_TRANSACTION_V tiv,

  xla_transaction_entities xte,

  -- inline view

  ( SELECT /*+ parallel(xtb) leading(xtb) NO_MERGE */  --added hint bug#8409806 bug9133956

  xtb.definition_code,

  nvl(xtb.applied_to_entity_id,xtb.source_entity_id) entity_id,

  xtb.code_combination_id ,

  xtb.source_application_id,

  SUM (Nvl(xtb.entered_unrounded_cr,0)) -  SUM (Nvl(xtb.entered_unrounded_dr,0)) entered_unrounded_rem_amount,

  SUM (Nvl(xtb.entered_rounded_cr,0)) -  SUM (Nvl(xtb.entered_rounded_dr,0)) entered_rounded_rem_amount,

  SUM (Nvl(xtb.acctd_unrounded_cr,0)) -  SUM (Nvl(xtb.acctd_unrounded_dr,0)) acctd_unrounded_rem_amount,

  SUM (Nvl(xtb.acctd_rounded_cr,0)) -  SUM (Nvl(xtb.acctd_rounded_dr,0)) acctd_rounded_rem_amount,

  xtb.ledger_id,

  xtb.party_id,

  xtb.balancing_segment_value,

  xtb.natural_account_segment_value,

  xtb.cost_center_segment_value,

  xtb.intercompany_segment_value,

  xtb.management_segment_value

  FROM     xla_trial_balances xtb

  where    xtb.definition_code = :1

    and xtb.source_application_id=200

    and xtb.gl_date between :2 and :3

    AND NVL(xtb.party_id,-99)    = NVL(:4,NVL(xtb.party_id,-99))

      GROUP BY  xtb.definition_code,

    nvl(xtb.applied_to_entity_id,xtb.source_entity_id) ,

    xtb.code_combination_id ,

    xtb.source_application_id,

    xtb.ledger_id,

    xtb.party_id,

    xtb.balancing_segment_value,

    xtb.natural_account_segment_value,

    xtb.cost_center_segment_value,

    xtb.intercompany_segment_value,

    xtb.management_segment_value

     HAVING SUM (Nvl(xtb.acctd_rounded_cr,0)) <> SUM (Nvl(xtb.acctd_rounded_dr,0))

  ) tb

  --end of inline view

 WHERE tb.entity_id=xte.entity_id

 AND tb.source_application_id=200

 AND xte.entity_code=''AP_INVOICES''

 AND xte.application_id=tb.source_application_id

 AND nvl(xte.source_id_int_1,-99)=tiv.invoice_id


 GROUP BY

  tb.definition_code, tb.ledger_id, tb.source_application_id,

  tb.code_combination_id, tiv.party_name,tb.party_id,

  tb.balancing_segment_value, tb.natural_account_segment_value,

  tb.cost_center_segment_value, tb.intercompany_segment_value,

  tb.management_segment_value

    ) summary_dat ,

   gl_ledgers gl

 WHERE summary_dat.ledger_id=gl.ledger_id