cancel
Showing results for 
Search instead for 
Did you mean: 

NEED FUNCTION MODULE

Former Member
0 Kudos

Friends,

I have a standard report where I am adding custom fields. I was wondering if someone can tell me the function module for efficient document flow access like getting relevant info from VBFA and VTFA .

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

venkata_ramisetti
Active Contributor
0 Kudos

Hi,

I didn't find function module to get both tables.

But you can use function module SD_VBFA_SELECT for getting data from VBFA table.

There are couple of other function modules, they can be used based on your required.

RV_FLOW

SD_VBFA_ARRAY_READ_VBELV

SD_VBFA_READ_WITH_VBELV

SD_VBFA_SINGLE_READ

SD_VBFA_TRANSFER_TO_BUFFER

SD_VIEW_VBFAVG

Thanks,

Ramakrishna

Message was edited by: Ramakrishna Prasad Ramisetti

Former Member
0 Kudos

Thank You Ramakrishna and Narend for your help. Is there any FM for VTFA doc flow?

Answers (2)

Answers (2)

ferry_lianto
Active Contributor
0 Kudos

Hi Andrew,

There is no function module available for VTFA shipment document flow.

But you could easily link table VBFA and VTFA as follows.

...

CLEAR I_VTFA.
REFRESH I_VTFA.

SELECT * INTO I_VTFA
FROM VTFA
WHERE VTFA-TKNUM = VBFA-VBELN
  AND VTFA-VBELV = VBFA-VBELV.

...

Hope this will help.

Regards,

Ferry Lianto

Former Member
0 Kudos

Thank you Ferry

Former Member
0 Kudos

Hi,

For VBFA use the function module RV_ORDER_FLOW_INFORMATION..

Thanks

Naren