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: 

how we can find BAPI's for a transactions?

Former Member
0 Kudos

hi

how we can find BAPI's for a transactions?

thanks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos

HI,

it is difficult to find at transaction level , how ever go to Transaction BAPI and select the application area.. Let us say i want to find a bapi for sales order creation..

Follow this path.

Tcode BAPI

Sales and Distribution->Sales->Sales Order->create from Dat1 and in the right hand side you will see the bapi name.

Thanks

Mahesh

4 REPLIES 4

Former Member
0 Kudos

HI,

it is difficult to find at transaction level , how ever go to Transaction BAPI and select the application area.. Let us say i want to find a bapi for sales order creation..

Follow this path.

Tcode BAPI

Sales and Distribution->Sales->Sales Order->create from Dat1 and in the right hand side you will see the bapi name.

Thanks

Mahesh

Former Member
0 Kudos

Run the transaction in debugging mode break at call function statement and find out what all functions or BAPI the transaction is calling.

Reward point if this helps.

FabioFar
Explorer
0 Kudos

Use transaction BAPI as shown in video:

http://www.youtube.com/watch?v=uEan8s9S8w8

deepak_dhamat
Active Contributor
0 Kudos

hi,

use this function module SXV_GET_CLIF_BY_NAME

function sxv_get_clif_by_name .

*"----


""Lokale Schnittstelle:

*" IMPORTING

*" VALUE(NAME)

*" VALUE(PREFIX) TYPE SEEX_CLIF_PREFIX

*" EXPORTING

*" VALUE(CLIF) TYPE SEOCLSNAME

*"----


call function 'SXV_ADD_PREFIX'

exporting

name = name

prefix = prefix

importing

new_name = clif.

endfunction.

debug the function module you will get name of bapi , badi used for transaction which ever operation you perform

it will call this function module and will give you name

regards

Deepak.