Re: Plan order creation for Griege booking order
Hi Experts, Thanks to you all for your reply. I got the solution, at the time of MRP when i choose Plan mode as "Delete and recreate planning data" that time my BADI is triggering. This way i can...
View ArticleRe: issue regarding collect statement
You can use the below code. I checked and got the output as per your requirement. read table itab into wa index 1. loop at itab into wa1 from 2. if wa1 <> wa. append wa to...
View ArticleEnd to End implementation process in SAP_PM
Can anybody suggest the steps involved in End to End implementation process in SAP_PM (Plant maintenance)module only.
View ArticleBAPI2080_NOTDRE-CUST_NO Field won't populate in FM BAPI_SERVNOT_CREATE
Hi All, I'm using FM BAPI_SERVNOT_CREATE to create service notification and I can't figure out how to fill the field BAPI2080_NOTDRE-CUST_NO in the exporting table which maps to the field KUNUM in...
View Articleafter migrated to new server having issue with RF
I have some strange issue likewe have yesterday migrated our production server to a new server, since then the RF portal is not working , Only the first page is coming Once we click this link we...
View ArticleRe: how to Print Multiple pages in smartforms
Dear , You have to create page2 make window as secondary window
View ArticleHow to find whether a bar code of type QR code already exists in the SAP system?
Hello, I have a requirement to print a bar code of type QR code in Smartform. I would like to search if a Z/standard bar code of this type is already created in the system so that I can reuse it in my...
View ArticleRe: print format X_65_255 for batch id
Hi Alexander, Thank you for your reply, currently there are no default format given in SPAD, all fields were blank but when i schedule a job with batch id it's taking X_65_255 by default, this...
View ArticleParking document with BTE 00002218
Dear all, I want apply some checking when parking a FI document, I searched in the forum that BTE interface 00002218 with function SAMPLE_INTERFACE_00002218 can be used for parking a FI document. I...
View ArticleHow to display multiple selection in SAPGUI?
Hi Colleague, How to display multiple selection as below in SAPGUI using ABAP coding? Kind RegardsAndie
View ArticleSelection Criteria in se38
Hi Experts, I created two ALVs using cl_gui_alv_grid in SE38.However, I do not know how to separate the Selection Criteria and ALVs. Example: Show Selection Criteria > Press Execute > Show ALVs....
View ArticleRe: How get next vendor code for particular vendor group
hey Niels De Greef,Thanks for the quick reply. yes tat is possible. but is there a function module is available for that ?.tnx/
View ArticleRe: Displaying more than one value in a field
hi Rebekah if don`t care about performance.LOOP AT i_org INTO wa_org. SELECT NODENAME FROM /BI0/HORGUNIT INTO TABLE itab WHERE NODEID = wa_org-childid. LOOP AT itab....
View ArticleRe: Displaying more than one value in a field
Hi Dengyong Zhang, How do I declare the itab internal table? please advice. Thanks,Rebekah
View ArticleRe: Issue with the Select-Options - Batch Field
Hi Abhi, Here I am passing values with leading zeroes. The result I am getting is ''No value available".Then I am passing without leading zeroes. I am getting data which do not fall in the range...
View ArticleRe: Displaying more than one value in a field
DATA: begin of ichildid OCCURS 0, NODENAME like/BI0/HORGUNIT-NODENAME, end of ichildid.Refer ABAPDOCU tcode to learn ABAP basics.
View ArticleRe: Displaying more than one value in a field
Hi Arun, I am getting a syntax error "E:Tables with headers are no longer supported in the OO context." when I declared the ichildid internal table as you suggested. Please help. Thanks,Rebekah
View ArticleRe: Displaying more than one value in a field
The error is originating from the SELECT statement.Change it to:loop at i_org into wa_org SELECT NODENAME FROM /BI0/HORGUNIT APPENDING TABLE ichildid WHERE NODEID = wa_org-childid.endloop.
View Article