what is the structure of itab of screen?
Answers were Sorted based on User's Feedback
Answer / aruna
NAME,GROUP1,GROUP2,GROUP3,GROUP4
REQUIRED,INPUT,OUTPUT,INTENSIFIED,INVISIBLE
LENGTH,ACTIVE are the components in screen
you can declare internal table with scrren structure in itab
DATA: BEGIN OF it_screen OCCURS 0.
include structure screen.
DATA: END OF it_screen.
it_screen-active = 0
append screen.
This is how you can use the components in the itab screen.
Is This Answer Correct ? | 1 Yes | 0 No |
Difference between table control and step loop? Plz answer me its urgent!
what is the difference between DATA ELEMENT and DOMAIN? please give the fully detailed
6)what are the table controls in BDC ?
What is a data dictionary? : sap abap data dictionary
18) Difeerence between various BDC method.Which is the best one?
What are the different software packets available in the market? : sap abap hr
By default SAP provides locking mechanism if db is being used by a user ,then what is the use of writing enque method in your code?
Define external layer? : abap data dictionary
If a table that is to be extended contains a long field, we cannot use append structures why? : abap data dictionary
What are the different methods of bdc? : abap bdc
What are the input parameters to be passed to the BAPI 'BAPI_QUOTATION_CREATEFROMDATA'
B -Credit Note report Selection Screen Ranges: Creation date Sales Org Sold to Party Selection condition: Document Category – VBTYP should be ‘O’ Table to be used: VBRK, VBRP,VBPA,ADRC List the CR order types or credit billing type by customer number (or selected customer) and displays the: - Billing Document date (FKDAT) - Customer number (KUNRG) - Name of the reseller (on top of the SAP No) (NAME1) - Billing document number,(VBELN) - order reason (AUGRU_AUFT) - Amount (NETWR) - Currency (WAERK) Group Currency wise, billing type wise sum of Net value. When user double click on field ‘Billing Document #’ , display the document in VF03 Do this using OO ABAP.