mkotla

mkotla

77 Articles Published

Articles by mkotla

Page 5 of 8

Adding items to table using function in SAP

mkotla
mkotla
Updated on 14-Feb-2020 229 Views

Try replacing below statement with other mentioned −IRfcStructure articol = repo.GetStructureMetadata("Z_ITEMS") as IRfcStructure;You need to replace this by −

Read More

Entering a condition to perform SELECT in an existing report in SAP system

mkotla
mkotla
Updated on 14-Feb-2020 132 Views

You have made one of the most common mistakes. In ABAP almost at all the places be careful with SPACE. You need to have a space in method calls so just have a space before and after the brackets as below −SELECT SINGLE * FROM EKPO WHERE EBELN = GT_MSEG-EBELN AND EBELP = GT_MSEG-EBELP AND NOT ( F1 = 'value' AND F2 = '0' )

Read More

Benefits of Transaction SE83- SAP reuse library

mkotla
mkotla
Updated on 13-Feb-2020 613 Views

Reuse library is basically a repository for various function and classes that can be used. One of the main benefits is that it has a number of source code examples for these functions present. These examples are quite useful as these could be used as a base code and you don’t have to start from scratch. I don’t think that it is used for documentation of internal functions, although it varies from user to user and can be used for keeping the documentation.There are no regular updates scheduled with various releases.Menu Path for transaction SE83 −SAP Menu→Tools→ABAP Workbench→Overview→Reuse LibraryTransaction Description: ...

Read More

Fetch unique records from table in SAP ABAP

mkotla
mkotla
Updated on 13-Feb-2020 1K+ Views

As you said you are working in ABAP and SQL, so I would expect that you would be using OpenSQL for your SQL activities.You can get the unique records just by using a DISTINCT operator.SELECT DISTINCT Name from where

Read More

How can we return to windows command shell from MySQL command line tool?

mkotla
mkotla
Updated on 11-Feb-2020 515 Views

The EXIT or QUIT commands take you returned to windows from MySQL command line tool.mysql> EXITORmysql> QUIT

Read More

How can we write MySQL query for inner joins with the help of Comma operator?

mkotla
mkotla
Updated on 07-Feb-2020 218 Views

Writing inner joins with the help of comma operator is the most basic way to combine two tables. As we know that we can also write inner join by using keyword INNER JOIN or synonyms like JOIN. To form an inner join we need to specify a particular condition which is known as join-predicate and while writing inner joins using the comma operator, we use WHERE clause, the only way, to specify the join condition. To understand it, we are taking the example of two tables named tbl_1 and tbl_2 which are having following data:mysql> Select * from tbl_1; +----+--------+ ...

Read More

Underline text with CSS

mkotla
mkotla
Updated on 31-Jan-2020 1K+ Views

Use the text-decoration property to underline text with CSS. You can try to run the following code to underline text:                            India          

Read More

Set the Background Image Position with CSS

mkotla
mkotla
Updated on 30-Jan-2020 594 Views

To set the background image position, use the background-position property. You can try to run the following code to learn how to work with the background-position property:ExampleIt sets the background image position 80 pixels away from the left side:                    body {             background-image: url("/css/images/css.jpg");             background-position:80px;          }                     Tutorials point    

Read More

How to set font size using CSS Measurement Unit vmin?

mkotla
mkotla
Updated on 30-Jan-2020 234 Views

To set font size with CSS Measurement Unit vmin, try to run the following code:                            This div has relative positioning.          

Read More

How to define a measurement in screen pixels with CSS?

mkotla
mkotla
Updated on 30-Jan-2020 212 Views

To define a measurement in screen pixels with CSS, use the px unit.Let us see an example:                            This div has relative positioning.          

Read More
Showing 41–50 of 77 articles
« Prev 1 3 4 5 6 7 8 Next »
Advertisements