PxPlus User Forum

Twitter Twitter Twitter

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Prajin P K

Pages: [1] 2
1
Nomads / Re: Multi line control (GOTO)
« on: January 10, 2020, 01:33:33 AM »
Thank you so much mike, NEXT_ID is working for me and can you please explain use of SET_FOCUS control? How its useful?

2
Nomads / Multi line control (GOTO)
« on: January 09, 2020, 06:20:09 AM »
Hi all,


        We used multi line control "MULTI_LINE GOTO ctl_id" in one of the panel for field validation. its not focusing on the specified field while run in inomads. what will be the issue, please give the solution for this.

3
Nomads / Re: Grid Control: Button click functionalities
« on: December 13, 2019, 12:30:52 AM »
Thank you mike

4
Nomads / Grid Control: Button click functionalities
« on: December 12, 2019, 04:42:27 AM »
Hi Team,
       We've added buttons on each row to perform delete, save, etc for each record on grid control. please help us provide solution to do those operations in class program(.PVC) while clicking on particular button.

5
iNomads / Generating menus through program
« on: December 07, 2018, 01:06:21 AM »

Hi Team,



We are using the default menu generation program to integrate the iNomads template with the menus through the data files(task.dat) provided by the ide template. We are able to generate our menus by changing the values of the data files.


We have a set of menus, all these menus can be accessed through the programs with .pvx extension. The issue is we are not able to use the .pvx extension programs in those data files. But we can use the default programs like *ace/editor. We tried to create a new program and calling that particular .pvx file but the functionalities are not working.  The same happens when we change the transaction type from P (program) to S(screen) by locating the panel path with name.
Is there any possible way to access those menus with those programs


Thanks,
Prajin

6
iNomads / Re: Inomads Login Issue
« on: December 07, 2018, 01:05:39 AM »

Hey Mike,


We are glad to inform you that we using unique registration key, but when we click on a particular menu that web-page becomes unresponsive and the only resolution is by restarting the  system. We tried clearing cache memory restarted the server but we are not able to fix this issue.


Thanks,
Prajin

7
iNomads / Inomads Login Issue
« on: December 03, 2018, 02:20:37 AM »
Hey team,


We are trying to convert Inomads template from nomads panel. The issue we are going through is, after we entered the credentials in the login page the web-page becomes unresponsive and we are not able to login or access. The error message is attached


So we have to restart the system and login, where the issue occurs again. we tried running it in incognito and cleared cache and restarted the system none of these steps seems to be the resolving the issue.


Please guide us resolving the issue.


Thanks,
Prajin

8
Nomads / Folder Control
« on: October 25, 2018, 09:20:14 AM »

Hi Team,
        I would like to bind data in the list box, when the user clicks folder control tab. I couldn't find solution for this. Please suggest.

Thanks,

9
Programming / Re: File maintenance panel creation for flat files,
« on: August 03, 2018, 11:52:31 AM »
Hi team,


   Could you update your valuable input in this ticket.
[/size][/color]
[/size]Thanks,[/color]

10
Programming / Re: Create Chart on excel sheet
« on: July 31, 2018, 07:09:45 AM »
Hi team,
I have created chart on excel sheet by using code found from the documentation, but on execute code  data and chart is coming different excel file. My need is its should come in same file.

Please give the instructions to do that. and also give explanation about how to set properties for creating chart on excel. The example code i have used is given below:

Code: [Select]
  OPEN (1)"[DDE]excel;existing_worksheet.wk1"
  OPEN (2)"SALES"
   LET R=0
LOOP:
   LET DIV_ID$=KEY(2,END=DRAW_IT)
   READ (2,KEY=DIV_ID$)DIV_NAME$,DIV_SALES
   LET R=R+1 ! Bump row number
   LET K$="R"+STR(R)+"C1:R"+STR(R)+"C2"
   WRITE RECORD (1,KEY=K$)DIV_NAME$+$09$+STR(DIV_SALES)
   GOTO LOOP
DRAW_IT:
   IF R=0 THEN STOP ! No divisions
   LET X$="R"+STR(R)
   WRITE RECORD (1)"[select(""R1C1:"+X$+"C2"","""+X$+"C2"")]"
   WRITE RECORD (1)"[new(2,1)]"
   WRITE RECORD (1)"[gallery.3d.pie(6)]"
   WRITE RECORD (1)"[window.maximize()]"
   WRITE RECORD (1)"[app.maximize()]"
Thank you,

11
ODBC / Re: Convert data dictionary data files to SQL tables
« on: July 31, 2018, 06:31:18 AM »
Hi Devon,
    Thank you so much for the great explanation. i followed your instructions, and found solution on my requirement.


Thanks,

12
Programming / Re: File maintenance panel creation for flat files,
« on: July 31, 2018, 05:21:53 AM »
Hi Jain,
   I am sorry, i don't know whether u already given answer for my this doubt; How can i copy data dictionary and related data files from one directory to another. when i copied, there is problem with defined keys. the problem is already mentioned above,
please let me know where is the wrong.


Thank you, 

13
Programming / Re: Remote Process Control
« on: July 30, 2018, 09:36:34 AM »
Hi Stephane,


    I have tried as like you mentioned, now its able to execute RPC call from my system. thank you so much for great help.

14
Programming / Remote Process Control
« on: July 27, 2018, 03:15:05 AM »
Hi,
   How can we use PROCESS SERVER directive for Remote Process Control. we tried the code as like this:

       
         PROCESS SERVER "inventory" ON "[tcp]xxx.xxx.xxx.xx;80"
         CALL "[RPC]:inventory]RPCTest"
         PROCESS SERVER "inventory" CLOSE
   
   error:


         PROCESS SERVER "inventory" ON "[tcp]xxx.xxx.xxx.xx;80"
         Error #15: Operating system command failed
         Last file accessed [tcp]xxx.xxx.xxx.xxx;80
         Current program is C:\PxPlus\xxxx\xx\RPCTestCode, line 20
         [TCP][Winsock]Error status:0 (-1:<Unk>)


   please let us know what happening here, what is the solution for this.


Thank you,

15
Programming / Re: File maintenance panel creation for flat files,
« on: July 26, 2018, 07:33:14 AM »
Hi jane,


     What ever the data files we have, are copied from development machine to local. all keys are already defined there. its able to access those data files through coding. Problem here is not able to create file maintenance panel on nomads, popup showing message like "file has no keys defined". In Data Dictionary Maintenance tool, there data files are coming under group without any name (its mentioned none). when open a file, its not showing keys and asking to create keys when click on update file option. after creating a new key, on update its giving message like this:


"C:\PxPlus\devxx\daxx\xx\xxxxx contains 644 records.
It has undergone the following changes:
  Record size has increased.
  Key structure
new:[1:1:10]+[1:11:2]+[1:24:5]
old:[1:1:10]+[1:11:2]+[1:13:8]+[1:21:4]+[1:25:5],[1:25:5]+[1:13:8]+[1:21:4]+[1:283:1]
.File Type has been changed to Variable Length. "


After updating file its able to create panel, but on test its getting error #55: cannot locate statement label; with:


"Error occurred processing: PERFORM "*win/flmaint;init" ...."


We not able to identify the problem. please help us to find out the problem.


Thank you,

Pages: [1] 2