What is Macro
Answer / mrudila
Macro is a small programs sourcecode which we can create in
the program using DEFINE keyword,whenever we call the macro
then only it allocates memory.
In macro we can specify upto 9 placeholders which stores
the values.Eg: &1 &2 &3 &4 &5 &6 &7 &8 &9
let me explain with a simple example
Report yyy
parameters:a type i.
b type i.
data: res type i.
DEFINE hhh (here hhh is macroname)
res = &1 &2 &3 &4 &5.
write:/res.
end-of-definition.
hhh ( a + b ) (here calling macro)
in res we specified 5 place holders thats y when calling a
macro we used 5 place holders those are
1 (
2 a
3 +
4 b
5 )
this is only for eg.
in this way we can write a macro upto 9 pointers.It
shouldnt exceed 9.
Is This Answer Correct ? | 0 Yes | 1 No |
My internal table exceed the limit. then it goes to dump. how will u handle this issue?
What are the different attributes that can be assigned to a variant?
what are the two types of request available in CTS?
If a Function module is defined as RFC enabled why the parameters should be pass by value not by reference in sap abap
Can anyone done BDC/LSMW/BAPI for F-02 and F-04.If yes let me know the processs
What are the disadvantages of different types of bdc's?
if bdc session method is to be executed at some particular time without using sessions? how?
In Interactive How you see 5 to 9th sec -list?
For particular transaction you want to upload the data using any of bdc method...if the transaction contains any of pop window functionaliy and having radio button in the window..Any one of the radio button must be selected then only the next data can be inserted how will you handle this scenario in your program
can anyone tell me how to code bdc program with 2 or 3 conditions in g/l account master(fi/co) how to make logic in choosing radio button automaticaly (for balance sheet and profit loss accout in our case.)
How do you send files to the legacy systems from SAP and vice versa? How does one know that the legacy files have come on to the SAP server you are working on?
What is primary index?