How to rename A1-A30 datasets into B1-B30 using macros?
Answer / rajasekhar m
%macro rename;
%do i=1 %to 30;
proc datatsets;
change a&i. = b&i.;
quit;
%end;
%mend;
%rename;
| Is This Answer Correct ? | 0 Yes | 0 No |
What are events in smartforms?
when will triggars the at new event in abap and web dybn pro?
what is page hit in operating system?
what are partial classes. Where is the entry point of partial classes.
what is difference between oracle and pl/sql
how sap is different from other software ?
Q1.Write a C program which asks the user for a number between 1 to 9 and shows the number. If the user inputs a number out of the specified range, the program should show an error and prompt the user for a valid input.
What is Console Application? & The purpose Of Console Application? with description.
As per interoperatbility programs written in one language can be used by other language. How can we restrict the features of one language (say C#) in the programmer written in another language (say VB)..for example we have some features like operator overloading which is possible C#.NET (not in VB.NET), how can we restrict that when we are using this code in VB.NET.
Q2. A memory location has physical address D5687h. Compute: a. The offset address if the segment number is D445h. b. The segment number if the offset address is B577h.
What is SOLID Principle in Programming Language?
how do i create my own exception class which will restrict IO exception?