balabharathi
28th June 2013, 15:23
Hi,
My requirement is to add one more Text button(irrespective of the standard Text button) to the Purchase Order Line session and to show the text field value from different table(not from the main table) once it is clicked.
bhushanchanda
28th June 2013, 20:49
For this kind of requirement, I use form commands and add a new session which will provide the details about the line using a display session or a print session (report). What I do, is add an opion to standard session's Specific Menu. When user wants to get any information about that line, he can just select the line and use the menu option to get the related information. If this is your requirement, I can guide you.I have never tried to add a text button to a standard session yet.
balabharathi
29th June 2013, 09:26
Hi Bhushan,
I want to add a text button only in the standard session along with default text button. Can you guide me for that.
bhushanchanda
30th June 2013, 08:42
Hi,
As per my knowledge, you cannot do that without having the source code of the standard session. The work around will be to add a display or print session showing the line details in the Special Menu. (Specific Menu in LN).
vamsi_gujjula
1st July 2013, 15:13
Hi ,
i think you can have wrapper session with a required button or in the specific menu
you might also want to look at
function long text.edit (string text_field, string lang, string kw1, string kw2, string kw3, string kw4, string tgroup, string edit_opt, long mode)
i am sure whether this function is there in baan iv.
balabharathi
2nd July 2013, 11:52
Hi Vamsi,
The function text.edit has worked for me. Thanks a lot.
bhushanchanda
2nd July 2013, 14:21
Good. Can you share what you did? Used Wrapper Session?
balabharathi
3rd July 2013, 08:30
I have added a button called '"POA TEXT" in the session and connected that with a function, in that function I have selected the particular table and in that selectdo loop I have used text.edit function.