Advertising:
New pages
From SAP Knowledge Base
- 10:35, 4 June 2025 CRUD operations on purchase requisition in MM with Behavior Definition/Implementation I PURCHASEREQUISITIONTP (hist | edit) [19,288 bytes] Unirab (talk | contribs) (Created page with "Category:Behavior_Definitions_and_Implementations After reading this wiki entry, you should able to do operations Create and Cancel for purchase order goods receipt.<br /> <br />This is done by Entity Manipulation Language (EML) * https://learning.sap.com/learning-journeys/acquire-core-abap-skills/using-the-entity-manipulation-language_b378f225-0471-45bf-8b7a-f48d00e1bccb === Create purchase requisition with position === <syntaxhighlight line copy> DATA rap_pr_he...")
- 13:54, 3 June 2025 Create and cancel operation for goods receipt purchase order with Behavior Definition/Implementation R MATERIALDOCUMENTTP (hist | edit) [6,918 bytes] Unirab (talk | contribs) (Created page with "=== Create goods receipt for purchase order === <syntaxhighlight line copy> DATA material_doc_header TYPE TABLE FOR CREATE r_materialdocumenttp\\materialdocumentheader. DATA material_doc_items TYPE TABLE FOR CREATE r_materialdocumenttp\\materialdocumentheader\_materialdocumentitem. DATA material_doc_serials TYPE TABLE FOR CREATE r_materialdocumenttp\\MaterialDocumentItem\_SerialNumber. CONSTANTS cid_mat_doc_hdr TYPE abp_behv_cid VALUE 'CID_MAT_DOC_HDR'....")
- 13:53, 3 June 2025 Create and cancel operation for goods receipt purchase order with Behavior Definition/Implementation I MATERIALDOCUMENTTP (hist | edit) [3,150 bytes] Unirab (talk | contribs) (Created page with "=== Create goods receipt for purchase order === * CRUD_operations_to_create_goods_receipt_for_purchase_order_with_Behavior_Definition/Implementation_R_MATERIALDOCUMENTTP#Create_goods_receipt_for_purchase_order === Cancel for goods receipt for purchase order === <syntaxhighlight line copy> MODIFY ENTITIES OF I_MaterialDocumentTP ENTITY MaterialDocumentItem EXECUTE Cancel FROM VALUE #( ( MaterialDocument = keys[ 1 ]-PurchasingHi...")
- 13:12, 3 June 2025 CRUD operations on purchaseorder in MM with Behavior Definition/Implementation I PURCHASEORDERTP 2 (hist | edit) [9,855 bytes] Unirab (talk | contribs) (Created page with "Note: You can not create stock transfer orders with that. === Create Purchase Order === <syntaxhighlight line copy> DATA lt_header_data TYPE if_mm_pur_po_bil=>tt_proj_level_po_create. lt_header_data = VALUE #( ( %cid = 'CID_PURORDER_1' PurchaseOrderType = 'NB' " cl_mmpur_create_test_pos=>get_valid_purchaseordertype( ) CompanyCode = lt_result[ 1 ]-CompanyCode "'1710'...")