Radhakrishna has Published 93 Articles

Distinguish SAP ABAP code between clients

radhakrishna

radhakrishna

Updated on 14-Feb-2020 07:57:10

158 Views

You can use field “sy-mandt” to identify the client and then accomplish your requirement by doing something like below −IF sy-mandt = '002'. *do something for Client one ELSE. * do something for client two ENDIFThis field is included in almost all the tables which are client dependent so you ... Read More

Finding where-used list of SAP standard programs

radhakrishna

radhakrishna

Updated on 13-Feb-2020 12:48:11

708 Views

You would need to SAPRSEUB. This will enable you to use the where-used functionality of standard SAP programs and provide you with indices of the programs. Please note that this program runs for a long time and require some disk space.SAPRSEUB is a standard Executable ABAP Report available within your ... Read More

Best option for locking bulk user accounts in SAP

radhakrishna

radhakrishna

Updated on 13-Feb-2020 12:30:43

3K+ Views

As you need to do mass maintenance involving user locking and unlocking, you can opt for using SU10 transaction.You can also access this from SAP Menu by navigating to this path −Tools → Administration → User Maintenance → User mass maintenance. In SAP system, you have different transactions under User ... Read More

Changed SAP password not working while resetting using BAPI

radhakrishna

radhakrishna

Updated on 13-Feb-2020 11:30:52

226 Views

You are using the structure Password for resetting the password. It is of type “BAPIPWD” and comprises of a field which is again named as “BAPIPWD”When you need to reset the password, you need to specify the correct field name instead of password.JCO.Structure structPassword = userChangeInput.getStructure("PASSWORD"); sPassword.setValue(nPassword, "BAPIPWD");Read More

How can we import data from .txt file into MySQL table?

radhakrishna

radhakrishna

Updated on 04-Feb-2020 05:58:37

3K+ Views

It can be done with the help of LOAD DATA INFILE statement. To illustrate the concept we are having the following data, separated by tab, in ‘A.txt’ whose path is d:/A.txt −100 John  USA 10000 101 Paul  UK  12000 102 Henry NZ  11000 103 Rick  USA 17000 104 Corey USA ... Read More

Usage of white-space property in CSS

radhakrishna

radhakrishna

Updated on 31-Jan-2020 06:22:55

88 Views

The white-space property is used to control the flow and formatting of text.ExampleYou can try to run the following code to implement white-space property:                            This text has a line break and the white-space pre setting tells the browser to honor          it just like the HTML pre tag.    

Set the font style with CSS

radhakrishna

radhakrishna

Updated on 30-Jan-2020 09:22:11

200 Views

To set the font style, use the font-style property. Set the font to italic, normal and oblique.ExampleYou can try to run the following code to set the font-style to italic with CSS:                            Europe, Australia, South America are continents.          

Usage of background-repeat property in CSS

radhakrishna

radhakrishna

Updated on 30-Jan-2020 08:52:21

113 Views

The background-repeat property is used to control the repetition of an image in the background. You can use no-repeat value for the background-repeat property if you don't want to repeat an image, in this case, the image will display only once.ExampleYou can try to run the following code to learn ... Read More

Universal Selectors in CSS

radhakrishna

radhakrishna

Updated on 30-Jan-2020 07:21:53

480 Views

A selector is an HTML tag at which a style will be applied. This could be any tag like or etc.With the type selector, set for HTML tags like h1, h2, h3, p, etc:h2 {    color: #FFFF00; }Rather than selecting elements of a specific type, the universal ... Read More

How can we ignore the negative values return by MySQL DATEDIFF() function?

radhakrishna

radhakrishna

Updated on 29-Jan-2020 06:39:03

1K+ Views

As we know that DATEDIFF() function is used to get the difference in a number of days between two dates. Hence, it is quite possible that it returns negative value as well.mysql> select * from differ; +------------+-------------+ | OrderDate  | WorkingDate | +------------+-------------+ | 2017-10-22 | 2017-10-29  | | 2017-10-25 ... Read More

Advertisements