Can we modify data in data base table using view?
Answers were Sorted based on User's Feedback
Answer / sunil kumar gautam
It is possible only in Maintenance view.
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / sivaramakrishna
Data base view: On multiple tables using inner join, using this view we can read the table data only can't maintain.
Projection view: On single table to minimize the data base interface using this view we read and maintain the data of single table
Help view: On multiple tables , specially designed for search help.Mostly we don't use help views except for search help.
Maintenance view:On multiple tables using inner join, using this view we can read the data and maintain the data also. But as sap suggested mostly we don't use this view .
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / m damodar sai
DataBase View : this view can be built over many tables
Data can be modified if the view is built over a single table.
Projection View : this view must be built over a single table
Data can be modified through this view.
Maintenance view : Data can be modified using this view , but generally these prefered when data distributed to several tables forms a logical unit for the user.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sourav
In projection view, we can modify the data in database table.
Is This Answer Correct ? | 4 Yes | 6 No |
Did u inherit any standard sap programs? what are they? and for what purpose you have done it?
how to restict the data display in smart form like if i want to display directly in secondary window.
While doing bdc exp va01 transaction sometime in the item level data shows only 4 items and other times it will show 6 line items, how will you maintain this kind of screen resolutions scenerio? : abap bdc
What is value table? : abap data dictionary
what command will use in logical database for retrieve the data (select OR retrieve OR GET)
1)you are creating the table and with EmpID, Lastname and Zender(Male and Female) only the Male and Female data only should entered other data should not entered.
What are the differences between session method and call transaction method? : abap bdc
What is the bitwise operator in the sap abap?
if data is inserted only using bdc open and bdc insert and not bdc close session funx module wat will happend? will data b inserted?
How do you delete duplicate records from internal table?
if i want to take some matter from a smart form to another smart form .then how is it possible?
what are the similarities between internal tables and structures?