What is the name of default out queue when user logs inn to
syatem with valid profile?
Answers were Sorted based on User's Feedback
Answer / mind
default out queue name is same as userid and located in
QGPL lib. by using WRKUSRPRF command you can checked it.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / sivakumar y
It will depend on the OUT QUE name given in the QDFTJOBD of
a particular user profile. You can check the JOBD using
DSPUSRPRF.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / abhishek bajpai
The output queue assigned to the user's work station is
used, i.e., *WRKSTN
| Is This Answer Correct ? | 1 Yes | 0 No |
can I touch the array during treatments?
If there are 1000 member(PGM type) in a SRC file. How can we compile in a CL program? ( It need to be done in a loop)?
what do you mean by SESSION/DEVOCE ERROR?
How can you delete records form a file in rpg without using "Delete" OPCODE?
what is mean by *MAP and *DROP?what commands use these two keywords?why are they used?
1.String operatio such as moving the characters to the variables? 2.what are the building functions for check file longs? 3.which of the following methods will make externally describe file fields available to a program? A: A/copy statement that specifies the library file and member of the field reference file source code B: A data structure definition specification that names the file on the EXTNAME keyword C: A data structure definition specification that names the file on the IMPORT keyword? D: A Definition specification for each desired field with the REFFLD keyword
You have a *USE authority on a Library and *All authority on a file in that Library.Can you change the data in that file?
how can i retrieve the field name from display file at run time? Devendra Singh Tomar
How to get only unique records from a file which contains duplicate data using CPYF command ? Example : FILEA has duplicate records and FILEB is a UNIQUE defined.... and I want to get the data from FILEA to FILEB by eliminating all the duplicate records...
how we create binder member for updating service program and where we type this code on command line or in program ? strpgmexp pgmlvl(*current) export symbol (xyz0 endpgmexp. plz explain me this step by step .
WHAT IS MONMSG IDENTIFIER FOR STRTCPFTP command IN cl (as/400)?
Q:HI friends accually ihave one problem plesase let me know the alternate code of this code. Related field description of code: Add a field, CALvsPRD, "Calendar Day Starts Before/After Production Day" to the parameter set WRKORDER which accepts values 'A' or 'B' o B = Calendar Day Starts Before Production Day o A = Calendar Day Starts After Production Day o Any other value indicates the production and calendar dates are always the same. code: Automatic Execution Of *INZSR Subroutine /Z01 * retrieves WRKORDER field values. /Z01 * Calculate default Production Date and return it to caller. /Z01 * Production date defaults to system date /Z01 C Eval P@Pdate = %DATE() /Z01 * unless Calendar date starts Before PDN(production) date and /Z01 * system time is before PDN Start Time then /Z01 * PDN date is yesterday. /Z01 C If W@CALvsPRD = 'B' and /Z01 C %TIME() < %TIME (W@Strtime) /Z01 C Eval P@Pdate -= %Day(1) /Z01 * unless Calendar date starts After PDN date and /Z01 * system time is *GE PDN(production) Start Time then /Z01 * PDN date is tomorrow. /Z01 C ElseIf W@CALvsPRD = 'A' and W@Strtime > *Zero and /Z01 C %TIME() >= %TIME (W@STrtime) /Z01 C Eval P@Pdate += %Day(1) /Z01 C EndIf /Z01 C Eval *InLr = *On