Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

F.M to READ TRANSACTIONAL DATA

Former Member
0 Kudos

HELLO EVERYONE

CAN ANYONE PLEASE TELL ME THE FUNCTION MODULE OR STANDARD PROGRAM TO READ TRANSACTIONAL DATA. ITS URGENT.

THANKS & REGARDS

V.B.

Edited by: vimarsh b on Jan 16, 2008 5:21 AM

1 ACCEPTED SOLUTION

former_member156446
Active Contributor
0 Kudos

Hi Vimarsh

Reading transaction data is not possible with one FM or BAPI its a big process, first you need to identify what part of transaction data you need to read and stuff.

3 REPLIES 3

former_member156446
Active Contributor
0 Kudos

Hi Vimarsh

Reading transaction data is not possible with one FM or BAPI its a big process, first you need to identify what part of transaction data you need to read and stuff.

0 Kudos

hi Jack

actually my problem is i have billing document invoice (T.C. VF01) and when i execute it; its data has to save in application server, is it possible, can you tell me procedure. Thanks in advance.

Thanks & Regards

Vimarsh

0 Kudos

BAPI_QUOTATION_GETDETAILBOS

BAPI_INQUIRY_GETDETAILBOS

BAPI_SALESORDER_GETDETAILBOS

SALES ORDER->

BAPISDORDER_GETDETAILEDLIST Sales Order: List of All Order Data

BAPI_ORDER_CHANGE_STATUS_GET Change status for order

BAPI_SALESDOCU_CREATEFROMDATA Creating a Sales Document

BAPI_SALESORDER_CHANGE Sales Order: Change Sales Order

BAPI_SALESORDER_CREATEFROMDAT1 Sales Order: Create Sales Order

BAPI_SALESORDER_CREATEFROMDAT2 Sales Order: Create Sales Order

BAPI_SALESORDER_CREATEFROMDATA Create sales order, no more maintenance

BAPI_SALESORDER_GETLIST Sales order: List of all orders for customer

BAPI_SALESORDER_GETSTATUS Sales order: Display status

BAPI_SALESORDER_SIMULATE Sales Order: Simulate Sales Order

-


To write the file to app server:

look at the sample code below

IF NOT p_ufile IS INITIAL.

OPEN DATASET p_ufile FOR OUTPUT IN TEXT MODE.

IF sy-subrc <> 0.

EXIT.

ENDIF.

LOOP AT p_output INTO wa_file.

TRANSFER wa_file TO p_ufile.

CLEAR wa_file.

ENDLOOP.

CLOSE DATASET p_ufile.

this things bolded are the important things