Hi Everyone,
I have created a version for project using tcode CN72. Right now I am trying to fetch the description for the version. I have found the description in VKOMPF table. I have the version key and project definition number. But in the table...
Hi All,
I have created a project version using CN72(Via Batch Program). Now I want to copy the project version created back to project. i.e. I want to restore the version data in project. Is there any standard Tcode or BAPI available to do it.
Hi everyone,
I have a requirement where I need to calculate percentage of duration. I have the percentage. Number of days and number of hours separately. Any way to calculate the number days and hours , equavalent to percentage of actual duration.?
Hi Everyone,
This is a query I had for some time. I have seen the "do not translate" check box in smart forms. Even if we check it the text get's translated. Then for what reason is that check box used for. Also is there any other way to avoid the...
Hi Guys.
I have a Class method where I need to reserve a vehicle based on customer number. I used a standard FM 'VELO11_RSVN_EXECUTE' for reserving the vehicle. but now the issue is that the vehicle data overview does not have the reserved customer...
I think you need to use max and group by here if I am understanding your requirement.SELECT a~<key_fields> max(a~<date>)
FROM keko
INTO TABLE @gt_keko
WHERE werks IN @s_werks
AND klvar EQ @p_klvar
AND tvers IN @s_tvers
AND feh_sta EQ 'FR'
AND...
I think BAPI would be appropriate. Because in such situation they would upload an excel with something like 1K Fax number with IDs. You need to process it and upload it. If you do BDC it will be much slower as it will do it one by one. If you use BAP...
LOOP AT gi_wtkt_sl_delete_msp INTO lwa_wtkt_sl_del.
DELETE FROM ztsd_wtkt_sl WHERE zzvbeln EQ lwa_wtkt_sl_del-zzvbeln
AND zzposnr EQ lwa_wtkt_sl_del-zzposnr.
IF sy-subrc EQ 0.
g_no_deleted = g_no_deleted + sy-dbcnt.
DELETE gi_wtkt_sl_de...
There is a logic based on which you can create this. Use WRITE to write the data and then WRITE with newline character. You can check the ABAP Documentation or WRITE for the Newline characters. This has to be done for each row so looping is needed. ...
So finally I used the standard number generation to generate the version. Then the Counter will have no use. So I skipped the whole Counter value concept. That worked for me.