Announcement:
wanna exchange links? contact me at sapchatroom@gmail.com.
Posted by
Admin at
Reply from sri_ponappalli on Jul 5 at 7:20 AM Hi , I have to create a invoice. using the bapi : BAPI_BILLINGDOC_CREATEFROMDATA my contract number has 3 items ,but my bapi is adding one item to invoive. If i go and see in va43 tcode, i am unable to see the other 2 items in contract status overview . Does this means my bapi is working fine? Please help me. Thanks in advance.
| | | ---------------Original Message--------------- From: SIDDHARTHA ASAM Sent: Thursday, July 05, 2012 5:00 AM Subject: Conversion of Quantity to Text in ABAP Fkimg Make P_WA_EXDATA is character variable and pass the heading into that. Fill the amount in other character variable concatenate that variable while passing it into excel table. Before you do that conctanate '="' LV_AMOUNT '"' into lv_amount. IF you do that you cannot loose decimals in Excel. See below code DATA: lv_amont(20) type c. LV_AMOUNT = p_wa_exdata-fkimg. CONDENSE LV_AMOUNT. CONCATENATE '="' LV_AMOUNT '"' into LV_AMOUNT. While passing data into excel use LV_AMOUNT instead of p_wa_exdata-fkimg. | | Reply to this email to post your response. __.____._ | In the Spotlight Become a blogger at Toolbox.com and share your expertise with the community. Start today. _.____.__ |