Suppressing the message generated by standard SAP code

Hi experts,
I have requirement in which i have to suppress the warning message generated by standard SAP code.Is it possible?
If so how?
Any pointers will be highly appreciated.
Thanks,
Rakshith

Hi,
Check with the functional consultant. There might be a config transaction, wherein you can specify the type of error whether Harderror' or warning etc.
I know, Fi and MM has that.
Regards,
Subramanian

Similar Messages

  • How to know where the user exits or enhancement used in standard sap code?

    Hi
    I m pretty new to abap.
    How can I know where the user exits or enhancement used in standard sap code?
    As i have to add some functionality to the standard sap code. I m looking to search the enhancement or user exits used in this standard code wher i can add my functionality.
    thanks in advance.
    Moderator message : Search for available information, thread locked.
    Edited by: Vinod Kumar on Oct 19, 2011 2:38 PM

    Hi Henry,
    I don't think this is the easiest way to look at the code around a particular field on the screen. Debugging standard programs also can be very tedious, if not impossbile. So, instead of this question, I would like to find out exactly what you want to do if you know the code.
    If you are in a transaction and you want to know where the code of a particular field is, the fastest way to get to it is by pressing the F1 key on the field and then press the Technical info button on the help screen. In here you will typically see the same kind of information but it is very specific to the field you selected.
    PROGRAM(SCREEN) tells you which program is manipulating the main screen, in which your field is embedded. Remember your field may be included in a sub-screen and that subscreen may be the one included in the main screen.
    PROGRAM(SUB SCREEN) tells you which program is directly responsible for the field on the subscreen it is included in. This is where you should find the code most appropriate for the field, but not necessarily.
    PROGRAM(GUI) controls how your push buttons and the menu options in the screen behave and controlled.
    Srinivas

  • Tracking and maintaining data about modifications done to Standard SAP code

    Hi All,
    I need your help to know if there is a way to track and maintain the modification changes done to standard SAP code. I have gone through SE95 but not much help. Is there any DB tables which stores these information after a standard SAP code has been modified like for example when the core Mod was done, transport number for the MOD, object in which the MOD was done, version of the object etc.
    Thanks in advance.

    Hi,
        Try the following tables.
    SMODILOG & VRSD.
    Regards
    Kiran Sure

  • How to change the field length in standard sap program.

    Hi All,
    How to change the field length in standard sap program.
    Urgent
    Example:
    Text1 type c length 75,
    To change :
    Text1 type c length 150,
    Point will be rewarded..
    Thank you,
    Vikram.C

    If the only solution is to change the sap standard program, simply change the program, it will prompt for an access key. This key can be retrieved in the SAP support portal (service.sap.com) at keys and requests, sccr keys, register object.
    Sometimes these actions are outsourced to a competence center, so maybe youre not entitled to do this, in any case ask a resident senior developer for support.
    regards, Rob

  • Please provide the Message type ,IDOC TYPE , PROCESS CODE for Edi 990 ,214

    Hi friends,
    Please provide the Message type ,IDOC TYPE , PROCESS CODE for Edi 990 (Response to a Load Tender)., 214 (Shipment Status )
    For shipement status i got trxstc01 for idoc type .. but its only before 4.6 version ..for 4.7 its not there .. please give the alternate for that ...
    Thanks in Advance ....
    If any one is provide exact answer i will give Max marks ..
    Edited by: ajay KOLLA on Aug 6, 2009 8:04 AM

    Hi,
    Have you resolved this issue. If yes, can you please let me know. Im actually looking for same for EDI 867 (guess it is for summary report and need to know message type, Idoc type associated with this).
    Rgds
    Sudhanshu

  • I get the message in aktivate ARD2.0: Code:E_AUTH_NOT_READY

    Wehen I wan to aktivitate my pc I get the message: Aktivierungsderver-Fehler Code:E_AUTH_NOT_READY. So I cannot copy e-book-files to my e-book reader.

    tha is not exact my problem, i have done a user id but it soes not
    function, when i trie do activate ADE  i get code message:E....
    how can i do now?
    Am 18.07.2013 07:26, schrieb Pat Willener:
    >
          Re: I get the message in aktivate ARD2.0: Code:E_AUTH_NOT_READY
    created by Pat Willener <http://forums.adobe.com/people/pwillener> in
    /Adobe Reader/ - View the full discussion
    <http://forums.adobe.com/message/5516046#5516046

  • How to find the Access Key of Standard SAP Function Module

    Hi Experts,
    I have to change one sap standard function module.
    so how can i know the access key for that function module.......
    Regards,
    DS

    Contact the Basis Consultant in your project.
    The access key for standard SAP objects can be obtained from service.sap.com under Keys and Requests.
    Note 86161 - Registering developers and objects

  • Populating our log message along with standard sap log in ck11n.

    Hi all,
    I have developed a user exit which is used in costing of material using ck11n.
    Here i have to show our custom log message along with the standard log shown by standard sap system after costing run is complete.
    I got one FM-- CM_F_MESSAGE  which is used by SAP. But i want the message along with SAP messages and not separately.
    Can u help me out for this. its very urgent.
    Thanks in advance.

    Hi
    I'm not sure because I don't know that trx, but I seem the function group of that function manages a log, so you can try.
    This is an extract of abap code of SAPLCKDI where that fm is used:
    CALL FUNCTION 'CM_F_MESSAGE'
       EXPORTING
         ARBGB = Y_CMF-CK
         MSGNR = '327'
         MSGTY = Y_CMF-W
         MSGV1 = SICHT
         MSGV2 = KLVAR.
    So I suppose you should call it by this way:
    CALL FUNCTION 'CM_F_MESSAGE'
       EXPORTING
         ARBGB = <your message class>
         MSGNR = <message number>
         MSGTY = <message type>
         MSGV1 = <text 1>
         MSGV2 = <text 2>
         MSGV3 = <text 3>
    I think MSGV* is optional parameter.
    Max

  • How to suppress the messages

    Hi
    I am using the abap command SUBMIT to execute a report. I am using the following statement.
    SUBMIT [PRONAME] exporting to memory and return.
           When I execute the code in the NON-Dialog mode,
    It works fine when therez no (error, status or warning) messages from the report.
       But it gives a dump or error,when there is a message from the report. (For ex. "No results for the selection").
      Is that possible to handle the messages?
    Kind Regards
    Shahul

    HI
    GOOD
    CHECK OUT WITH THESE PROGRAM
    REPORT STARTER NO STANDARD PAGE HEADING.
    DATA: NAME(8) VALUE 'SAPMZTS1',
                  WID TYPE I VALUE 80,
                  LEN TYPE I VALUE 0.
    SET PF-STATUS 'SELECT'.
    WRITE: 'Select a report and its list format:',
    SKIP.
    WRITE: 'Report     ', NAME INPUT ON,
         / 'Line size  ', WID  INPUT ON,
         / 'Page length', LEN  INPUT ON.
    AT USER-COMMAND.
      CASE SY-UCOMM.
        WHEN 'SELE'.
          READ LINE: 4 FIELD VALUE NAME,
                     5 FIELD VALUE WID,
                     6 FIELD VALUE LEN.
          SUBMIT (NAME) LINE-SIZE WID LINE-COUNT LEN AND RETURN.
      ENDCASE.
    Code used to populate 'select-options' & execute report 
    DATA: seltab type table of rsparams,
          seltab_wa like line of seltab.
      seltab_wa-selname = 'PNPPERNR'.
      seltab_wa-sign    = 'I'.
      seltab_wa-option  = 'EQ'.
    load each personnel number accessed from the structure into
    parameters to be used in the report
      loop at pnppernr.
        seltab_wa-low = pnppernr-low.
        append seltab_wa to seltab.
      endloop.
      SUBMIT zreport with selection-table seltab
                                    via selection-screen.
    *Code used to populate 'parameters' & execute report 
    SUBMIT zreport with p_param1 = 'value'
                    with p_param2 = 'value'.
    Other additions for SUBMIT
    *Submit report and return to current program afterwards
    SUBMIT zreport AND RETURN.
    *Submit report via its own selection screen
    SUBMIT zreport VIA SELECTION-SCREEN.
    *Submit report using selection screen variant
    SUBMIT zreport USING SELECTION-SET 'VARIANT1'.
    *Submit report but export resultant list to memory, rather than
    *it being displayed on screen
    SUBMIT zreport EXPORTING LIST TO MEMORY.
    Once report has finished and control has returned to calling
    program, use function modules LIST_FROM_MEMORY, WRITE_LIST and
    DISPLAY_LIST to retrieve and display report.
    *Example Code (Retrieving list from memory)
    DATA  BEGIN OF itab_list OCCURS 0.
            INCLUDE STRUCTURE abaplist.
    DATA  END OF itab_list.
    DATA: BEGIN OF vlist OCCURS 0,
            filler1(01)   TYPE c,
            field1(06)    TYPE c,
            filler(08)    TYPE c,
            field2(10)    TYPE c,
            filler3(01)   TYPE c,
            field3(10)    TYPE c,
            filler4(01)   TYPE c,
            field4(3)     TYPE c,
            filler5(02)   TYPE c,
            field5(15)    TYPE c,
            filler6(02)   TYPE c,
            field6(30)    TYPE c,
            filler7(43)   TYPE c,
            field7(10)    TYPE c,
          END OF vlist.
    SUBMIT zreport EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = itab_list
      EXCEPTIONS
        not_found  = 4
        OTHERS     = 8.
    CALL FUNCTION 'LIST_TO_ASCI'
      EXPORTING
        list_index         = -1
      TABLES
        listasci           = vlist
        listobject         = itab_list
      EXCEPTIONS
        empty_list         = 1
        list_index_invalid = 2
        OTHERS             = 3.
    IF sy-subrc NE '0'.
      WRITE:/ 'LIST_TO_ASCI error !! ', sy-subrc.
    ENDIF.
    Submit report as job
    *Submit report as job(i.e. in background) 
    data: jobname like tbtcjob-jobname value
                                 ' TRANSFER TRANSLATION'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1.
    Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    Insert process into job
    SUBMIT zreport and return
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
                event_id             = starttime-eventid
                event_param          = starttime-eventparm
                event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
                laststrtdt           = starttime-laststrtdt
                laststrttm           = starttime-laststrttm
                prddays              = 1
                prdhours             = 0
                prdmins              = 0
                prdmonths            = 0
                prdweeks             = 0
                sdlstrtdt            = starttime-sdlstrtdt
                sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
                targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.
    THANKS
    MRUTYUN

  • Modification in standard SAP code.

    I want to modify a standard SAP program. THe Tcode is MM01. I want to add a new screen with few fields when the tabstrip control is 'accounting2'. Iwant to find the tab no for the same and writethe new code for it.
    please help

    hai  Archana,
    Hi Try This Once .
    It Is ver EASY Procees.
    Just Go To SE84
    Give The PRogram Name Or PAckage name In Which MM01  is present.
    Then Click On Display.
    Then Click On Enhancements.
    Then U will Get USer Exits Aswell As BADI 's.
    IF Found helpful Reward.
    Regards
    Eshwar

  • How to change the browser title of standard SAP WD4A application - eRecruit

    Hi,
    I have a requirement to change browser title for standard SAP WD4A application hrrcf_a_candidate_registration. I know this value is used from application description filed.
    Current set up is 'Candidate Registration'. (WD Component HRRCF_C_REGISTER_UI)
    I tried to use enhancement framework technique and application customization/configuration - but was not successfull.
    I do not like the idea of changing the standard SAP object since it might be overwritten in future upgrade. And also I do not prefer to create z* copy of this application as well.
    Any ideas how to handle this request? Is dynamic modification of this property possible?
    Thanks for your feedback.
    Regards,
    Igor

    Hello,
    Did you try to change the description of the service in transaction SICF ?
    You can find the Webdynpro services under the tree /default_host/sap/bc/webdynpro/sap/.
    Regards,

  • Suppress the message do you want to save the changes you have made

    hi all
    i have written a rollback
    it clears my record
    but gives me the message
    do you want to save the changes you have made
    i have written
    :system.message_level :=25;
    rollback;
    :system.message_level=0;
    but still it is giveing me the message
    can you please tell me how to suppress this message
    please help me
    thanks
    mandar

    try in reverse

  • Standard SAP code is calling HTTP - want it to call HTTPS

    We have recently switched our environment to HTTPS however some SAP code such as this:
    FORM get_url  USING    p_application
                  CHANGING p_url.
      DATA: lw_application_name TYPE string.
      lw_application_name = p_application.
      CALL METHOD cl_wd_utilities=>construct_wd_url
        EXPORTING
          application_name = lw_application_name
          namespace        = 'sap'
        IMPORTING
          out_absolute_url = p_url. "
    ENDFORM.                    " GET_URL
    calls the HTTP URL instead of the HTTPS URL.
    Is there a way to change this globally so that call code calls the HTTPS value (with the correct port as defined in the ICM - i.e. 443)?

    Hi
    Check the below link.
    [Calling https:// url from ABAP code IF_HTTP_CLIENT;

  • "Error sending Message - check your ...." doesn't identify the message generating the error which is probably one which is autoforwarded.

    I have an email filter which auto-forwards an email depending on the To: field. When I open Thunderbird the inbox sometimes displays emails which should have been forwarded which are not flagged as forwarded. If I then manually forward this email I get a response " email successfully sent" followed shortly after by another message " error sending message ... check your email addresses (or similar)" - Is this the same email as the one which I have just been told has been successfully sent - how can I tell which email the message relates to - has it been sent? etc etc???
    Thanks for reading this far - any help would be very much appreciated
    MC

    Sorry Matt - 'fraid i'm guilty of not supplying all the facts ... the message arises from Thunderbird vers 9.01 running on a laptop with OS Win 7 Home Premiun SP 1. I think your reference is to problems running other email software.
    Mike

  • Modifying the layout of a standard SAP WD view

    Hi,
    I need to modify the layout of a SAP std. WD app. view. We need to re-group few fields that are already available on the screen. So this is not necessarily an enhancement, but just a modification of the layout. Does anyone have any idea how to do this?
    The only way I can think of it is by using 'Remove Element' technique in WD enhancements . Any suggestions ?
    Thx.

    >
    Harmeet Singh wrote:
    > And I also wonder if SAP gave the capability to 'remove' the UI elements, they could have somehow given an option to change the layout as well.
    The future of this sort of activity (layout rearrangement) is actually not in the Enhancement Framework.  The goal is to increasingly use Floorplan Manager and Generic UI Building Blocks. This makes the UI layout much more customizable by storing as part of the FPM configuration instead of part of the development object. Of course Freestyle WDA components will always be necessary and the Enhancement Framework will remain for those options, but GUIBB will be used wherever possible for increased freedom.

Maybe you are looking for

  • I cant find the presentation I did in KeyNote suddenly is lost... help

    help

  • F110-idoc-not-generated-rffoedi1

    hi expert, I am running a payment program F110 and the IDOC is not getting genrated for the payment program. In the payment log i see the infomation IDOcs were generated for the following entries.... but when i chekc the idoc by we05 i can't find any

  • How can i convert the quantity of one unit to other unit in BI 7?

    Hi , I have developed an RFC function module in SAP BW (BI 7.0). For this function module I have to populate material  number and  Quantity required and UNIT.Every thing working good. If the user forgets to enter unit  or enters other unit  where Qua

  • Mass Approval of leave

    Hi All, I am santosh chauhan, responsible for a gamut of SAP functions. of late, i am faced with an error. Being an administrator, we are often reported a variety of leave problem wherein we come across one issue of Mass Approval of leave. Now this l

  • Insert records from one table to other table

    Hi, I want to insert all the records from table 1 which are not in table 2 into table2 o/p insert into table2 select * from table1 where a.id!=b.id; Please let me know is there any way that I can populate the records