my yearly income was 260000/- for last year. & nw i get 295000 so how much income tax i hav to pay
2 4317I have created a command that display Source file and library. Now i want that when i enter library name and press f4 on Source file, pgm should display all the PF- SRC's in that Library. For F4 option i have used Choice program but since only limited paramters are passed in Choice pgm i am not able to paas library name and further can't call a pgm that will display list of Source files. Below is the Code snippet for CMD type object :- CMD PROMPT('Source Scan for HUB Standard') PARM KWD(SOURCE) TYPE(*CHAR) LEN(1) RSTD(*YES) + VALUES(N A) MIN(1) + CHOICE('N,A') PARM KWD(SRCFILE) TYPE(FILE) RSTD(*NO) + PROMPT('SOURCE FILE') FILE: QUAL TYPE(*NAME) LEN(10) RSTD(*NO) EXPR (*YES) + CHOICE(*PGM) + CHOICEPGM (XXXXXLIB/YYYPGM) QUAL TYPE(*NAME) LEN(10) DFT(*LIBL) + SPCVAL((*LIBL)) EXPR(*YES) PROMPT ('Library') Below is the Choice pgm:- PGM PARM(&PARM1 &PARM2) DCL VAR(&PARM1) TYPE(*CHAR) LEN (21) DCL VAR(&PARM2) TYPE(*CHAR) LEN (2000) IF COND(%SST(&PARM1 1 10) = 'CHOICE ' *AND + %SST(&PARM1 11 10) = 'SRCFILE ' *AND + (%SST(&PARM1 21 1) = 'C' *OR %SST (&PARM1 + 21 1) = 'P')) THEN (DO) /* (%SST(&PARM1 21 1) = 'C' *OR %SST (&PARM1 + */ CHGVAR VAR(&PARM2) VALUE('Name, F4 for List') ENDDO IF COND(%SST(&PARM1 1 10) = 'CHOICE ' *AND + %SST(&PARM1 11 10) = 'SRCFILE ' *AND + %SST(&PARM1 21 1) = 'P') THEN (DO) CHGVAR VAR(&PARM2) VALUE('Name, F4 for List') CALL PGM(GTSQL) PARM ('XXXXLIB') return ENDDO Thanks in Advance for looking into.
HSBC,
3443How can i maintain unique surrogate key if 2 seperate workflows from different repository run and insert/update the main table at the same time.
9 14968how i can copy paste the program of smart transmitter to another smart one with hart communicator?
KOC,
2 13301We select 10mm nominal thickness for Elip head of a pressure vesel. The minimum thickness after forming is 8.2mm. (Shell thickness is 8mm. The minimum thickness after forming is satisfied or not with UG-79 (d)(3) in ASME SECTION VIII, Div.1?
2598product is ready to release you found defects but you can not postpone it? How will you handle it??
2 6785
Is VT100 Server will support TCP/IP protocol?
Can we install Oracle database in VT100 Server?
If my server is Sun Solaris can i use like VT100 Server?
Suppose there are two requests for 2 different pages of same site and from 2 different browsers, How Web server recognise the different request and send result to the exact sender browsers.
what is the principle involved in Biometry?
How a component can be placed on Windows?
Is there anyway to automatically update the Datasource name in Database Checkpoints object when we migrate tests to a new release?
How to connect to a remote database using Applet?
How to display names of all components in a Container?
Can you give names of Container classes?
What are the differences between Java 1.0 and Java 2.0?
Name the components that are termed to be Heavy-weight component but available in Light-weight components?
What are the restrictions imposed by a Security Manager on Applets?.
How listener identify that the event came from a particular object?
Can we call virtual funciton in a constructor ?