List of SAP SRM Transaction Codes

Here are some commonly used Transaction Codes (Tcodes) in SAP Supplier Relationship Management (SRM): List of SAP SRM Transaction Codes BBPGETVD: Download the Vendor DataBBPGETVD2: Download Vendor DataBBPGETVD3: Download Vendor DataBBPGETVD4: Download Vendor DataBBPGETVD5: Download Vendor DataBBPGETVD6: Download Vendor DataBBPGETVD7: Download Vendor DataBBPGETVD8: Download Vendor DataBBPGETVD9: Download Vendor DataBBPGETVD10: Download Vendor DataBBPGETVD11: Download Vendor DataBBPGETVD12: … Read more

BADI in Shopping Cart related Enhancement ( SRM)

In SAP SRM, the Shopping Cart is a fundamental component that enables users to create purchase requisitions for goods or services. BAdIs are widely used to enhance and customize the standard functionality of the Shopping Cart without modifying the core SAP source code. BAdIs provide a way to insert custom logic, validations, or additional functionalities … Read more

BAPI_SALESORDER_CHANGE Sample program

BAPI_SALESORDER_CHANGE Sample program. Here are the details: Below is a sample program using BAPI_SALESORDER_CHANGE in SAP to modify sales orders. Please note that the code provided is a simplified example and may require modification based on your specific requirements. REPORT Z_SALESORDER_CHANGE. * Include necessary function modules INCLUDE <BAPI_INCLUDE>. DATA: lv_order_number TYPE VBELN,       … Read more

SAP SD Certification Questions and Answers

Below are the latest Questions and Answers list for SAP SD Certification. Question: Which statements concerning goods issue are true? A Goods issue reduces requirements in materials planning B Goods issue posts value changes to the stock account in inventory accounting C Goods issue posts value changes to the stock account in asset accounting D … Read more

Logical Expression syntax in ABAP

In ABAP (Advanced Business Application Programming), logical expressions are used for conditions and control structures. Here is the Logical Expression syntax in ABAP. CO Contains Only: True, if operand1 only contains characters from operand2. Upper/lower case and trailing blanks are taken into account for both operands. If operand2 is of type string and is initial, … Read more

How to compare two strings in ABAP

In ABAP, you can compare two strings using various comparison operators and functions. Here are a few ways How to compare two strings in ABAP? 1. CO (Contains Only): c1 contains only characters in the string c2. The comparison takes into account the full length of c1,including blanks at the end.If the result of the … Read more

Ultimate SAP Course available on Net

Still struggling to learn SAP? If you want to obtain SAP certification easily, I’ve got good news …“ Announcing: Former Siemens SAP Consultant Reveals The Goldmine Of SAP Materials & Courses Previously Only Available To SAP Insiders … ” Ultimate SAP Course : Certification Material Only in $47 Be among the rare few to own … Read more

What is Unicode in SAP?

Since Every Character store in sap take one byte to store.In Unicode every character is store in two byte.So it now support basically all language now. But In ealier versions when character storage is 1 byte only .This causes problems if you want to access these database systems using a different character set, or if … Read more

Program Buffer and the Roll Area

Programs are buffered on the application server in a program buffer. When a user makes a request to run a program, a search is done in the program buffer for it. If it is found, and if it has not been modified in the database, the buffered copy is used. If not, or if the … Read more

Hiding ABAP Code and making ABAP Code non editable

Making Code Non Editable Steps: Goto se38for your Program. Choose Attributes radio Button and click Change.In this screen check the check box Editor Lock and save it.Now this locked for editing by any other use. Hiding a Code Write a Simple program:Program to Hide ABAP’s Source Code and Protects itreport zsam_hide no standard page heading. … Read more