How do you create a new session while opening a new form?


Using OPEN_FORM built-in setting the SESSION option.
Ex: OPEN_FORM(??STOCKS??,ACTIVE,SESSION);
When you invoke multiple forms with OPEN_FORM and CALL_FORM in the
Same application,state whether the following are TRUE or FALSE



Explore posts in the same categories: SQL Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What is session where it runs & what are different types of session handling?
  • Session is a mean to maintain client identity, many client may request a single page further they may visit several...
  • How to embed PHP code in a File?
  • To embed PHP code inside a file, it has to be inside a special set of opening and closing tags. PHP...
  • Why cant we overide create method in Stateless Session Bean?
  • According to the EJBs specifications "A Session bean's home interface defines one or morecreate() methods. Each create method must be...
  • What is session tracking and how do you track a user session in servlets?
  • Session tracking is a mechanism that servlets use to maintain state about a series requests from the same user across...
  • Can a Session Bean be defined without ejbCreate() method?
  • The ejbCreate() methods is part of the bean's lifecycle, so, the compiler will not return an error because there is...
  • Describe the lifecycle of a receiver application in order to receive a message?
  • Use the JNDI to get a ConnectionFactory and Destination Object (either Queue or Topic).Create a Connection object. Create a Session...
  • What is a batch input session?
  • BATCH INPUT SESSION is an intermediate step between internal table and database table. Data along with the action is stored...
  • Describe the lifecycle of a sender application in order to send a message?
  • Use the JNDI to get a ConnectionFactory and Destination Object (either Queue or Topic).Create a Connection object. Create a Session...
  • What are session method and call transaction method and explain about them?
  • Session method – Use the BDC_OPEN_GROUP to create a session. Once we have created a session, then we can insert...
  • What are the advantages and disadvantages of viewstate?
  • The primary advantages of the ViewState feature in ASP.NET are: 1. Simplicity. There is no need to write possibly complex code...

    Comments are closed.