To perform the sign in transaction, you need to provide the input data: username and password. The context and format definitions that are needed are defined in Configuring the BTT definition files.
Do the following steps to create the sign-in view:
private String currentUser = "user01"; public String getCurrentUser() { return this.currentUser; } public void setCurrentUser(String user) { this.currentUser = user; BCActivity.setUserID(user); }