tags:

views:

49

answers:

1

Hello,

I have been using "MEASUREM_DOCUM_RFC_SINGLE_001" to update a measurment point in SAP through .net 2.0. This has worked quite well for us. I would like to read the latest measurement point, but I am unable to find a RFC in the Function group IMR0.

thanks for any help you can provide. SAP,C# ,net-2.0

+1  A: 

I don't know much about measurement points, but there seems to be a function module to read the documents (MEASUREM_DOCUM_RFC_SINGLE_002) if you know the keys. If there is no RFC module to get a list of $foo according to a set of selection criteria, you could always try RFC_READ_TABLE to get the keys directly from the database table. If you were programming in Java, I'd recommend some wrapper classes I've written - don't know whether a similar thing already exists for C#.

vwegert