cancel
Showing results for 
Search instead for 
Did you mean: 

BOE 4.3 SP4 we need to find the exact location of a specific historical instance in the Output FRS

mcsusan63
Explorer
0 Kudos

We are in the middle of a migration to new cluster setup.  We need to find the exact location within the Output FRS for a historical instance of a report.  We need this to verify it has been successfully migrated over from our old BOE Output FRS to the new Output FRS.  

In older versions of BOE, you could find the path if you looked at the Instance Details in Instance Manager.  However that path is no longer there. 

Accepted Solutions (1)

Accepted Solutions (1)

Joe_Peters
Active Contributor

If you just want to verify that the instance was migrated, why not just open it in Launchpad or CMC?  But if you really do need to find the file in the FRS, you can use a CMS query:

select si_name,si_update_ts,si_files from ci_infoobjects where  si_schedule_status = 1 and si_parentid = xxx

Replace xxx with the si_id of the parent report.  This will give you a list of all of the successful scheduled instances of the report -- just find the one that aligns to the date/time of the one you're looking for.

mcsusan63
Explorer
0 Kudos
Joe, we discovered we couldn't open more than 1/2 our historical instances in CMC or Launch Pad. Thank you for the reply.

Answers (2)

Answers (2)

bernhard_keimel
Active Participant

Have you tried the AdminTool and query the infostore for the instances? IMHO you can do this at that level, if you don't need the information in a pretty printed report.

I don't have the proper query for you by hand, but this is a good starter to work on this: BusinessObjects Query builder queries - SAP Community

HTH BR Bernhard

mcsusan63
Explorer
0 Kudos
Thank you Bernhard for your response. I did end up using Query Builder and found that the majority of our historical instances were not on the output FRS.
PeterHan
Associate
Associate
0 Kudos

You can logon BI Launchpad to check your instance detail page. You will get a Document Link and you will get the instance CUID like iDocID=xxxxx

Then you can logon query builder and run below query:
select si_files from ci_infoobjects where si_cuid='<the document ID you get from the Document Link>'

Then you will get the instance file location.