cancel
Showing results for 
Search instead for 
Did you mean: 

Subsequent Refresh property

Former Member
0 Kudos
How can we set the Subsequent Refresh property to "Log off and Reconnect" as a default setting for all workbooks?

Accepted Solutions (0)

Answers (1)

Answers (1)

reyemsaibot
Active Participant
0 Kudos

Hi Bob,

you can set the parameter SubsequentRefreshDefault in the file system settings. For more information have a look at the admin guide.

BR,

Tobias

Former Member
0 Kudos

Hi Tobias,

Thanks for your reply! below are the steps I did:

1. Open the system, c:\programData\SAP\Cof, modified Ao_app.config file.

2. In the file, below have been changed:

  • Under <configsections> change below from "UserRoaming" to "PerMachine"
  • <section name = 'subsequentRefreshDefault" type = "string" configurationLevel ="PerMachine"/> (it was "userRoaming")
  • Under <!-- ### BoeConfiguration ###--> section changed below property default value:
  • <!--default: value="LogOffReconnect" - > (it was "transactionDataOnly")
  • <SubsequentRefreshDefault/>

3. Reboot the system and launched AO2.3, but the default setting was still "TransactionDataOnly" even though the default setting was changed in step 2.

Could you advise any step missed?

Best Regards,

Jean

reyemsaibot
Active Participant
0 Kudos

Hi,

the problem is the Admin Guide is false, the parameter is

  <!--default: value="LogOffAndReconnect" -->

  <SubsequentRefreshDefault value="LogOffAndReconnect" />

And you have to assign the value not only to the comment. Because <!-- --> is a comment and not more.

I just tested it, when you use LogOffAndReconnect and not the admin guide value LogOffReconnect. It works.

BR,

Tobias

Former Member
0 Kudos

Yay!! it works after I change the value to "LogOffAndReconnect".

Thank you for being so helpful!