ACP (Comprehension Checks)

ACP (Comprehension Checks)

ACP (Comprehension Checks)

Viet Nguyen

Viet Nguyen

Fichier Détails

Cartes-fiches 250
Utilisateurs 32
Langue English
Catégorie Informatique
Niveau Autres
Crée / Actualisé 30.11.2013 / 25.06.2022
Lien de web
https://card2brain.ch/box/acp_comprehension_checks
Intégrer
<iframe src="https://card2brain.ch/box/acp_comprehension_checks/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
The following extract of a network structure source is provided: character set n = "4" . a = "D" . d = "e" . s = "N" . t = "8" . field format tag 3!n 1!a 2t ":" . Considering the above information, write a possible "tag".

Correct answers are: 444D88: 444D8:

Which statement is valid: The message creation process is triggered by: a) Compilation of Netw Struct source. b) Avaloq Script method. c) Compilation of Msg Struct source. d) Workflow command (book).

Correct answer is: b)

What are Avaloq Forms?

The Avaloq Forms functionality is an Avaloq Script application which allows you to parameterise the order entry forms shown on the user interface.

What do the fields on the forms interface represent?

The fields represent the values of a certain business object, which are held in tables on the Avaloq server.

What is the Forms controller?

The Forms controller transforms the visible values from the form elements into the corresponding internal values of the order table and vice versa. The Form Controller also handles events such as form events generated by the presentation layer or order events generated by the business layer.

Can a form be bound to more than one business type?

No. Each customer created form is bound to exactly one business type. The only exception is the sub-window (win definition). It is independent from any business type.

What is the compiler keyword used for a form source?

[Form 1.1].

Can a form be secured?

Yes. In the same way as for all business types.

Is it possible to assign dedicated workflow actions to a form?

Yes. Via the Form meta_typ in WFC_ACTION.

Which statements about Avaloq Forms are correct? Please choose two (2) answers: a) You can dedicate workflow actions exclusively to your form. b) The default expression "doc" in a form source refers to an order persistence layer DDIC. c) A form (doc definition) can be protected. d) In a form you can only access data out of the memory layer. e) To arrange the elements of a form you can use "top" and "right". f) You can add new fields with an override source.

Correct answers are: a) & c)

What is defined within the group definition?

Fields are defined within a group definition.

Can you name some field types that are supported in Avaloq Forms?

Text, Label, Obj, Code, Screen Report, etc.

Three (3) default_field_properties?

Edit, switch, mandatory (hide, supp_token)

How do you name a group or a field?

With a label which must be defined via out_text_norm. There is no direct naming possible.

How can you implement tabs from main forms (e.g. BP form)?

By using the same syntax as in the main form. You can copy and paste the source code.

What is a tab order?

To provide a maximum degree of usability for the user, you should define the order in which the cursor proceeds through the input fields when the user presses the [TAB] key. You can do this by including a tab order section in the Avaloq Forms source.

What are structuring elements and what are content elements?

There are two types of form elements in a form: - Structuring elements, such as a group and section - Content elements, such as a text field or a number field

Which event levels do you know about on forms customisation?

Field level events, Form events, Doc events

Which statement doyou use to implement a field level event?

notify

Is it possible to execute Avaloq Script through events?

Yes, you can execute scripts.

Which statement about Avaloq Forms Customisation is correct? Please choose one (1) answer: a) A doc definition can be bound to more than one Business Type. b) A win definition needs an explicit DDIC binding. c) The keyword for the form compiler is [Form 2.0]. d) The tab order section in a form source defines the order of the subwindow buttons.

Correct answer is: b)

What are structured extensions?

Structured extensions are a feature of the Avaloq Script application which allows you to generate (almost freely definable) data structures.

What is the source type of the data structure?

Avaloq type definition

What happens while compiling the Avaloq type definition?

While compiling the Avaloq type definition, the ABS creates the storage strategy, data dictionaries and transaction handling.

How are the Avaloq type definitions coupled to an object type?

The Avaloq type definitions must be coupled to an object via an addition.

What is the name structure of the generated data dictionary?

MEM_DOC_EXTN_"namespace"_"name" (e.g. MEM_DOC_EXTN_ACD_FAVOURITES_XX)

Which statement about Structured Extensions is correct? Please choose one (1) answer: a) A Structured Extension is a kind of an addition. b) A Structured Extension is a class. c)Structured Extension is a key. d) Structured Extension is only possible for transactions.

Correct answer is: a)

What are the necessary elements to create an Avaloq report?

Task, flat datamart, report/hierarchical datamart, layout definition.

How do you set up a new report?

Select the flat datamart according to the provided fields. Select the task to be used with the provided flat datamart. Select a layout type. Write the hierarchical datamart definition or use an existing one. Write the layout definition based on the hierarchical datamart. Compile, check the results & debug.

How do you start a report?

Check in the task source where you can find the report (report, orderbook, etc.), get the ID of the task, enter it in the Task Engine, choose your layout and start the report.

How can you find out which flat datamart and task match?

Each task which supports a certain flat datamart can be found with the "show" context action on the datamart source. The "Referenced by" field indicates which tasks reference which flat datamart.

What source types are task definitions and flat datamarts created with?

Task: source type "TASK DEF", flat datamart: source type “DDIC”

Is it possible to fill a flat datamart with more than one task in a specific report?

No, you have to choose exactly one task witch is referenced to this datamart.

Consider the Report Writer customisation. Identify the correct sequence in which the actions need to be performed to create a report. a) Create an Avaloq task, create a report datamart, create a layout. b) Create a flat datamart, create a layout, start an Avaloq task. c) Create a hierarchical datamart, create a layout, start an Avaloq task. d) Create a layout, create a flat datamart, start an Avaloq task.

Correct answer is: c)

What is defined in a hierarchical or report datamart?

The connection to the flat datamart is established (with "connect") in the hierarchical datamart. The data levels (and variables are defined for the layout (with "group by" and "consolidate").

How many flat datamarts can be accessed by one report datamart?

Only one flat datamart can be used. A report datamart is connected to exactly one flat datamart, but you can enhance it by referring to other DDICs in the report definition.

What source type is a report datamart created with?

The source type is "Report Datamart" (REP DTM).

Which statement structures the report?

The "group by" statement structures the report.

Which statements are used to define the variables after the keyword "consolidate"?

The statements "assign" or "inherit" can be used to define the variables.

What types of layout definitions are supported by the Avaloq Banking System?

Screen, File, Print, Script, Table.