HiHow can i run one routine from another. For example:I created new routine VOFM -> data transfer -> deliveries -> new one: 904from inside this newly created routine i must take values from another routine (like 101). How can I do it?ThanksLechoo
Sometimes your client needs to add new functionality like add a unique mobile phone number to the BP data. You can do it like that:
Create new FM
FUNCTION zisu_update_telephone.
*"-------------------------------------------------------------------...
Hi,I have 2 questions:how can i create batch using BAPI_BATCH_SAVE_REPLICA FM - from my point of view, problem is that batch number paramaeter is obligatory. so ho can i use it to create new batch?i trying to add classification data, but classificati...
SELECT STPO~STLTY
STPO~STLNR
STPO~STLKN
STPO~STPOZ
STPO~IDNRK
STPO~MEINS FROM MARA AS MARA
INNER JOIN MAST AS MAST ON MARA~MATNR = MAST~MATNR
INNER JOIN STPO AS STPO ON MAST~STLNR = STPO~STLNR
INTO TABLE GT_...
see The ABAPVARCHARMODE: Blanks and Empty Strings in ABAP and SQLScript - Brandeis Consultingdata: lv_kunnr_tmp type string.
DATA(cnt_kunnr) = strlen( kna1-kunnr ).
IF NOT cnt_kunnr = 10.
lv_kunnr_tmp = |{ kna1-kunnr WIDTH = 1...