Lotus Designer 软件、命令和 Lotus Script - 程序流程
我是莲花新手。我有一个任务。表格中有一个参考编号。我必须找出它是如何生成的。我已经找到了逻辑,但如何找到诸如此类的问题的答案 1.运行哪个脚本库相关Ref No生成 2.ref No 生成正在运行哪个事件,请详细说明 3.引用哪个视图并生成Ref No。
请解释一下。
谢谢, 普里亚。
I am new to lotus. I have a task. there is a reference number in a form. I have to find out how it is generated. I have found the logic but how to find answers for questions like
1.Which script library running related Ref No generation
2.Which event is running for ref No generation, and please explain in detail
3.Which view refer and generate Ref No.
Please explain.
Thanks,
Priya.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你说你找到了逻辑。好吧……它在哪里?它在脚本库的子函数或函数中吗?如果是这样,那么您需要找到所有使用该脚本库的地方并调用该子或函数。为此,您可以使用数据库概要功能。打开数据库,下拉“文件”菜单,选择“应用程序”,然后从子菜单中选择“设计概要”。浏览“类型”下拉列表中的选项,然后为每一项单击“全部添加”。然后单击“确定”。您将以文本形式获得数据库中所有设计信息的转储。您可以使用 ctrl-F 打开搜索框来搜索包含逻辑的子或函数的名称 - 或者您可以将此文本复制到您最喜欢的编辑器并在那里使用搜索功能,这可能更符合您的喜好。
You said you found the logic. Okay... where is it? Is it in a sub or function in a script library? If so, then you need to find all the places that use that script library and call that sub or function. You can use the database synopsis feature for this. Open the database, pull down the File menu, select Application, and select Design Synopsis from the sub-menu. Go through the choices in the Type drop-down, and click Add All for each one. Then click OK. You will get a dump of all the design information in the database in text form. You can use ctrl-F to bring up a search box to search for the name of the sub or function that contains the logic -- or you can copy this text your favorite editor and use search functions there, which might be more to your liking.
使用调试器,您将能够浏览 Lotus 脚本代码并了解正在发生的情况。
With the debugger you will be able to walk through the lotus-script code and understand what is happening.