Quantcast
Channel: SCN: Message List - ABAP Development
Browsing all 10425 articles
Browse latest View live

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 Article


Re: 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 Article


End 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 Article

BAPI2080_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 Article

Image may be NSFW.
Clik here to view.

after 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 Article


Re: how to Print Multiple pages in smartforms

Dear , You have to create page2 make window as secondary window

View Article

How 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 Article

Re: Work Flow

Hi,   Thanks.

View Article


Re: 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 Article


Image may be NSFW.
Clik here to view.

Re: Work Flow

Hi,    I created prefix numbers successful, Thanks very much.  

View Article

Parking 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 Article

Image may be NSFW.
Clik here to view.

How to display multiple selection in SAPGUI?

Hi Colleague, How to display multiple selection as below in SAPGUI using ABAP coding?  Kind RegardsAndie

View Article

Image may be NSFW.
Clik here to view.

Selection 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 Article


Re: 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 Article

Re: 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 Article


Re: Displaying more than one value in a field

Hi Dengyong Zhang, How do I declare the itab internal table? please advice.  Thanks,Rebekah

View Article

Image may be NSFW.
Clik here to view.

Re: 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 Article


Re: 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 Article

Re: 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 Article

Re: 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
Browsing all 10425 articles
Browse latest View live