Hi, I'm back

I can connect to ConfServer via PSDK, studied a lot of docs, but can't handle with problem described below.
I've created new object [i]1TestPFR[/i] in Business Attributes which contains two values. I want to read this.
[img width=640 height=260]http://i65.tinypic.com/2zs4gp5.png[/img]
I tried to read this by set filterKey object_dbid. If I right understand, this is value after object name (in red box on image below)
[img]http://i64.tinypic.com/2cmxg8k.png[/img]
[quote]
Platform.Commons.Collections.KeyValueCollection filterKey = new Platform.Commons.Collections.KeyValueCollection
{
{ "object_dbid", 1304 }
};
RequestReadObjects requestReadObjects =
RequestReadObjects.Create(
(int)CfgObjectType.CFGFolder,
filterKey);
[/quote]
But when I did it, ConfServer returns me list of all folders. My request works properly when I set key on name and search phrase f.e. "Business Attributes"
[quote]
Platform.Commons.Collections.KeyValueCollection filterKey = new Platform.Commons.Collections.KeyValueCollection
{
{ "name", "Business Attributes" }
};
RequestReadObjects requestReadObjects =
RequestReadObjects.Create(
(int)CfgObjectType.CFGFolder,
filterKey);
[/quote]
But how can I find values from [i]1TestPFR[/i]? Maybe I try to find unapropriate objectType? Unfortunately, any of available [url=http://docs.genesys.com/Documentation/PSDK/latest/ConfigLayerRef/ConfigLayerObjectsList]Layer objects[/url] not fit directly. Have you any idea, how to handle with this?