Application Development and Automation 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: 
Read only

BAPI -table

Former Member
0 Likes
1,348

Hello all,

I am trying to find the actual table used by function module "BAPI_COMPANY_GETDETAIL". In another words, when you execute this function modue, from which table it gets the information.

Can you guys please tell me how to do that?

Regards,

NS.

5 REPLIES 5
Read only

suresh_datti
Active Contributor
0 Likes
836

T880

~Suresh

Read only

Former Member
0 Likes
836

Hi

BAPI_COMPANY_GETDETAIL belongs to Function group 0014

Now you Can Go to Se 80 Tcode Enter The Function Group name as 0014

Under the Folder Dictionary structures You will find the tables that are used .

  • Please mark Useful Answers

Read only

Former Member
0 Likes
836

Hi

Another way of retreiving the tables used can be done by FM: <b>RS_PROGRAM_TABLES</b>

CALL FUNCTION 'RS_PROGRAM_TABLES'
  EXPORTING
    OBJECT_TYPE            = 'FUNC'
    OBJECT_NAME            = 'BAPI_COMPANY_GETDETAIL'.

We can directly execute this FM from SE37 with the above parameters.

Regards

Eswar

Read only

Former Member
0 Likes
836

hi

good

Short text

Company details

Functionality

This method enables the user to access further information about a company. The company's detailed data as determined by the system is returned. Any problems arising are returned as a return code message.

Notes

The same authorization checks are carried out under this method as take place when displaying information within an R/3 transaction.

The system does not convert the input parameter COMPANYID, meaning that leading blank characters within this parameter are not cleared.

Messages are returned within the RETURN parameter. This parameter documentation contains the return codes and their meaning.

Parameter

COMPANYID

COMPANY_DETAIL

RETURN

-


TABLES USED->

T880

thanks

mrutyun^

Read only

Former Member
0 Likes
836

In this FM, click on display object list icon. This will take you to the object navigator. Under Dictionary structures, you would see T880 and TDDAT.

Thanks,

Santosh