cancel
Showing results for 
Search instead for 
Did you mean: 

GOS File Attachment Count

08-24-2018 11:39 AM
umayaraj Participant
946 views 2 comments
0 Likes
SAP Managed Tags
Subscribe

Hi ,

I want know T-Code wise how many GOS file in content server.for example ME23N,FB03..i already try with "SRGBTBREL" this table and Type :BUS2012 & Category : BO is for PO, i need which table have relationship ,BUS2012 for ME23N T-Code Only.


Thanks and Regard,

B.Umayaraj

0 Likes

Accepted Solutions (0)

Answers (2)

Answers (2)

RaymondGiuseppi
Active Contributor

Actually if you look at Business Object BUS2012 with transaction SWO1 you will find a list of methods, one should be PurchaseOrder.Display and is attached (double-click) to ABAP4 FM ME_DISPLAY_PURCHASE_DOCUMENT (and not to transaction ME23n, look at tabe SWOTV for abap type = 'T' in recent versions..) and the FM will then execute some transactions (hardcoded in its source) such as ME23n, ME22n or ME33K...

You could also look at transactions called by the program associated with the BO but wont be so easy try to check for RBUS2012.

I wont expect a single standard table to link a BO type with a single TCODE, so IMHO you should keep with BO and just add BO description to your report.

JuveriaK
Active Participant
0 Likes

GOS attachments are linked to Business Objects, not directly to T‑Codes.
For example, ME23N / ME22N / ME21N all work on BUS2012 (Purchase Order).
There is no standard table that maps GOS attachments to a specific T‑Code.

To count attachments, use SRGBTBREL with:

  • TYPEID_A = BUS2012

  • RELTYPE = ATTA

If required, you can enrich the report by mapping Business Object → display transactions (via SWO1 / method PurchaseOrder.Display), but T‑Code–wise attachment counting is not supported standardly.