Working on a Cost Center Report in SAP

varun
Updated on 13-Feb-2020 11:39:03

492 Views

I would say even if you are a newbie, it will not be a tough one to generate such report. You have requested for any details about how work orders are related to cost center.All the orders whether they are internal or work, they are linked to a specific cost center. So overall each order will have a cost center and in order to find to which cost center it is associated, you can refer to following tables: COEP or COEJ of Controlling. You can find details about cost center, order, and others over a period of time or year.COEP ... Read More

Understand More About Roles in SAP System

varma
Updated on 13-Feb-2020 11:35:12

228 Views

On a high level, both the tables are almost same as both of them deal with storing details about profiles which are generated for a role.Let’s talk about AGR_PROF first. It stores the text of the generated profile which is dependent on language. It stores profile Id as well. So, it results in having only at max one possible combination of a profile and language which is referred to a master profile.To view further details about this Table “AGR_PROF” and the data within it using the relevant SAP transactions such as SE11, SE80 or SE16. Below shows SE11 T-Code −Now ... Read More

Analogous to IN Operator of SQL in SAP

vanithasree
Updated on 13-Feb-2020 11:31:25

159 Views

You can get similar things done in many ways. You can use an internal table usage or a range table.Let me showcase an example with an internal table for your reference.SELECT Id, Name, DOB FROM sEmployee INTO CORRESPONDING FIELDS OF TABLE result_tab FOR ALL ENTRIES IN internal_tab // internal_tab is an internal table defined with columns WHERE Id = internal_tab -Id AND Name = internal_tab –Name

SAP Password Reset Issues Using BAPI

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

402 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");

Assign Image Source Dynamically in XML View in Fiori App in SAP UI5

seetha
Updated on 13-Feb-2020 11:30:20

974 Views

Yes, it can be done but you need to compute the dynamic field.Firstly, you need to mention that the binding is complex so change the flag −“data-sap-ui-bindingSyntax="complex" ”. Then have a helper function which can be used for formatting.fnImageFmtr: function(value) {    var imgSrc = "Image" + value;    return imgSrc; }And lastly, use the function in the image tag in the XML view.

Remove All Attributes of an HTML Element Using jQuery

Alex Onsman
Updated on 13-Feb-2020 11:28:58

1K+ Views

To remove all the attributes of an HTML element, the removeAttr() method won’t work. For this, create an array and use removeAllAttrs() to remove all the attributes of a specific HTML element. For example, remove the image by removing the attributes of the img element.You can try to run the following code to learn how to remove all the attributes from an element. We’re removing the img element attribute −ExampleLive Demo           Selector Example                      $(document).ready(function() {             $(".remove-attr").click(function(){     ... Read More

Remove All Style Attributes Using jQuery

Alex Onsman
Updated on 13-Feb-2020 11:19:08

8K+ Views

To remove an attribute from each tag using jQuery, use the removeAttr() method and use the Universal Selector. Let us see how to use the method to remove all style attribute. Use the universal selector also to select all the elements.You can try to run the following code to learn how to remove all style attributes using jQuery −ExampleLive Demo $(document).ready(function(){   $("button").click(function(){     $("h1").removeAttr("style");   }); }); This is heading This is demo text. This is heading This is demo text. Remove Click above to remove style attribute from all h1 elements.

Specified Cast Not Valid for DateTime While Using SAP RFC

Prabhas
Updated on 13-Feb-2020 11:16:35

225 Views

I think you better use the ParseExact method available over DateTime type. It should work.Please find the code snippet for reference −string dateFormat = "dd.mm.yyyy hh:mm:tt"; DateTime finalDate = DateTime.ParseExact(argumentDate, dateFormat, CultureInfo.InvariantCulture);

Remove Attribute from Each Tag Using jQuery

Alex Onsman
Updated on 13-Feb-2020 11:04:42

345 Views

To remove an attribute from each tag using jQuery, use the removeAttr() method. You can try to run the following code to learn how to remove attribute −ExampleLive Demo $(document).ready(function(){   $("button").click(function(){     $("h1").removeAttr("style");   }); }); This is heading This is demo text. This is heading This is demo text. Remove Click above to remove style attribute from all h1 elements.

Creating a Radio Button Group in ABAP Screen Painter

Akshaya Akki
Updated on 13-Feb-2020 10:55:29

6K+ Views

Screen Painter is known as an ABAP editor tool that can be used to create a screen. Screen Painter is used to create and manage all the elements in a screen.Transaction Code SE51There are various ways you can insert a Radio button to ABAP Screen Painter. First is by clicking on the radio button symbol on the left, then click on the canvas on the right to insert a radio button. You can repeat this for each button.Another option is that you open the dictionary window (blue rectangle with a smaller red rectangle inside). Type the variable name you used ... Read More

Advertisements