Send ITAB to SAP Spool Using ABAP Method

Anil SAP Gupta
Updated on 12-Jun-2020 08:41:10

1K+ Views

Check this class: CL_RSPO_SPOOL_HANDLE as it provides an OO interface to spool.Class CL_RSPO_SPOOL_HANDLE  Short Description Spool: Spool Request Opened for WritingYou can refer this link to know more about this class:CL_RSPO_SPOOL_HANDLE 

Animate Vertical Align Property with CSS Animation

Arjun Thakur
Updated on 12-Jun-2020 08:40:54

554 Views

To implement animation on vertical-align property with CSS, you can try to run the following code −ExampleLive Demo                    img {             vertical-align: 80px;             animation: myanim 3s;          }          @keyframes myanim {             50% {                vertical-align:120px;             }          }                     CSS vertical-align property                        This is demo text. This is demo text. This is demo text. This is demo text.          

Nesting Columns in Bootstrap

Ankith Reddy
Updated on 12-Jun-2020 08:37:22

2K+ Views

To nest your content with the default grid, add a new .row and set of .col-md-* columns within an existing .col-md-* column. You can try to run the following code to learn how to implement nesting columns in Bootstrap −Example Live Demo           Bootstrap Example                                          Heading                                      Heading                This is demo text.                                        Heading                This is demo text.                                                        This is box 1.                                                          This is box 2.                                                                                          This is box 3.                                                          This is box 4.                                                                  

Adding Custom Fields to Items in SAP Transaction ME5xN

Anil SAP Gupta
Updated on 12-Jun-2020 08:31:45

1K+ Views

This can be done by following below path −T-code − SPRO → Materials Management → Purchasing → Purchase Requisition → Define Screen Layout at Document Level and there view the details on the transaction you want to customize.When you execute, there view the details on the transaction you want to customize. You need to uncheck the "Display" checkbox for your field.

Move BAPI Function Module and Business Object Between SAP Systems

SAP Expert
Updated on 12-Jun-2020 08:30:47

472 Views

This can be performed using Change and Transport system CTS. CTS can be used to move ABAP objects, Java objects in your SAP system landscape.Transport management is one of the key components in SAP system landscape and is used to perform the following activities −Defining Transport Domain Controller.Configuring the SAP system landscape.Defining the Transport Routes among systems within the system Landscape.Distributing the configurationManaging TransportTo open Transport Management System, use T-Code − STMSYou can also refer to this SAP documentation to know more about Change and Transport System −SAP Documentation- CTS

HTML DOM Address Object

Arjun Thakur
Updated on 12-Jun-2020 08:28:16

213 Views

Use the address object to represent the element. Let us see an example to create −Example Live Demo Heading Two Create address element Display    function display() {       var a = document.createElement("Address");       var node = document.createTextNode("ABC Inc, P 120, Ontario, Canada");       a.appendChild(node);       document.body.appendChild(a);    } OutputNow, click on the button to display the address −

Add Two Icons in StandardListItem in SAPUI5

SAP Expert
Updated on 12-Jun-2020 08:27:15

343 Views

Instead of using StandardListitem, you should use CustomListitem. With use of CustomListitem, you can add any kind of content.As per SAP documentation, CustomListitem has following use:This control with a content aggregation can be used to customize standard list items that SAP doesn't provide. List mode and ListItem type are applied to CustomListItems as well.Note: Even though the content aggregation allows any control, complex responsive layout controls (e.g. Table, Form) should not be aggregated as content.SAP CustomListItemnew sap.m.CustomListItem(sId?, mSettings?)Param Type Default Value DescriptionsId?String ID for the new control, generated automatically if no ID is givenmSettings? Object Initial settings for the new ... Read More

Use of Plus Sign in Front of Function Name in JavaScript

Anjana
Updated on 12-Jun-2020 08:26:41

316 Views

The +function() {} notation is primarily used to force the parser to treat whatever follows the + as an expression. This is used for functions that are invoked immediately, for example,+function() { alert("Demo!"); }();However, + before a function is one of the symbols. You can add other options also like !, -, ~, also. Parentheses can also be used as shown below −(function() { alert("Demo!"); })();You can also use it like this −(function() { alert("Demo!"); }());

CUID Format in SAP BO Server Repository

SAP Expert
Updated on 12-Jun-2020 08:23:53

660 Views

As per my understanding, CUID is a 35 characters and normally starts with A, B, C, F, K and M. To know formatting of different ID types, you can refer to this:SAP Note: 1285103: What are the different types of IDs used in the BusinessObjects Enterprise repository?CUID: CUIDs are Globally Unique Identifiers that uniquely identify an InfoObject, both within a single CMS cluster and across multiple CMS clusters. Because CUIDs are strings they are less efficient to use and slower to query for. Unlike an object’s ID, an object’s CUID stays the same when it is migrated to a new ... Read More

Difference between PX, EM, and Percent

Nishtha Thakur
Updated on 12-Jun-2020 08:22:52

614 Views

The px unit defines a measurement in screen pixels. The following is an example −div {    padding: 40px; }The em unit is a relative measurement for the height of a font in em spaces. Because an em unit is equivalent to the size of a given font, if you assign a font to 12pt, each "em" unit would be 12pt; thus, 2em would be 24pt.The following is an example −p {    letter-spacing: 4em; }The % unit defines a measurement as a percentage relative to another value, typically an enclosing element.p {    font-size: 14pt;    line-height: 80%; }

Advertisements