Going dump for ME41 t-code

Hi Friends,
I activated MM06E005 using  SMOD t-code.
if run ME41 system going dump and it is saying
Program "SAPLXM06" tried to use screen 0301.
The screen does not exist.
Can any body help what may be the wrong.
It is working fine for ME21, Me51.
I am into 4.7
Regards,
Naresh.

Hi,
The FMs in the enhancement MM06E005 are for importing and exporting values to and from the screens mentioned in the Screen Areas tab in SMOD.
So unless you activate the screens you can't use the FMs.
Hope this helps.
Thanks,
Balaji

Similar Messages

  • Call for adobe form is going for dump for multiple users

    hi,
    i am calling an adobe form in a program i.e. for multiple users. now my problem is.....
    3 people are using same tcode to generate the adobe form output for different data. but when they click at a time on the button to generate the adobe output, then adobe form is coming for only one user and it is going for dump for other users.
    and this dump is coming because of exception "CX_FP_API_INTERNAL" in funtion module FP_FUNCTION_MODULE_NAME which i am using to get the function module name of the adobe form in my program.
    can u please give me some solution to rectify this issue....

    That's nothing!
    An engineer and I contacted Adobe technical support by phone to ensure the PC I was having custom built was configured to its optimum. They advised XP64 as the best operating environment. After that discussion we had to completely revise procurement, etc to get the bits and compatible XP64 compatible software, putting the build project back a few weeks as well, Imagine how I laughed when I found out on one of these forums that XP64 is the worst choice and totally unsupported by CS4!
    I have written to Shantanu Narayen, Adobe CEO and didn't even get an acknowledgement I raised this last week on the Adobe stand at BVE and was told they'd get someone to contact me asap but guess what, niet...! To be fair there has been one Adobe executive that recognises the problem and the damage poor customer support is causing the company; he has been as helpful as he can. Unfortunately, it seems the overall Adobe culture at the top is "get the money and run". If your problem goes beyond what's already on their web pages, tough luck!
    Regards,
    Graham

  • I have just bout a brand new ipad mini and commenced setting it up. I had to leave it for a while and switched it off. When I came back to switch it on it asked for a pass code and I haven't set one up as far as I know. Anyone know whats going on!

    I have just bought a brand new Ipad mini and started setting it up. I had updated to os7.4 and after it finshed installing I had to leave it before answering all the set up questions. When I switched it back on it asked me for a pass code which as far as I'm concerned, hasn't been set up yet. Anyone know whats going on!

    Hi robertbpage,
    Thanks for using Apple Support Communities.  If the iPad mini is asking for a password that you do not know, this article has steps you can take:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Cheers,
    - Ari

  • Adobe Digital editions activation server error code E_AUTH_NOT_READY. going on for weeks altering registry not something one should fool with. Please Adobe correct your problem.......

    Adobe digital editions activation server error E_AUTH_NOT_READY. This has been going on for months... Please adobe do something about your problem. Altering the registry in my computer is not something anyone should fool with.....

    Adobe digital editions activation server error E_AUTH_NOT_READY. This has been going on for months... Please adobe do something about your problem. Altering the registry in my computer is not something anyone should fool with.....

  • If i run oops alv in background, its going dump

    If I run oops alv in background its going dump?
    can any one suggest me to do this or to overcome
    thanks and regards
    setty

    ALV's can be run in background if you use a docking container instead of a custom container.
    Please search the forum for "ALV in background". You will find tons of threads with solutions.
    Re: How to run ALV reports in batch
    Sample code to have ALV Grid in Background

  • Short Dump for Dynamic Select Query

    Hello all,
    I get a short dump for my dynamic select query at the end of the code. The error is "The types of operands "dbtab" and "itab" cannot be converted into one another."
    My code looks like below.
    FORM get_ccnum_2  USING    p_tabname TYPE dd03l-tabname.
    DATA: p_table(30)  TYPE c.
      FIELD-SYMBOLS:  <dyn_wa>,
                                   <t> TYPE table.
      DATA: it_fldcat    TYPE lvc_t_fcat.
      TYPE-POOLS : abap.
      DATA: it_details   TYPE abap_compdescr_tab,
            wa_details   TYPE abap_compdescr.
      DATA: ref_descr    TYPE REF TO cl_abap_structdescr.
      DATA: new_table    TYPE REF TO data,
            new_line     TYPE REF TO data,
            wa_it_fldcat TYPE lvc_s_fcat.
    p_table = p_tabname.
      ref_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
      it_details[] = ref_descr->components[].
      LOOP AT it_details INTO wa_details.
        CLEAR wa_it_fldcat.
        wa_it_fldcat-fieldname = wa_details-name .
        wa_it_fldcat-datatype  = wa_details-type_kind.
        wa_it_fldcat-intlen    = wa_details-length.
        wa_it_fldcat-decimals  = wa_details-decimals.
        APPEND wa_it_fldcat TO it_fldcat .
      ENDLOOP.
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = it_fldcat
        IMPORTING
          ep_table        = new_table.
    ASSIGN new_table->* TO <t>.
    CREATE DATA new_line LIKE LINE OF <t>.
      ASSIGN new_line->* TO <dyn_wa>.
    wa_cond = 'CCNUM <> '' '' '.
    APPEND wa_cond TO tab_cond.
          SELECT * INTO TABLE <t>
                   FROM     (p_table)
                   WHERE    (tab_cond)
                   ORDER BY (tab_ord).
    ENDFORM.                    " GET_CCNUM_2

    Hi,
    I tried to execute the code using table BSEGC and it gave a short dump..
    the actual exception that shows in ST22 IS ..UNICODE_TYPES_NOT_CONVERTIBLE..
    I think there is something wrong in the internal table creation..
    Instead of using the method cl_alv_table_create=>create_dynamic_table to create the dynamic table I used the following and it worked..
    CREATE DATA new_table TYPE TABLE OF (p_table).
    * Comment begin  " Naren
    *  ref_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
    *  it_details[] = ref_descr->components[].
    *  LOOP AT it_details INTO wa_details.
    *    CLEAR wa_it_fldcat.
    *    wa_it_fldcat-fieldname = wa_details-name .
    *    wa_it_fldcat-datatype  = wa_details-type_kind.
    *    wa_it_fldcat-intlen    = wa_details-length.
    *    wa_it_fldcat-decimals  = wa_details-decimals.
    *    APPEND wa_it_fldcat TO it_fldcat .
    *  ENDLOOP.
    *  CALL METHOD cl_alv_table_create=>create_dynamic_table
    *    EXPORTING
    *      it_fieldcatalog = it_fldcat
    *    IMPORTING
    *      ep_table        = new_table.
    * Comment End.  " Naren
    CREATE DATA new_table TYPE TABLE OF (p_table).   " New code by naren
    Please Try this..
    Thanks
    Naren

  • Throws Core Dump for OCISessionBegin() on Linux for Oracle Client v10.2.0.2

    hi,
    The OCI method, OCISessionBegin() is throwing an core dump on 10g client in Linux on C++, but the same code works fine for 8i and 9i client. Core dumps for 10g Client. 10g tnsnames.ora file is same as of 9i. I just debeggued with the core and says failing in OCISessionBegin() method. I would like to know is there any problem with Oracle Client v10.2.0.2? or how does i can solve the issue? appriciate a quick help in this regard.
    Thanks,
    Sreeni

    Have you looked in the Knowledge Base information at metalink? That would be the place to start.
    If that does not work then the next step would be to remove this thread and post in the OCI - OCCI forum where there are people that can actually help you.

  • How can I have iTunes quit changing what I put in for my zip code

    My credit card only accepts five numbes. When I put my zip code into iTunes it add the other four. That does not match what my bank has and it tells me that I have to enter my security code. This has been going on for five days. Apple Tech Support has quit responding to my emails.
    Any thoughts.

    I think even using Get Info may not reveal the change, though it is possible the behaviour has altered since I last tested it. Playing or updating the tracks location in a script such as UpdateTagInfo seems to get iTunes to re-evaluate the tag.
    Assuming WMP is involved it may be best to make the necessary settings adjustments to prevent further changes, use the script to get all of the background changes exposed within iTunes, then correct as you see fit. Alternatively I do have another script called ExportImport that could be used to back up the current state of your tags (you should temporarily rename the media folder during the export phase), after which you would then run UpdateTagInfo and then use ExplortImport in its import mode to restore the corrupted data.
    tt2

  • PO Number range diffrent for diffrent comp code(backend system is same)

    Hi Experts,
    I have a requirement that
    Define PO number range (Diffrent) for diffrent company code
    In our SRM system we have three company codes and currently we have only one "number range"
    now our requirement is to define diffrent no range for individual comp code
    I can difine diffrent no range, but when i am going to define those no range in "Number Range Number for Purchase Orders in Backend System"
    System is not allowing
    Any idea
    Thx
    Jai

    Thanks Padhi:)
    Great Job...I have tested it in development and is working fine..but not sure how effectvely it will work in production system
    as many people talking about some Badi and coding.etc even sap also saying that
    "Unfortunately, I cannot give you a more positive answer about ECS"
    Any comments will be appreciated
    Rgds,
    Jai

  • Time Machine Backup "cleaning up" has been going on for at least 6 hours? is that normal?

    My Operating System crashed 3 nights ago, the Apple Store reinstalled my OS which is the current 10.8.2.  My last backup to my 1 TB external hard drive was on December 10th.  I left my computer on last night to do a "back up" and it has been going on for 14 hours now.  Currently when i woke up this morning it says.  "Cleaning up" and it has been on that status for at least 6 hours.  When I click on my time machine it shows that my current backup was from last night.  Should I stop the "Cleaning up" phase or just let it continue to take FOREVER!  I dont know why it would take so long, I havent added a bunch of files or anything since my last back up a few weeks ago.
    Thanks for your help!

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message. Clear the text field and scroll back in the log to that time. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them (command-C) to the Clipboard. Paste (command-V) into a reply to this message.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • 1099 misc file format not able to get for multiple WHT code??

    Dear Experts,
    I am trying to download the file format for 1099 misc IRS reporting for e-filling, i am getting the file for one WHT code 07. but when i am executing this transaction S_P00_07000134 for multiple WHT Code 01 to 14, in the file format, Amount entries are available for all the WHT Code but In the Record "A" only Account code "C" is coming. i have implemented the SAP Note 1666672 version 3 before executing this transaction. Please let me know this is a configuration issue or i am missing to apply other SAP Note. this is very high priority issue now.
    Any comments on this are highly appreciated.
    Thanks in Advance
    Saurabh Saxena

    I am seeing the same issue. This worked for us last year. But this year the A Record indicates that we only have Withholding code 7, yet our detail records have withholding amounts in columns 1, 6, and 7.
    IRS rules state that multiple withholding codes should be concatenated in ascending order in the Header 'A'Record. This must be an issue with the 2011 DMEE file, IDWTFILE_US_1099.xml as this is the only thing that changed in the 2011 note.
    Actually, I've just compared last year's IDWTFILE_US_1099.xml file with this year's, and in the part of the transformation where the withholding amount codes are concatenated, it appears a bug was introduced. I'm going to hand-edit my copy of the file to see if it resolves the issue, and I'll cross my fingers that SAP produces a 4th update to note 1666672
    Edited by: Timothy Conama on Jan 19, 2012 1:45 AM

  • How to dump intermediate representation of code?

    Hello dear community,
    I got an interesting question, just out of my curiosity... reading a book about jRockit I saw examples how java program is transformed and how it looks (java code -> byte code -> HIR -> MIR -> etc), and all the time authors provided real code, or better to say how that code looks at different stages of transformation. I also saw the same examples in internet (like here: http://ssw.jku.at/Research/Papers/Wimmer04Master/Wimmer04Master.pdf - pages 36, 44, ...)
    The question is what should I use (either external dumper or JVM parameters) to see the same for my custom code? I heard that it is possible, but I can't find it in the Internet. Again, I'm asking just to understand better what is done by JVM, how it works etc.
    I've not tried it yet, but it looks like IBM's JDK has a parameter -Xjit for it (http://publib.boulder.ibm.com/infocenter/javasdk/tools/index.jsp?topic=%2Fcom.ibm.java.doc.igaa%2F_1vg000131402ee-11e49e6e566-7fd6_1004.html). Anything similar in HotSpot?
    thank you for any hints,
    Max

    The 'javap' utility (type 'javap -help') that comes with Java can disassemble class files. You can also use Java decompilers that you find on the web: JDGUI, JAD and others.
    The Java Virtual Machine Specification (e.g. http://java.sun.com/docs/books/jvms/second_edition/html/VMSpecTOC.doc.html) explains the instruction set and structure.

  • How do i allow for a discount code or other discount on my form?

    How do allow for a discount code or other discount on the form?

    I am assuming you want to use paypal with this form which mean you need to use an HTML form. Unfortunately Formscentral doesn't support calculations with HTML forms. This is going to make discounts difficult. Depending on your exact needs you might be able to get away with using different fields for the discount. Example. Item one is standard room rate. Item two might be the same room with a AAA discount applied. etc. You will have to play with it to see if you can get it to do what you want.
    Andrew

  • How do I enter App Store gift certificate. I have been going around for an hiur

    How do I enter App Store gift certificate. I have been going around for an hiur

    You must redeem the code on the gift certificate. Open the Mac App Store. Make sure that you are signed into your account (Store menu.) Click the Redeem link in the Quick Links on the Featured pane. Follow the on screen instructions.
    Only after you have redeemed the certificate may you buy something with the credit.
    UPDATE - I have been trying to offer you a screenshot for the last 5 minutes, but the stupid forum software won't accept one right now. Sorry about that.

  • I tried to buy an app and itunes keeps asking for a security code.  What is a security code?  I do not have one.  I have a password.

    I tried to buy an app and itunes keeps asking for a security code.  What is a security code?  I only have a password! And ID

    Are you using a credit card?
    http://store.apple.com/au/help/payments#creditus
    Security codes
    The credit card security code is a unique three or four digit number printed on the front (American Express) or back (Visa/MasterCard) of your card.

Maybe you are looking for