NihaSoft
NihaSoft
  • Видео 36
  • Просмотров 115 347
Tutorial 11 Linking Facilities to Rooms
SQL Script
CREATE TABLE "ROOM_FACILITY_MAPPINGS"
(
"ROOM_ID" NUMBER(*,0) NOT NULL ENABLE,
"FACILITY_ID" NUMBER(*,0) NOT NULL ENABLE,
CONSTRAINT "PK_ROOM_FACILITY_MAPPING" PRIMARY KEY ("ROOM_ID", "FACILITY_ID")
USING INDEX ENABLE
) ;
ALTER TABLE "ROOM_FACILITY_MAPPINGS" ADD CONSTRAINT "FK_ROOM_FACILITY_MAPPING_ROOM_ID" FOREIGN KEY ("ROOM_ID")
REFERENCES "MEETING_ROOMS" ("ROOM_ID") ENABLE;
ALTER TABLE "ROOM_FACILITY_MAPPINGS" ADD CONSTRAINT "FK_ROOM_FACILITY_MAPPING_FACILITY_ID" FOREIGN KEY ("FACILITY_ID")
REFERENCES "ROOM_FACILITIES" ("FACILITY_ID") ENABLE;
DECLARE
l_result APEX_T_VARCHAR2;
BEGIN
l_result := APEX_STRING.SPLIT('apple,banana,cherry', ',');
FOR i IN 1 .. l_result.COUNT LOO...
Просмотров: 79

Видео

Tutorial 11 Linking Facilities to Rooms Continued
Просмотров 6621 день назад
Tutorial 11 Linking Facilities to Rooms Continued
Tutorial 5 Part 2 - Custom Authentication Functionality in Oracle Apex
Просмотров 20621 день назад
Tutorial 5 Part 2 - Custom Authentication Functionality in Oracle Apex
Tutorial 5 - Part 1 : User Registration Page Creation
Просмотров 27421 день назад
In this video you will learn how to create table , how to create user registration page & Login Functionality. Table Script : CREATE TABLE "MEETING_ROOM_USERS" ( "ID" NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE NOKEEP NOSCALE NOT NULL ENABLE, "FULL_NAME" VARCHAR2(500 CHAR) NOT NULL ENABLE, ...
How to create REST API in oracle apex using GET method.
Просмотров 2,1 тыс.Год назад
in this video you will learn how to create rest api using get method.
Tutorial 10 Creation of Facilities in meeting room app
Просмотров 1,5 тыс.Год назад
in this tutorial I will be explaining how to create facilities table, report & form for facilities. 1. Also explained about simple server side condition 2. After submit process. Thank you.
Tutorial 9 Creation of Rooms Setup Using Interactive Report & Form
Просмотров 1,8 тыс.Год назад
In This tutorial you will learn creating Interactive Report & Form to data entry.
Custom Navigation with Cards in Oracle apex
Просмотров 2,4 тыс.Год назад
Custom Navigation with Cards in Oracle apex
Tutorial 8 - New Password & Confirm Password Validation.
Просмотров 2,6 тыс.Год назад
In this tutorial you will learn how to add validations to the New Password & Confirm Password.
Tutorial 7 Forgot Password Part 2 | Oracle Apex, Password Reset .
Просмотров 4,4 тыс.Год назад
In this tutorial you will learn password reset functionality from the generated link.
Tutorial 6 - Forgot Password Functionality Development.
Просмотров 5 тыс.Год назад
In this tutorial you will learn how to develop forgot password Functionality in Oracle Apex. Step 1: Create Button in Login Page Step 2: Create a Blank page & write logic to send email. Code : If you need code. Please write a email.
Tutorial 4 - How Default Login Functionality Works in Oracle Apex.
Просмотров 3,3 тыс.Год назад
In this tutorials you will learn, How default Login functionality works in oracle apex. docs.oracle.com/en/database/oracle/apex/22.1/aeapi/
Tutorial 3 - How to Change Application Logo & Navigation Bar Logo in Oracle Apex.
Просмотров 3,3 тыс.Год назад
In this video you will learn how to change application logo in oracle apex.
Tutorial 2 - How to Create a web application in Oracle Apex.
Просмотров 11 тыс.Год назад
In this tutorial, you will learn how to create a responsive web app without writing a single line of code. If you like the video, Please share your comments & Subscribe to my channel.
Tutorial 1 - How to request a free workspace to start developing web applications in oracle apex.
Просмотров 5 тыс.Год назад
Please visit this link to create your workspace. apex.oracle.com/en/learn/getting-started/ Thanks for watching.
How to send push notifications in oracle apex using plsql
Просмотров 2,3 тыс.Год назад
How to send push notifications in oracle apex using plsql
How to send push notifications in oracle apex 23.1.
Просмотров 7 тыс.Год назад
How to send push notifications in oracle apex 23.1.
How to enable Azure AD SSO (Single Sign On) for oracle apex application.
Просмотров 8 тыс.Год назад
How to enable Azure AD SSO (Single Sign On) for oracle apex application.
How to make interactive grid cells read only based on conditions in oracle apex.
Просмотров 4,2 тыс.Год назад
How to make interactive grid cells read only based on conditions in oracle apex.
Oracle Cloud Always Free Database #ORACLECLOUD #FREEAPEXHOSTING
Просмотров 1,1 тыс.4 года назад
Oracle Cloud Always Free Database #ORACLECLOUD #FREEAPEXHOSTING
REST API with Basic Authentication in Oracle APEX
Просмотров 7 тыс.4 года назад
REST API with Basic Authentication in Oracle APEX
Key board shortcuts in oracle apex Interactive grid.
Просмотров 8554 года назад
Key board shortcuts in oracle apex Interactive grid.
How to call web service from oracle apex. & pass parameter in URL
Просмотров 14 тыс.4 года назад
How to call web service from oracle apex. & pass parameter in URL
#OracleApex #APEX How to change default custom authentication function in oracle apex.
Просмотров 8164 года назад
#OracleApex #APEX How to change default custom authentication function in oracle apex.
Whats app Integration in oracle Apex. How to send watsapp message in oracle apex.
Просмотров 8 тыс.4 года назад
Whats app Integration in oracle Apex. How to send watsapp message in oracle apex.
How to create help text in front of page item in oracle apex
Просмотров 2,5 тыс.4 года назад
How to create help text in front of page item in oracle apex
How to create Reports in Oracle Apex
Просмотров 4,4 тыс.4 года назад
How to create Reports in Oracle Apex
Online Grocery App using Oracle Apex
Просмотров 1,4 тыс.4 года назад
Online Grocery App using Oracle Apex
Split My Expenses in oracle apex, splitwise , monthly expense tracker
Просмотров 3374 года назад
Split My Expenses in oracle apex, splitwise , monthly expense tracker
School management system in oracle apex
Просмотров 3,3 тыс.4 года назад
School management system in oracle apex

Комментарии

  • @deejhoney2643
    @deejhoney2643 8 часов назад

    It is asking us to declare

  • @deejhoney2643
    @deejhoney2643 8 часов назад

    Excuse me sir,the code which was written by you is showing error

  • @vishalshinde3860
    @vishalshinde3860 4 дня назад

    Very nice 👍

  • @shyamn7998
    @shyamn7998 12 дней назад

    how to connect token page from email.

  • @IBRAHEMAL-KAMEL
    @IBRAHEMAL-KAMEL 12 дней назад

    THANK YOU

  • @Sriranjo599
    @Sriranjo599 21 день назад

    after creating the authentication function its not working for log in

    • @NihaSoft
      @NihaSoft 21 день назад

      @@Sriranjo599 what you are getting.

  • @Sriranjo599
    @Sriranjo599 21 день назад

    hi i have a doubt on id column of user creation table. r u using any seq or something!

    • @NihaSoft
      @NihaSoft 21 день назад

      @@Sriranjo599 yes oracle apex auto created sequence. Check default column in table definition. If your don’t have then create sequence manually

  • @sjn3888
    @sjn3888 23 дня назад

    Page 4 how to get token value from url is not found.

  • @antonprasad6335
    @antonprasad6335 29 дней назад

    5th video please.

    • @NihaSoft
      @NihaSoft 29 дней назад

      Sure, from today i will resume uploading videos

    • @NihaSoft
      @NihaSoft 23 дня назад

      @@antonprasad6335 uploaded

  • @Mona-gy2rn
    @Mona-gy2rn Месяц назад

    It’s very helpful, thanks

  • @suhanzr
    @suhanzr Месяц назад

    hi! can you upload tutorial 5 please

  • @NonkosiMhlola-y2x
    @NonkosiMhlola-y2x Месяц назад

    12345677

  • @MrBandhuraj
    @MrBandhuraj Месяц назад

    great demo :)

  • @spotnuru83
    @spotnuru83 Месяц назад

    Thank you worked for me, but some of the points have changed, like the call back URL and etc.. but was finally able to do it, thank you for this tutorial appreciate it

  • @barkaatahmadsaadi7431
    @barkaatahmadsaadi7431 2 месяца назад

    You did a great effort , really appreciated , but you deleted the part#5 , please upload

  • @barkaatahmadsaadi7431
    @barkaatahmadsaadi7431 2 месяца назад

    the most interesting part # 5 , you deleted , please upload part# 5

    • @NihaSoft
      @NihaSoft 2 месяца назад

      @@barkaatahmadsaadi7431 thanks for your comment. RUclips is deleted that part . I will reupload and start next parts soon

  • @kriti_hobbies_gallery
    @kriti_hobbies_gallery 2 месяца назад

    Wonderful session

  • @suganyak8573
    @suganyak8573 3 месяца назад

    HI, Sir, do you take any classes for oracle apex?

    • @NihaSoft
      @NihaSoft 3 месяца назад

      @@suganyak8573 yes,whatsapp +91 7760515182

  • @jitendratulugu4656
    @jitendratulugu4656 3 месяца назад

    In Azure Portal I don't have any option to view endpoints. is there any reason or am I missing something? can anyone help me in this?

  • @shyamn7998
    @shyamn7998 4 месяца назад

    can I display push notification on one page when users save data on there own page.

  • @SadabKhan-zd9ts
    @SadabKhan-zd9ts 4 месяца назад

    Boring teacher

  • @aishwaryarajagopal9652
    @aishwaryarajagopal9652 5 месяцев назад

    Nice One

  • @dvvnreddy
    @dvvnreddy 5 месяцев назад

    we register apex only not application we created in apex. is my understanding correct

    • @NihaSoft
      @NihaSoft 5 месяцев назад

      Yes, your understand is correct.

    • @dvvnreddy
      @dvvnreddy 5 месяцев назад

      @@NihaSoft thank you. good presentation

    • @dvvnreddy
      @dvvnreddy 5 месяцев назад

      @@NihaSoft ty . i am able to register my application with azure successfully following your presentation. i want to do for ords also, is that possible , if yes can u guide me. thanks

    • @NihaSoft
      @NihaSoft 5 месяцев назад

      @@dvvnreddy what do you mean by ords? Can you explain the requirement little detail

    • @dvvnreddy
      @dvvnreddy 5 месяцев назад

      @@NihaSoft i want to create restapi from databaseactions and give it users , they must be able to access only after passing azure credentials only .ty

  • @AayushChakraborty
    @AayushChakraborty 6 месяцев назад

    i cant find the 5th part of this series. Please make it available

  • @golubova_06
    @golubova_06 7 месяцев назад

    Hello, I can’t find a video with tutorial 5 or a video with uploaded tables for this application, please heeeeeeelp!

  • @adeliameiliandika8183
    @adeliameiliandika8183 7 месяцев назад

    Can after autologin using azure AD, redirect to specific page with specific search on this page that passed by url parameters?

    • @NihaSoft
      @NihaSoft 7 месяцев назад

      Yes, just use post login procedure and use redirect logic there

  • @mohsensleem8601
    @mohsensleem8601 7 месяцев назад

    Excellent

  • @lulis9817
    @lulis9817 8 месяцев назад

    kind of misunderstood about path .... of fields from json

  • @hugosantosRN
    @hugosantosRN 8 месяцев назад

    Great Video, thanks for share 🎉

  • @kgf.rehman
    @kgf.rehman 9 месяцев назад

    '::NO::P4_TOKEN:' WHERE ITS COME FROM

    • @kgf.rehman
      @kgf.rehman 9 месяцев назад

      IS WE NEED TO CREATE A P4 TOKEN IN FORGET PAGE?

  • @SurenderSingh
    @SurenderSingh 9 месяцев назад

    good

  • @vinayras
    @vinayras 9 месяцев назад

    Many thanks ! 👋

  • @amitarya-iy1ok
    @amitarya-iy1ok 10 месяцев назад

    After applying 00:15:00 i got worst thing that I am not able to see login-logout in any page of this application even after I deleted the page of forget password

  • @ayazalam1010
    @ayazalam1010 10 месяцев назад

    Please share your email Id will contact you for training

  • @Gaurav-cv8ss
    @Gaurav-cv8ss 10 месяцев назад

    You link is not opening

  • @kgf.rehman
    @kgf.rehman 10 месяцев назад

    it give me an error how do i can fix it

  • @alhelal9510
    @alhelal9510 11 месяцев назад

    Show a example with source type pl/sql

  • @debiprasaddas6930
    @debiprasaddas6930 11 месяцев назад

    In Azure Ad I would like to have >1 group and each group will have access to different pages in my application. How do I configure that in apex? I know at Azure side we just have to create groups under the same app with different users! How do I dynamically call different users in different groups created in Azure to authenticate the pages in Apex

  • @TheKumpit
    @TheKumpit 11 месяцев назад

    Hello! Thank you, this is a great tutorial. But I can't find for tutorial part 5, where can i find it? Thank you

  • @KisanPrajapati-xd1mc
    @KisanPrajapati-xd1mc 11 месяцев назад

    How to make traveling app

  • @zarintasnimnuzhat6256
    @zarintasnimnuzhat6256 Год назад

    Where is the tutorial 5?

  • @pagoole
    @pagoole Год назад

    Thank you very much. 💛🧡❤💚💙💜🤎🖤🤍 Could you please describe how to use custom authentication in Rest API in Oracle Apex? I am your 813 No subscriber.

  • @foridbepari9387
    @foridbepari9387 Год назад

    0:00 😊🎉

  • @foridbepari9387
    @foridbepari9387 Год назад

    0:00 😊🎉

  • @foridbepari9387
    @foridbepari9387 Год назад

    0:00

  • @atifnazir91
    @atifnazir91 Год назад

    this condition not working when we are creating a new row

    • @swarnachandravadhana4598
      @swarnachandravadhana4598 10 месяцев назад

      YES

    • @Maddy40319
      @Maddy40319 8 месяцев назад

      yes.. I too found it not working when adding a new row. Did you find any alternate solution? if sp can you share please

    • @Maddy40319
      @Maddy40319 8 месяцев назад

      @@swarnachandravadhana4598 : yes.. I too found it not working when adding a new row. Did you find any alternate solution? if sp can you share please

  • @akshaykangrali2707
    @akshaykangrali2707 Год назад

    Many Videos are missing... tutorial 7 part 1

    • @NihaSoft
      @NihaSoft 26 дней назад

      Hi Tutorial 7 is continuation of Tutorial 6 : as the Topis is same I name Forgot Password Part 2.

  • @akshaykangrali2707
    @akshaykangrali2707 Год назад

    Tutorial 5 is missing...

  • @yairandressarmiento814
    @yairandressarmiento814 Год назад

    Where can I find tutorial 5, where the button for user registration to the application is created?

    • @NihaSoft
      @NihaSoft Год назад

      Sorry. Tutorial 5 is deleted by youtube. I will be re uploading it. Iser registration button is created in login page.

    • @kgf.rehman
      @kgf.rehman 10 месяцев назад

      @@NihaSoft when we can access tutorial 5 video

    • @ilyesbenmalti9402
      @ilyesbenmalti9402 4 месяца назад

      ​@@NihaSoftdid you reupload it

  • @hanson4christ496
    @hanson4christ496 Год назад

    Thank you for awesome tutorial, Please u didn't show where u validated to make sure that the submitted registered email already exist in the database before the reset link can be sent to the mail