how to combine the transparent table with cluster table.
Answer / debabrata patra
We cant perform joins on cluster tables, so first get the data from cluster table(BSEG) into internal table and use SELECT..with FOR ALL ENTRIES option on transparent table(BKPF).
SELECT * FROM BSEG
INTO TABLE IT_BSEG
WHERE <CONDITION>.
IF IT_BSEG[] IS NOT INITIAL.
SELECT field1, field2 FROM BKPF
INTO TABLE IT_BKPF
FOR ALL ENTRIES IN IT_BSEG
WHERE <CONDITON>.
ENDIF.
Is This Answer Correct ? | 0 Yes | 0 No |
What are Standard Texts?
How BAPI is Different from call Transaction/Session
Explain how do you get output from idoc?
Can a domain, assigned to a data element be changed? : abap data dictionary
How to find the status of failure a IDOC
What is logo in sap script?
APPL2?
What does an exec sql statement do in abap?
Append structures in tables, what happens when version is upgraded ?
tell me ddic objects
what is search helps..How many types are there?
What is the step-by-step process to create a table in data dictionary? : abap data dictionary