‎2007 Jun 27 9:36 AM
What is the maximum value for Line-Size in the Report?
How many methods are there in BDC? Which methods you know well?
What is the difference between Report and Script?
What are control commands in Scripts?
What is the use of PROTECT and ENDPROTECT?
Can we display text with color in SAP Script? If yes how can we do that?
What is the use of event AT SELECTION-SCREEN ON FIELD?
‎2007 Jun 27 9:50 AM
hi,
1.What is the maximum value for Line-Size in the Report?
1023 is the maximum line size in reporting.
2. How many methods are there in BDC? Which methods you know well?
2 methods
i. session method
its useful for back ground processing. the data for session method is present in application server. its a error log file generated. its a asynchronous processing and synchronously updates in databse tables. we can process more than one screen in a single time.
ii. call transaction method
synchronous data updations is done by this method. by using call transaction we can do foreground jobs. error log file should be explicitly genarted by user. we can process only one screen at a time.
3.What is the difference between Report and Script?
report: program developed by user to display data.
script: developed by user n mainly useful for genarting bills[purchase orders, sales order, invoice....]
4.What are control commands in Scripts?
if ........endif.
protect ......endprotect.
form............endform
5.What is the use of PROTECT and ENDPROTECT?
protect in scripts avoids page breaks. means if necessary space not there in current page then ntier data is printed in next page.
6.Can we display text with color in SAP Script? If yes how can we do that?
for this u have to design character formats n in this give color for font.
7.What is the use of event AT SELECTION-SCREEN ON FIELD?
used to trigger when user clicks on particular field in a selection screen.
if helpful reward some points.
with regards,
Suresh.A
‎2007 Jun 27 9:44 AM
HI
What is the maximum value for Line-Size in the Report? 255 Char
How many methods are there in BDC? Which methods you know well?
Session, Call transaction and direct input method.. Almost session will be commonly used one.
What is the difference between Report and Script?
Report is client independent.have selection screen, Execute directly.
Script is client dependent. Dont have selection. Need print program....
What are control commands in Scripts?
Like address ... end address, if endif, protect .. end protect..
What is the use of PROTECT and ENDPROTECT?
to protect a paragraph displaying in multiple page...(Display in single page).
Can we display text with color in SAP Script? If yes how can we do that?
i think its possible using character formats....
What is the use of event AT SELECTION-SCREEN ON FIELD?
suppose if u want to do data validation for a particular field in selection screen then this event will use.
Need ur reward points if helpdul
Regards
ravi
‎2007 Jun 27 9:48 AM
Hi,
What is the maximum value for Line-Size in the Report?
255
How many methods are there in BDC?
Call transaction and Batch Input.
What is the difference between Report and Script?
Report are executable programs where as script requrie print program to execute.
Report is client independent, script is client dependent
What is the use of PROTECT and ENDPROTECT?
If you want to fix some text which should not spilt in two pages
Can we display text with color in SAP Script? If yes how can we do that?
No, this is limitation of scripts , taken care in Smart forms
What is the use of event AT SELECTION-SCREEN ON FIELD?
If you want any validation on a particular field on selection screen then this event is used.
Regards,
Suruchi
‎2007 Jun 27 9:50 AM
hi,
1.What is the maximum value for Line-Size in the Report?
1023 is the maximum line size in reporting.
2. How many methods are there in BDC? Which methods you know well?
2 methods
i. session method
its useful for back ground processing. the data for session method is present in application server. its a error log file generated. its a asynchronous processing and synchronously updates in databse tables. we can process more than one screen in a single time.
ii. call transaction method
synchronous data updations is done by this method. by using call transaction we can do foreground jobs. error log file should be explicitly genarted by user. we can process only one screen at a time.
3.What is the difference between Report and Script?
report: program developed by user to display data.
script: developed by user n mainly useful for genarting bills[purchase orders, sales order, invoice....]
4.What are control commands in Scripts?
if ........endif.
protect ......endprotect.
form............endform
5.What is the use of PROTECT and ENDPROTECT?
protect in scripts avoids page breaks. means if necessary space not there in current page then ntier data is printed in next page.
6.Can we display text with color in SAP Script? If yes how can we do that?
for this u have to design character formats n in this give color for font.
7.What is the use of event AT SELECTION-SCREEN ON FIELD?
used to trigger when user clicks on particular field in a selection screen.
if helpful reward some points.
with regards,
Suresh.A
‎2007 Jun 27 9:55 AM
HI.
What is the maximum value for Line-Size in the Report?
255
How many methods are there in BDC?
Call transaction ,Batch Input and direct input.
What is the difference between Report and Script?
report:client independent,
sript:client dependent.
What is the use of PROTECT and ENDPROTECT?
If you want to fix some text which should not spilt in two pages
5.What is the use of PROTECT and ENDPROTECT?
protect in scripts avoids page breaks. means if necessary space not there in current page then ntier data is printed in next page.
What is the use of event AT SELECTION-SCREEN ON FIELD?
If you want any validation on a particular field on selection screen then this event is used
Reward all helpfull answers.
Regards.
Jay
‎2007 Jun 27 10:03 AM
1.What is the maximum value for Line-Size in the Report?
Maximum 255
2.How many methods are there in BDC? Which methods you know well?
Two Methods in BDC 1. Call Transaction
2. Session Method
Both the methods i know very well.
3.What is the difference between Report and Script?
Report is nothing but collection of data from one table to another table OR abap/4 pgm whose output is list.
Script is word processing tool of a n SAP OR Another way to display records in window.
4.What are control commands in Scripts?
Control command are used to modify text output. Use format key /: in the format column.
/: INCLUDE
/: DEFINE
/: ADDRESS....ENDADDRESS
/: PROTECT.....ENDPROTECT
/: NEW-PAGE
/: IF....ENDIF
/: CASE...ENDCASE
5.What is the use of PROTECT and ENDPROTECT?
PROTECT-ENDPROTECT
Is used to avoid pagebreaks in a paragraph. The text lines to be protected are enclosed between the two commands. If there is not enough room
on the page, the PROTECT command acts as a NEW-PAGE command and inserts a page break.
/: PROTECT
:
:
/: ENDPROTECT
6.Can we display text with color in SAP Script? If yes how can we do that?
Yes we can do. But not so clear.
7.What is the use of event AT SELECTION-SCREEN ON FIELD?
This event is assigned to the selection screen fields corresponding to the report parameter or selection criterion ......on psel.
If the report starts an error dialog at this point, precisely these fields become ready for input.
Plz do not forget to reward if it is helpful.
Regards
Raghavendra.D.S