How can I get the default values (like date, company code)
in module pool programming before the screen is displayed??
I dont wanna use VARIENTS...
Answers were Sorted based on User's Feedback
Answer / guest
WE CAN DEFINE IN SCREEN FIELD ATTRIBUTES BY GIVING ID IN
SET & GET PARAMETER
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / saravanan sr
Default values can be handled using the event INITIALIZATION.
Parameters: field_name = 'default value'
select-options: the field declared using select options is
similar to an internal table with 4 fields - sign, option, low
and high.
In the Initialization event, we can set field_name-low =
'default value1' and field_name-high = 'default value2' so as
to display the default values in the selection screen.
Is This Answer Correct ? | 6 Yes | 5 No |
Answer / nihar
In screen layout, -> Goto -> Secondary Window -> Dictionary/Program Fields -> Enter 'SYST' in Table name
-> Select DATUM field and place it in ur layout. If u want, u can change the text label for date also.
Save & activate.
It will contain today's date as default value.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / dattaraj.sabnis
we have to check with PSYST table and if IINIT indicator is
yes then we can default the value in PBO module.
Is This Answer Correct ? | 4 Yes | 5 No |
How do you copy the script from source alert?
how to debug a screen without using /h,break-point,debuging,stop.
i have to fetch the data based on non primary key field from a pooled or clustered table, but for pooled and clustered tables we can't create secondary index then to achieve the performance what to do?
what command will use in logical database for retrieve the data (select OR retrieve OR GET)
How to test a script?how to find versions in scripts?
What are the different methods of passing data?
In select-options, how to get the default values as current month first date and last date by default?
what is version management in sap abap.Do we have this concept in scripts also?if at all then how do you handle in scripts and what's its usage
what is code to upload cost centers through call trans. and procedure
What are the uses of interactive reporting?
what are the processing modes of a function module?
10> Can u give me one example where we should use only CALL TRANSACTION method in BDC?