Cross-functional customization Flashcards

(50 cards)

1
Q

Text Determination config

A

Text determination procedure

Access sequence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

PDFs/Forms

A

PDFs and SAP Forms are print formats used for print documents which are outputted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Duelists

A

List of Orders or Deliveries, which are due to be delivered or billed, respectively

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

User Exits

A

A modification and not an enhancement because we are changing the existing code

An ABAP form that is called by SAP standard programs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

BADIs

A

(Business Add-Ins) are custom enhancements to the standard SAP system

Allows more complex system infrastructure that can include SAP, country-specific versions, industry solutions, customer developments, and so on.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Customer Master text has x number of text types

A

Multiple

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Material Master text has x number of text types

A

Two, sales and purchasing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Text Determination Procedure Assigned to X

A

Customer account group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

When assigning text from source document to a target document…

A

You need to assign an access sequence for the target document to that of the source

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Output determination is only done for X data

A

Transactional data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Output

A

Outbound communication to another system, partners, or a placeholder after a transaction has been performed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Outputs are triggered x

A

After a transaction has been performed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Can you re-issue outputs?

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Output can be sent x

A

To multiple partners, multiple systems, and multiple number of times

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Output determination config

A
Maintain the condition tables
Maintain Condition types
Maintain Access sequences
Assign output types to partner functions
Maintain output determination procedure
Assign output determination procedures
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Two steps to an output

A

Trigger and Processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Each output medium has a x

A

Program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Driver Program

A

Contains ABAP code to pull out all necessary data from the transaction tables and fill up temporary structures

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

SmartScript or SMARTFORMS

A

Contains code that pulls data from the temporary data structures and create output based on Layout

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

ENTRY

A

FORM Modules in SD_DOC_FORM01 that is called initially

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

BAPIs

A

(Business Application Programming Interface) is an interface that provides access to data and processes inside an SAP system

22
Q

Two ways to use BAPIs

A

They can be defined as API methods for SAP business object types

They can be defined as interfaces that are implemented outside of an SAP system but can be called from within the SAP system

23
Q

RFC (Remote Function Call)

A

A process to synchronize communication interface between two parties

24
Q

SXX

A

Standard User Exit

25
UXX
Custom User Exit
26
Customer Exit
An enhancement because we are adding additional functionality to the existing one, not changing any thing An ABAP function that is called by SAP standard programs Restrictive compared to User Exits
27
Types of Customer Exit
Menu Exits Screen Exits Function Module Exits Field Exits
28
Smart Forms
Standard SAP print format
29
Billing duelist
Puts together the documents to be billed, based on the selection criteria. In that way, several deliveries can be put together in one billing document
30
Delivery duelist
Puts together the documents to be delivered, based on the selection criteria.
31
2 types Credit Management
Simple | Automatic
32
Automatic's two types of Credit Management
Static | Dynamic
33
Simple Credit Management
Current order value + value of open items are compared against the credit limit
34
Credit Limit
The credit limit for the customer
35
Open item
Entries made in accounting for a customer against an order yet to be paid for. Cleared once a customer pays
36
Static Credit Management
Current order + value of open orders + open deliveries + open invoices + open items
37
Open order
An order that has not been acted upon yet. | Ex. A delivery-relevant order not yet delivered
38
Open delivery
A Delivery not yet PGI
39
Open invoice
Invoice that has not been posted to accounts
40
Dynamic credit horizon
The timeframe beyond a certain date for orders with deliveries past a certain date.
41
Dynamic Credit Management
Using a Dynamic Credit Horizon to manage credit management
42
Credit Control Area
Enterprise structure element used for credit control management only Assigned to Company Code and Sales Org
43
Configuration for simple credit management
Based on the sales document type configuration
44
3 parameters that define auto-credit management
``` Credit Group (via Document type) Risk Category (via Customer Master record) Credit Control Area ```
45
Business area
Subdivision of a company code for accounting purposes. | If used, business area is assigned to every transaction the same way company code is
46
Field Exit
Field exits allow you to create your own programming logic for any data element in the dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.
47
Menu Exit
Add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications. SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with “+” (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
48
Screen Exit
Screen exits add fields to screens in ECC applications. SAP creates screen exits by placing special subscreen areas on a standard EEC screen and calling a customer subscreen from the standard screen’s flow logic.
49
Function Module Exit
Function module exits add functions to ECC applications. Function module exits play a role in both menu and screen exits. When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated. Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard ECC programs. These calls have the following syntax: CALL CUSTOMER-FUNCTION ‘001’.
50
BAPi vs BADis
BAPI allows establishing a connection between SAP and SAP or Non SAP systems. On the other hand, BADI allows the developers to improve the standard code of SAP according to the requirements.