rajesh_bamane
20th April 2009, 15:24
Hi,
I would like to add satellite Customize session in Baan IV std sales order session.
How can i link this customize session to std session?
Please guide me to do this
Thanks
Rajesh
baan.kmurali
21st April 2009, 13:50
if you have program script for the sales order session na, you can do otherwise you should know about wrapper.
ulrich.fuchs
21st April 2009, 14:19
Talking about Baan IV odr LN 6.1?
Satellite sessions aren't supported in Baan IV.
rajesh_bamane
22nd April 2009, 07:52
Hi Murali,
I don't have program script for sales order session.
Can you tell me some details about wrapper?
How i can use this in BAAN IV c4?
Regards
Rajesh
rajesh_bamane
22nd April 2009, 07:55
Talking about Baan IV odr LN 6.1?
Satellite sessions aren't supported in Baan IV.
Hi ulrich.fuchs ,
I am talking about Baan IV.
I am looking for similler funcationality of Satellite sessions in Baan IV
Regards
Rajesh
loveubaan
22nd April 2009, 11:07
create 2 session , 1 for main session (Single Occ) 2nd one Lines (Multi Occ)
1st session works as parent and 2nd as child.. link between two is established using wait.and.activate along with a few other functions .
PLus u need to send the commands to be executed in parent to child session.. like next.set,first.set,prev.set etc.
This type of customization is possible in BAAN IV............... but you will have to give it a try...... :)
- Sumeet
sushil
22nd April 2009, 12:55
use zoom.to$()
Syntax
string zoom.to$( string process(14), long zoomcode, string zoomname(18), string returnfld(18), long formpos )
Description
Use this to zoom to another session or menu.
Arguments
process - Specifies the name of the session or menu that must be started.
zoomcode - This can be either Z.MENU or Z.SESSION, depending on whether it is a menu or session that is being started.
zoomname - The name of the calling process. This is used in the zoom.from sections in the called process. If no name is provided here, zoom.from sections in the child session are not executed.
returnfld - Indicates the name of the variable to be returned by the function. It must be the name of a variable in the called process. If an empty string is specified here, the function returns the exit value of the zoom process. If the argument is not filled, the function returns nothing.
formpos - Specifies the form position for displaying the window. The default is 0
Note
This function is supported for backward compatibility only. In new applications, use start.session() instead.
BR,
Sushil Kumar Mudaliar
baan.kmurali
24th April 2009, 14:17
Hi rajesh..
wrapper generating is a complicated process at server level. please refer about the wrapper.
What is a wrapper?
Many times we are required to make minor modifications in Baan sessions and source code may not be available. A “Wrapper Program” is one that can be written to execute standard Baan functionality as well as the customized functionality.
It is possible to know list of functions that are present in Baan object using standard Baan Utility bic_info6.1. A Wrapper Program contains calls to all the existing functions written in the Baan Source Code. Additional sections can be included to customize/override standard Baan logic.
Why to use Wrapper Generator?
Writing wrapper is time consuming as well as error prone activity. Wrapper Generator makes it easy to create a wrapper for a standard session in Baan. It automatically generates the basic script of the wrapper. You can write the code for the customization intended.
It drastically reduces the time to write the wrapper program. Also it eliminates the mistakes the user might tend to do while typing the program.