Q1.How we can copy the data of file one session to another
session?
Q2.how we can execute a loop infinitely in AS/400 coding?
Q3.In ALDON tool,multitask is posible on a perticular
object by the user?
Answers were Sorted based on User's Feedback
Answer / venkat b
Q2.how we can execute a loop infinitely in AS/400 coding?
Loop with a condition which is always true.
DOW '1'
//whatever
ENDDO
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / jay
1.By FTP command we can transfer data from one session to
another session.
2. By the various command like DOW and DOU.
3. Multi task can contain for the same object but that
object should be in Production.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / divakar
1. -SavObj OBJ(FILE) SAVLIB(FLIB) SAVF(FLIB/FSAVF)
-FTP << ip >>
user: USER
pwd: xxxxxx
bin
put FLIB/FSAVF TLIB/TSAVF
quit
- RSTOBJ *ALL SAVLIB(FLIB) SAVF(TLIB/TSAVF) TOLIB(TLIB)
2. DCL &Flag *char 1 '1'
Dow cond(&flag *eq '1')
. . . .
. . . .
EndDo
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sunita singh
1. By using CRTDDMF command you can copy the data of file
of one session to another
2. By using DOW and DOU command
D Done s n inz(*off)
/free
DOU Done;
//work done
ENDDO;
/end-free
| Is This Answer Correct ? | 0 Yes | 0 No |
Q1 you can copy the data from one session to other session
using NDM
on Menu ispf
type START NDM
Then seelct to the req option for your requriments
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / gayathri
2. Do *Hival
Call program or perform calculation
Enddo
| Is This Answer Correct ? | 0 Yes | 1 No |
How to check which are the pgms using 1 perticulate file.? I know there is many tool available for X-reference...but need to know is there any command available in the system...?
Difference between creating a report using Printer file and WRKQRY(Query Report) ?
I want my simple Green screen should refersh every 1 min ,How can I do it..? Please share the logic
if there is pf in two libraries and there is a logical file based on the PF, how to find the pf on which the pf is based.
Can any body give the code for this quesition? Using the following details write C-Spec code to set Name to"AMMU LABS SYSTEM" D NAME1 S 10 INZ('AMMU') D NAME2 S 10 INZ('LABS') D NAME3 S 10 INZ('SYSTEM') D NAME S 20
two attributes which govern the excecution of a job>>>>??
Hi,This is raju.Can any body give me the real experience answer for this question? 1.What is the significance of *MAP and *DROP in the CPY command?
if i have three programs progA,progB and progC .now i call progB from progA. but the progB does not exist . now i want to call progC instead of starting dump. how can we achieve this.
what is the equivalent keyword for CHAIN opcode ??
Can somebody tell me that, Is it possible to read all the member of PF without OVRDBF?
How can we call CL program to RPG? How many number of parameter we can pass
What would be the result on writing a data record to a PF file using the "WRITE" opcode after the SETON *ON *INLR statment?