We can add material storage location plant wise using third party app or web. BAPI names : BAPI_MATERIAL_MAINTAINDATA_RT Import parameters: HEADDATA: Material Tables: STORAGELOCATIONDATA: Material: Plant: STGE_LOC: STORAGELOCATIONDATAX: Material: Plant: STGE_LOC: use below code after completing steps. CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
Important T-Code
- Get link
- X
- Other Apps
|
T-Code |
Description |
Module |
|
Change Process Order |
||
|
Print Process Order |
||
|
Create Process Order |
||
|
Display Process Order |
||
|
Mass processing of orders |
||
|
Order Types Process Order |
||
|
Post-Processing Orders |
||
|
Backorder Processing |
||
|
Order Processing Profile |
||
|
Order Processing Profile |
||
|
Edit Post-Processing Order |
||
|
Edit Post-Processing Order |
||
|
Edit Post-Processing Order |
||
|
Process Payment Order Lot |
||
|
Postprocess Payment Order |
||
|
Mass Processing: Process Orders |
||
|
Cancel Process Order Confirmation |
||
|
PP-PI: Process Order Analysis |
||
|
Display Post-Processing Order |
||
|
Process Order: Archiving |
||
|
Collective Process Order Release |
||
|
Single Process Order Confirmation |
- Get link
- X
- Other Apps
Popular posts from this blog
New commodity code create in SAP S/4 Hana
Commodity codes are internationally recognized reference numbers. A code describes a specific product when importing or exporting goods. You will use this code on any customs declarations and can find them in the Trade Tariff tool. Before S/4 Hana we can create commodity code by using GUI but from S/4 Hana need to use fiori interface to create commodity code. Let's explore it. T-Code: /UI2/FLP Launchpad is opening and then select Manage commodity codes Tile. After that need to provide No. Scheme contend and click Go button and then need to click add button. Give commodity code and Description with valid from date to valid To date. After that press save button. That's it, your commodity code is created and now need to assign it against material number. Check /SAPSLL/CLSNR table for commodity code added or not. Check MARC table stawn field to confirm material level assigned or not.
Convert First character to Upper case in SAP ABAP
In SAP sometime we need to convert string as first letter in capital format and then start with small letter word wise. For that case we need to use Function module. In my profession i did so many times. Give here example, hope it will help you to solve the issues. FM: 'FI_CONVERT_FIRSTCHARS_TOUPPER' Data : string type char255 , OUT_STR TYPE CHAR255 . string = ' SMALL CHANGE' . CALL FUNCTION 'FI_CONVERT_FIRSTCHARS_TOUPPER' EXPORTING INPUT_STRING = 'string' * SEPARATORS = ' -.,;:' IMPORTING OUTPUT_STRING = OUT_STR . Output: Small Change...
Decimal remove in a smartforms report
In smart forms this is a common problem in our daily task.Here I am providing you my own experience.I am facing this problem and solve using below step. First of all we remove decimal value for QUAN data type. first one is simple, just using below format. &work_area-field_name(C,0)& Hope this will work. Another way is we need to define variable in Smartforms>Global Definitions. Give a variable name, type and associated type like: XYZ TYPE P decimals 0. Also need to create a program logic following steps :right click > Create>Flow logic>Program logic. In program logic page we provide our logic and assign variable in our required fields. Clear: variable. XYZ = wa_items-total_val. Also need to assign Input & output parameters in General attributes. Input Parameter ...
Comments
Post a Comment