Re: function module for opening balance?
Hi, I just checked that in ides there is a field with the name lc_amount. I want this in the report. Kindly tell me where I am lacking. RegardsPurnand
View ArticleRe: function module for opening balance?
Ok fine.. Now declare it_final as; data: it_final type bapi3007_2,And then pass it to the FM. Try this and let me know if you find any complexity. Also take a screenshot of your code and upload it here...
View ArticleRe: function module for opening balance?
Hi, Sorry, cannot attach the screenshot but following is the code: report zrough.tables: bsad, bsid. data: it_bsad type STANDARD TABLE OF bsad, it_bsid type STANDARD TABLE OF bsid. data: wa_bsad...
View ArticleBAPI vs RFC
Hi all.. If we have a situation like, we have to upload data to database(here we have to options like BAPI or RFC) which one we go for? and why?which one is faster whether BAPI or RFC?
View ArticleRe: how to insert BDC session log message to ZTABLE?
Don't use BDC_OPEN_GROUP and BDC_CLOSE_GROUP and CALL SM35, but use a CALL TRANSACTION USING bdc_tabMESSAGES INTO itabstatement.Then store error/success message(s) into your ztable. Regards,Raymond
View ArticleRe: How to Exclude values from selection options
Use the IN RANGE option in the select statement. Did you use the FOR ALL ENTRIES (for I EQ records only) because there were too much values for SQL execution, if yes try to extract the Exclude records...
View ArticleRe: BAPI vs RFC
In the SAP system, BAPIs are stored as RFC-capable function modules, so your question may be perplexing Regards,Raymond
View ArticleRe: MFBF Dump
First check for OSS note at your system level like Note 94699 - Prod. order/network/proc. order: Objects w/o status object. Error can come from an error in standard, so you could find corrections,...
View ArticleBAPI_PR_CREATE - T16FS: no release code for group and strategy
Hello, When using BAPI BAPI_PR_CREATE I am getting the following error: T16FS: no release code for group and strategy bapi_pr_create. I looked table T16FS but I do not see how or what to update? Using...
View ArticleRe: BAPI vs RFC
Hi, bapi is also rfc enabled fm.....bapi stored in BOR(business object repository). when a bapi is created then it stored in API method. ... ThanksSabyasachi
View ArticleRe: Need opening and closing stock without MB5B
HI Zakir , For finding Opening MARD table will help you. But for finding Closing , I guess its not maintained in any table externally . You need to process all the intermediate transactions and...
View ArticleRe: Issue with calling a report in new session
Thanks again Sumanas, Managing the issue temporarily using the FM you've suggested. Case1 (Adopted temporarily)The problem, when the FM (progress indicator) is used in the calling program is, it is not...
View ArticleUnable to send mail through sap to internal/external mail id's
Hello Gurus, when i am trying to send mail through SAP , i am able to send mail to sap inbox along with PDF attachment, but not to internal /external mail id's. SCOT is...
View ArticleRe: internal table max,min for particular value
Hi Do like this Step 1 : Take a temporary table of same type. Step 2 :Now you move the same data to temp table. Step 3 : You have two tables now with same data. Step 4 : Sort the original table by...
View ArticleRe: "smart form formatting error in background"
Please check the log of the Failed job.
View ArticleRe: "smart form formatting error in background"
hi vamsi, how to check in sm35 whether its synchronous r asynchronous... I havent used bdc method...can u help out in this... when i checked in sm37 its showing smart forms : formatting error
View ArticleRe: User Exit for MM01 Long text
Hi KKP, U can try below EXIT n BADI. EnhancementMGA00001 Material Master (Industry): Checks and EnhancementsMGA00002 Material Master...
View ArticleRe: internal table max,min for particular value
Hi, Please check this code, sort itab by objectid ASCENDING value_new DESCENDING value_old ASCENDING. delete ADJACENTDUPLICATESFROM itab comparing objectid. Regards,Suman
View ArticleRe: re: output is not displaying in alv report
Hi Nagaraj, U have used this : append wa_fieldcat to wa_fieldcat. clear wa_fieldcat. so Fieldcatalog has been cleared here. PLease do the below code. take one Internal Table for Fieldcatalog.DATA :...
View ArticleRe: Unable to send mail through sap to internal/external mail id's
Hi, You need to maintain the Mail Host ip address from SCOT , in your outgoing mail server (contact your network team). Regards,Madhumahesh.
View Article