Avaloq ACP (DL)
Self-made preparation questions for the "Avaloq Certified Professional" exam
Self-made preparation questions for the "Avaloq Certified Professional" exam
Set of flashcards Details
Flashcards | 267 |
---|---|
Students | 151 |
Language | English |
Category | Computer Science |
Level | Other |
Created / Updated | 29.01.2013 / 07.11.2024 |
Weblink |
https://card2brain.ch/box/avaloq_acp_dl
|
Embed |
<iframe src="https://card2brain.ch/box/avaloq_acp_dl/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
|
Source for a custom form (naming/type)?
BP.CUSTOMER_DESK (INTF DEF)
Goals and beneficts of form customisation?
- higher usability
- higher security
Creating new custom form: what happens with meta type and workflow?
- new meta type is created (not for override), which can be created by means of access code
- workflow is inherited from base meta type until a new one is parameterised
Standard form override: what happens with meta type?
- no new meta type is created (in contrast to the creation of a new custom form)
- a new entry is visible in code_form_v
Main structure of a INTF DEF source?
[Form 1.1]
doc definition bp.frontdesk_02 (8500)
group xy
-- fields
end group
tab
...
end tab
taborder
...
end taborder
form notify
...
end notify
doc notify
...
end notify
end doc definition
Architecture of Avaloq Forms?
- client / GUI
- form
- Avaloq server
- form controller (transforms between mem_doc values and form values; event handling)
- order in memory layer
Layout definition of a INTF DEF source: group statement?
group group_bp
label "LABEL.TRADE_PARTY"
top group_wfc
columns 2
...
end group
INTF DEF source: default field properties?
- edit
- mandatory
- switch
INTF DEF source: field types?
- label
- text
- number
- code
- obj
- date
INTF DEF source: field statement?
sort_nr text (edit)
label "LABEL.SORT_NR"
columns 1
field
value [doc.sort_nr]
property [doc.fld_prop('sort_nr')]
Structured extension: naming and type of sources? Use an extension fo the BP as an example.
- ACAD$FAVOURITES (AVALOQ TYPE DEF)
- CODE_OBJ_ADD.BP (CODE TAB)
How can we refer to a structured extension in CODE_OBJ_ADD.XY?
row 90XX
intl_id "favourites_XX"
data_type "record"
extn_type "acad:favourites"
naming
dfltlang "Favourites"
Structure of an AVALOQ TYPE DEF source?
[TYPE 1.0]
type acad:favourites_02
naming
...
record
fav_colour text;
fav_dish text;
end record;
end;
Report Writer: which parts are maintained by Avaloq, which ones by the customer?
Avaloq:
- task definition
- flat datamart definition
Customer:
- report datamart definition
- layout definition
What does the generic workflow command "assign" do?
Assigns a value to a given order field.
What does the generic workflow command "assign" do?
Assigns a value to a given order field.
What does the generic workflow command "book_fast" do?
Updates the booking status of the order's event. In contrast to the (book) command, (book_fast) only
updates existing bookings whereas (book) generates all the bookings of the order.
What does the generic workflow command "clone" do?
Opens a new order of the same order type as the currently open order, and copies some of the data
of the open order into the new order.
What does the generic workflow command "commit" do?
Generates order number (doc.order_nr) for new orders, and either puts the order in a queue of
pending orders waiting to be written to the database (DB) or writes the order and all pending orders
to the DB.
What does the generic workflow command "do_wfc_action" do?
Executes a workflow action on any given order.
What does the generic workflow command "exec" do?
Executes a given sequence of Avaloq Script statements within a workflow action. The statements can
change the data of the order.
What does the generic workflow command "store" do?
Stores the order data in the order persistence layer (in the database).
What does the generic workflow command "store_obj" do?
Stores the object related to the order according to a status in the CODE_HIST_STATUS table. The
statuses used are Discarded (1), Valid (5) and Temporary (8).
What does the generic workflow command "wfc_rule" do?
Explicitly calls the check for workflow rules for the business type of the order. Optionally you can
define a string that must match with the ACTION field in the WFC_RULE_LD table.
What is an "order type"?
E.g. create, modify, etc.
Symbol that can be used to mark a technical user?
- A hash (#) at the beginning of the user name.
- not mandatory, though
Does the general access right "any" disable security for particular data/functionality?
yes