FAB's primary container for the field values are stored in the Fields area of the application definition. For every Bound Field, this assignment should be reflected in the Fields area. FAB provides an automated way of creating the Field Name when it is assigned to the Bound Field of the element.
The Fields can be accessed in Javascript using the FAB delivered functions:
getField("fieldName")
setField("fieldName", value)
Additionally the Fields are passed to the ABAP methods in a form of [Field Name / Field Value] pair. The sample below shows the Field "BUKRS" having a value of "1000" in the method ENHANCE_DATA_BEFORE_SAVE. The rest of the fields are System fields provided by FAB.
Recommended Setting
It is highly recommended to mark the Use Data Model from the Properties sections and use the FAB Data Model Node in building up the fields and structures list. The fields from the FAB Data Model Node will still have to be assigned to the Bound Field of the relevant control element. This will in turn create the same field like what has been exhibited in the above example.
FAB Data Model Node is similar to the Fields with the following additional characteristics:
- Allows hierarchical/nested data model
- Fields can be referenced to SAP Data Elements
- More fine-grained definition of model field properties (example field IDATU is a Date in one part of the model, but String in another part).
Advantages of using the FAB Data Model Node
- Efficient runtime execution resulting to optimised performance
- Provides a variable CR_DATA in most FAB user-exits that allow much easier interrogation and setting of data in the app at run-time. Instead of working primarily with the [Field Name / Field Value] pairs, it works directly with ABAP nested structure to use exact field names and data types which promotes easier access and coding.
- FAB User exits can directly modify the data upon an Action at run-time and reflect this in the front-end app immediately.
- FAB auto-generates a nested structure GS_DATA into the definition of the Implementation Class. This can be used for simpler use of the CR_DATA (Type ANY) by simply performing MOVE-CORRESPONDING CR_DATA TO GS_DATA in your implementations. If changing the data use MOVE-CORRESPONDING GS_DATA TO CR_DATA
- Within JavaScript too it is easier to get/set data in the model.
- Provides a more logical definition of the app allowing reference to nested structures. It allows a nested definition of the data that translates to the JSON representation of the data at run-time.
How to use the FAB Data Model Node.
- Mark the Use Data Model in the properties of the application
- Right click on the Project and select Add Data Model
- Right click on the Root Node and select either of the following:
-Add Field - to add individual fields
-Add Structure Type Node - to add structures
-Add Table Type Node - to add table types
-Adopt from Fields - choose this option to copy the Fields into the Data Model Root Node - Assign the Data Model field into the Bound Field of the control
- Access the fields in the FAB User Exits by referring to the variable CR_DATA
Related articles
0 Comments