2006 Sep 12 2:39 PM
Hi all,
I have a couple of Questions Please answer
what is the basic principle inwhich lsmw was developed
Can we transfer standard text between diffferentclients
Difference between Session and call transaction
In domanin we have lower case key. If we check it and enter values the values are not entering in lower case.
Labels canot be printed in smart forms can we print in scripts
Routines cannot be written in smart forms we can print in scripts? what are routines.
which view can be used in Select Statements
How to add fiends into standard tables apart from Append structures
I cam to know that in selection screen if we enter value in one field the fields can be filled by its corresponding values . Eg: If we enter material no field then the correspondig values will
be entered into other select options Plant and stotrage location.
If can to know that it is possible through fuction module f4in_table_value_equest. I tried this but iam unable to get the result.
I saw in search help docmentation that through import and export parameter it is possible.
when to use upload function module is used and please give example
if you have 20000 thosand records and if there is a problem in 11000 th record in a standard reprot how to rectify it
Debugging in smart forms
what is the use of log data changing check box in technical settings screen of se11
how to find base table name for fields of a screen usnig sql trace (st05)
what is the difference between database view and maintenance view
Please clear my doubt
Thanks in advance
Ranjith
2006 Sep 12 2:54 PM
> what is the basic principle inwhich lsmw was
> developed
>
> Can we transfer standard text between
> diffferentclients
<b>Run the program RSTXTRAN.</b>
> Difference between Session and call transaction
<b>http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm</b>
> In domanin we have lower case key. If we check it and
> enter values the values are not entering in lower
> case.
<b>It cannot be that way.</b>
> Labels canot be printed in smart forms can we print
> in scripts
??
> Routines cannot be written in smart forms we can
> print in scripts? what are routines.
<b>Routines are subroutines in which we can write our own code without disturbing the driver program.</b>
> which view can be used in Select Statements
<b>Database view.</b>
> How to add fiends into standard tables apart from
> Append structures
>
> I cam to know that in selection screen if we enter
> value in one field the fields can be filled by its
> corresponding values . Eg: If we enter material no
> field then the correspondig values will
> be entered into other select options Plant and
> stotrage location.
<b>Use the fm dynp_values_update</b>
> If can to know that it is possible through fuction
> module f4in_table_value_equest. I tried this but iam
> unable to get the result.
> I saw in search help docmentation that through import
> and export parameter it is possible.
>
> when to use upload function module is used and please
> give example
>
> if you have 20000 thosand records and if there is a
> problem in 11000 th record in a standard reprot how
> to rectify it
>
> Debugging in smart forms
<b>Write the statement break-point <your user id> in the command lines.</b>
> what is the use of log data changing check box in
> technical settings screen of se11
<b>Log data changes
The logging flag defines whether changes to the data records of a table should be logged. If logging is activated, every change (with UPDATE, DELETE) to an existing data record by a user or an application program is recorded in a log table in the database.
Note: Activating logging slows down accesses that change the table. First of all, a record must be written in the log table for each change. Secondly, many users access this log table in parallel. This could cause lock situations even though the users are working with different application tables.
Dependencies
Logging only takes place if parameter rec/client in the system profile is set correctly. Setting the flag on its own does not cause the table changes to be logged.
The existing logs can be displayed with Transaction Table history (SCU3).</b>
> how to find base table name for fields of a screen
> usnig sql trace (st05)
<b>Go to st05.
Start trace.
Run the required program.
Deactivate the trace.</b>
> what is the difference between database view and
> maintenance view
>
>
> Please clear my doubt
> Thanks in advance
>
> Ranjith
Hi all,
I have a couple of Questions Please answer
what is the basic principle inwhich lsmw was developed
Can we transfer standard text between diffferentclients
Difference between Session and call transaction
In domanin we have lower case key. If we check it and enter values the values are not entering in lower case.
Labels canot be printed in smart forms can we print in scripts
Routines cannot be written in smart forms we can print in scripts? what are routines.
which view can be used in Select Statements
How to add fiends into standard tables apart from Append structures
I cam to know that in selection screen if we enter value in one field the fields can be filled by its corresponding values . Eg: If we enter material no field then the correspondig values will
be entered into other select options Plant and stotrage location.
If can to know that it is possible through fuction module f4in_table_value_equest. I tried this but iam unable to get the result.
I saw in search help docmentation that through import and export parameter it is possible.
when to use upload function module is used and please give example
if you have 20000 thosand records and if there is a problem in 11000 th record in a standard reprot how to rectify it
Debugging in smart forms
what is the use of log data changing check box in technical settings screen of se11
how to find base table name for fields of a screen usnig sql trace (st05)
what is the difference between database view and maintenance view
Please clear my doubt
Thanks in advance
Ranjith
2006 Sep 12 2:43 PM
hi ranjith,
i am sending answers of some of the questions i know.
1 . Difference between Session and call transaction
Session method.
1) synchronous processing.
2) can tranfer large amount of data.
3) processing is slower.
4) error log is created
5) data is not updated until session is processed.
Call transaction.
1) asynchronous processing
2) can transfer small amount of data
3) processing is faster.
4) errors need to be handled explicitly
5) data is updated automatically
Session method is to populate the data by filling BDC structure and keep as session to process from SM37 to post in appropriate Transaction.
Call transaction method is to post the data directly into the Transaction from an Executable program.
Session method SAP defined Function modules.
U can see more help on the differences in the SAP help.
2.be entered into other select options Plant and stotrage location.
If can to know that it is possible through fuction module f4in_table_value_equest. I tried this but iam unable to get the result.
I saw in search help docmentation that through import and export parameter it is possible.
this is possibel. by ussing dynamic f4 help.
after that use FM - dynp_values_update
sorry this much only i know correctly.
if hlped pls rwrd points.
rgds
anver
2006 Sep 12 2:57 PM
Hai Anversha
Thanks for u r answer
I know that session is Synchronous and Call Transaction is asynchronous but Exmple for synchronous and Asynchronous
Can you please send me the Examples
Ranjith
2006 Sep 12 2:54 PM
> what is the basic principle inwhich lsmw was
> developed
>
> Can we transfer standard text between
> diffferentclients
<b>Run the program RSTXTRAN.</b>
> Difference between Session and call transaction
<b>http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm</b>
> In domanin we have lower case key. If we check it and
> enter values the values are not entering in lower
> case.
<b>It cannot be that way.</b>
> Labels canot be printed in smart forms can we print
> in scripts
??
> Routines cannot be written in smart forms we can
> print in scripts? what are routines.
<b>Routines are subroutines in which we can write our own code without disturbing the driver program.</b>
> which view can be used in Select Statements
<b>Database view.</b>
> How to add fiends into standard tables apart from
> Append structures
>
> I cam to know that in selection screen if we enter
> value in one field the fields can be filled by its
> corresponding values . Eg: If we enter material no
> field then the correspondig values will
> be entered into other select options Plant and
> stotrage location.
<b>Use the fm dynp_values_update</b>
> If can to know that it is possible through fuction
> module f4in_table_value_equest. I tried this but iam
> unable to get the result.
> I saw in search help docmentation that through import
> and export parameter it is possible.
>
> when to use upload function module is used and please
> give example
>
> if you have 20000 thosand records and if there is a
> problem in 11000 th record in a standard reprot how
> to rectify it
>
> Debugging in smart forms
<b>Write the statement break-point <your user id> in the command lines.</b>
> what is the use of log data changing check box in
> technical settings screen of se11
<b>Log data changes
The logging flag defines whether changes to the data records of a table should be logged. If logging is activated, every change (with UPDATE, DELETE) to an existing data record by a user or an application program is recorded in a log table in the database.
Note: Activating logging slows down accesses that change the table. First of all, a record must be written in the log table for each change. Secondly, many users access this log table in parallel. This could cause lock situations even though the users are working with different application tables.
Dependencies
Logging only takes place if parameter rec/client in the system profile is set correctly. Setting the flag on its own does not cause the table changes to be logged.
The existing logs can be displayed with Transaction Table history (SCU3).</b>
> how to find base table name for fields of a screen
> usnig sql trace (st05)
<b>Go to st05.
Start trace.
Run the required program.
Deactivate the trace.</b>
> what is the difference between database view and
> maintenance view
>
>
> Please clear my doubt
> Thanks in advance
>
> Ranjith