Re: what is use of zsparams
Hi Nikita, As this is a 'Z' table, this means that this was created by a developer and not provided by SAP. Since this might be a part of custom requirement, we can not comment on the table. But yes,...
View ArticleRe: How to retrive the Current Month and Previous Month data from table
Hi, Please change the AND condition in this where clause to OR 'and monat eq p_monat and monat eq g_previous_month' like :and ( monat eq p_monat OR monat eq g_previous_month ) This should work as...
View ArticleRe: Function Module issue
Hi Uppa, Thax for reply Sir will u plz explain how to assigned the value in the a_table....appreciate ur help
View ArticleRe: characteristic on BAPI_CUSTOMERRETURN_CREATE
Dear Venugopal, thanks for your kind and quick reply. Unfortunately in my SAP the documentation is not available for that BAPI Alessandro
View ArticleRe: Function Module issue
Hi Happy, You shouldn't declare variables of same name in a Function Module,Here you are Declaring ITAB_TABLE as Exporting Parameter as well as Local Table, so You should change name of any one You can...
View ArticleRe: Function Module issue
HI happy, In export parameter u have declared itab_table right, that is not a internal table that is work area u have to define Itab_table in tables Tab....
View ArticleRe: Exits to populate vendor in purcahsing data tab of an item in IW32
Hi, Following BADI's are available, try implementing them WORKORDER_UPDATEIWO1_PREQ_BADIIWO1_WKCTR_CHANGE ThanksVInay
View ArticleRe: Function Module issue
Hi Happy,While building a function module you need to keep at least the following things in mind:1) Import parameters: Those variables for which values will be provided at the time of calling the...
View ArticleProb with Update BOM ?
Hi ,I'm working on BOM Update with the following BPAI's, while maintaining im getting error..., Please check my sample code... PARAMETERS : p_matnr LIKE mara-matnr, p_plant LIKE...
View ArticleRe: what is use of zsparams
Hi Nikita, I assume you are new to SAP, In SAP all the Tables Classes and Other Objects which start with a Letter A-X Belongs to SAP, and Y-Z is for Customer. There may be many functionality that you...
View ArticleRe: What is wrong with these statements
Blue, Whenever you declare an event block such as INITIALIZATION, START-OF-SELECTION, or AT SELECTION-SCREEN [ON...] you are ending the previous event block. The compiler expects all IF and LOOP...
View ArticleRe: Changing VAT number on Billing Document Header
Hi Bert, Please go through BadI mention below. I have got this on the "Goto" > Header > Header Screen. BADI_SD_CUST_HEAD Please let me know if this is not useful. Thanks.
View ArticleRe: inheritance problem in oo programming
what if I need more parameters in the method in subclass than in the superclass?I will be very appreciate if you give me some guides of how to use "CALL METHOD super->display_value" in the...
View ArticleRe: Multiple Batch Job Fail - Debugging
Select the job and then go to display job log(CTRL+SHIFT+F11). Once you are in the job log go to System->List->Save->Local File. You will get a pop-up asking you to specify the format in which...
View ArticleRe: SMARTFORMS
Happy, You're almost there, you just need to call a second FM. The FM 'SSF_FUNCTION_MODULE_NAME' does not print the smartform. It returns the name of the FM that will print the smartform, data type...
View ArticleRe: can anybody tell me what is the exact way of debugging a smart form in...
Go to transaction SMARTFORMS, put in the name of the smartform you want to debug. Then on the menu go to Smart Forms->Test. It will redirect to t-code SE37 with a function module name already filled...
View ArticleRe: can anybody tell me what is the exact way of debugging a smart form in...
Hi, In order to debug a smart form u can do as follow.First keep a hard code break point.run the driver program,when it enters into debugging.goto switch to classical debugger and the goto settings...
View ArticleRe: Multiple Batch Job Fail - Debugging
Hi Aneesh - i've tried that... but i have 267 jobs that failed... I want to mass extract the job logs for each. not drill into them one at a time. Shane
View ArticleRe: Multiple Batch Job Fail - Debugging
You can read a batch log programatically using BP_JOBLOG_READ. There are other FMs for manipulating batch jobs. So you could write a program using these.
View ArticleRe: Problem with SAP QuickViewer SQVI
Make sure you connect KNBK to KNA1 using a "left outer join", right click on the link to change the join type.Look for available information on inner and outer joins to understand the difference.Thomas
View Article