WORKING STORAGE
01 WS-LENGTH PIC 9(1) VALUE 5.
01 DFHCOMMAREA.
COPY ABCDEF
(COPYBOOK ABCDEF IS HAVING ONLY ONE VARIABLE OF LENGTH X
(100).)
..
PROCEDUER DIVISION.
...
EXEC CICS XCTL
PROGRAM (WS-PGM)
COMMAREA (DFHCOMMAREA)
LENGTH (WS-LENGTH)
RESP (WC-RESPONSE)
END-EXEC
1. What will be the value of EIBCALEN in program ABCDEF?
2. What will be length of commarea when in ABCDEF?
3. Will such a code thow any error while linking to called
program?
Thanks in Advance
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.
find out the list of users who have access to all t-codes starts with 'SU'? thanks in advance all.
1.What happens to a session object when the browser associated with it is closed? 2. Explain what happens when a servlet is sent a POST request? 3. Why does only one copy of a servlet get created? 4. Explain what happens when a browser requests a servlet? (for the first time) 5.How is information stored in a session object?
Write a program that will convert an integer pointer to an integer and vice-versa.
can any one give me code to keyed a flat file and used chain in RPGLE to search any item
Write a Program to find the reverse of a given number.
Write a Program to find whether the given number is a Armstrong number.
WORKING STORAGE 01 WS-LENGTH PIC 9(1) VALUE 5. 01 DFHCOMMAREA. COPY ABCDEF (COPYBOOK ABCDEF IS HAVING ONLY ONE VARIABLE OF LENGTH X (100).) .. PROCEDUER DIVISION. ... EXEC CICS XCTL PROGRAM (WS-PGM) COMMAREA (DFHCOMMAREA) LENGTH (WS-LENGTH) RESP (WC-RESPONSE) END-EXEC 1. What will be the value of EIBCALEN in program ABCDEF? 2. What will be length of commarea when in ABCDEF? 3. Will such a code thow any error while linking to called program? Thanks in Advance
Write a Program to truncate a given floating point value (e.g.16.25=16).
Write a Program to find the number of words in a sentence.
Find out the list of roles which gives access to all t-codes in SAP? Thanks in advance.
plzzzzzzzzz xplain this code import java.awt.*; import java.awt.event.*; public class Link extends Frame implements ActionListener { Label l1; Button b1; public static void main(String sr[]) { new Link().setVisible(true); } public Link() { super("Warning"); setSize(500,500); setBackground(Color.lightGray); setLayout(null); l1=new Label("There is no Link"); l1.setBounds(0,0,500,460); l1.setFont(new Font("TimesRoman",Font.BOLD,35)); l1.setAlignment(Label.CENTER); add(l1); b1=new Button("QUIT"); b1.setBackground(Color.orange); b1.setBounds(0,460,500,40); b1.addActionListener(this); add(b1); } public void actionPerformed(ActionEvent e) { this.dispose(); } }