Standard sap BACK, CANCEL icons affected by custom status - why?

Hello SDN Community,
I was trying to clean up some items in the Function List display of my custom status and I had deleted a couple of items that I had created incorrectly.
After that, I ran my transaction and clicked the standard sap EXIT icon.  It returned me to the initial SAP screen.   However, I noticed that the BACK and CANCEL icons were greyed out.  It was working fine 5 minutes before this.
Would anyone know what I might have done to cause this to happen?  Things to look for, places to check?
Thank you,
Dean Atteberry.

Rich,
Both buttons (BACK, CANCEL) have function codes of the same name.
The EXIT button has function code of "EXIT".
All three are active as long as my transaction is running and they function fine from any screen (about 6 screens).
However, when I hit any one of the three (BACK, EXIT, CANCEL), it returns me to the SAP Easy Access screen.  On that screen BACK and CANCEL are greyed out.  EXIT is active.
When I hit back from my first screen, my program does "LEAVE PROGRAM".   So I turned on debugger and put SY-PFKEY in the variable display and hit BACK.  It went directly to Easy Access, so I didn't see anything.  However, when I typed in SE38 in command line, it was still in debugging mode and "SESSION" showed up in debug variable display for SY-PFKEY.
Program for easy access is SAPLSMTR_NAVIGATION and when I looked in SE41 for status SESSION, found it.  I can see function code settings, but not sure what it means.
Looks like I managed to mess something up internally when I deleted those incorrect function codes because my program works fine.  Its when I return to SAP that this happens.
Also tried logging off and logging on in hopes that it was transient, but still happening.  8-(
Thank you for your help.
Dean Atteberry.

Similar Messages

  • Is there any Standard SAP Report?for displaying Billing block/Status-Order

    Hi,
    Am a ABAP Developer. I heard that there is SAP Query/ABAP Query/Standard SAP report for the below functionality/requirement. SO, pls. let me know if there is any SAP Query/ABAP Query/Standard SAP report?
    "This report is suppose to display Credit and Debit memo documents which are blocked and yet has a status of APRV; the other display is for Return Documents which are blocked and yet has a status RCVD."
    thanq

    Hi,
    Use t-code
    V23 - Blocked sales document for billing
    VA14L - Sales document blocked for delivery
    VFX3 - For blocked billing documents.
    Kapil
    Edited by: Kapildev Farakte on Jan 8, 2010 4:15 AM

  • How release of PR is affected in standard SAP

    Dear experts,
    Please help. How standard SAP PR release is affected. I want that if any change in PR , release will be affected. How this can be done. Please advise
    Thank you
    Kind regards,
    Zusen

    >
    Badruddoza Zusen wrote:
    > Hi
    >
    > Thank you for your reply.
    >
    > I checked that re-trigger is happened if i change value only when value exceed the certain level as specified in the release strategy. But, what i need to do if i want that any change in value will re-trigger release strategy.
    >
    > Please advise.
    >
    > Kind regards,
    > Zusen
    To pick up release strategy for all value your value characteristic should read:
    >= 0
    Meaning Greater than or = 0, even the release strategy will pick up PO's with 0 value in this case.
    Edited by: Afshad Irani on Jun 21, 2010 9:53 AM

  • Standard SAP report for variance analysis of SD and MM

    Dear All,
    I want the standard SAP report for the vendors and customer varaiance analysis for the posting done in MM and SD with the GL balance in FI .It should be same as the report we get from the transaction code MB5L.
    Thanks in advance
    Meruta

    HI,
    The 1AB library contains reports for variance analyses. This is an important report for Cost Center Accounting (CO-OM-CCA) supplied in the SAP R/3 System. Additional information for  report can be found in the documentation for the reports. Choose Extras->Documentation from the report itself.
    Hope I had been able to help you out. Please assign points.
    Rgds
    Manish

  • Set User Authentication at Particular UDF or Standard SAP Field?

    Hi Experts,
    I learn that we can set authorization at UDT by using Additional Authorization Creator.
    Is there any method we can set authorization at particular UDF or Standard SAP Field?
    For example: my customer just want to make one field in Business Partner to be "READ-ONLY" for certain users, is it possible to be done?
    Thanks.
    Regards,
    Lay Chin

    hi
    yes if u want to make any additional authorizations in sap related documents or udo you can use additional authorization creator
    u would have to check in the test database like the authorization u wana create if it is feasible through inbuilt additional authorization creator or not.
    Regards,
    Manish

  • BP Cockpit. Standard sap icon (e.g. ICON_OKAY) within a cell of XML table?

    Hello all,
    I have programmed a custom bp cockpit.
    I am able to build up the xml to show the data, but only with texts.
    Does anybody know how could I be able to insert an image (an standard SAP icon like "ICON_OKAY") in any of the table cells?
    Thank you very much in advance.
    Gonzalo Milla Millá

    Hello all again,
    finally, I found the way...
    The problem was that the standard XSLT conversion program 'CRM_CCKPT_CFS_SERVICE_DEFAULT' ignores the tag 'img' so... there's no way to insert images (at least within a table cell).
    I try to explain the solution:
    FIRST: Create own XSLT conversion program
    a. Go to transaction XSLT_TOOL
    b. Copy the standard conversion program 'CRM_CCKPT_CFS_SERVICE_DEFAULT' to a customer one... let's call it 'Z_CCKPT_CFS_SERVICE'.
    c. Modify this Z_CCKPT_CFS_SERVICE adding following lines:
    <xsl:when test="child::img=true()">
      <td class="table7" width="{@width}" nowrap="x">
        <img src="{child::img/@src}"/>
      </td>
    </xsl:when>
    insert this lines just before, and at the same level that
    <xsl:when test="@colspan=true()">
    Here we are telling to the conversion program how to translate XML code for images to HTML code (only when they are found between "td" tags)
    SECOND: Find icon path and insert it within XML code
    a. Go to your Z class for your infoblock (let's say Z_CL_INFOBLOCK) that inherits from CL_CRM_CCKPT_IOS and modify the GET_REPORT method
    b. Get the icon path:
    DATA:
      lc_icono TYPE string.
      lc_icono = cl_bsp_mimes=>sap_icon( 'ICON_OKAY' ).
    This way, we get the physical path to the icon.
    c. insert icon in xml code:
    DATA:
      lv_string TYPE string.
    CONCATENATE '<img src="' lc_icono '"/>'
      INTO lv_string.
    CALL METHOD crmcl_cckpt_templatesplitter=>fill_template
      EXPORTING
        iv_tagname  = 'S1'
        iv_string   = lv_string
      CHANGING
        cv_template = ls_template.
    Here, we are filling contents of tab 'S1' in the XML template LS_TEMPLATE with the line
    <img src="physical/path/of/your/icon.gif"/>
    , that will be "translated" with your Z XSLT conversion program Z_CCKPT_CFS_SERVICE
    THIRD: link Z conversion program ('Z_CCKPT_CFS_SERVICE') to your XML.
    a. Also within the GET_REPORT method, after the creation of the XML code, insert following line as the first one in the XML table (export parameter of the method):
    DATA:
      lw_meta TYPE string.
      lw_meta = '<meta:metadata xmlns:meta="urn:sap-com:document:sap:crm_cckpt:metadata" STYLESHEET="Z_CCKPT_CFS_SERVICE"/>'.
      INSERT lw_meta INTO lt_xml_temp INDEX 1.
      _et_xml_out[] = lt_xml_temp[].
      CLEAR et_xml_out.
      LOOP AT _et_xml_out INTO _ls_xml_out.
        CONCATENATE et_xml_out lv_newline _ls_xml_out INTO
                    et_xml_out.
      ENDLOOP.
    FOURTH: Finally, it works!!!
    You have your icon included as the content of a table cell...
    Hope this helps
    Best Regards
    Gonzalo Milla Millá

  • How to find CUSTOMER EXIT for a Standard SAP program

    How to find CUSTOMER EXIT for a Standard SAP program

    Hi
    To introduce the techniques of enhancement in standard SAP system. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    They do not affect standard SAP source code.
    When you add new functionality to your SAP System using SAP’s exits, you do not alter the source code of standard SAP programs in any way. The code and screens you create are encapsulated as separate objects. These customer objects are linked to standard applications, but exist separately from SAP’s standard software package.
    They do not affect software updates.
    When you add new functionality to your SAP System using SAP’s exits, your objects (called customer objects) must adhere to strict naming conventions. When it comes time to upgrade a to a new software release, customer objects’ names ensure that they will not be affected by any changes or new additions to the standard software package.
    Customer exits are not available for all programs and screens found in the SAP System.
    Any change made to an SAP object in a customer system is called a modification. Customers usually modify their systems for one of two reasons. Either they make changes to the SAP standard in order to adjust the R/3 System to their specific business needs (actual modifications), or they alter individual SAP objects in order to correct an error (as recommended in an SAP error note).
    You should only modify the SAP standard if the modifications you want to make are absolutely necessary for optimizing work flow in your company. Be aware that good background knowledge of application structure and flow are important prerequisites for deciding what kind of modifications to make and how these modifications should be designed.
    SAP application programmers create SAP enhancements in transaction SMOD using function module exits, menu exits, and screen exits.
    Customers are given a catalog containing an overview of existing SAP enhancements. They can then combine the SAP enhancements they want into an enhancement project using transaction CMOD.
    SAP enhancements are made up of component parts. These components include function module exits, menu exits, and screen exits. A specific component may be used only once in a single SAP enhancement (this guarantees the uniqueness of SAP enhancements).
    Customer enhancement projects consist of SAP enhancements. Each individual SAP enhancement may be used only once in a single customer enhancement program (this guarantees the uniqueness of a customer project).
    SAP application programmers preplan function module exits, menu exits, and screen exits for their applications and combine them to create useful enhancements for the R/3 System.
    Customers create their own enhancement projects for their systems using SAP enhancements. You can customize the individual components of an enhancement project by creating your own include programs (for function module exits), texts (for menu exits), and subscreens (for screen exits).

  • How to display standard SAP icons in WebDynpro?

    Hi everybody,
    in my web dynpro app I'm using several web icons for display. Works very well so far with this notation: `~Icon/Failure` e.g.
    Now I need an icon which I can't find in the web icons library: the standard sap icon ICON_PRESENCE.
    I have tried this method: http://www.sapgeek.net/2009/10/web-dynpro-use-icons/  but it doesn't work; it seems that the system searches for the gif name as a web icon and can't find it.
    Is there any other way to diaplay standard sap icons in web dynpro, or does someone know if there is a web icon showing a burning light bulb??
    Thank you in advance for any advice!

    Hi,
       Suppose you need to display a standard SAP icon then take a image UI element and in the property SOURCE
       of image element click on the small F4 icon, a window opens with different tabstrips, select SAP ICONS tab
       and choose the relevent icon.
       If you dont find the icon, then you can upload the icon onto the application server and use it in your component.
      For this rightclick on your component and create a mime object and import the image from PC to SAP and you can
      now use this and will find it in the component usage tab in that F4 window of SOURCE property.

  • How to change standard SAP program SAPLFSKB to add custom fields...?

    Hi Gurus,
    I have to change the standard SAP program SAPLFSKB screen 100 to add custom fields...i looked into OSS notes and there is a note: 174413 that provides steps to add custom fields...but when i try to do this it doesnt let me do it...it says that request cannot be changed....do i have to use modification agent...if that is the case then how shud i proceed with this....so please provide me some inputs....
    your help will be appreciated...
    Any inputs for me....
    cheers:sam
    Message was edited by:
            Sam williams

    try going into edit->enhancement operations->create.  this will allow up to add your customized field.

  • How to add a custom code to standard sap menu

    Hello guru,
    will you please explain me how to add a custom code to standard sap menu?
    thanks in advance.
    Best regards.
    juan

    Hello juan,
    with SE43N you can add custom transaction codes to the existing menues.
    see http://help.sap.com//saphelp_erp2004/helpdata//EN/00/783b377bfdcf61e10000009b38f936/frameset.htm
    regards
    johannes

  • Adding Custom fields to standard  SAP-EBP application

    Hi,
    A functionality requires some custom fields to be added to the standard SAP-SRM EBP ( Manage business partners) application.
    If I copy the whole BBP_VENDOR_CREATE program into a Z-program, and the BBPMAININT internet service to a Z-application, then would it be feasible??
    Which is the best way to add custom fields in a SAP standard EBP application--in the 'Manage business partners' section.
    Regards,
    Goutam

    Hi
    I don't think it's easily possible to add custom fields to the existing transaction - BBPMAININT.
    For adding customer fields you can refer the SAP OSS not - 672960, but I don't think it will be of much help here.
    <b>Since SAP has not upgraded this transaction - BBPMAININT for a quite long time, you need to do all the logic and validation from your end.</b>
    <u>Better to go for you own Z (custom program) and make your logic accordingly.</u>
    Regards
    - Atul

  • Adding Custom fields to standard  SAP-ITS application.

    Hi,
    A functionality requires some custom fields to be added to the standard SAP-SRM EBP ( Manage business partners) application.
    If I copy the whole BBP_VENDOR_CREATE program into a Z-program, and the BBPMAININT internet service to a Z-application, then would it be feasible??
    Which is the best way to add custom fields in a SAP standard ITS application.
    Regards,
    Goutam

    Hi Goutam,
    > If I copy the whole BBP_VENDOR_CREATE program into a
    > Z-program, and the BBPMAININT internet service to a
    > Z-application, then would it be feasible??
    Yes, I think so.
    Best regards,
    Henning

  • Does standard SAP has a Adobe Interactive form for Customer Master?

    Hello,
    Pls. let me know whether the standard SAP does have a Adobe form for Customer Master, if so, pls. let me know.
    Actually, i searched in List of SAP standard Adobe forms: Go to http://service.sap.com/erp (SAP ERP) -> Media Library - SAP ERP Overview -> Detailed information cross ERP -> Adobe Forms for SAP ERP...but, did not see any
    Thank you

    Checkout this form: F_SAPMFBWE_10
    Regards, Aldo.

  • Re: Cancelling of approval in standard SAP release strategy.

    Hello All,
    At present the release strategy used by our client has the standard SAP strategy. The release strategy works fine for the approval part. The issue lies with withdrawal of approval.
    At present when a lower level approver withdraws his approval, higher level approvals are withdrawn automatically. Our client requires that when a higher level approver has approved the doc, the lower level approver ( who has already approved the doc) should not be able to withdraw it.
    i have looked around on SAP but i don't believe that standard SAP allows for a strategy for withdrawal of release. I believe this is a common requirement for many businesses. Could you please show me how to go about this. Should it be done through customizing. We do have a workflow in place.
    If your business had the same requirement, how did you configure.
    Thanks for reading this.
    Regards,
    Soumyadeep Paul

    Hi,
    I think you have configured you release matrix in such way that even higher level approver is dependent on the approval of the lower level approver.
    In release prerequisite, don't set lower level approver's approval as a prerequisite for approval of higher level approver and then check. But this should be first discussed with the Business users and then only can be implemented.

  • Roll back to standard SAP, after generating a new version for an interface

    Hello all,
    Somebody has modified one standard interface, and now a new version has been created with that  user name.  But, there is no difference between the old SAP version and the current active versioin (he/she has changed nothing).  If i go and see the version management it is appearing like this,
    X     Active    ..............   with that user name............
    below which i have the standard SAP version like this,
    .......................0.00.000. ......................  SAP
    But, if i go and see the attributes for that interface,  its showing
    LAST CHANGED BY    ............................ SAP
    how this can happen, when the active version is under a user name, but still the attributes is showing LAST CHANGED BY as SAP ????
    one more question,
    Now i want to revert my interface back to Standard SAP version, although there are no changes between the old and the current version.  If i go and see the version management, it should show me only one version that too of standard SAP, like this,
    X      Active...........................   SAP.
    THe reason is, some body in future on seeing this interface should not think that this standard interface got changed.
    Is it possible now?  Please give me suggestions. 
    Thanks in advance

    Hi ,
    This currently seems like a bug , we have encountered this too.
    work around is you have to delete the rtf files from server Siebel\client\temp\XMLP directory and upload them again so that they are not cached any more.
    same on dedicated client you may have to delete relavant files form siebel\client\temp\xmlp directory and upload again.
    Thanks,
    Vamsi

Maybe you are looking for

  • Itunes Store Search will not work

    So i am trying to search for music in the Itunes store using the Search function, and everytime i try to search, it ends in this message "We could not complete your itunes store request. The request resource was not found....There was an error in itu

  • Addons in Safari for Windows

    I cant figure out how to install addons for Safari for Windows. Is it possible. I downloaded the file from other websites, but i dont know what to do with them or where to put them and such. Can anyone help me, if it isnt possible, is thee any progra

  • Smooth Scrolling Pages - Memory Error (while uploading)

    Landscape Magazine Article: iPad version is 2048x6144 (4 pages tall, but smooth scrolling). This one uploads without problem. iPhone 5 version is 1136x4000. Same layout as iPad, only font sizes are bumped up for readability. Content Generation Error:

  • FTP on UNIX

    Guys, I'm trying to write code for FTPing files from a unix server. How do I define the FTP command ? String ftpCommand = " ??" I was able to make FTP work on Windows but unable to do so on unix. and NO, I do not want to use already written FTP API f

  • Deactive post code check in sales order

    Hi all   We have one customer ,but  this customer need us change ship-to-party  address and postal code in sales order header(). but our system  will check the country code and postal code. How can I deactive post code check in  sales order ??? thank