Project

General

Profile

Actions

VOC support #2827

closed

[Request] Change the status of billing

Added by Tracy Tran 2 months ago. Updated 2 months ago.

Status:
완료성공(Resolve)
Priority:
보통(Normal)
Assignee:
Target version:
Start date:
12/31/2025
Due date:
12/31/2025
% Done:

100%

Estimated time:
Part:
Build env.:
Prod

Description

Dear Team,

As per KRAC team request, Please change the payment status from Request to Approval to Non-Payment for the billing no.758200

Thank you

Best regards,


Files

image.png (119 KB) image.png Tracy Tran, 12/30/2025 06:54 AM
Actions #1

Updated by Tom Dong 2 months ago

  • Due date set to 12/31/2025
  • Status changed from 신규(New) to 진행(Doing)
  • Start date set to 12/31/2025
Actions #2

Updated by Tom Dong 2 months ago

VOC SQL - Change Billing Status

Request: Change billing payment status from "Request to Approval" to "Non-Payment" for billing no. 758200

Status Code Mapping:

Code English Korean
VBS01 Non-Payment 미지급
VBS02 Request to Approval 승인요청

Step 1: Verify current status (SELECT)

-- Verify billing 758200 exists with current status VBS02
SELECT 
    INVOICE_SEQ,
    BILLING_STATUS_CODE,
    INVOICE_AMOUNT,
    BALANCE_AMOUNT,
    TRADER_COMP_CODE,
    CURRENCY_CODE,
    ISSUE_DATETIME
FROM PM_INVOICE_MASTER 
WHERE INVOICE_SEQ = 758200
  AND SALES_OR_VENDOR = 'V';

Step 2: Update billing status (UPDATE)

-- Change status from VBS02 (Request to Approval) to VBS01 (Non-Payment)
UPDATE PM_INVOICE_MASTER
SET BILLING_STATUS_CODE = 'VBS01',
    LAST_UPDATE_UNO = 90049,
    LAST_UPDATE_DATETIME = NOW()
WHERE INVOICE_SEQ = 758200
  AND SALES_OR_VENDOR = 'V'
  AND BILLING_STATUS_CODE = 'VBS02';

Step 3: Verify result (SELECT)

-- Confirm the update was successful
SELECT 
    INVOICE_SEQ,
    BILLING_STATUS_CODE,
    INVOICE_AMOUNT,
    BALANCE_AMOUNT,
    LAST_UPDATE_DATETIME
FROM PM_INVOICE_MASTER 
WHERE INVOICE_SEQ = 758200;

Note: Run Step 1 first to confirm the record exists with status VBS02 before executing the UPDATE.

Actions #3

Updated by Tom Dong 2 months ago

  • Status changed from 진행(Doing) to QA test
  • Assignee changed from Tom Dong to Tracy Tran
  • % Done changed from 0 to 100
  • Build env. set to Prod
Actions #4

Updated by Tracy Tran 2 months ago

  • Status changed from QA test to 완료성공(Resolve)
  • Assignee changed from Tracy Tran to Tom Dong

checked

Actions

Also available in: Atom PDF

Add picture from clipboard (Maximum size: 50 MB)