2011-09-21 5 views
1

SAP의 RFC_READ_TABLE에 대한 OPTIONS 매개 변수 테이블에서 하위 쿼리를 사용할 수 있습니까? 괄호 오류가 발생합니다 포함하는 옵션 매개 변수 (ABEND 덤프를) 지정이RFC_READ_TABLE의 하위 쿼리 사용 옵션

field in (select otherfield from othertable where ...) 

답변

4

번호와 같은

뭔가. 답에 대한

WHERE (itab) 

The internal table itab may only have one field. This must have type C, 
and may not be longer than 72 characters. You must specify itab in 
parentheses, without a space between the parentheses and the table name. 
The condition contained in the internal table must have the same form as 
a corresponding condition in the ABAP source code. The following 
restrictions apply: 
- You can only use literals as values, not variables. 
- You cannot use the IN operator in the form f1 IN itab1. 
The internal table itab may be empty. 
+0

감사합니다 :는 SAP DOCO (4.6)에서

. –