Re: FLTP to Decimal conversion
Hi Shah, How can I use ROUND FM when the input is 1.2050000000000001E+01 ? Thanks,
View ArticleRe: FLTP to Decimal conversion
Hi Cavens, Yes, you are correct. We can copy the class/method. I was trying to avoid copying and if there is an alternate solution. Still I am not clear as why a FM doesn't work when called from...
View ArticleRe: HCM Process & Forms with FPM forms
Hi, Thanks for the reply arun, but then, is it possible to hide a complete configuration of type "form" based on a user action? Thanks,kavitha
View ArticleRe: cl_gui_alv_grid: hide subtotal line but use get_subtotal method
Hi, This method works on the condition that subtotal line is output. But actually, I want to hide the subtotal line. Regards,ts
View ArticleRe: Issue with Valid From Date in BAPI_EQUI_CREATE
Hi Sakshi, Ideally, the behavior encountered while creating equipments (or anything for that matter) manually(via IE01) and BAPI should be same and both should obey the configuration. As far as...
View ArticleRe: problem with call transaction method-it is not uploaded to kna1 database...
First perform some debug to be sure that the data is correctly updated and the BDC generated. Then once you are sure to call your Z-transaction with correct data, add the option MESSAGES INTO itab to...
View ArticleRe: How to compare ABAP Structures and display differences
Hi! I have a similar requirement of comparing two structures. Let me be more precise:Structure 1 : TYPE VBAPStructure 2: TYPE VBAP + some other fields Can you please provide more details on how you...
View ArticleRe: problem with call transaction method-it is not uploaded to kna1 database...
Hi, Here after call transaction statement u have to clear the BDC internal table. clear it_bdcdata[] or refresh it_bdcdata. Seems custom transaction is used in ur code to update KNA1 table.What...
View ArticleRe: cl_gui_alv_grid: hide subtotal line but use get_subtotal method
In the layout structure of your ALV of type LVC_S_LAYO, you may try setting following fields to hide relevant functions as per your needs:and then pass the layout structure while displaying the ALV...
View ArticleRe: Tax Calculations using BAPI_ACC_DOCUMENT_POST
AFAIK No, so use one of the FM mentionned in the answers of this discussion (as well as many FM in many other threads too, use search tool) Regards,Raymond
View ArticleRe: problem with call transaction method-it is not uploaded to kna1 database...
Hi Krishh kri, Small change ITAB[] instead of ITAB then are you trying to upload data through transaction? then what is this ZTKNA1 . TYPES: BEGIN OF LINE_TYPE, KUNNR TYPE KUNNR,...
View ArticleRe: Std Badi implementation got deactivated in Upgrade
HI, Please check transaction SPAU_ENH, may be usefull. see link SPAU_ENH Adjustments during SAP Upgrade Regards,Mordhwaj
View ArticleRe: Field - Symbol - Abap HR
Hi Barnabas, I have written a program that will take the fill a table with pernr, date type and date taking values from pa0041. You can modify the program to suit your need. REPORT ZTEST_HR.tables...
View ArticleRe: Formatting of body of email in SOST
Hi Rodolfo, PFA screenshot of the mail in sosg.Internal table has perfect formatting. Regards,Gowthami SK
View ArticleRe: Sort string of the BOM is not updated
Hi, I faced sort string not able to be updated in FM 'CSAP_BOM_ITEM_MAINTAIN' too.Later I found that it is because there is a checking inside the FM that SAP will only make changes if the field is not...
View ArticleRe: TSV_TNEW_PAGE_ALLOC_FAILED: how to split internal table?
Hi Dennis, The ABAPers can use the PACKAGE size statement in the SELECT statment. DATA: l_psize TYPE i VALUE 10000. Select .... from Table ....into inttable PACKAGE SIZE l_psize WHERE condition. Maybe...
View ArticleRe: Issue with BAPI_OBJCL_GETDETAIL
Hello all, Acheived it by debugging the BAPI and taking only 2 FMs which was present in the BAPI for this use.Its working now. Thankyou all. Regards,Jacob
View ArticleRe: Dynamically enable/disable row selection in CL_GUI_ALV_GRID
Hiido the following, lx_layout TYPE lvc_s_layo,lx_layout-sel_mode = 'A'. "Select box No need to go for the check boxas lx_layout -sel_mode =...
View ArticleRe: TSV_TNEW_PAGE_ALLOC_FAILED: how to split internal table?
Hi Dennis, The developer should use the PACKAGE SIZE addition to the SELECT statement in order to avoid the internal table from growing too big i.e. growing more than the space allowed by the system...
View Article