Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error while Coping an Module pool program

Former Member
0 Likes
763

Hi all,

I had copied an SAP Standard Module Pool Program(SAPMFDTA) into an Z program(ZSAPMFDTA)

Transaction code of the SAP Standard Program is FDTA

I had also Created an Z Transaction code(ZFDTA) for that copied Z Program (ZSAPMFDTA)

I had activated all the Includes,Program,Screen painter

IF i run the Transaction code of the SAP Standard program (FDTA) it is executing Perfectly with out any errors

But if i executed my Z Transaction code(ZFDTA) the error it is showing is Status FDTA100 of the user interface ZSAPMFDTA missing

Please give me the solution for this .

Thanks & Regards

Ajay

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
710

Hi,

Your Z Programm also needs the status.

You can assign the status FDTA100 to your Z-program.

Transaction SE41

Kind Regards

4 REPLIES 4
Read only

Former Member
0 Likes
711

Hi,

Your Z Programm also needs the status.

You can assign the status FDTA100 to your Z-program.

Transaction SE41

Kind Regards

Read only

JozsefSzikszai
Active Contributor
0 Likes
708

hi,

"Status FDTA100 of the user interface ZSAPMFDTA missing"

I think the message is self explanatory, i. e. you have to create (copy) that status...

But...

Any reason why did you copy a standard module pool? It usually makes more problems, than solves anything. You loose standard SAP support and if any problem arises, it will cost you a lot...

hope this helps

ec

Read only

Former Member
0 Likes
708

U need to change your ZSAPMFDTA program ..

in the original include .. MFDTAO01 .. U have the code ..

SET PF-STATUS 'FDTA100'.

SET PF-STATUS 'FDTA200' EXCLUDING tab_excl.

SET PF-STATUS 'FDTA2XX' EXCLUDING tab_excl.

SET PF-STATUS 'FDTA2XX' EXCLUDING tab_excl.

SET PF-STATUS 'FDTA260'.

SET PF-STATUS 'FDTA2XX' EXCLUDING tab_excl.

SET PF-STATUS 'FDTA300' EXCLUDING tab_excl.

When U copy this include into your include and I think U

created status with ZFDTA100 ...

U have to change the above to

SET PF-STATUS 'ZFDTA100'.

Read only

Former Member
0 Likes
708

Hello,

You need to transfer GUI Status explicitly by rt clicking on the GUI Status and give copy.Then select the GUI status as per you wish and give the target program as your Z pgm name.

Neeraj