This action is similar to the CREATE
action in that it creates a new instance of a business object. Unlike the CREATE
action it lets the user fill in the initial values of the business object. The action displays a form for the specified business object and waits for the user to provide the initial values of the attributes and submit them to the system.
ENTER NEW
Id ()
where Id() is the name of the business object to create. For example,
ENTER NEW Account
WITH
keyword. The syntax is the same as for the CREATE
action. The form will be pre-populated with the supplied values (this initialization though is not available for groups – see previous note). For example:ENTER NEW Account WITH Account.Name='John Smith'
ENTER NEW Account USING 'Form for administrators'
where 'Form for administrators' is the name of the form that must be configured with the Account object.
ENTER NEW Account USING 'Form for administrators' FORM_SECTION 'Personal details'
ENTER NEW Account AND VIEW
ENTER NEW Account AND VIEW IN TAB
ENTER NEW Account FORCE POPUP