Exit Fm is not to CMOD project but transported to test system

Hi.
I have a enhancement MWMIDO08 with contains function module EXIT_SAPLLMDE_002 and which incldes program ZXLIDU10.
I made my necessary changes in the include program and  transported to test system, without creating any CMOD project.
But my changes are working fine in test test.
Can you please suggest me, what to do now? if i want create a CMOD project now and add the function exit into it. and resend the new request to test system.
Does it create any problem.

This sort of thing can happen if someone has assigned a CMOD project to the enhancement containing the user exit before.
First check in SE16, table MODACT with MODACT-MEMBER = 'MWMIDO08', then MODACT-NAME will give you the existing project that is already assigned to enhancement MWMIDO08
If there is no entry in MODACT then you can safely create another project and assign the enhancement to it, activate and transport.
If already there is an entry in MODACT, you need to check if the same entry exists in your QA and Prod systems, to verify if someone already transported it. If it is not transported you need to deactivate / activate the project and transport that project again.
No this should not cause any problem and I can tell from experience having done same thing before.
Best regards,
Vishnu Tallapragada

Similar Messages

  • Change Project Closed in the Test system

    A change project was mistakingly closed in the Test system. It is still open in the Production system. We've already asked and the closed chnage project can not be re-opened.
    If we order an additional Test System, from the current Production, will the open change project in the production system be copied into the new test system and be open?

    This is not an SDK specific problem. Please ask this question in the Reference System Forum.

  • How To: Convert *.mpp (MS Project) files into PDF in order to share with people who do not have MS Project but need to provide input on schedule?

    I was told that the MPP is unsupported, but I know for a fact that I have converted MPP to PDF.  My question is what is needed to make this happen?

    You can try printing to the Adobe PDF Printer.
    Another option would be to export the MS Project file as a graphic (JPG, PNG, EPS, etc...) and then just import it into Acrobat via File>Create PDF>Combine

  • Motion tween created not works after exporting,but works in TEST MOVIE(ctrl+enter)

    I am using adobe flash cs4 and actionscript3
    my project consists several different layers using classic motion tween option available in flash cs4
    my project works fine when I test the movie using Ctrl+Enter
    but after exporting my animation remains stationary
    If any one knows how to solve this please do reply me. It will be very helpful to me
    Even it is a simple setting please do reply me .
    It is very urgent.
    thank u in advance

    Are you using any ActionScript at all or is it all just motion on the timeline?
    If you're not using any AS then you can try to add a little to force it to play. Just add a new layer at the very top. Click on the first frame (which shoudl be a keyframe - if it's not make it one) and press F9. This will open your Actions window. In the window type "play();" (without the quotes). Not sure if that will work or not but it's worth a try!
    If you are using AS make sure you don't have a stop(); action anywhere that's not being controlled.
    Good luck!

  • Classic not showing on desktop - but it is in system profiler

    I have an iPod classic that is showing up in my system profiler, but not on my desktop. The face of the unit says that it is connected - but iTunes will not recognize it.
    Please help.
    Thanks

    I have already tried resetting the iPod, as well as restarted the laptop several times.

  • HP C6150 All-In-One Will Not Print Black Text But Does Partial Test Print

    Hi.  Thanks in advance for any help anyone can proffer.
    I've read through the forum and I think there are some similar issues, but none exactly the same as ours.
    This HP C6150 does print pictures, but suddenly stopped printing black text.
    HOWEVER, the test prints will print in black with the Windows Logo, but will not print any associated text.
    Odd.  It just suddenly stopped printing.
    Variables:
    C6150 All in One - No other problems for two years.
    Using refilled ink cartridges from outside source. (not my decision)
    Ink is full.  No other changes made in last three days.
    Troubleshooting Steps:
    Uninstalled and then re-installed software in entirety.
    Put in 'new' (refilled) cartridge for black and magenta.
    Tried (not sure if successful) soft reset.
    Tried cleaning the print cartridge with 'Q-Tip' and distilled water.
    Have not yet spent money on new OEM print cartridges.  That is next step unless other suggestions merit.
    Possibilities:
    It may be the refilled cartridges, but they've worked so well in the past.
    The cartridge prior to the recent replacement was working fine and was not yet out of ink.
    The print head might be damaged.  But this should/would affect all black printing and this is not the case.
    Were the driver corrupt, the reinstall should have fixed it ... you'd think.
    So, we're looking for some suggestions prior to going out and getting a new printer.
    Thanks again, in advance, for constructive non-judgmental suggestions.
    MackNC

    The likely cause is the black ink is not printing at all.  When printing graphics (like the Windows Test Page) black is made from mixing the color ink.  I would suggest printing an internal diagnostic test page as shown in this page.  Does the black block print?  If not then clean the printheads as described here.  
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Trying to make a disc.img from an iMovie project get the mssage that some of the audio clips are not available. The clips still show as green bars in the project but do not play.

    I successfully made a disc.img and then burned a DVD of the project but found an error in a title. Went back to the project, corrected the error, and tried to create a new disc.img but got the message that some of the audio tracks were unavailable. They still show as green bars in the project but do not play. Tried deleting and reinstalling them with no success. They do play in iTunes and in the iMovie editing pane
    Thank you

    inspired2apathy wrote:
    ... The goal is a ScrollPane that automatically wraps the text inside it. I've just about got it, but I have one thing that's not working. If I just put the JTextArea{s} in as the Editor, then you lose the any text that doesn't fit inside whatever the initial size was. Instead, I put the JTextAreas inside a JScrollPane which works fine, except that I still have to determine the size of the JScrollPane in advance. I would like to make each Editor/JScrollPane start out with just a single line of text and expand until it reaches a certain small number of lines.
    ... What am I missing?THE BASICS. See if this isn't what you are trying to do.
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class Test
      public static void main(String[] args) {
        JTextArea ta = new JTextArea();
        ta.setLineWrap(true);
        ta.setWrapStyleWord(true);
        JScrollPane sp = new JScrollPane(ta);
        JFrame f = new JFrame();
        f.getContentPane().add(sp, "Center");
        f.setBounds(0, 0, 400, 300);
        f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
        f.setVisible(true); 
    }OP, your code was too long and complicated for me to compile and run. However, aren't you forgetting the two simple methods <tt>JTextArea.setLineWrap()</tt> and <tt>JTextArea.setWrapStyleWord()</tt>? Furthermore, I absolutely see no need for you to extend SWING components for demonstration this simple -- that is, if I understand your problem correctly.

  • I have iPhoto 11 installed on my iMac. Has been working for last several months ok. I am trying to create photo books but it gets hung up after I select create book. Does not create the project.  Used to work but won't create any projects

    ILife 11 (iphoto 11) installed over a year ago with no issues. Have been creating Apple Books with no issues till now.  iPhoto now will not create books, calenders or anything else. After I select "create" it does nothing. Used to work Ok. Program seems to stall and do nothing. I can still look at events and other picture files but it will now not create a "project" / "book"  Anyone with a similar issue????

    ILife 11 (iphoto 11) installed over a year ago with no issues. Have been creating Apple Books with no issues till now.  iPhoto now will not create books, calenders or anything else. After I select "create" it does nothing. Used to work Ok. Program seems to stall and do nothing. I can still look at events and other picture files but it will now not create a "project" / "book"  Anyone with a similar issue????

  • New folder is not visible inside my project but shows in Windows Explorer.

    I created a new folder under another folder.  The new folder is not visible inside my project but shows in Windows Explorer.  Also, if I try to add another folder of that same name, it denies the action since the folder (although invisible) already exists.  My co-worker can access the same file (on a share drive) and see the new folder just fine.  This error occurs whether I was the one creating the new folder or she is the one creating the new folder.  I am new to RoboHelp and she has used it for years.  I suspect something is not yet set up right on my side.  Ideas? (I thought I posted this yesterday but I can't find it anywhere)

    Hi there
    What version of RoboHelp are you using?
    Did you create the folder from inside RoboHelp or did you create it using Windows Explorer?
    Cheers... Rick

  • Trying to move aperture library from USB external drive to FW 800 external drive.i can see the projects but no thumbnails. Error application not responding. Verified permissions before started. It's been 3hours. Recommendations please

    I have consolidated iPhoto into aperture 3.2.2  and now have both aperture and iPhoto put consolidated library on 2.0 USB external drive. Have been removing duplicate photos from 23,000 down to 15,000. Problem in trying to close aperture and now tried to move library from 2.0 USB to 800FW and can see projects but no thumbnails. Aperture error now reads not responding. Can I repair library on 2.0 at this point? 

    Sharon,
    did you do anything else besides copying your library to a fire wire drive after your last post                                                                            Aperture not responding                     ?
    Since that library probalbly already needed fixing, I'd recommend to force quit Aperture and use the "First Aid" to repair your Library.
    Aperture 3: Troubleshooting Basics: http://support.apple.com/kb/HT3805
    Regards
    Léonie

  • Specific need: to generate a cylindrical projection NOT from a sphere, but from a flat image

    Specific need: to generate a cylindrical projection NOT from a sphere, but from a flat image, like a person's face, etc., such that the cylindrical projection can be used to wrap a sphere (via other software such as the DX I use), where the face could be positioned arbitrarily at the equator (where a cylindrical projection image created FROM a sphere appears most normal), a pole (where a cylindrical projection image created FROM a sphere appears most stretched out), or anywhere else on the resultant sphere's surface. This would allow creation of a, say, a cylindrical projection of a sphere that represents a numbered billiard ball from a flat representation of the number design. Is there an Adobe or Photoshop product that will provide this? Thanks for any help!

    Thanks, Noel. Here's the crux: the image sphincters at the poles, natch. I've been looking for an algorithm or feature in a graphics app that would assume that the flat image of joetalker's entry would be spread proportionately at the poles so that the size of print would be uniform (or the shape of face photo, etc).
    Using such a feature would dictate that type, lets say, would be distributed on the flat image something like this in order not to lose too much at the edges (where the sphere mesh meets at 0-longitude), and sphincters as latitude approaches the poles:
    ++++++++Hello+++++++++
    +++++How are you &+++++
    ++What can I do for you+++
    +++++How are you &+++++
    ++++++++Hello+++++++++
    Yes, over-simplified. Here with a photo, where the original photo is "X" signs, and the empty space is "+" signs, along with the desired created cylindrical projection ready for a sphere mesh:
    Example 1 at equator:
    original:
    ++++++++++++++++++++++++
    ++++++++++++++++++++++++
    ++++++++++XXXXX++++++++++
    +++++++++XXXXX++++++++++
    +++++++++++XXXX+++++++++
    ++++++++++XXX++++++++++
    +++++++++++++++++++++++++
    ++++++++++++++++++++++++
    created cylindrcal projection:
    ++++++++++++++++++++++++
    ++++++++++++++++++++++++
    ++++++++XXXXXXXXX++++++++
    +++++++++XXXXX++++++++++
    +++++++++XXXXXXXX+++++++
    +++++++XXXXXXXXX+++++++
    +++++++++++++++++++++++++
    +++++++++++++++++++++++
    -very similar, with a widening at top and bottom of "photo", right?
    Example 2 at poles:
    original:
    +++++++++++XXXX+++++++++    (bottom of photo)
    ++++++++++XXX++++++++++
    +++++++++++++++++++++++++
    +++++++++++++++++++++++++
    ++++++++++++++++++++++++
    ++++++++++++++++++++++++
    ++++++++++XXXXX++++++++++   (top of photo)
    +++++++++XXXXX++++++++++
    created cylindrcal projection:
    +++XXXXXXXXXXXXXXXXXXXX+++
    ++++++XXXXXXXXXXXXX++++++
    +++++++++++++++++++++++++
    +++++++++++++++++++++++++
    ++++++++++++++++++++++++
    ++++++++++++++++++++++++
    +++++XXXXXXXXXXXXXXX++++++
    ++XXXXXXXXXXXXXXXXXXXXXX+++
    -now with an even more widening toward the poles to compensate for the pole sphinctering.
    If starting with a true globe already spatially correct, creating a cylindrical projection is commonplace. I'm attempting to find an app that will create a cylindrical projection-like graphic ready for a sphere mesh from a flat photo or graphic. The above example would place the photo in correct proportion over the pole of the sphere, discarding information at the ever decreasing edges as the image projects to the poles.
    Hope this is clear, and thanks again!
    -Johnny

  • Field Exit is not working in QA but working in Development Server....

    Hi friends,
                         I have created Field Exit for data element EPOS_LGORT (Storage Location) .Which is using in ME21N transaction of MM. This Field Exit is proper
      working in Development Server but after transport in QA it is not working. I have checked code , it is same as well as exist in development Server. 
                  Abap/fieldexit parameter already has been set as ‘Yes’. But still it is not working.
    Following values has been set for Parameter ‘abap/fieldexit’ for QA .       
    Dflt value                no
    ProfileVal               YES
    Current value          YES
    SAP Release         4.71
                         Any other setting required for  parameter's . Please suggest me.
    Thanks.

    Hi Chandrasekhar,
                           Thanks . Default value of parameter abap/fieldexit is 'yes or no' . Basis person told me that abap/fieldexit either can be set yes or no , so where we have to set 'X'  value for abap/fieldexit parameter.
      After execution of Program RSPARAM , following values found for  QA Server.
    1.1 R/3 C kernel               no
    2.1 file                             no
    3.1 file                             YES
    3.2 program parameters    YES
    3.3 Replace $$ and $(..)    YES
    3.4 Generate file name      YES
    4.4 Value in SharedMemory      YES
          Any other setting's  we needed ?

  • Can't find last import from iPhone! Noticed as I imported I had that view where there was only one project symbol, not all my projects showing by date, but even so pictures were imported. It took the time to do them, so where

    Can't find last import from iPhone!
    Noticed as I imported I had that view where there was only one project symbol, not all my projects showing by date, but even so pictures were imported. It took the time to do them, so where aare they? I have closed and restarted to get back fll view of all dated projects, but nothing can be found from today...

    have i posted it right...??  no response from apple guys...

  • Serious problem: Imovie is working from the event but not from the project

    Hi,
    Related to my other post, I have discovered that Imovie seems to be working fine in the event library, but not in the project library.
    If I use the spacebar or play buttons in the event part, it shows the film in the right top screen or even in full screen mode.
    But if I click on my project, nothing works anymore.
    Sjoerd

    Hi
    Try to make a new User/account. Log into this. Have a re-try.
    How does it work now ?
    If OK. Go back to Your first account, Take move out iMovie pref file to the desktop
    Re.start iMovie.
    Works OK ?
    iMovie pref file resides:
    Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences and is named: com.apple.iMovie.plist
    While iMovie is NOT RUNNING - move this file out to desk-top.
    Now restart iMovie.
    Yours Bengt W

  • When rendering a project, FCPX did not stop at 100% but appeared to keep rendering - when it reached eleven thousand something, I quite FCPX (it allowed me to quit).

    When rendering a project, FCPX did not stop at 100% but appeared to keep rendering - when it reached eleven thousand something, I quite FCPX (it allowed me to quit).

    The background tasks indicator just kept going and going... 200, 300... 400... 600...800... When I opened the background tasks window, the only process it said was active was rendering. 
    I clicked on "stop" but it ignored me, kept counting on and on....  1000... 2000,,, 5000 I clicked Pause, it didn't ignore me but still kept counting...  7000... 10,000...
    I went to my activity monitor on my mac and from what it said (like, 97% or so idle), I surmised that it actually had stopped rendering.  So I quit FCPX - no problem, no "not responding" or "force quit" or anything. 
    My external harddrive was still whirring (that's where my project is stored) so with much trepidation I ejected it: no problem...
    After my question I (agian with much trepidation) opened FCPX, did some editing, rendered, exported, without problems. 
    But I'm concerned about what might have caused this bizarre behavior and what to do if it happens again.
    any thoughts???

Maybe you are looking for

  • Help! double sided printing.

    Hi, i recently purchased my first macbook air (os x 10.9.2) and have loaded my printer on however can not find any options or buttons to print double sided or duplex printing in word (office for mac 2011). I know my Brother MFC-J6510DW CUPS does do t

  • HP 4500 G510-n printer all in one

    The print no copy, no scan, but print through the computer.

  • Application that monitors network, shows performance and what's slowing it?

    Does anyone know any application that could tell me how my network is doing, which computers are currently slowing it and all that type of information that might help me fix problems I'm having? We got several computers in the company, but for some r

  • Firefox always crashes about 10 seconds after startup

    Hi There, I have an older iMac running 10.6.8. After I start Firefox, it always crashes after about 10 seconds (the beachball of death appears for a few seconds, and then it crashes). I've tried the following: * Running Disk Utility to repair the dis

  • JDev ADF Demo Site Not Working

    I am keep trying to access adf demo page http://jdevadf.oracle.com/adffacesdemo/faces/components/index.jspx No Response from Application Web Server There was no response from the application web server for the page you requested. Please notify the si