‎2007 Dec 28 7:19 AM
1.
A job is schedulded in 3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?
2.
What is F11 in BDC ? and wht is the last in BDC code?
3.
Protocal used to commincate Webgate and ApplicationGate.
4.
Mandatory syntax in PBO and PAI in table control.
5.
You will need a report that will be schedulded.It should retrieve the manager list from orgunit and send the output to thir inbox.
What will be the efficint way to do that ?
Rgds,
Venkonk.
‎2007 Dec 28 8:11 AM
Hi
The answers are asl follows .
1.
A job is schedulded in 3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?
I think it won't roll back
2.
What is F11 in BDC ? and wht is the last in BDC code?
3.
Protocal used to commincate Webgate and ApplicationGate.
ITS ( Internet Transaction Server )
4.
Mandatory syntax in PBO and PAI in table control.
loop at itab WITH CONTROL TABLE_CONTROL.
endloop
the above statements in PBO
and in pai .
loop at itab.
endloop.
5.
You will need a report that will be schedulded.It should retrieve the manager list from orgunit and send the output to thir inbox.
What will be the efficint way to do that ?
Use workflow or call a fucntion module to send a mail in ur inbox.
Please reward if useful.
‎2007 Dec 28 8:11 AM
Hi
The answers are asl follows .
1.
A job is schedulded in 3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?
I think it won't roll back
2.
What is F11 in BDC ? and wht is the last in BDC code?
3.
Protocal used to commincate Webgate and ApplicationGate.
ITS ( Internet Transaction Server )
4.
Mandatory syntax in PBO and PAI in table control.
loop at itab WITH CONTROL TABLE_CONTROL.
endloop
the above statements in PBO
and in pai .
loop at itab.
endloop.
5.
You will need a report that will be schedulded.It should retrieve the manager list from orgunit and send the output to thir inbox.
What will be the efficint way to do that ?
Use workflow or call a fucntion module to send a mail in ur inbox.
Please reward if useful.
‎2007 Dec 28 8:15 AM
>>3.
Protocal used to commincate Webgate and ApplicationGate.
ITS ( Internet Transaction Server )
Wgate and Agate of the ITS is communicated thru which protocol? Hopw it wud be TCP/IP.
‎2007 Dec 28 8:39 AM
Hi,
2.
What is F11 in BDC ? and wht is the last in BDC code?
Ans) This sample record would execute the save function. It uses the function key assignment of save, which is F11. A function key number must be prefixed with the / (slash) character:
The command field is identified by a special name in batch input, BDC_OKCODE. This name is constant and always identifies the command field.
Example:
BDCDATA-FNAM = 'BDC_OKCODE'.
BDCDATA-FVAL = '/11'.
++++++++++++++++++++
A job is schedulded in 3 steps.All 3 steps needed to finish the task.If step 2 fails,will step1 roll back and step 3 does not execute.?
We have parameter in Job_submit function module you set that param : EXTPGM_WAIT_FOR_TERMINATION ,so that it will wait for some time.so you have to set time params also.
depending on the task you have to set 3 deoendent tasks while creating bk job.
Regds
Sivaparvathi
Please reward points if helpful..