Doubt report RPR_ABAP_SOURCE_SCAN

Good morning Gurus.
The functional wants that I change a message text.
But this message occurs within a standard function  probably placed by exit or enhacement ...etc I need know where to change the message.
To search the message I use the RPR_ABAP_SOURCE_SCAN.
In field 'String searched for' i put the current message `In saturday bla bla bla'
in field Program Name I put *
After 4 hours he DON ' T FIND ANYTHING.
1-i SEARCH CORRECTLY FOR THE MESSAGE?
2-EXIST OTHER WAY TO DISCOVER WHERE IS THE MESSAGE?
3-IF THE MESSAGE IS IN TEXT-0* ,CAN i USE THE RPR_ABAP_SOURCE_SCAN TO FIND IT?
I,m working with HR portal the user do the process in Internet portal and comunicate with sap by rfc.
I debuged but I don´t find in standard.
Please help me.
Thanks.

Hi guys
Please see attached
My message is in SY-MSGV1 and is 'Férias não podem começar aos Sábados'
But it occurs after pass by :
CALL DIALOG 'HR_MAINTAIN_MASTER_DATA' USING BDCDATA MODE 'N'
       EXPORTING
         PSPAR
         PROPOSED_VALUES
         LUW_MODE
         PS
         PSINFO
         PREFTAB
       IMPORTING
         PS
         PSINFO
         PREFTAB
         PSPAR
         PROPOSED_VALUES
         MODIFIED_KEYS.
and next he uses:
GET PARAMETER ID 'P_RP_INFOTYP_MESSAGE'                 "XDPK004796
             FIELD RP_INFOTYP_MESSAGE. 
the function is HR_MAINTAIN_MASTERDATA.

Similar Messages

  • Report Painter Report Performance Issue

    hi,
    My client facing the problem with Report painter reports , almost all the reports taking much amount of time to execute . we are Using 5.0 version tables FAGLFLEXT and CSSS . i have some doubts report index is the cause for this or any other reasons can any one help me in this regard,
    thanks in advance
    sasidhar.A

    Hi,
    just create a proper index and performance will increase. There are some SAP OSS notes who deal with this (for example field "client" should be added if'm not mistaken).
    We did the same on profit center tables with huge performance increases
    grtz
    dries

  • How to find out which program fill a custom table ?

    Dear All,
    I am trying to find out which program fill custom table, I tried se11, which programs used this custom table via where used list but could not find. Is there any different way ?
    Regards

    Hi Sappcon,
    yes, it is as Brad said, but you should extend the approach regarding this tables content: If it is related to an existing business object (i.e. order, delivery or the like), you may have a look at user exits/Badis in that field.
    Also, the dynamic approach is possible. First use report RPR_ABAP_SOURCE_SCAN to find the name of the table in all programs in customer name space - it may be defined as a constant in program/function group/class.
    If the dynamic approach is used, the name of the table may be determined by reading another (custom) table or even in a programs text pool. You may find this by searching a pattern UPDATE() - or MODIFY/INSERT in customer programs.
    If the table has update date/time fields, check what jobs or online activities can be responsible.
    If, after all, you still do not know, then I'd say this is a consulting issue
    Regards,
    Clemens

  • Sign a string in ABAP (digital signature)

    I have a string in ABAP and want to sign this and simply send it to the RFC port. I have tried SAP CryptoLib and it works fine when messages are below 5kb (approx.). When the messages are over 7 kb the standard PKCS#7 client cant verify (read the signature)...
    The SSF API requires an internal table as input and output  for CryptoLib, so I have to split the string up and create a table. And concat the output table back again after signing. Again, this works up to aprox 5kb.
    1.) Can this split introduce any errors or special charactes, which again corrupts my data?
    2.) Whats the best way to sign a string in abap?
    3.) Are there eny known limitation in CryptoLib?
    frode.

    or report RS_ABAP_SOURCE_SCAN since ERP2005 and no longuer RPR_ABAP_SOURCE_SCAN (for really up to date user) - ref Note 1492058 - Probleme mit Varianten für Report RPR_ABAP_SOURCE_SCAN since 23.07.2010
    Please use the report in future RS_ABAP_SOURCE_SCAN. The report RPR_ABAP_SOURCE_SCAN should no longer be used
    Regards
    Raymond
    Please do not use code tags to format text!!
    Edited by: Rob Burbank on Aug 4, 2010 10:10 AM

  • Where used of any string list in ABAP repository

    Hi,
    Can anyone help me to how to find a string in the ABAP repository,
    e.g. "MY_SEARCH_STRING" has been used in any report, function module etc etc...
    Regards,
    Ravi

    Hi Ravi Kumar Jaiswal,
    have a look on report RPR_ABAP_SOURCE_SCAN
    & tcode EWK1
    Also see CODE_SCANNER
    Also would like to suggest you to search b4 posting the question...
    have look on below thread...
    Re: Transaction
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7

  • Need to find the tcode

    Hi
    i have a requirement one of the table is updating with the filed value, i want to find out from which tcode the value is updating...
    is there any way to find out the tcode
    pls helop

    try:
    1) se11 - where used list
    2) report RPR_ABAP_SOURCE_SCAN
    A.

  • Getting prg name of assigned smartform

    hi experts,
    if i wanna know the z-smartforms assigned to a z-program.How can it be done??
    ex : zmaterial1 is my smartform and it is called by prg zprg1.But after 2 days i forgot the prg and now i want to find the respective assigned program for this smartform.
    Pls do not post any messages for TNAPR.It's for output type and it is known to me.
    Thanks,
    Gaurav

    Check this might help -
    If in your Driver program, you are using SSF_FUNCTION_MODULE_NAME .
    Scan the Z program using Report RPR_ABAP_SOURCE_SCAN
    with Programs as Z* and Name of your Smrrtform against String .
    This may take some time .
    You will get the List of Programs where your Smartform is called .
    Check from this programs, which one is your requirement .
    ~As found in forum.
    Regards,
    Amit

  • How to export the Screens of dialog programming into notepad

    Hi Guys,
           Here I am having a requirement to copy the screens of dialog program into another SAP system.
           So I have to export the screen along with coding into NOTEPAD.
           I am able to copy the coding part, <b>but how to copy the screen into notepad</b>
           Give me the appropriate answers.
           I will award the points to the answers

    Hi Chakra.
    please take carte that a screen consists of layout, fields and flow logic. Get all components using this form routine (taken from excellent useful SAP report RPR_ABAP_SOURCE_SCAN):
          Form  GET_DYNPRO_FLOW_LOGIC
          Get flow logic of the dynpro
    form get_dynpro_flow_logic.
      data: dhead  like d020s,
            dfield like d021s occurs 0,
            dflow  like d022s occurs 0,
            dmatch like d023s occurs 0,
            begin of dynp_id,
              prog like d020s-prog,
              dnum like d020s-dnum,
           end of dynp_id.
      dynp_id-prog = dyn-prog.
      dynp_id-dnum = dyn-dnum.
      import dynpro dhead dfield dflow dmatch id dynp_id.
      rtab[] = dflow[].
    endform.                               " GET_DYNPRO_FLOW_LOGIC
    Regards,
    Clemens

  • Bitmap where used list

    Hi Experts,
    could any of You pls help me to find out where a specific bitmap is used.
    I am about to replace a grafic (bitmap) which is used in many smart forms and sap script, but I actually not sure, if I know all forms and scripts, I suppose to change.
    Where can I found a list / how can I check in which object the bitmap is used?
    Answers will be appreciated

    Hi!
    You can try this solution gived by Abhishek Jolly     
    One option (For Smartforms) is to search the Logo Name through the Report RPR_ABAP_SOURCE_SCAN.
    In program name provide - /1BCDWB/SF*
    You will get the Includes where the Logo Has been used.
    E.g. Include - /1BCDWB/LSF00000036F01
    Now to get the Form name goto table STXFADMI and pass the Number "00000036" to the field FMNUMB you willl get the Smartform name.
    Thanks & Regards,
    Abhishek Jolly
    Font: [Re: logo - Where used list;

  • Program name for smartform

    i hav made a smartfomr and a driver program for it
    but now i forgot the program name for it
    can some body plz help me to find it out
    i hav cheked table tnapr
    but did not get anything as it is not showing my z table
    plz help

    Hi
    If in your Driver program, you are using SSF_FUNCTION_MODULE_NAME .
    Scan the Z program using Report RPR_ABAP_SOURCE_SCAN
    with Programs as Z* and Name of your Smrrtform against String .
    This may take some time .
    You will get the List of Programs where your Smartform is called .
    Check from this programs, which one is your requirement .
    It may happen that u get only one program .
    Hope this Helps .
    Praveen
    Message was edited by:
            praveen parasiya
    Message was edited by:
            praveen parasiya

  • SAP Scanning Program Needed

    What are the latest scanning programs in SAP that will allow you to include classes, objects, methods, etc, as a seacrh parameter?   I am in 46c.
         Thank-You.

    Use report RPR_ABAP_SOURCE_SCAN, in "Program" parameter, put this list of values:
    z;sapmz;saplz;mz;lz;y;sapmy;saply;my;ly
    Regards

  • How to find all z-programs in system using spars field in select  ???

    hi all,
       i have to make change in all program in my system in which spars field is used in select statement. how to fin all those z-programs
    points will be awarded for all useful answers.
    Regards
       Deepak Kumar

    run the report RPR_ABAP_SOURCE_SCAN, give 'z*' in "Program name" field, and 'SPRAS' in "Find string" field, u'll get to know the places where SPRAS is used, modify those programs accordingly....
    Reward points if useful, get back in case of query...
    Cheers!!!

  • To know thelist of bapi's and function modules used for transaction IH10

    I need to know thelist of bapi's and function modules used for transaction in order to use these FM or BAPI in reading some fields of equipment master and functional loocation.Can any one suggest me some methods...or do i need to write a report for the same.

    hi,
    provide report name (here: RIEQUI20)
    goto se38 - utilities - cross reference - function modules
    or use report RPR_ABAP_SOURCE_SCAN
    with search string call function
    A.
    Message was edited by:
            Andreas Mann

  • Finding string in the 'z' programs.,..

    hello experts,
    i want  to find the 'tables' string in all created 'z' programs.
    output wll look like..
    zprogram name
    Total Count
    z0mara
    1
    how do i do that???

    Hiii Saurabh...
    1)  Execute SAP report RPR_ABAP_SOURCE_SCAN in SE38.
    2) Give Z*. in program name.
    3) Give tables in  Find string Options.
    4) Execute it.
    You will see all ztables whereever this tables string exist.
    Reward Points.

  • BDC Details

    Hi,
    We are in the process of upgrading from 4.6C to ECC 6.0.
    We would like to know the following:
    1) How many BDC's are written in 4.6 C instance of our implementation, in standard SAP programs as well as custom programs. How can we find that?
    2) These BDC's are written in which programs/includes, etc?
    3) Which transactions (TCodes) are being called by these BDC's
    Any help would be appreciated.
    Thanks in advance.
    Mick

    Hi,
    You could use the following report:
    RPR_ABAP_SOURCE_SCAN
    with a sting like BDC* etc...
    Kind Regards
    Raymond

Maybe you are looking for

  • How to: Reformat my Macbook Pro 10.7.4

    hey guys i know this question has been asked alot but i cant seem to find an exact answer to my question. i have a macbook pro late 2008 with OS Lion install and im currently copying everything i want to save on an external harddrive, but cant seem t

  • Throwing Error on the OAF Page

    Hi All, I have a requirement to throw an error message in the OAF page. I have added a new region in the standard OAF page. In that region controller, am checking one condition. If that condition fails i have to throw an error message in the OAF page

  • Cross Company Code purchasing

    Hi,     Please help me to concept of Cross Company Code purchasing . I need a Document regarding this or configuration setting , its requirement from one of our client. So pls send me some document about the Cross Company Code Transaction. Thanks Muk

  • I am having USB not recognized problems with my HP Pavilion HPE450.

    Hi all, problems with my external disk (and other USB devices) going unrecognizable if the computer goes to sleep.  When I wake it the USB device is no longer recognized.  It also would happen if the disk would spin down.  I set the disk to never spi

  • Where I can find test application for cluster

    Hello, I need a simple test application that can show as loadbalancer and weblogic cluster work together. We I can find it?