1. Given that customer has modified an SAP object, which activities are required at a release upgrade or when applying a support package? (M)
A. The modified object must be adjusted during the upgrade process if SAP delivers a new version of the object.
B. No manual operations are necessary. Everything is performed automatically.
C. All correction that have been delivered with the upgrade(or support package) must be released and confirmed before starting the upgrade.
D. ABAP dictionary tables, data elements, and domains are adjusted during the upgrade.
E. ABAP dictionary objects are not handled separately.
2. Which statements are allowed if you are working with an internal table of the type sorted? (M)
A. APPEND.
B. COLLECT
C. SORT
D. READ
E. MODIFY.
이 두 문제 답이 뭔가요,,??
다른 덤프와 답이 달라서.. ㅠ_ㅠ
댓글 6
-
bd
2007.03.29 08:12
-
SARA
2007.03.29 08:13
문제 어렵네요......ㅠ.ㅠ 올해 시험볼려는데..
-
Sprite
2007.03.29 08:44
bd님 감사합니다~ 근데 2번에..Append도 답인가요?? append는 standard에서만 된다고 책에 나와서 질문드렸어용;; 아.. 아직도 고민;; -
e-abap
2007.03.29 17:26
2번은 append는 안됩니다.
append 구문은 인터널 테이블의 맨 마지막 라인에 삽입되기때문에, 키값으로 정렬되어 저장되는 sorted 테이블에 append 를 사용하게 되면 dump 까 떨어집니다.
예를 들어
2
3
4
키값이 저장되어 있는 인터널 테이블에 1 값을 append 하게 되면 덤프떨어집니다.
이때는 insert table 을 사용하여야 합니다. 그래야 정렬이 되어 맨위쪽에 라인이 삽입됩니다.
엄밀히 말하자면 append도 가능하지만, 바람직한 사용법은 아닙니다.
-
최현영
2007.03.30 02:15
-_-;; 어려워요 -
senk
2007.05.03 10:30
1번에 D번은 왜 안되나요?
저는 1번 A,C 2번 C 빼고 다 <- 이렇게 알고 있습니다. @@