Search

Coding Blues

Back Order Processing – Concept

An order is considered as a back order when all or part of an order quantity is not available for processing. While reasons can be many, one of the most common reason for such unavailability is an after fact commitment... Continue Reading →

Inheritance As Concept

As the name suggests, Inheritance means inheriting properties of a parent class by a child. The child class inherits – attributes and methods – of its parent class while reserving the ability to enhance itself with additional attributes and methods.... Continue Reading →

Using Infinite Loop For Testing

Scenario – A program has to be run in background or a routine is called when an inbound idoc is getting processed through proxy. A normal debugger doesn’t work in such scenarios. An easy solution to directly hit the code... Continue Reading →

Quick Code To Send Email – Using Function Module

The best way to send email in SAP is using CL_BCS but it’s a little cumbersome code and unless an attachment – any file or XL – is required, using a function module SO_NEW_DOCUMENT_SEND_API1 is a quick smart way to... Continue Reading →

Class And Methods For Modularization

Subroutines are obsolete. It might come to you as a surprise but it’s true. Every old school programmer loves them and understandably so. But their days are numbered and rightly so. The world writes in Object Oriented Programming and the... Continue Reading →

Constructor

Constructor is probably one of the most intricate concept in OOP which befuddles the novices. Confession; I had a difficult time understanding it. Constructor is a special type of method used to define properties of an object. For example, Jack... Continue Reading →

BRFPlus – Introduction

BRFPlus -> Advanced version of Business Rules Framework In SAP, business processes are largely driven by configuration provided by SAP and customizing both in code and config. However, at times certain business processes need rules to streamline their processes. Condition... Continue Reading →

Class, Objects And Methods

Class basically define how an object would look like and what it can do – structure and functionality. Let’s talk about a product – Toys. We have a class called ‘Toys’ and it intends to define any toy created by... Continue Reading →

Object Oriented Concepts

Everything is an object and is an object of some generic type which is nothing but the class. Their behavior is defined by different methods. These are three key words in understanding Object Oriented Programming. For example – Car is... Continue Reading →

Website Powered by WordPress.com.

Up ↑