Create a Login Screen in NWDS

Hai All,
I am trying to create a one login screen. So, any body plz guide me which type of BAPIS are required . The following are the fields for log in screen.
User Name;
Password:
Submitt
Once user submitt the  fields he received conformation message through mail.
Note: Points will be revert back.
Thanks,
Sumanth

Hi Sumanth,
                 to create a login screen , you need not a BAPI, instead you can
create two views in a single application  in which the first view contains ui elements  like username , password and a button like submit. The thing is that
when you creating the button itself , you specify the target view i.e second view.
In the second view you can write the response like "this is second view" as
default text view.
Navigation: 1)openperspective as webdynpro-FILE-NEW -OPEN WEBDYNPRO PROJECT-specify proj name and package.
2)expand project-expand webdynpro components-create component(once the
component is created one window and one default view will be created).
3)double click on default view  - go to context - right click on context -new value
attribute-specify attibute name as username and one more value attribute as
password.
4)go to view controller part of digram part - right click on view controller -select
apply template - select action button - specify name as Submit(here you need to select 2nd view ).
5)in the view controller part only you may get symbols for creating inbound plug and out bound plug , embed a view. select embed view as second view .
Then create outbound plug in view 1 and inboundplug view 2 and create a navigation link b/w them.
save all  metadata.
6)go to applications under project-right click on it - create application as app1
and package as xxx.
7)expand applications -right click on our application i.e app1- select deploy and run
archive file.
          wait for the response (if everything is goes fine it will displays login page
with emty fields)
          If you have any dought send me reply.
bye take care.
Regards,
Sanjeev.kunta

Similar Messages

  • Creating a login screen.

    I saw another post by some-one trying to create a login screen. I used the example that someone responded with and managed to get it working.
    However I then tried to edit it to connect to a database and then got a Tomcat error saying "The value for the useBean class attribute Website.Login is invalid."
    Can anyone see anything wrong with this code?
       <html>
                 <body>
                           <form    method=post    action=do-log.jsp>
                             <input   type=text      name='text1'>
                                     <input   type=text      name='text2'>
                              <input   type=submit>
                            </form>
                     </body>
                     </html>
                     <html>
    <%@ page import="java.util.Date"%>
    <%@ page import="java.net.*"%>
    <jsp:useBean id="myForm" class="Website.Login" scope="session" />
    <jsp:setProperty name="myForm" property="*"/>
    <%
    myForm.MakeConnection();
    myForm.login();
    String name = myForm.getUser();
    System.out.println("\nusername from String: "+name);
    System.out.println("\nusername from database: "+myForm.getUser());
    System.out.println("\nresult of boolean: "+myForm.getbool());
    if(myForm.getbool() == true && myForm.getpreferences().equals("Golf"))
    %>
    <jsp:forward page = "Golf.jsp"/>
    <%
    else if(myForm.getbool() == true && myForm.getpreferences().equals("Rugby"))
    %>
    <jsp:forward page= "Rugby.jsp"/>
    <%
    else if(myForm.getbool() == true && myForm.getpreferences().equals("Soccer"))
    %>
    <jsp:forward page= "Soccer.jsp"/>
    <%
    else
    System.out.println("failure");
    %>
    <jsp:forward page = "Login.html"/>
    <%
    %>
    package Website;
    import java.io.*;
    import java.sql.*;
    import java.text.*;
    public class Login
         Connection db;     
           Statement  st;     
           private ResultSet rsetlogin;
        String user;
        String pass;
        public void setUser(String user) {
            this.user = user;
        public String getUser() {
            return this.user;
        public void setPass(String pass) {
            this.pass = pass;
        public String getPass() {
            return this.pass;
        public Login(String args[]) throws ClassNotFoundException, FileNotFoundException, IOException, SQLException
           MakeConnection();
            System.out.println("Now closing the connection");
        st.close();
        db.close();
        public void MakeConnection()throws ClassNotFoundException, FileNotFoundException, IOException, SQLException
            String url = "jdbc:postgresql:database";
        String usr = "postgres";
        String pwd = "dune";
        // Load the driver
        Class.forName("org.postgresql.Driver");
        // Connect to database
        System.out.println("Connecting to Database URL = " + url);
        db = DriverManager.getConnection(url, usr, pwd);
        System.out.println("Connected...Now creating a statement");
        st = db.createStatement();
         public void userLogin(String user, String pass) {
        this.user = user;
        this.pass = pass;
         boolean validpass = false;
    //method to log in.
        public boolean getbool(){return validpass;}
         public void login()
              String usernameIn;
              String passwordIn;
              try
                   Statement stmt = db.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
                   rsetlogin = stmt.executeQuery("SELECT Username,Cust_Password, Prefered_Sport  FROM Customer WHERE Username ='"+getUser()+"'");
                   while(rsetlogin.next())
                        usernameIn = rsetlogin.getString(1);
                        passwordIn = rsetlogin.getString(2);
                        if(usernameIn.equals(getUser()) && passwordIn.equals(getPass()))
                             validpass = true;
                             System.out.println("log in success");
                             setUser(rsetlogin.getString(1));
                             setPass(rsetlogin.getString(2))     ;
                        else if(!usernameIn.equals(getUser()) || !passwordIn.equals(getPass()))
                             System.out.println("log in failure");
                             validpass = false;
              catch (SQLException e)
                   System.out.print("Error at login");
                   e.printStackTrace();
         public static void main(String args[])
        System.out.println("PostgreSQL basic test v6.3 rev 1\n");
    }

    Ok thanks for all your help. It's abit too selfish to ask you are help again (I'm using a different screen-name as I had difficulty logging back in).
    But if anyone else has any suggestion please feel free to share. Basically the login is failing and is promting the user to the index.htm file even though I entered the right password.
       <html>
                 <body>
                           <form    method=post    action=do-log.jsp>
                             <input   type=text      name='Username'>
                                     <input   type=text      name='Cust_Password'>
                                     <input   type=text      name='PreferedSport'>
                              <input   type=submit>
                            </form>
                     </body>
                     </html>
                     <html>
    <%@ page import="java.util.Date"%>
    <%@ page import="java.net.*"%>
    <jsp:useBean id="myForm" class="Website.Login" scope="session" />
    <jsp:setProperty name="myForm" property="*"/>
    <%
    myForm.MakeConnection();
    myForm.getUsername();
    myForm.getCust_Password();
    myForm.getPrefered_Sport();
    if(myForm.getbool() == true && myForm.getPrefered_Sport().equals("swimming"))
    %>
    <jsp:forward page = "swimming.jsp"/>
    <%
    else if(myForm.getbool() == true && myForm.getPrefered_Sport().equals("Tennis"))
    %>
    <jsp:forward page= "Tennis.jsp"/>
    <%
    else if(myForm.getbool() == true && myForm.getPrefered_Sport().equals("Soccer"))
    %>
    <jsp:forward page= "Soccer.jsp"/>
    <%
    else
    System.out.println("failure");
    %>
    <jsp:forward page = "index.htm"/>
    <%
    myForm.close();
    %>
    package Website;
    import java.io.*;
    import java.sql.*;
    import java.text.*;
    public class Login
         Connection db;     
           Statement  st;     
           private ResultSet rsetlogin;
        String Username;
        String Cust_Password;
        String Prefered_Sport;
        public void setUser(String Username) {
            this.Username = Username;
        public String getUsername() {
            return this.Username;
        public void setCust_Password(String Cust_Password) {
            this.Cust_Password = Cust_Password;
        public String getCust_Password() {
            return this.Cust_Password;
        public void setPrefered_Sport(String Prefered_Sport)
             this.Prefered_Sport=Prefered_Sport;
        public String getPrefered_Sport()
             return this.Prefered_Sport;
        public Login() throws ClassNotFoundException, FileNotFoundException, IOException, SQLException
        public void MakeConnection()throws ClassNotFoundException, FileNotFoundException, IOException, SQLException
            String url = "jdbc:postgresql:database";
        String usr = "postgres";
        String pwd = "dune";
        // Load the driver
        Class.forName("org.postgresql.Driver");
        // Connect to database
        System.out.println("Connecting to Database URL = " + url);
        db = DriverManager.getConnection(url, usr, pwd);
        System.out.println("Connected...Now creating a statement");
        st = db.createStatement();
         boolean validpass = false;
    //method to log in.
        public boolean getbool(){return validpass;}
         public void login()
              String usernameIn;
              String passwordIn;
              try
                   Statement stmt = db.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
                   rsetlogin = stmt.executeQuery("SELECT Username,Cust_Password,  FROM Customer WHERE Username ='"+getUsername()+"'");
                   while(rsetlogin.next())
                        usernameIn = rsetlogin.getString(1);
                        passwordIn = rsetlogin.getString(2);
                        if(usernameIn.equals(getUsername()) && passwordIn.equals(getCust_Password()))
                             validpass = true;
                             System.out.println("log in success");
                             setUser(rsetlogin.getString(1));
                             setCust_Password(rsetlogin.getString(2))     ;
                        else if(!usernameIn.equals(getUsername()) || !passwordIn.equals(getCust_Password()))
                             System.out.println("log in failure");
                             validpass = false;
              catch (SQLException e)
                   System.out.print("Error at login");
                   e.printStackTrace();
         public void close()
             try
                  db.close();
             catch (Exception e)
                   System.out.print("error at database close");          
                   e.printStackTrace();
         public static void main(String args[])
        System.out.println("PostgreSQL basic test v6.3 rev 1\n");
    }

  • Tutorial for creating a login screen

    Is there a good tutorial out there on the best way to create a login screen in Flex that connects to a back-end database to check the username and password?

    That's the one ColdFusion, check this great old tutorial but still works pretty good
    http://www.brucephillips.name/blog/index.cfm/2006/11/27/Login-and-Logout-Flex-Example-That -Uses-ColdFusion-CFLogin-and-CFC-Role-Security
    I guess you are some sort of gure making queries from CF to your DB, so this will be a piece of cake for you.
    Hope this helps.

  • How to create  a  login screen

    i need to create a login screen ,only if user enter valid
    username & password it should move to next canvas.
    could any one help me out

    there are many ways.
    if you want the users to be backend users i.e. schema users u candesign a fform with on logon triggers.
    instaed you can have front end users by storing user aname and password in a table , and check for valid user name and passowrd using a form.

  • Creating login screens in java

    hello.
    this is james mcfadden. i am trying to create a login screen in java. the problem i have is this: i am completely new to GUI programming. i know that i have to use strings. the code shown below is incomplete and when i try to compile it i get the following errors. how do i go about fixing these errors?
    ----jGRASP exec: javac -g X:\CP4B Project\LogOn.java
    LogOn.java:11: ']' expected
    username[0]="Administrator";
    ^
    LogOn.java:11: <identifier> expected
    username[0]="Administrator";
    ^
    LogOn.java:12: ']' expected
    username[1]="Ann Smyth";
    ^
    LogOn.java:12: <identifier> expected
    username[1]="Ann Smyth";
    ^
    LogOn.java:13: ']' expected
    username[2]="John Murphy";
    ^
    LogOn.java:13: <identifier> expected
    username[2]="John Murphy";
    ^
    LogOn.java:14: ']' expected
    username[3]="James McFadden";
    ^
    LogOn.java:14: <identifier> expected
    username[3]="James McFadden";
    ^
    LogOn.java:15: ']' expected
    username[4]="Frankie Ferry";
    ^
    LogOn.java:15: <identifier> expected
    username[4]="Frankie Ferry";
    ^
    LogOn.java:16: ']' expected
    username[5]="Daniel McKimm";
    ^
    LogOn.java:16: <identifier> expected
    username[5]="Daniel McKimm";
    ^
    LogOn.java:17: ']' expected
    username[6]="Stephen Doohan";
    ^
    LogOn.java:17: <identifier> expected
    username[6]="Stephen Doohan";
    ^
    LogOn.java:18: ']' expected
    username[7]="James Ferry";
    ^
    LogOn.java:18: <identifier> expected
    username[7]="James Ferry";
    ^
    LogOn.java:19: ']' expected
    username[8]="Liam Cannon";
    ^
    LogOn.java:19: <identifier> expected
    username[8]="Liam Cannon";
    ^
    LogOn.java:20: ']' expected
    username[9]="Ciaran Ferry";
    ^
    LogOn.java:20: <identifier> expected
    username[9]="Ciaran Ferry";
    ^
    LogOn.java:21: ']' expected
    username[10]="Ciaran McGee";
    ^
    LogOn.java:21: <identifier> expected
    username[10]="Ciaran McGee";
    ^
    LogOn.java:23: ']' expected
    password[0]="0";
    ^
    LogOn.java:23: <identifier> expected
    password[0]="0";
    ^
    LogOn.java:24: ']' expected
    password[1]="1";
    ^
    LogOn.java:24: <identifier> expected
    password[1]="1";
    ^
    LogOn.java:25: ']' expected
    password[2]="2";
    ^
    LogOn.java:25: <identifier> expected
    password[2]="2";
    ^
    LogOn.java:26: ']' expected
    password[3]="3";
    ^
    LogOn.java:26: <identifier> expected
    password[3]="3";
    ^
    LogOn.java:27: ']' expected
    password[4]="4";
    ^
    LogOn.java:27: <identifier> expected
    password[4]="4";
    ^
    LogOn.java:28: ']' expected
    password[5]="5";
    ^
    LogOn.java:28: <identifier> expected
    password[5]="5";
    ^
    LogOn.java:29: ']' expected
    password[6]="6";
    ^
    LogOn.java:29: <identifier> expected
    password[6]="6";
    ^
    LogOn.java:30: ']' expected
    password[7]="7";
    ^
    LogOn.java:30: <identifier> expected
    password[7]="7";
    ^
    LogOn.java:31: ']' expected
    password[8]="8";
    ^
    LogOn.java:31: <identifier> expected
    password[8]="8";
    ^
    LogOn.java:32: ']' expected
    password[9]="9";
    ^
    LogOn.java:32: <identifier> expected
    password[9]="9";
    ^
    LogOn.java:33: ']' expected
    password[10]="10";
    ^
    LogOn.java:33: <identifier> expected
    password[10]="10";
    ^
    LogOn.java:57: <identifier> expected
         button1.addActionListener(new ActionListener(){
    ^
    LogOn.java:72: ';' expected
    ^
    46 errors
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class LogOn extends JPanel{
         private static JTextField username=null;
         private static JPasswordField password=null;
         private static JButton button1=null;
       private static JButton button2=null;
         String[] username=new String[11];
       username[0]="Administrator";
       username[1]="Ann Smyth";
       username[2]="John Murphy";
       username[3]="James McFadden";
       username[4]="Frankie Ferry";
       username[5]="Daniel McKimm";
       username[6]="Stephen Doohan";
       username[7]="James Ferry";
       username[8]="Liam Cannon";
       username[9]="Ciaran Ferry";
       username[10]="Ciaran McGee";
       String[] password=new String[11];
       password[0]="0";
       password[1]="1";
       password[2]="2";
       password[3]="3";
       password[4]="4";
       password[5]="5";
       password[6]="6";
       password[7]="7";
       password[8]="8";
       password[9]="9";
       password[10]="10";
       public LogOn(){
              setSize(260,160);
              username=new JTextField(15);
            password=new JPasswordField(15);
              JLabel usernameLabel=new JLabel("Username: ");
              JLabel passwordLabel=new JLabel("Password: ");
              add(usernameLabel);
              add(username);
              add(passwordLabel);
              add(password);
              setVisible(true);
              button1=new JButton("Ok");
              add(button1);
            button2=new JButton("Cancel");
              add(button2);
              JFrame frame=new JFrame("Welcome to Home Entertainment");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
            frame.pack();
            frame.setVisible(true);
         button1.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 try{
                        Demo d = new Demo();
                        d.getChoice();
                   catch(Exception ex){}
         button2.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 System.exit(0);
    }

    1. You initialize your array before your constructor.
    2. You have the same names for your arrays as for your TextFields
    3. You did not close your anon Listeners.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MyLogOnScreen extends JPanel{
         private static JTextField username=null;
         private static JPasswordField password=null;
         private static JButton button1=null;
        private static JButton button2=null;
         String[] usernameArray=new String[11];
        String[] passwordArray=new String[11];
       public MyLogOnScreen(){
            usernameArray[0]="Administrator";
            usernameArray[1]="Ann Smyth";
            usernameArray[2]="John Murphy";
            usernameArray[3]="James McFadden";
            usernameArray[4]="Frankie Ferry";
            usernameArray[5]="Daniel McKimm";
            usernameArray[6]="Stephen Doohan";
            usernameArray[7]="James Ferry";
            usernameArray[8]="Liam Cannon";
            usernameArray[9]="Ciaran Ferry";
            usernameArray[10]="Ciaran McGee";
            passwordArray[0]="0";
            passwordArray[1]="1";
            passwordArray[2]="2";
            passwordArray[3]="3";
            passwordArray[4]="4";
            passwordArray[5]="5";
            passwordArray[6]="6";
            passwordArray[7]="7";
            passwordArray[8]="8";
            passwordArray[9]="9";
            passwordArray[10]="10";
              setSize(260,160);
              username=new JTextField(15);
            password=new JPasswordField(15);
              JLabel usernameLabel=new JLabel("Username: ");
              JLabel passwordLabel=new JLabel("Password: ");
              add(usernameLabel);
              add(username);
              add(passwordLabel);
              add(password);
              setVisible(true);
              button1=new JButton("Ok");
              add(button1);
            button2=new JButton("Cancel");
              add(button2);
              JFrame frame=new JFrame("Welcome to Home Entertainment");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
            frame.pack();
            frame.setVisible(true);
         button1.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 try{
                        Demo d = new Demo();
                        d.getChoice();
                   catch(Exception ex){}
         button2.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
                 System.exit(0);
    }

  • Login screen alterations.

    I recently found out you can create custom login screen pictures and remove the apple logo and so on.
    A part I also loved was the login message. I was wondering if anyone knew how to alter it so it could be made larger, text change and have new line capabilities (rather than having to space bar of to the end?)
    Thanks.

    http://support.apple.com/kb/HT4788

  • Validation of login screen in WebDynpro ABAP

    Dear All,
    I have created a login screen using WebDynpro ABAP, but am not able to validate user name and password.
    Please help in this with coding and if possible with samll example.
    Thanks & Regards,
    Tazeer KS.

    Hi Tazeer, i have posted on scribd this document, step by step webdynpro login application,
    pls go through the following link
    http://www.scribd.com/doc/50261280/Login-Application-in-webdynpro
    Step1:
    Create 1 node in component controller and bind the attributes of dictionary structure USR02
    Step 2: Select the required fields, bname and bcode,
    Step3: Create Main View as shown, and bind the context view and component  node and bind the input fields. 
    Step4:
    Create second view for navigation.
    Note:
    First main view is outbound.
    Second view is inbound.
    method ONACTIONLOGIN .
      TYPES : BEGIN OF ty_usr02,
                bname TYPE USR02-bname,
                bcode TYPE USR02-BCODE,
              END OF ty_usr02.
      DATA it_usr02 TYPE TABLE OF ty_usr02.
      DATA lo_nd_login TYPE REF TO if_wd_context_node.
      DATA lo_el_login TYPE REF TO if_wd_context_element.
      DATA ls_login TYPE wd_this->Element_login.
      DATA lv_bname TYPE wd_this->Element_login-bname.
      DATA lv_bcode TYPE wd_this->Element_login-bcode.
    navigate from <CONTEXT> to <LOGIN> via lead selection
      lo_nd_login = wd_context->get_child_node( name = wd_this->wdctx_login ).
    @TODO handle non existant child
    IF lo_nd_login IS INITIAL.
    ENDIF.
    get element via lead selection
      lo_el_login = lo_nd_login->get_element( ).
    alternative access  via index
    lo_el_login = lo_nd_login->get_element( index = 1 ).
    @TODO handle not set lead selection
      IF lo_el_login IS INITIAL.
      ENDIF.
    get single attribute
      lo_el_login->get_attribute(
        EXPORTING
          name =  `BNAME`
        IMPORTING
          value = lv_bname ).
    get single attribute
      lo_el_login->get_attribute(
        EXPORTING
          name =  `BCODE`
        IMPORTING
          value = lv_bcode ).
    IF lv_bname is INITIAL and lv_bcode is INITIAL.
      else.
    SELECT bname bcode from usr02 INTO TABLE it_usr02 WHERE bname = lv_bname
                                                      and bcode = lv_bcode.
    ENDIF.
      wd_this->fire_out1_plg(
    endmethod.
    Hope it might help you,
    Get back to me if your issue is not solved.
    Thank you

  • Login Screen

    I'm trying to create a login screen for my forms. I want users to have to login before they can access my forms but I don't want that login info to be stored on the form. I think I need to use an HTTP submit button.. but I'm unsure how to set it up. I have created a separate form for just the login. Then, my main form is behind it on another form. This seems like a fairly simple thing to do but I'm having trouble figuring out where to go from here.
    Yes, I know I can try to use Adobe Document Center or LiveCycle ES to get the 'secure after publishing' functionality but my manager wants me to explore other options first.
    Thanks

    For start up login go to System Preferences, Accounts. Click on the lock at the bottom, enter your password then click on login options. Uncheck the "automatically log in as : (yourname)" checkbox and you'll get the login screen at startup.
    Then go to Security and check the "require password to wake this computer from sleep or scren saver" checkbox, and the "disable automatic login" box if it has not been checked by the previous change in Accounts.

  • Creating a warning banner at the login screen in solaris 10 GNOME

    Does anyone know how to create a a warning banner at the login screen in solaris 10 GNOME so users have to hit OK or Enter before typing in their username?
    A million thanks,
    Johnny Mac

    I have had problems after the 10.5.2 update. I ended up with a frozen computer - unable to restart or shut down etc. Also ended up at one stage with Set Up Assistant screen. With the help of a computer savvy friend, at least I am able to use my computer again.
    It appears the actual download did happen but it did not install and the computer tells me I need to "re-start". When I did this, window appeared on plain blue screen saying it was installing software but absolutely nothing happened - no blue scrolling bar etc.
    My iMac computer is still under Apple Care Plan and technician told me they are many problems surfacing across the various machines with this upgrade. He has asked me to delay updating the software and to ring back in a couple of days because their technicians are currently working on the problem and he hopes for an answer soon.

  • I've created a new user but don't see it in the login screen

    I've created a new user but don't see it in the login screen.  Can somebody help?

    Hi,
    Before going further, I’d like to recommend you check if the address list is visible in OWA.
    If yes, this issue occurs when the AddressBookRoots attribute of the Microsoft Exchange object does not have the same distinguished name value that is set in the All Address Lists attribute.
    For more detail resolution, you can refer to the following article:
    http://support.microsoft.com/kb/982351
    Thanks,
    Angela Shi
    TechNet Community Support

  • Creating a simple Login screen

    Hi folks,
    I'm a beginner trying to develop some code for a simple login screen for a database.
    I know that some packages (Access) have tailor-made code for this but can't seem to find
    anything in Oracle to do this. Can anyone help or point me in the right direction ?
    I'm using Oracle 8i and Forms 6i(8.1.7) running on Windows NT4.
    Thanks in advance,
    John

    Forms has a default for that.
    When you start a form with Forms runtime, the login screen is displayed automatically.

  • How can I get an Active Direcotry account to show at login screen

    I've just Binded a computer to our Active Directory network, and when I log off, I only see the local account listed at the login screen, and it takes 5-10 seconds before the arrow comes up that lets me choose Other.
    I  want to be able to list the Active Directory account that the user should login with, is there a way to make it stick at the login screen?

    You can add extra empty toolbars if you want to see more of the persona.
    You can create extra toolbars to get extra space via "View > Toolbars > Customize" or "Firefox > Options > Toolbar Layout"
    You have to put something on a toolbar (drag a Space item onto it) before closing the Customize window because empty toolbars are automatically removed.

  • How to pop up a login screen when using menu?

    I have created a Menu. Now I want to create a login form, means login form will be the first form where there will be a button of log in. As soon as an user click that button a login screen should be popped up. Then user will enter the login id and password and then he is connected. Now he/she can access to other forms in the menu. Could you please tell me how to do that?

    You can start a form without login in by putting "null;" in the on-logon trigger and the put logon in the menu that you want the user to select to login.
    Search this forum for the login code. It has some finer points when it comes to exception handling that are not obvious.

  • Can we have two login screens for a particular application?

    I have an application which is sso enabled.
    Can i have another login screen, which doesnt authenticate SSO?

    I a nutshell, Yes you can have multiple login pages for one application. All you will need to do is specify which one you want to go to when you create the link to the application.
    E.g If you have an application number of 54321 and within this application you have 2 login pages number 101 and 111. You will need to use the following urls to access each one:
    http://server_name:port/pls/htmldb/f?p=54321:101
    http://server_name:port/pls/htmldb/f?p=54321:111
    I do not know about how SSO works with ApEx as I have never used it. But you can definitly have 2 separate login pages.
    Hope this helps,
    Cj

  • Macbook air with 10.10.1 keyboard and touchpad stop responding after login screen

    Keyboard and touchpad works only at login screen.
    I have tried all the PRAM and SMC. reset stuff.
    Safe mode, repair etc. Creating another account is not helped either.
    I am also using 10.10.1 with macbook air.
    I have also called the apple tech support and no results!
    And this is obviously a software bug from so called robust yosemite!
    Same here!
    Macbook air built-in keyboard/trackpad only work at login screen

      You may have to take the computer to the Apple store to have it checked out.
    Genius Bar reservation
    http://www.apple.com/retail/geniusbar/
    Best.

Maybe you are looking for