Custom Authentication and Authorization using ORACLE APEX

  Рет қаралды 26,441

SOFTWARE AND WEBSITE

SOFTWARE AND WEBSITE

4 жыл бұрын

Custom Authentication and Authorization using ORACLE APEX
Authentication means confirming your own identity, whereas authorization means being allowed access to the system. In even more simpler terms authentication is the process of verifying oneself, while authorization is the process of verifying what you have access to.
FUNCTION user_aut (
p_username IN VARCHAR2, --User_Name
p_password IN VARCHAR2 -- Password
)
RETURN BOOLEAN
AS
lc_pwd_exit VARCHAR2 (1);
BEGIN
-- Validate whether the user exits or not
SELECT 'Y'
INTO lc_pwd_exit
FROM users
WHERE upper(LOG_IN) = UPPER (p_username) AND LOG_PAS = p_password and status='Y'
;
RETURN TRUE;
EXCEPTION
WHEN NO_DATA_FOUND
THEN
RETURN FALSE;
END user_aut;
farooq.oracle47@gmail.com
Like Comment Share Subscribe And Press The Bill Icon...
Facebook page: / oracle47

Пікірлер: 51
@darrentan5098
@darrentan5098 2 жыл бұрын
SELECT 'Y' INTO lc_pwd_exit May I know what does this two lines do? Does it set value 'Y' into lc_pwd_exit after fulfilling the WHERE CLAUSE? Because my table does not have status and still can't verify the username and password for the log in.
@mohamedsameer3549
@mohamedsameer3549 4 жыл бұрын
Thanks, for this useful tutorial
@masercot
@masercot 2 жыл бұрын
For future reference, it's "role". Enjoyed the video.
@MegasXLR
@MegasXLR 3 жыл бұрын
Uploaded on my birthday :)
@NayagarhSensei
@NayagarhSensei 2 жыл бұрын
Great job man , I was stuck at the custom authorisation now I will implement your ideas and try again. Can you make a tutorial of that item cart and printing methods
@ahmad-easytech
@ahmad-easytech 2 жыл бұрын
Whatsapp me
@25muhdhafiz
@25muhdhafiz 3 жыл бұрын
Hey I know it's a bit late but I tried this method and the validation is successful but after I apply changes and run the application, on the login page it says "Invalid Credentials". Is there any possible mistake that you can think about my application ?
@ahmad-easytech
@ahmad-easytech 3 жыл бұрын
may be you make some mistake
@fip4070
@fip4070 2 жыл бұрын
Great Job Sir.... Really Helpful ..
@Nidheeshmtr
@Nidheeshmtr 3 жыл бұрын
How do you decide the order of parameters passed to custom authentication fn.? Is that by default first uname, then paswd?
@ahmad-easytech
@ahmad-easytech 2 жыл бұрын
for mor whatsaap m
@kondayyadorababuvelisetti464
@kondayyadorababuvelisetti464 4 жыл бұрын
Thanks alot
@wajeehalwajeeh7247
@wajeehalwajeeh7247 2 жыл бұрын
Thank you
@matejaklobucar1194
@matejaklobucar1194 4 жыл бұрын
I want to create multiple users in Oracle APEX so when they log in they can see and edit only reports and data they have created while they were logged in with their username. Administrator can menage with all data of all users, but users only their own data. Do You have tutorial for this?
@ahmad-easytech
@ahmad-easytech 4 жыл бұрын
+923411918948 WHATSAAP ME
@matejaklobucar1194
@matejaklobucar1194 4 жыл бұрын
@@ahmad-easytech do you have email or Facebook?
@ahmad-easytech
@ahmad-easytech 4 жыл бұрын
@@matejaklobucar1194 facebook.com/Oracle47 my page
@davido8193
@davido8193 2 жыл бұрын
how do you do this?
@school8066
@school8066 3 жыл бұрын
Assalam Alaikum brother... How you added that report region could please make a video on adding a report region for classical reports printing with a form header...
@ahmad-easytech
@ahmad-easytech 3 жыл бұрын
Which Report ??
@school8066
@school8066 3 жыл бұрын
@@ahmad-easytech printer friendly pdf report... My issue is I want to print invoice with header and details but all we get is rows and columns....
@ahmad-easytech
@ahmad-easytech 3 жыл бұрын
@@school8066 mail me farooq.oracle47@gmail.com
@tempest13yearsago22
@tempest13yearsago22 Жыл бұрын
Hello, u still active? I want to create log in form and connect it to website and everytime user log in or sign up, it stored data . Do you have tutorial?
@ahmad-easytech
@ahmad-easytech Жыл бұрын
yes you can by adding process
@tempest13yearsago22
@tempest13yearsago22 Жыл бұрын
@@ahmad-easytech thanks, but where i find it? I'm a senior high student here in Philippines and im exploring oracle database and recently we have a thesis project and we want to make a log in form that stores data and after logging in, it will direct to website that we create. Do you have Ig? I'll follow step by step how to connect log in to webpage and stores data You earned my sub👌
@ahmad-easytech
@ahmad-easytech Жыл бұрын
@@tempest13yearsago22 email me so i will help you
@user-mr6px5ge7n
@user-mr6px5ge7n 3 жыл бұрын
thanks
@sabrinaaisyah2174
@sabrinaaisyah2174 2 жыл бұрын
hi, in 10:06 i couldnt get the sql query, can you help me?
@ahmad-easytech
@ahmad-easytech 2 жыл бұрын
Whatsapp me or mail me.
@SidraSiddiqui9913
@SidraSiddiqui9913 3 жыл бұрын
Very Nice explanation, is it possible to study the source code for this. Thank you very much
@ahmad-easytech
@ahmad-easytech 2 жыл бұрын
whatsapp me
@ORACLEAPEX410
@ORACLEAPEX410 Жыл бұрын
can you tell me how to integrate ebs to apex
@amitarya-iy1ok
@amitarya-iy1ok 7 ай бұрын
thankyou
@heshammasoudme
@heshammasoudme 4 жыл бұрын
Hello great work Could you please help creating HR application using Apex depends on attending database
@ahmad-easytech
@ahmad-easytech 4 жыл бұрын
please mail what you want farooq.oracle47@gmail.com Whats app +923411918948
@Hussain54321
@Hussain54321 Ай бұрын
Sir i am new in oracle Apex and want to learn Kindly provide source code.
@roadtoallah9614
@roadtoallah9614 4 жыл бұрын
Sir, Assalamualikum, i am from bangladesh and new in oracle apex, i do so as describe in this video then when i try to login an error show "ORA-06550: line 23, column 23: PLS-00201: identifier 'USER_AUT' must be declared", Sir plz help
@ahmad-easytech
@ahmad-easytech 4 жыл бұрын
whatsapp me +923411918948
@roadtoallah9614
@roadtoallah9614 4 жыл бұрын
@@ahmad-easytech Sir can i get the code
@ahmad-easytech
@ahmad-easytech 4 жыл бұрын
@@roadtoallah9614 mail me or whats app
@sabeelsiraturrehman4600
@sabeelsiraturrehman4600 5 ай бұрын
Same Problem
@Nidheeshmtr
@Nidheeshmtr 3 жыл бұрын
Is there any free reporting tools for apex?
@ahmad-easytech
@ahmad-easytech 3 жыл бұрын
yes too many oracle reports , jasper and many more
@Nidheeshmtr
@Nidheeshmtr 3 жыл бұрын
@@ahmad-easytech oracle forms and reports? Which version?
@jayakumar2927
@jayakumar2927 Жыл бұрын
how to top menu with functionality forms can you share with me
@ahmad-easytech
@ahmad-easytech Жыл бұрын
didnt get you question what you want to say sir
@abineshh8072
@abineshh8072 4 жыл бұрын
sir can i get the code
@ahmad-easytech
@ahmad-easytech 4 жыл бұрын
mail me please
@ahmad-easytech
@ahmad-easytech 4 жыл бұрын
check your mail
Oracle APEX- Authorization Scheme - Page/Item Control
9:59
Ora Trainings
Рет қаралды 7 М.
How to Login App Using DB Table Users "Custom Auth" in Apex
14:37
Knowledge Sign
Рет қаралды 1,7 М.
New model rc bird unboxing and testing
00:10
Ruhul Shorts
Рет қаралды 23 МЛН
Became invisible for one day!  #funny #wednesday #memes
00:25
Watch Me
Рет қаралды 59 МЛН
Who has won ?? 😀 #shortvideo #lizzyisaeva
00:24
Lizzy Isaeva
Рет қаралды 64 МЛН
APEX Authentication and Authorization with Identity Cloud Service
6:59
Oracle Developers
Рет қаралды 8 М.
How To Create Beautiful Login Page | Oracle Apex
8:44
Oracle APEX BD
Рет қаралды 3,2 М.
How to Use "Authorization Schemes" Security in Oracle Apex Pages
17:30
Knowledge Sign
Рет қаралды 2,1 М.
Oracle APEX | Authentication in Depth, Custom Authentication, Social Login - Urdu/Hindi
21:26
Programming with Ismail Rafique
Рет қаралды 9 М.
Part 1: Authentication and Authorization in Apex (O14)
13:16
Prof. S. D. Eyono-Obono
Рет қаралды 1,9 М.
Custom Login Authentication in Oracle APEX - Part 9
19:58
Tech Mining
Рет қаралды 6 М.
Rapidly building a time card app using Oracle APEX
28:32
Oracle APEX
Рет қаралды 75 М.
New model rc bird unboxing and testing
00:10
Ruhul Shorts
Рет қаралды 23 МЛН