‎2006 Dec 29 12:09 AM
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.
‎2006 Dec 29 12:33 AM
‎2006 Dec 29 2:52 AM
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
‎2006 Dec 29 3:02 AM
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
‎2006 Dec 29 3:40 AM
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^
‎2006 Dec 29 4:54 PM
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