Natasha
26th March 2004, 16:41
Hi

I’m trying to find function, that called itfglddll4011.write.sundry.address(..)
I tried use ttadv2830s000 (Search Pattern in more Prog Scr), but result is no data.
If I compile with bebug and look to stack trace, I see: itfglddll4011.write.sundry.address(..)
() no bebug
() no bebug…
Can anyone tell me how to find calling function?

Thanks

DStroud
26th March 2004, 17:44
Try using ttadv2467m000 Print where used Libraries. Since tfglddll401 is a DLL it is in libraries not program scripts

mark_h
26th March 2004, 17:47
You can try using print where used functions (ttadv2465m000). With this list you can check against the libraries on the session in question. Just remember sometimes it can be buried in other libraries.

Mark

lbencic
26th March 2004, 17:54
Are you on Unix?

You can search in unix for a pattern, starting at your $BSE/application directory.

find . -type f -print | xargs grep itfglddll4011.write.sundry.address

find command
. = starting directory
-type f = type file
-print = print results
xargs = use grep command on files found
grep = find something
itfglddll4011.write.sundry.address = what you want to find.

Will probably take a while.

Natasha
26th March 2004, 17:57
I tried ttadv2467m000 but no result too. I got same list of scripts and didn’f find function in each script :(((
And I’m interesting why “Search Pattern in more Prog Scr” didn’t find anything but I see call this function in debug, may be it is not allowed to use dot