cancel
Showing results for 
Search instead for 
Did you mean: 

To Shell passes - debugging

Former Member
0 Kudos

I am trying to start a *.bat via the "To Shell Pass".

Unfortunately, even though it does not work as intended, the error log shows no errors.

How would I add some debugging error reporting out of a batch file?

Or should I go all the way along, writing a propoer vb script?

Accepted Solutions (1)

Accepted Solutions (1)

Frank_Buchholz
Product and Topic Expert
Product and Topic Expert
0 Kudos

In a *.bat file I usually just add statements like the following to get runtime information:

echo %date% %time% some text >> log.txt

However, using VB or Jscript you can directly write messages into the Identity Center job log.

Example for a warning in Jscript:

UserFunc.uErrMsg(1,"some text" + Par);

Kind regards

Frank

Answers (1)

Answers (1)

Former Member
0 Kudos

Of course, I am talking of the SAP NetWeaver Identity Manager.