Search found 2112 matches

by admin
Wed Nov 12, 2025 7:33 am
Forum: Oracle APEX
Topic: Barcode PNG Generation Script
Replies: 0
Views: 663

Barcode PNG Generation Script

DECLARE
l_data VARCHAR2(4000);
l_qr_blob BLOB;
l_ean8 VARCHAR2(8);
BEGIN
FOR r IN (
SELECT empno,
NVL(ename, '') ename,
NVL(job, '') job
FROM emp
)
LOOP
IF :P27_BARCODE_TYPE = 'QRCODE' THEN
-- QR Code: can use full data
l_data := TO_CHAR(r.empno) || ',' || r.ename || ',' || r.job;
l ...
by admin
Mon Nov 10, 2025 4:00 am
Forum: Oracle APEX
Topic: ComboBox Code
Replies: 0
Views: 807

ComboBox Code


DECLARE
v_input VARCHAR2(4000) := :P30_DEPTNAME_MANUAL;
v_deptno NUMBER;
v_deptno_list VARCHAR2(4000);
v_exists NUMBER;
BEGIN
FOR rec IN (
SELECT TRIM(COLUMN_VALUE) AS dept_name
FROM TABLE(APEX_STRING.SPLIT(v_input, ':'))
WHERE TRIM(COLUMN_VALUE) IS NOT NULL
)
LOOP
-- Check if ...
by admin
Sun Sep 14, 2025 7:03 am
Forum: Application DBA & System Administration
Topic: Google Account Hacked? Recover Gmail, YouTube, Google Drive, AdSense
Replies: 0
Views: 108620

Google Account Hacked? Recover Gmail, YouTube, Google Drive, AdSense

Has your Google account been hacked? Don’t worry in this video I’ll show you how to recover your Gmail, YouTube channel, Google Drive, AdSense, and all linked services.

✔ Secure your Gmail after a hack and reset your password
✔ Recover a hacked YouTube channel and protect your content
✔ Regain ...
by admin
Fri Aug 29, 2025 3:35 am
Forum: Oracle APEX
Topic: Compiling Invalid Objects Scripts
Replies: 0
Views: 116113

Compiling Invalid Objects Scripts

1)

BEGIN
DBMS_UTILITY.compile_schema
(
schema => 'your schema nme', compile_all => FALSE
);
END;
/

2)

SELECT 'ALTER ' || OBJECT_TYPE || ' ' || OWNER || '.' || OBJECT_NAME || ' COMPILE;'
FROM DBA_OBJECTS
WHERE STATUS = 'INVALID';

3)

SET SERVEROUTPUT ON
DECLARE
v_sql VARCHAR2(200);
BEGIN
FOR ...
by admin
Thu Aug 28, 2025 6:08 am
Forum: Oracle APEX
Topic: Public Holidays adjustment during Leaves
Replies: 2
Views: 117985

Re: Public Holidays adjustment during Leaves

You are welcome. thanks
by admin
Thu Aug 28, 2025 5:47 am
Forum: Oracle APEX
Topic: Login Page Region Alignment on the screen
Replies: 0
Views: 23224

Login Page Region Alignment on the screen

Paste the following code in the Theme Roller or Incline CSS of login page,

.t-Login-region {
position: fixed;
top: 25%;
left: 2%;
}

login_left.png
by admin
Sat Aug 09, 2025 5:54 am
Forum: Application DBA & System Administration
Topic: NLS_LANGUAGE FOR R12 In client/SQL Developer
Replies: 0
Views: 19612

NLS_LANGUAGE FOR R12 In client/SQL Developer

If you are connected with Oracle EBS R12 instance and trying to get data but it is showing no record then do this setting,

1. select * from hr_operating_units;
no data

2.ALTER SESSION SET NLS_LANGUAGE= 'AMERICAN';

select * from nls_session_parameters;

3. select * from hr_operating_units;
Now it ...
by admin
Mon Aug 04, 2025 1:57 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 45230

Re: FBR Pakistan API Call

Please check my video on SSL,

https://youtu.be/77jfvRe2GqQ
by admin
Thu Jul 31, 2025 5:13 am
Forum: Oracle APEX
Topic: How to reset Identiity Column Starting Value?
Replies: 0
Views: 27395

How to reset Identiity Column Starting Value?

This topic will help you to reset or continue Oracle identity sequences without dropping the table or manually altering internal sequences.

What is an Identity Column?

An identity column in Oracle is used to automatically generate sequential values, typically for a primary key. When you define ...
by admin
Fri Jul 25, 2025 8:18 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 45230

Re: FBR Pakistan API Call

You skipped ACL or wrongly configured your database not allowing your code to go out im simple words

My Video explaining ACL
https://youtu.be/XKmI4s4pIDA


ORA-29273: HTTP request failed
ORA-06512: at "APEX_240200.WWV_FLOW_WEB_SERVICES", line 681
ORA-06512: at "APEX_240200.WWV_FLOW_WEB_SERVICES ...
by admin
Fri Jul 25, 2025 5:48 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 45230

Re: FBR Pakistan API Call

main post above update you can find detail at the bottom. thanks
zainhanaan wrote: Thu Jul 24, 2025 6:24 pm what about 11g and 12.1 . your mention code is for oracle apex only
by admin
Sat Jul 19, 2025 6:17 am
Forum: Oracle APEX
Topic: Master Detail using RESTful Web Services Code and Demo
Replies: 0
Views: 27152

Master Detail using RESTful Web Services Code and Demo

A Master-Detail relationship is a common design pattern in application development where two sets of data are related hierarchically. In this context, the Master represents a high-level record, such as an Invoice, while the Detail contains the associated lower-level records, such as the Invoice ...
by admin
Mon Jul 14, 2025 10:07 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 45230

Re: FBR Pakistan API Call

Upgrade your database. Thanks
by admin
Wed Jul 09, 2025 2:31 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 45230

Re: FBR Pakistan API Call

Dear unable to understand as certificate file attached just rename it. Thanks
by admin
Mon Jul 07, 2025 12:14 pm
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 45230

FBR Pakistan API Call

First register and get token which might take some time may be upto 2 days,

User Manual
https://download1.fbr.gov.pk/Docs/20256251162757102DIUserManualV1.4.pdf

Technical Document
https://download1.fbr.gov.pk/Docs/20256201364855300TechnicalDocumentationforDIAPI.pdf

You can download here if ...