Dump 'DYNPRO_MSG_IN_HELP' when '1 BOX PACK' clicked on VL02N, ECC 6 Upgrade

Hi
I am getting a short dump "'DYNPRO_MSG_IN_HELP' "when i click '1 box pack' button in VL02N transaction during our upgrade system from 4.6C to ECC 6.0. When i go through the old SAP note - 401823, it says to add entries in VFBS transaction for all T185 entries for this kind of dumps. But i am missing entries for SAPMV50A, I0 and ZVPK combination at support pack level '14'(SAP_APPL) in our system.
Could anyone let me know the entries to be maintained for all the T185* tables mentioned in VFBS transaction.
(or) is there any OSS note already created for this issue? please let me know all the details.
Thank you,
Anil

Hi Laxmi,
We are already in Support pack. (SAPKH60014), and note which you given was SP - SAPKH60007, so this correction was already implemented in our system.
Is there a note/solution specific to '1 BOX PACK' dump and T185* table entry missing?
Let me know,
thank you,
Anil

Similar Messages

  • Short dump when '1 BOX PACK' clicked on VL02N, in ECC 6 system

    Hi
    I am getting a short dump "'DYNPRO_MSG_IN_HELP' "when i click '1 box pack' button in VL02N transaction during our upgrade system from 4.6C to ECC 6.0. When i go through the old SAP note - 401823, it says to add entries in VFBS transaction for all T185 entries for this kind of dumps. But i am missing entries for SAPMV50A, I0 and ZVPK combination at support pack level '14'(SAP_APPL) in our system.
    Could anyone let me know the entries to be maintained for all the T185* tables mentioned in VFBS transaction.
    (or) is there any OSS note already created for this issue? please let me know all the details.
    Thank you,
    Anil

    Hi Laxmi,
    We are already in Support pack. (SAPKH60014), and note which you given was SP - SAPKH60007, so this correction was already implemented in our system.
    Is there a note/solution specific to '1 BOX PACK' dump and T185* table entry missing?
    Let me know,
    thank you,
    Anil

  • ITunes 11 Memory leak when search box is clicked, large library

    Mac pro running 10.7 8-core 14gb ram, itunes library on a striped array
    scrolling performance is a huge improvement but the app hangs when the search bock is clicked on
    and it goes into a massive memory leak, see attached screen grab
    works fine in mountain lion with a smaller library, so I assume its choking on my 140,000 tunes ?

    I have the same problem. iTunes will eat up 80gb of space if I leave it running; eventually I have to force quit it, and slowly after that the hard drive space returns.
    I wasn't sure if it was choking on the search tool, but I have a fairly large library also, so it would make sense.
    Anyone got any good fixes for this?

  • Short Dump DYNPRO_MSG_IN_HELP in Conversion Exit

    Hi Gurus,
    I've written the following conversion exit:
    FUNCTION CONVERSION_EXIT_ZBZEI_INPUT.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(INPUT)
    *"  EXPORTING
    *"     VALUE(OUTPUT)
    *"  EXCEPTIONS
    *"      INPUT_NOT_VALID
      DATA : CPI_OUT(4) type n, CPI_IN(5), cpi_in2(5), cpi_in3(5).
      DATA : CPI_YEAR(4), CPI_PERIOD(3).
      DATA : CPI_NUM2(2) TYPE N.
      DATA : CPI_NUM3(2) TYPE N,
             index(2)    type n,
             index2(2)   type n,
             merker(1).
      DATA : CPI_C8, CPI_C7, CPI_C6, CPI_C5.
      DATA: SONDERZ.                    "nimmt das Trennungszeichen auf
    *-initializations-----------------------------------------------------*
      check not input is initial.
      CPI_IN2 = INPUT.
      CLEAR : cpi_in, cpi_in3, cpi_out, OUTPUT, index, index2, merker,
              cpi_num2, cpi_num3.
      do.
        if cpi_in2+index(1) co '0123456789' and merker ne 'X'.
          cpi_in+index2(1) = cpi_in2+index(1).
          add 1 to index2.
        endif.
        if cpi_in2+index(1) = ':'.
          merker = 'X'.
          clear index2.
        endif.
        if cpi_in2+index(1) co '0123456789' and merker = 'X'.
          cpi_in3+index2(1) = cpi_in2+index(1).
          add 1 to index2.
        endif.
        add 1 to index.
        if index = 5.
          exit.
        endif.
      enddo.
      if cpi_in3 is initial.
        cpi_out = cpi_in.
      else.
        cpi_num2     = cpi_in.
        cpi_num3     = cpi_in3.
        cpi_out(2)   = cpi_num2.
        cpi_out+2(2) = cpi_num3.
      endif.
      if cpi_out(2) > 23.
        message e000 raising input_not_valid.
      endif.
      if cpi_out+2(2) > 59.
        message e001 raising input_not_valid.
      endif.
      output   = cpi_out.
    *  output+2(2) = cpi_in+3(2).
    endfunction.
    The problem is when the user inputs an invalid value and presses directly after this F4 the conversion exit will call and I get the short dump DYNPRO_MSG_IN_HELP  when I trigger the error message.
    Is there any way to know that the program is in value-request? Maybe a system field? Can I catch this error?
    Thanks for help.
    Lars

    Hello Lars,
    refering to OSS 84510 SAP does not allow error messages in this environment. However, to find out if you are in a F4- context you can use the kernel function 'DY_GET_DYNPRO_EVENT'
      data: event(3).
      "check if we are in F4 environment
      call 'DY_GET_DYNPRO_EVENT' id 'EVENT' field event.
      if sy-subrc <> 0 or ( event <> 'PAI'
                        and event <> 'INP' )."PAI also POV
        " not F4 help
        message e000 raising input_not_valid.
      else.
        "F4 help -> only S message
        message s000 display like 'E' raising input_not_valid.
      endif.
    Kind regards, miro

  • Adding a text box dynamically when a button is clicked in normal form

    Hi all ,
    i have a form where a Add button , creates a text box when ever it is clicked .
    can you please tell me how to achieve that functionality ..
    my form is normal form .... it is not a tabular form .
    Regards ,
    Nandini .

    How about
    <script type="text/javascript">
    function getElementsByClass( searchClass, domNode, tagName)
         if (domNode == null) {
         domNode = document;
         if (tagName == null) {
         tagName = '*';
         var el = new Array();
         var tags = domNode.getElementsByTagName(tagName);
         var tcl = " "+searchClass+" ";
         for(i=0,j=0; i<tags.length; i++) {
              var test = " " + tags.className + " ";
              if (test.indexOf(tcl) != -1)
                   el[j++] = tags[i];
                   if (tags[i].innerHTML.indexOf('DoFilters') > 0 )
                   tags[i].innerHTML = tags[i].innerHTML.substring(0, tags[i].innerHTML.length - 7 )
                                       + " onfocus=javascript:alert('Put your javascript here'); >Go</a>"
                   alert (tags[i].innerHTML);
         return el;
    </script>
    <script type="text/javascript">
         var tabs = getElementsByClass('minibuttonOn');
    </script>
    regards
    John
    http://www.obiee101.blogspot.com/

  • I have been using Itunes on my HP laptop for 12 months and over the past month have not been able to access the Itunes store or any of the Itunes Help type menu's. When in Itunes I click on the Store icon and the top middle box gets to Half way. Pls help

    I  have been using Itunes on my HP laptop for 12 months and over the past month have not been able to access the Itunes store or any of the Itunes Help type menu's. When in Itunes I click on the Store icon and the top middle box gets to Half way. Pls help

    I had the same tried loads of fixes
    saw this on the community from whatheck
    In windows 7 click on your start menu, go to the accessories, right click on the command icon and choose "run as administrator"
    Once it opens type the following command...
    netsh winsock reset
    Hit enter and it should say something like winsock reset successful now reboot your computer
    IT WORKED....... cleared all the "action2 on the CPU and loads IStore perfectly

  • When I try to post a comment on an article I just read, my post stays in the box w/out posting. And when I want to click thumbs up or down in the comment section in these articles, the number stays the same. Also, my Skype has stopped functioning.

    When I try to post a comment on an article I just read, my post stays in the box w/out posting. And when I want to click thumbs up or down in the comment section in these articles, the number stays the same. Also, my Skype has stopped functioning.

    Glad you seem to have sorted things out.
    The warning about the warranty is light hearted, I think at one stage it warned "here be dragons" but also intended to make us think as it warns that making changes may produce problems.

  • HT1202 when i check "manually manage" there is no "resulting dialog box" to click "ok" in. why? what do i do now?

    How do I sync my phone with itunes from a second computer. Ive tried to change my setting to "manually manage music" but there is NOT a "resulting dialog box to click "ok" in and instead the same old box pops up offering to delete everything w my sync. what purpose does that serve? this is not user friendly! how often do you want to wipe out everything in your library? really? someone please tell me what to do before I stomp all over this phone!

    wjosten is right, the iPhone is designed to only sync with a single computer and iTunes library.  Whenever you try to switch, iTunes will always erase all iTunes media from the phone first, then replace it with the media of the new library you are attempting to sync with.  You can authorize your Apple ID on 5 computers, allowing them to sync your purchased content, but this doesn't override the requirement that a single iPhone can only sync with a single computer at a time, and have it's iTunes media replaced when you change.
    If all your iTunes media is on the computer you are trying to sync with you have nothing to fear, as it will simply be synced back to your phone again after it is initially removed.  If it isn't, you'll have to settle for the media that is in this iTunes library.  If you want to add media from a second computer, import it to iTunes on the computer you normally sync with rather than trying to sync with both computers.

  • I need help. When i open combo box and click window redrawing (flickering)

    hi,
    I am developing HTML desktop app using adobe AIR.
    Thought i can use it like browser page. Its not able to handle all jquery ,bootstrap etc.
    So removed all . just created a simple form with static combo box with many values.
    When i opened combo box and selected value whole screen redrawing( you can see it flicker). Annoying as hell.
    When i click button or type in input field its not happening.
    Anyone have clue?. I tried this same page in TideSDK ( its not flickering there).
    But i am gona go with AIR because of update feature but i need to get rid of flickering issue before i go any further.
    Anyone here done HTML form in adobe air?
    Please help. I am having headache all day on this issue.
    Advanced Thanks .

    I meant flickering means...when i open combobox and click focus is going out of air window as though combobox is in some another window. once click press mouse down...focus is in combo box but window loses focus and once releases mouse ..window back to focus.  Kinda annoying effect when u try to click on combo box and select.
    Tested with html scout sample app and load any webpage with combobox , window loses focus.
    But any combobox made using EXT it do not flicker because ext handles focus event correctly.
    My windows has set of combo box and user always select different value from combo box if keep losing focus and coming back its annoying as hell.

  • Captivate advances when wrong click box is clicked

    I have a simple slide with 5 weblinks. I need the slide to stay on screen until a user clicks a specific button to continue but that allows them to select any of the others (weblinks) before doing so - this is what I setup...
    - Clickboxes were arranged for each website reference on the slide and were set up to open a new window with the webpage URL. They were not set to pause until user clicks as they should allow the slide audio to continue until done. They are also all set in the URL drop down to allow the project to continue. This seems to work fine on its own with the slide audio continuing as the user selects the webpages they want to check and the screen remained after audio completed. Perfect.
    - Good so far. Now I add a button and a click box but this time set it to pause until the user clicks and set an appropriate caption. I expect it to do just that and all is well unless the slide playtime ends. If the slide has reached the end of its play time (approx 17sec) and ANY click area is clicked the presentation continues. So, regardless of whether the continue click box is clicked or and of the weblink clickboxes are, the project advances and continues playing the next slide.
    Captivate does not seem to be able to discern WHICH box is clicked but I do not want the advance to occur until the user clicks this box.
    Am I missing something - hopefully? This seems basic.
    (this is in Captivate 5, latest release v5.0.1.624)

    Issues like this make a very regular appearance on this forum. In most cases they can be easily resolved by correctly timing the pause point of relevant clickboxes and buttons, or by adjusting the pause behaviour (turning it off or on).
    You need to remember that Captivate slides are not like web pages.  They're really movies playing at 30 frames per second.  They don't sit still like a web page does.
    If you can't get the desired behaviour via timing or tuning of your clickbox/button settings, the other option you have is to use Event Handler widgets instead of clickboxes or buttons: http://www.infosemantics.com.au/catalog/widgets/interactive/wdgt_event_handler_01
    You can use as many of them as you want on the same slide.  They have options to disable Pause or Disable Continue, depending on what playback effect you're trying to accomplish.

  • How to Create a Dynamic http address that opens the Explorer Window for a List Item When a Button Is Clicked--Currently Trying to Make this Work with Javascript

    I have created a button (via Content Editor) that uses JavaScript to open the Attachments folder of a list item in the Explorer Window in SharePoint 2010. The purpose is to have drag and drop functionality for each list item, having multiple attachments.
    The button works but opens the "Attachments" folder containing all of the other folders for each list item (one folder per item). It seems that when you add an attachment to a list item, SharePoint numbers the folder based on the item's ID. What
    I'm trying to do is take the JavaScript I have and have it run when a button is clicked in a custom form. When it runs, I'm trying to get it to open the "specific" folder for the list item. I have had success creating a hyperlink in the list that
    does this; however, the link WILL NOT work until I use the Content Editor created button that runs JavaScript, that prompts me to click OK to my profile certificate, and then opens the Attachment folder. After that occurs, I can use my hyperlinks without issue
    because I'm no longer prompted to click OK for my cert.
    So I'm trying to take the JavaScript I have and place it in a list item form (custom form) and have it run when a form button is clicked. The problem is I have very little knowledge of JavaScript (did I mention little?) and
    "don't know how to take the "http:" address I have in the script and append to it the list item ID, according to the record I have open."
    So that for any record I open, the script will grab the corresponding record ID (or list item ID) and append it.
    Here's the script I'm working with (which I didn't create but am grateful for):
    <style>
    .httpFolder {behavior:url(#default#httpFolder);}
    </style>
    <script text = "javascript">
       function fnOpenFolderView(){
       oDAV.navigateFrame("https://server/collection/site/subsite/Lists/Sublist/Attachments","_self");
    </script>
    <div id = "oDAV" class = "httpFolder"/>
    <input type = "button" value = "Open Attachment Folder" onclick = "fnOpenFolderView()"/>
    The above script, in the Content Editor, creates a button that opens the Attachments folder for the corresponding SharePoint list.
    JackSki123

    Hello Thriggle,
    Thank you for pointing that out. I appended your "GetUrlKeyValue" to the end and it worked. That said, I noticed it doesn't run as smoothly as when I simply click on the Content Editor button I created that resides on the SharePoint List
    ASPX page (not the form). The Content Editor button has the same code, minus the "GetUrlKeyValue". I click it; I get prompted to choose my cert; it opens right up.
    Now go to the ASPX Display form where I dump the code in a table cell. Button appears in cell; I click it; wait; wait; I get prompted for cert; it opens. Do I need some sort of "throttle" for the JavaScript? For instance, I thought before running
    JavaScript, you reference the library first. This code doesn't do that. I'm wondering if there's something more I need to make this run smoothly. Thank you both for getting me this far. 
    JackSki123

  • Finder crashes when I try to click on the File Menu, or CTL Click. Ideas?

    Started a few weeks ago, after the update to Mavericks.
    Anytime I try to click on an item via Finder, and CTL+click to have the drop down menu, Finder crashes. Same thing happens when I try to click on the File Menu when Finder is selected.
    Ultimately, I may need to do a full clean install (It's a bit overdue), but this seems to be an account specific issue, as my wife's user account does not have this issue.
    To Note: I do not, nor have I ever, use Google Drive. So it's not that.

    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Click "Reset".
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions

  • My start up tone doesn't work, trackpad and keyboard do not work consistently. I get a drop down menu when I try to click on something

    Out of nowhere my keyboard locked, trackpad didn't work and start up chime stopped working.  Then, I got drop down menus when I tried to click on something, and now my computer is working fine.  In a while it will happen all over again.  How can the keyboard work fine and then stop?  Then be fine again.  I am not technically inclined, so please help.  I have a MacBook Air. Thanks

    To add a Pinterest icon to your Home Screen do the followiing:
    In Safari:
    Go to the Pinterest Website - http://pinterest.com
    Touch the Share icon at the top (looks like a box with an arrow coming out)
    Touch Add to Home Screen

  • When I try to click on links or move about the internet, the computer freezes and I see a little whirligig. Then it takes a few seconds before going to the item I clicked

    when I try to click on links or move about the internet, the screen freezes and I see a little whirligig. Then it takes a few seconds before the whirlygig becomes the pointer again and going to the item I clicked. Why is the screen freezing?

    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Click "Reset".
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions

  • How do we update the value of a textfield in a dialog box by clicking a button/ textbutton ?

    How do we update the value of a textfield in a dialog box by clicking a button/ textbutton ?

    Hi,
    If you create a function to return wwctx_api.get_user you could
    call this inside an update trigger, you could put in an
    exception to return USER if there is an error, this would then
    work for users connected directly and users using Portal.
    Regards Michael
    e.g.
    CREATE OR REPLACE FUNCTION F_PORTAL_USER RETURN VARCHAR2 IS
         vRet VARCHAR2(50) := wwctx_api.get_user;
    BEGIN
         RETURN(vRet);
    EXCEPTION
         WHEN OTHERS THEN
              RETURN (USER);
    END F_PORTAL_USER;

Maybe you are looking for

  • Page break in between group and subreport

    I have created a report with one group based on the customer order number.   We want the user to be able to run a range of customers orders. For example, print 10 customer orders at one time.  The group pulls the required information for each custome

  • Java inputing information

    well Im having problems with my Java im doing a cource which I just want to pass and Ive got a little problem. I was going to hand this in... but then was told I need a input thingy to input the values into my array and I have an example code for imp

  • Browser display is too large

    Please help: For some unknown reason, my Macbook browser display has grown to beyond the edges of my screen. Thank you

  • Execute query when post text item

    Anybody can help ? I create 2 block, first a data block and another is a control block with field customer_search field, after inputing customer id in search field on control block, I want to execute query. my code : set_block_property('customer',def

  • Merry Christmas! iTunes won't run on my desktop machine

    Hi! Operating System - XP pro I have recieved a nice new iPod nano for crimbo. I already had a previous version of iTunes on my desktop as a friend was using it for their mini some time ago. I installed all the software which came with the new nano a