Wrong folder pressing back button

Hi gurus,
we are facing a problem with a custom button on the standard transaction IL03.
On the transaction we have created years ago a custom folder with a custom button that brings to another custom dynpro. When you access to this custom dynpro and press the back button you come back to the custom folder.
Now we have to add a new custom button on the custom folder using the same flow, but when we press the back button from the new custom dynpro we are not able to come back to the same custom folder, instead the system brings us back to the first standard folder of IL03, mantaining the title of the custom folder but inserting the standard fields of the first folder.
We used this code to call the program:
      SUBMIT xxxxxxxxxx WITH xxxxxxxxxxxx  AND RETURN.
and in the xxxxxxxxxxx program we used this form
  IF SY-UCOMM = 'BACK' OR
    SY-UCOMM = 'STOP'.
    SET SCREEN 0.
but it seems not to work properly.
Someone can help us?
Thank you!
Edited by: silfabb on Aug 1, 2011 11:50 AM

Hi silfabb,
replace the code section
IF SY-UCOMM = 'BACK' OR
SY-UCOMM = 'STOP'.
SET SCREEN 0.
with new code
CLEAR SY-UCOMM.
Regards
Clemens

Similar Messages

  • At selection-screen when user presses back button

    Experts,
    I have two radio buttons and two relative checkboxes ( one checkbox related to other ).
    Now when user selects one radio button and executes teh program, there is a summary page. When user presses back button from there, I return to the selection screen, however the selections are still there.
    Ideally I want a blank screen, as in nothing selected( similar screen when program is executed first ). Is it possible ?
    Kindly advise,
    Gols

    Hi,
    Try clearing radio buttons and check boxes at PBO of selection screen using AT SELECTION-SCREEN OUTPUT statement.
    PARAMETERS:
      p_rad1 TYPE c RADIOBUTTON GROUP rd1,
      p_rad2 TYPE c RADIOBUTTON GROUP rd1.
    PARAMETERS:
      p_chk1 TYPE c AS CHECKBOX,
      p_chk2 TYPE c AS CHECKBOX.
    AT SELECTION-SCREEN OUTPUT.
      CLEAR: p_rad1, p_rad2, p_chk1, p_chk2.
    Hope this helps.
    Regards,
    txhughes

  • Triggering POPUP to SAVE when user Presses BACK  Button

    h4.
    Hi Friends,
    h4.
    When the User Presses BACK Button in the PF Status, it should trigger POPUP_TO_CONFIRM  whether to SAVE or not.
    h4.
    Suppose if the user doesn't change any thing in the Screen, it should not ask the User.
    h4.
    How can i know whether the user changes something in the Screen.
    h4.
    Screen mean Table Control..
    h4.
    How can i track this.
    h4.
    Regards:.
    h4.
    Sridhar.J

    Hi Sridhar,
    Within the table control loop, create a chain of all the fields in the structure of line type. call a PAI module with addition ON CHAIN-REQUEST. This is a conditional module call which will be triggered ONLY when user changes something on the screen. In this module you can set a global variable DATA_CHANGED to say 'X'. When user chooses BACK function, check this global variable to decide on the confirmation popup.
    One small caution. If you have the ROW SELECTION field also included in the line type of your internal table associated with the table control, you need to exclude that from the CHAIN of fields above; otherwise even when user selects a line or de-selects, this module will be triggered.
    Read ON CHAIN-REQUEST and ON REQUEST online ABAP help for more clarity.
    Regards
    Suresh
    Edited by: Suresh Radhakrishnan on Sep 28, 2009 4:29 PM

  • Call transaction MMBE from another program and press Back button

    Hello,
    I have program that is used as a 'launch pad' for some of our heavily used transactions. When I call the main 'launch pad' program, the user will select a button and a Call Transaction MMBE is initiated (USING the first screen). The user selects a material for display and presses the execute button (F8). The material overview is displayed correctly.  When the user presses the Back button (F12), transaction returns all the way back to the first called program and not to the first screen for transaction MMBE as expected.
    Does anyone know how I can change the screen flow and go back to the fist screen of MMBE and not the screen of the first called program?
    Regards,
    RC

    Rod,
    In your case i think it is not possible as it is standard functionality by SAP.
    Try work around, may be modification to the program will work.
    Regards,
    Amey

  • YouTube requires me to press "back" button twice to return to a previous page

    Hi!
    FF consistently and across OSes(I use several, mostly Linux distros) fails to simply go back tot he prior page when I press the browser's "back" button. It's done this for months. Completely resetting FF doesn't work, nor does clearing the cache and restarting it manually.
    This is a very irritating problem, especially since I prefer FF so strongly over any other browser and don't want to have to hit back twice every time I want to return to a play list/etc. To clarify, it simply reloads the page/video I'm currently on, then finally does what I want it to after 2 clicks of the "back" button. For someone that needs YouTube for work purposes as well as for the sake of a great many tutorials, this needs resolution ASAP.
    Thanks in advance for any help! I feel I've probably isolated the issue enough that it's very unlikely to be a problem with my OS or malware.
    What's the most likely culprit here?
    I should also mention that this happens not only across OSes, but on both a Lenovo G770 laptop and a AMD FX-8350 16GB RAM desktop PC I built very recently.

    Please also see youtube's support. However if there is an issue with the back button for a specific site, please check the cookie settings for the site.
    *[[Delete cookies to remove the information websites have stored on your computer]]
    *[[Cookies - Information that websites store on your computer]]

  • Problem displaying drill down STANDARD ALV for a particular record after pressing back button

    I have a simple interactive ALV grid report. NOT 'OO'. It display correctly on initial execution. AT the moment, 6 records. I want it to work such that if i click record '1', a drill-down version of that ALV with only that one record clicked is displayed. This currently occurs correctly. The problem arises when i click the back button and want to click on a new record, say in the 2nd row..this new 2nd row record is not displayed. The first one is displayed again. I tried clearing and fiddling around but then the last record is displayed. I have used the 'ID' field as a 'hotspot' getting picked up by sy-tabindex. Maybe it could be that i shouldn't loop and use  a work area e.g in my select statement. i'm not so sure i've looked around, and tried a few things. I can't get it right yet. My code is below:
    *& Report  ZALV
    REPORT  ZALV.
    TABLES: ZCONTACT.
    TYPE-POOLS: slis. "slis contains all of the ALV data types.
    TYPES: BEGIN OF ty_zcontact.
             INCLUDE STRUCTURE zcontact.
    TYPES: icon TYPE char4, "field holding traffic light value- adding a column to internal table to hold the traffic light
             END OF ty_zcontact.
    DATA: "fieldcatALOG TYPE slis_t_fieldcat_alv WITH HEADER LINE,
           it_zcontact TYPE TABLE OF ty_zcontact,"declares an internal table of type ZCONTACT
           wa_zcontact TYPE ty_zcontact,
           gd_layout TYPE slis_layout_alv,
           gd_repid LIKE sy-repid,
           g_variant TYPE disvariant,
           gx_variant TYPE disvariant,
           g_save TYPE c VALUE 'X',
           it_fieldcat TYPE slis_t_fieldcat_alv,"declares field catalog table of line type alv
           wa_fieldcat TYPE slis_fieldcat_alv, "declares the work area of the field catalog
           it_list_top_of_page TYPE slis_t_listheader.
    DATA: it_fieldcat1 TYPE slis_t_fieldcat_alv,
           wa_fieldcat1 TYPE slis_fieldcat_alv.
    DATA: V_FIELD(30) TYPE C,
    V_VALUE(10) TYPE C.
           "izontact TYPE TABLE OF zcontact.
            "i_logo TYPE OT.
           "ls_layout TYPE slis_layout_alv.
    **Selection Screen details
    *SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
    *PARAMETERS: variant like disvariant-variant.
    *SELECTION-SCREEN END OF BLOCK B1.
    SELECT-OPTIONS:
    age FOR wa_zcontact-age,
    lastnme FOR wa_zcontact-lastname.
    **Getting default variant
    *  AT SELECTION-SCREEN ON age.
    *    SELECT SINGLE age FROM zcontact INTO wa_zcontact-age WHERE age = age.
    *  IF sy-subrc NE 0.
    *    MESSAGE:'That age does not exist mate, Please enter another age' TYPE 'E'.
    *    ENDIF.
    INITIALIZATION.
    *gx_variant-report = sy-repid.
    *CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
    *EXPORTING
    *  I_SAVE = G_SAVE
    *  CHANGING
    *    CS_VARIANT = GX_VARIANT
    *  EXCEPTIONS
    *    NOT_FOUND = 2.
    *IF SY-SUBRC = 0.
    *  VARIANT = GX_VARIANT-VARIANT.
    *  ENDIF.
    START-OF-SELECTION.
      PERFORM DATA_RETRIEVAL.
      PERFORM BUILD_FIELDCATALOG.
      PERFORM DISPLAY_ALV_REPORT.
      PERFORM top_of_page.
    "g_repid = sy-repid.
    *Fetch data from the database
    FORM DATA_RETRIEVAL.
    SELECT * FROM zcontact INTO TABLE it_zcontact WHERE age IN age AND lastname IN lastnme.
    "assigning traffic light colour to each row based on a condition
    *  IF wa_zcontact-age GE 65.
    *   wa_zcontact-icon = 1. "Red Traffic Light
    *   ELSEIF wa_zcontact-age BETWEEN 40 AND 64.
    *     wa_zcontact-icon = 2. "Yellow traffic light
    *     ELSE.
    *       wa_zcontact-icon = 3." Green traffic light
    *       ENDIF.
    *       MODIFY it_zcontact FROM wa_zcontact TRANSPORTING icon.
    *       CLEAR wa_zcontact.
    ENDFORM.
    FORM BUILD_FIELDCATALOG.
    *Build field catalog
    wa_fieldcat-fieldname = 'ID'.
    "wa_fieldcat-seltext_m = 'The Contact ID'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'LASTNAME'.
    "wa_fieldcat-seltext_m = 'Contact Lastname'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'FIRSTNAME'.
    "wa_fieldcat-seltext_m = 'Contact Firstname'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'DOB'.
    "wa_fieldcat-seltext_m = 'Date Of Birth'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'TEL'.
    "wa_fieldcat-seltext_m = 'Telephone Number'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'ADDRESS'.
    "wa_fieldcat-seltext_m = 'The Address'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'OCCUPATION'.
    "wa_fieldcat-seltext_m = 'The Occupation'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'WEIGHT'.
    "wa_fieldcat-seltext_m = 'WEIGHT'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'AGE'.
    "wa_fieldcat-seltext_m = 'AGE OF THE CONTACT'.
    wa_fieldcat-do_sum   = 'X'.        "Display column total
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'SALARY'.
    "wa_fieldcat-seltext_m = 'SALARY'.
    wa_fieldcat-do_sum   = 'X'.
    APPEND wa_fieldcat TO it_fieldcat.
    gd_layout-lights_fieldname = 'ICON'.
    ENDFORM.
    FORM DISPLAY_ALV_REPORT.
    gd_repid = sy-repid.
    *Pass data and field catalog to ALV function module to display ALV list
       CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
           it_fieldcat            = it_fieldcat
           i_callback_program     = gd_repid
           i_callback_top_of_page =  'TOP_OF_PAGE'
           i_callback_user_command =  'USER_COMMAND'
           i_structure_name       =  'ZCONTACT'
           i_save                 = 'X'
           is_variant             = g_variant
           is_layout     = gd_layout
    TABLES
           t_outtab      = it_zcontact
    EXCEPTIONS
           program_error = 1
           OTHERS        = 2.
    ENDFORM.
    FORM top_of_page.
    *ALV Header declarations
       DATA: it_listheader TYPE slis_t_listheader,
             wa_listheader TYPE slis_listheader,
             t_line like wa_listheader-info,
             ld_lines TYPE I,
             ld_linesc(10) TYPE C.
    wa_listheader-typ = 'H'.
    wa_listheader-info = 'Contact Details'.
    APPEND wa_listheader TO it_listheader.
    CLEAR wa_listheader.
    wa_listheader-typ = 'S'.
    wa_listheader-info = sy-repid.
    wa_listheader-key = 'Program Name:'.
    APPEND wa_listheader TO it_listheader.
    CLEAR wa_listheader.
    wa_listheader-typ = 'S'.
    wa_listheader-info = sy-uname.
    wa_listheader-key = 'User Name:'.
    APPEND wa_listheader TO it_listheader.
    CLEAR wa_listheader.
    wa_listheader-typ = 'S'.
    wa_listheader-key = 'Run Date :'.
    CONCATENATE sy-datum+6(2)
                 sy-datum+4(2)
                 sy-datum(4)
                 INTO wa_listheader-info
                 SEPARATED BY '/'.
    APPEND wa_listheader TO it_listheader.
    CLEAR wa_listheader.
    wa_listheader-typ = 'S'.
    wa_listheader-key = 'Time :'.
    CONCATENATE sy-uzeit(2)
                 sy-uzeit+2(2)
                 sy-uzeit+4(2)
                 INTO wa_listheader-info
                 SEPARATED BY ':'.
    APPEND wa_listheader TO it_listheader.
    CLEAR wa_listheader.
       CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
         EXPORTING
           it_list_commentary = it_listheader
           i_logo = 'KLOGO'.
    ENDFORM. "top_of_page
    *& Form sub_user_command
    FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM
    P_SELTAB TYPE SLIS_SELFIELD.
    CASE P_UCOMM.
       WHEN '&IC1'.
    CASE p_seltab-fieldname.
       WHEN 'ID'.
       READ TABLE it_zcontact INTO wa_zcontact INDEX p_seltab-tabindex.
       PERFORM DATA_RETRIEVAL1.
       PERFORM BUILD_FIELDCATALOG1.
       PERFORM SECOND_GRID.
       ENDCASE.
       ENDCASE.
    ENDFORM. "
    FORM DATA_RETRIEVAL1.
    SELECT * FROM zcontact INTO TABLE it_zcontact WHERE id EQ wa_zcontact-id.
    ENDFORM.
    FORM BUILD_FIELDCATALOG1.
    *Build field catalog
    CLEAR: wa_fieldcat, it_fieldcat.
    wa_fieldcat-fieldname = 'ID'.
    "wa_fieldcat-seltext_m = 'The Contact ID'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'LASTNAME'.
    "wa_fieldcat-seltext_m = 'Contact Lastname'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'FIRSTNAME'.
    "wa_fieldcat-seltext_m = 'Contact Firstname'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    ENDFORM.
    FORM SECOND_GRID.
       CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         I_CALLBACK_PROGRAM = SY-REPID
         IT_FIELDCAT = IT_FIELDCAT
         i_structure_name       =  'ZCONTACT'
         i_callback_user_command =  'USER_COMMAND'
         TABLES
           T_OUTTAB = IT_ZCONTACT.
       ENDFORM.

    Hi Ten Mariga,
                     I wonder why the second select Query is needed at all instead you can use
    ---> Not Needed
    FORM DATA_RETRIEVAL1.
    SELECT * FROM zcontact INTO TABLE it_zcontact WHERE id EQ wa_zcontact-id.
    ENDFORM.
    ----> Instead you can do
       READ TABLE it_zcontact INTO wa_zcontact INDEX p_seltab-tabindex.
      Append wa_zcontact to Second_table.
    And you can use the Second_table to display the second ALV. The second Select Query will affect the performance too.
    Cheers,
    Krishnakumar B.

  • How to stay back on same section of a report after pressing cancel button

    Hi,
    How we can stay back on a same section of a report page when I press Cancel button or Apply Changes button from linked Data Entry Form. For instance if I have a 200 rows in a report and I scroll down to 80th row and press Edit button when called a data entry form. Now when I press Cancel it again re-load the report from the start of the page.
    Any idea!
    Thanks
    Sabahat

    Hi Sajid,
    Thanks for reply.
    I have used RETURN statement like below.
    SUBMIT RFWT0010 WITH vendor       = 'X'
                     WITH i_lifnr  IN i_lifnr
                     WITH i_bukrs  IN i_kunnr
                     WITH test         = 'X'
                      AND RETURN.
    The output of RFWT0010 is displayed. but on pressing "back" button on toolbar, the flow is coming back  from RFWT0010 to calling report. I want that On pressing ENTER button of keyboard. The flow should come back to calling report.
    Regards,
    Ratnesh

  • Disable page display when back button is pressed after logout

    hi,
    I dont want the old pages to appear once the back button is pressed after loggin g out. That is .... when logged in, if the user presses back button then his previous pages must be shown....but once the user logs out and then if he presses back button then some message like session has been closed....like message should be displayed.
    Hope you understood the problem

    If you expire a page then back button will not take it to the previous page.
    expire is a HTTP-EQUIV meta tag in the header of the page. You can set the content to some time in the "past" when serving the page first time.
    Expires
    This tells the browser the date and time when the document will be considered "expired." If a user is using Netscape Navigator,
    a request for a document whose time has "expired" will initiate a new network request for the document.
    An illegal Expires date such as "0" is interpreted by the browser as "immediately." Dates must be in the RFC850 format, (GMT format):
    <META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT"> Hope this works for you, there are browser dependencies as well.
    vr,
    Sudhakar B.

  • To check values in a subscreen when back button is pressed

    Hi,
    I have few fields in a subscreen and if user changes any of the values and presses 'back' button in the main screen, then I need to give a pop up asking whether to save or not.
      But the problem is, the processing wont go to the PAI of the subscreen unless and until any button is pressed.
    I have put all the fields in chain-endchain and also have written a module on chain-request. But it doesn't work.
    What do I do?
    Thanks in advance,
    Hema.

    Hi
    The PAI of subscreen is in the PAI of mainn screen:
    PROCESS PBO
    -> MODULE for main screen
    CALL SUBSCREEN SUBSCREEN INCLUDING <PROG> <SCREEN>.
    PROCESS PAI
    CALL SUBSCREEN SUBSCREEN.
    MODULE USER_COMMAND.
    So if you have a flow like that the system before trigger the PAI of subscreen and after the PAI of main screen. So now before triggering user-comand, the system run PAI of subscreen.
    If you insert the fields in the CHAIN/ENDCHAIN you could have some problem, because the fields of subscreen can't be inseterted in the chain control of fields of main screen.
    Max

  • Blank screen while pressing "Cancel" or "Back" button in Portal

    Hi Experts,
    We have a peculiar problem.
    The user is trying to access time levelling report (which is a
    iView) in MSS.
    The user is getting the output of the report.  When the user tries to press "back button" from the output screen (which is a SAP Transaction iView)  the user is getting blank screen insted of report input screen.
    Please suggest me some hints to resolve this.
    Thanks
    Abdul

    I was calling details screen( screen called from ALV) using call screen in double click event. I changed this to SET SCREEN 110.LEAVE SCREEN. Now my back button in ALV screen started working as expected.
    Thanks  for your answers.
    Joby

  • Display data when Back button of Browser is pressed

    Hi All,
    Thanks for Reading my query.
    I have an issue with display of data in Jsp page:
    I have 2 JSP pages, wherein i entered data in page1 and clicked submit to see page2.Now i pressed back button of browser and im able to see data which i entered.I require the feilds in page1 to be cleared when back button is pressed in page2.Could any one please tell me how to handle this issue.
    Please help me out.
    cheers,
    sharath

    you can use the HTML header set pragma - no-cache expires - 0 and cache-control - no cache property so whenever you will press back button of browser it will show the message page has been expired. You can find the proper syntax on any HTML site

  • Back button in Photoshop's CS4 and CS5 Save as dialog is grayed

    Whenever I open several photos and save them after job is done I have to manually locate save folder. Photoshop always opens default folder where picture is originally located, and doesn't offer back button where I saved last photo.
    This is very frustrating, because when I open several photos from different locations I want to save them on same new location. Back button is always greyed, and recent places often doesn't serve the purpose because sometimes all subdirectories have the same filename-PHOTOS, so in recent places I have 5 places with same name.
    I have this problem since CS4. This was major problem for me and I sticked to CS3. I thought it was 10.5.x problem. Later I upgraded to CS5, but problem remained. I uninstall it, upgrade to 10.6.3 SL, and reinstall CS5 but still no changes. I would really like to uninstal CS3, but cant afford to loose this functionality.
    Anyone had the same problem? I tried to google it, but couldn't find anything.
    Thnx
    My specs (but probably doesn't matter)
    Imac 2.8 Core 2 duo
    4Gb RAM
    10.6.3 SL
    CS5 extended, v 12.0

    Thanks, almost perfect!
    Well basically it does change things, but this is still not functionality as in CS3. Back button is still gray, and save as opens last save position. It does help, because I don't have to scrub trough recent places, but in CS3 I could go back as far as I want. Like in web browsing, back is meant to be for getting back. Back, back, back. In fact, only time I can press back button is when I am browsing trough folders searching for new save position. When I press save, back is always gray and totally useless. Is like this to everyone? Did maybe Adobe loose that functionality?
    I tried now to compare functionality from both, and CS3 even remembers position from last photo I saved minutes ago in CS5?!
    My English is not so good, so I hope I am explaining clearly enough.

  • Problem with holding back button to flash phone

    I cant intall xrecovery. I tried many tutorials. It just do not work when i hold/ spam click back button at white sony logo. I cant even reintall my soft using SUS, becouse nothing is going on when i press back button (according to SUS instructions). What am i doing wrong? I have X10 pro mini with 2.1-update1 2.1.1.A.0.6, core version 2.6.29 SEMCUser@SEMCHost #1. Any tutorial i try, i copy xrecovery files to my system/bin foder and pressing back button does not work. I wonder why, in SUS update holding back does not work also... So just standard sony ericsson animation appears after while. Please help me, i am stuck from month now.

    *Moved to Android development*
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Back button from cross-document link shows Security Settings pane

    I have a PDF with many cross-document links (links to page views in another PDF within the same folder). When users have these set to open in the same window, the expected actions occur: the source document closes (or appears to close) and the destination document opens to the chosen page view. However, once we password protect the PDFs, we notice an odd behavior. When the Back button is used to get back to the source document, it takes the user back to the appropriate spot; however, if the user had their bookmarks pane open in the source document, the Security Settings pane is open instead when Back is used.
    So, to summarize:
    - Cross-document link from source doc to destination doc, preference set for these to open in the same window.
    - Source doc and destination doc both password protected.
    - Initial view setting for both docs is Bookmarks Panel and Page.
    - User has bookmarks pane open in source doc, clicks on cross-document link.
    - Source doc closes, destination doc opens as desired.
    - User presses Back button.
    - Destination doc closes, source doc reopens to the appropriate location - but bookmarks pane is now replaced by the Security pane.
    We'd really like to find a way to avoid this; this is a pretty useless pane to have open and the structure of these docs means that users are frequently going to view them with their bookmarks open. Is this a bug? Is there a setting I can dig for? We think it's not happening in Acrobat 9 (I can't confirm, but this is what my client  has said) but is happening in 10 and 11, and also in the current version of Reader.
    Can anyone shed any light?

    Remember that here you have of community of fellow end-users. Not the Acrobat Engineering team eh.
    afaik - It is build in behavior. Similar to defaulting to display of the pages thumbnail pane in the navigation panel when an "insert" page is done.
    There is a certain logic to it so it may have been deliberate. As an end-user I'm not appreciative of such. Some "developer staged user assistance" I can do without.
    You may want to consider a submission via:
    Adobe - Feature Request/Bug Report Form 
    Be well...

  • In PS module transaction CJ40 after detail planning back button throws out

    In CJ40 primary cost planning we come back to annual view by clicking back button now if i press back button system throws out from transaction CJ40 . rather to come back to element overview screen. Anybody can give me solution for this as the user suffer most during the cost planning of project having more than 100 WBS. if by mistake he click button in middle of his work . all his work lost and he has to do it again it should ask for saving or not . please give me solution
    Edited by: shab396 on Mar 9, 2011 6:07 PM

    Hello,
    Are you uploading the data manually through transaction code?
    It is better if you create a program to manage planning data and upload the data at one go. You will save a lot of time.
    You can use FM 'KBPP_EXTERN_UPDATE_CO' for CJ40.
    You can also go for BDC recording but if there is a FM or a BAPI available for it then better is to use FM/BAPI.
    Hope this helps.
    Regards,
    Saba

Maybe you are looking for