-


Set of flashcards Details

Flashcards 191
Students 20
Language English
Category Computer Science
Level Other
Created / Updated 24.09.2017 / 05.06.2025
Weblink
https://card2brain.ch/box/20170924_avaloq_acp_certification
Embed
<iframe src="https://card2brain.ch/box/20170924_avaloq_acp_certification/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

On which layer is order validation executed?

on memory layer

Explain the connection between order validation and business type

One OV Source per Business Type

list 3 different behaviors of order validations

  • Proceed: system- & customer defined constraints are fulfilled, the WFC is processed
  • Error: one of the customer defined constraints is violated, Order remains in original status. User has to correct the Order accordingly and execute the WFC again
  • Warning: The User is shown a Warning Message with additional information. With correct security rights, the user can override the warning message and continue.

User can accept or reject the warning à Rejection means, order remains in initial state

Accepting means: WFC is processed

What is the source type of order validation?

DOC VALID

What is the source code for a warning?

doc.chk_override

What are the 3 triggers for an order validation to "go off"

order_type

state

action

Name the 3 important parts of the order validation source

header

constraints

checks

What are the 3 components of AMI?

AMI

ADAPTERS

EMI

3 Message types (formats)

- Field Format

- XML Format

- Internal Format

How are outgoing messages processed?

AVQ Data - Builder creates Internal Message, Formatter creates "External Message"

How is an incoming message processed?

External Message -> Parser creates "Internal Message" and "Handler" creates AVQ Data

Synchronous Outgoing/Incoming Message, who is responsible for the synchronous response?

EMI

Synchronous Incomin/Outgoung Message, who is responsible for the synchronous response?

Handler (calls the formatter)

Explain bulk messaging, message bundles and message chunks

Bulk messaging means a bulk delivery of incoming or outgoing messages

Message Bundles is ONE physical message that contains several messages

Message Chunk: several grouped messages who are processed at the same time for business requirements

--> Message Bundles are usually divided into multiple Message Chunks

Why are Message Bundles used?

  • Improve the throughput of a certain type of message
  • To process a group of messages at the same time for business logic requirements

To secure a workflow action you need 3 things:
a workflow action id, an access code id and what else?

meta_typ id

What does the below workflow command do?
   (trans(90))(store_obj(5))(store)(commit)
Transfer the order to workflow status 90,….

Which part of the AMI transforms an internal message into an external message?

 

Formatter

Which part of the AMI transforms an external message into an internal message ?

parser

What do you have to write in a workflow command to implement a 4-eyes check ?

chk_4_eyes

Given a Network structure = MDB$XXX and Message type = XX_YY’
What would the Message Structure look like?

MDB$XXX.XX_YY

how do you recognize a "Network" source?

- incoming

- outgoing

- build header

- parse header

How do you recognize a Network structure? ( keywords)

- character set

- field format

- message format

- datatype

How do you recognize a MSG source?

- assign statements :=

- message compound (keyword)

how do you recognize an incoming message definition?

with NEW

how do you recognize a outgoing message definition

only "with" statements, not "with NEW" 

Which of the following sources use the DDIC?

 

In which table could you find meta information regarding sources?

CODE_SRC_TYPE

Question about language support. A new Russian language option is required in the language selection box. How do you do this? What tables are affected? What is the interface to maintain language strings?

CODE_LANG, OUT_TEXT_NORM

Write the correct keyword and parameter required to define a multi-addition with 10 possibilities.

multi_add_cnt 10

What is the difference between a job and a task?

- a job consists of several tasks

- a task does not have dependencies on other tasks while jobs can have dependencies on other jobs

- a job can be scheduled, a task can not