Development

A Comprehensive Guide to OTC Flow in SAP

November 11, 2011

Download Full Guide: Comprehensive OTC Flow Document Managing an Order-to-Cash (OTC) process can be challenging, but it’s a crucial part of any business operation. In the world of SAP, understanding how to manage this flow effectively can significantly improve your business processes. Here’s a step-by-step guide on how to navigate through Sales Order, Delivery, and Billing stages within SAP. 1. Creating a Sales Order # Essential Details: Company Code: 4700 Sales Document Type: ZOR Sales Area: 4700/10/10 Steps: ...

Evaluating Modern Testing Practices: A Comprehensive Look

November 11, 2011

Navigating Methodologies in SAP Implementation # In the evolving landscape of software development, particularly for enterprise systems like SAP, understanding the methodology driving your project is crucial. Major players like Deloitte Consulting and IBM offer proprietary frameworks like Thread Manager and Ascendantâ„¢ to guide you. Even SAP offers its Roadmap methodology through its Solution Manager platform. These frameworks are also backed by standards from established organizations like IEEE and the U. ...

[HowTo] Replace ip address using sed

June 20, 2011

Following one-liner will search for a ip address pattern in the specified file and replace it with the one provided : sed 's/[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}/**IPADDRESS-COMES-HERE**/g' /SourceFilename > /DestinationFilename

How I Built My First Website for My College

June 14, 2011

Hello everyone! Today I want to share with you the first project I ever did: the college website! This was a very old project that I did with the help of Subhash Dasyam. It was a great learning experience for me and I’m excited to tell you more about it. The Project # The college website was a simple static website that showcased the information and achievements of our college, ASTRA. ...

Disable services in Solaris 10

May 23, 2011

To disable a service, you must be root or have sudo privileges. For example, to disable the Puppet service, you would run the following command: svcadm disable network/cswpuppetd:default This will disable the Puppet service and prevent it from running. To verify that the service has been disabled, you can run the following command: svcs | grep puppet This will list all of the services that are currently running, and if the Puppet service is disabled, it will not be listed. ...

Puppet logs on solaris 10

May 19, 2011

/var/svc/log/network-cswpuppetd:default.log /var/svc/log/network-cswpuppetmasterd:default.log use tail -f <log file name>

A Practical Guide to Release Engineering - Mastering Version Control with Subversion

May 11, 2011

Subversion is more than just a tool for tracking changes in your code. It can be a cornerstone of an effective release engineering strategy, offering features that facilitate a smooth transition of code from development to production. Here, we’ll explore two techniques you can employ: utilizing revision numbers and creating tags. Most people who have dabbled in Subversion are familiar with revision numbers. Let’s say you make a commit and your code becomes “revision 1234. ...

Best Practices for Crafting an Efficient Build Script

May 9, 2011

When it comes to software development, a robust and efficient build script can be a game-changer. Whether you’re working on a Java project or any other type of application, the right build script can streamline the whole process and make life a whole lot easier for developers. Here’s a rundown of some best practices to keep in mind when you’re writing your build script: Platform Independence # Choose a programming language that is compatible across multiple platforms, especially if you’re working on a Java project. ...

Demystifying Release Engineering - A Guide to Build Scripts

May 7, 2011

When it comes to software development, one of the key steps in making sure that your code transforms into a working application is the “build process.” Every software platform, be it Unix, Windows, or something else, offers its own way to script this process. You might have heard of Unix shell scripts, Windows batch files, or make files that serve as build scripts. These scripts are essentially a checklist that the computer follows to compile your code into an executable program. ...