Fetch Report Program names for a given Package

Hi,
   I need to fetch all the report program names for a given pakage. I tired TADIR table but couldnt fetch report details alone..
thanks,
sri
Moderator message: very basic, please do more own research before asking, e.g. look at a few TADIR entries of different object types, also discover the repository information system.
Edited by: Thomas Zloch on Feb 23, 2011 2:56 PM

Dan is right to be cautious, i've seen this cause problems.
It's not very difficult to make the chnages in BCS, and if you have a lot of them/frequent changes, you can always use create an upload method
and then make all future changes by .txt file

Similar Messages

  • Find the program name for a given subroutine

    Hello chaps
       I have the name of a subroutine. However i do not know the function group or the module pool in which it is defined.
    Se84 -> program library -> subobjects does not help. Any other way?
    Regards
    Pragnesh

    hi ,
    try with WHERE-USED LIST to find out.Some times SAP calles Dynamically ? in that case u cannt identify the from where u got the call.
    regards
    Prabhu

  • Program name for Transaction code

    Hi All,
    Is there an other table for program name for a given transaction code other than TSTC? I am asking this question beacuse for TCODE MM01, program name in TSTC is given as SAPMMG01, where as if you goto MM01->System->Status->Program it is giving as SAPLMGMM.
    Regards,
    Prashant.

    Hi All,
    I want the table name for TCODE other than TSTC.
    Regards,
    Prashant.

  • C Programming: How can we get the filesystem name for a given file-path?

    C Programming: How can we get the filesystem name for a given file-path?
    Say I have a filepath=/mnt1/file1
    Using some OS API like stat, can I get the Filesystem /mnt ?
    Thanks in advance,
    -V

    Enter the command up to the point of entering the file path and add a space, then drag the file into the terminal window. It will fill out the path.
    If you need to go further into the contents of the Application package, you can continue with /Contents...
    Another way is to start typing and then hit Tab to auto-complete. It will stop where it can't determine the next letter.
    So, type /App tab and it will fill in /Applications. Type a / and start with the name of the app, then tab and it should complete. Continue till you have the correct path.
    Spaces will be replaced with \<space>, so, App Store would end up as /Applications/App\ Store.app

  • How to find Transaction code from Report/program name ?

    Dear all,
    How to find Transaction code if i know Report/program name ?

    Hi,
    In se 38 when u open ur program,in the application toolbar u have a button beside the where-used list button as display object list.on clicking this button,a window will be opened at the left most corner for repository browser,in this u can find any tranasctions,fileds,screens,dictionary structures defined for the program.
    if any transaction is created for the program u can find it under the transaction folder.
    revert back for further queries.
    Regards,
    Sravanthi

  • Find the program which retrive the program name for 2 years.

    Hi Team,
    i have requirement like , i am working on BRITVIC Client , they want to me write a program which has retrive the all development Z program name for last 2 years.
    could you please suggest me the standard program which has retrived all program name for last 2 years.
    Thanks in Advance.
    puneet.

    Hi,
    go to table EUDB - Development Environment Objects
    see the program name NAME as putting Z*
    where DATUM is the creation date
    ZEIT is the creation time
    also you can go for table REPOSRC - Report Source Code
    Arunima
    Edited by: Arunima Rudra on Nov 18, 2008 3:44 PM

  • 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

  • Driver program name for script j_1i_57f4 challan

    hi .... plz i needed driver program name for delivery challan script : J_1I_57F4 . i tried to find it but since the output is displayed only from sp02 im unable to get its driver program name . i have to add certain fields in that form and corresponding logic in that form .
    thanks and regards .

    hi
    If u check the TNAPR table u will get the Driver Program as J_1I57FPN  , allu have to do is to Activate the SAP SCRIPT DEBUGGGER   and check the values  and also in the driver program above and check whihc values are coming and not.
    surya

  • Print program name for the dunning form F150_FR_DUNN_01 in sapscript

    Hi,
          I am not getting the exact print program name for the dunning form F150_FR_DUNN_01 in sapscript. After an extensive search I have come across few names of print program like SAPF150D2 and SAPLF150. But still I am not understanding which one to use for the form and also how to use it. I am unable to understand which include I should use to write my code.
    Kindly help me.
    Thanking you.
    Pujarini Patra

    Hi,
    Yes, you should be able to assign F150_FR_DUNN_01 in Dunning Forms customizing:
    and yes, I too would absolutely try to go for either a Smartform or even a PDF Form (if i'd have all the necessary setup for them, like Adobe Document Services, in the system already). I have Basis 702 SP  0011and FINBASIS 600 SP 0021, so all the following technicalities refer to those releases:
    The corresponding SAP sample Forms are:
    - F150_DUNN_SF for Smartform; and
    - F150_DUNN_SF for pdf Form (don't let the name confuse you )
    I'm not entirely sure if it's a good idea to try to convert/migrate Sapscript to Smartform and the Smartform to PDF Form - have never done that  myself and don't know how good/usable the migration result is. I just take the interface of Smartform from SAP and do the rest from scratch or by copying over the common parts of our existing custom forms.
    There are the SAP Standard wrapper FMs for SF and PDF forms already in the System:
    - FI_PRINT_DUNNING_NOTICE_SMARTF calling PRINT_DUNNING_NOTICE_SF and
    - FI_PRINT_DUNNING_NOTICE_PDF calling PRINT_DUNNING_NOTICE_PDF.
    So, theoretically, all you had to do to replace SapScripts (or even to enable all three form types) is to assign a custom BTE Event handler FM to event 1720 (for correct Application), which could detect, what type of form is assigned in Customizing and call the corresponding wrapper FM.
    As a sample for coding PDF form wrapper call one could take FI_PSO_EVENT_00001720_PDF (if you have IS-PS) in the system. I'd take out the IS-PS specific "business logic" like posting dunning charges (if it does not apply to my solution) and add the logic to decide, which wrapper to call.
    The confusing part about the customizing (Table T047E) to me is that there seems to be no form type defined anywhere in there... just the FORNR field for form name, which should apparently take the names of all three form types... I'd  try to extend that table with custom Form type field and try to regenerate Table Maintenance dialog for  view Cluster VC_T047_F... That would save the whole effort to try to detect the type for  form assigned...
    Another tip, in case you didn't know it already: you should be able to see all the Customizing paths, where T047E is involved, when you enter table name in SM30 and press "Customizing" and then "Continue w/o Specifying Project":
    The selected entry is the one you are looking for to assing your custom forms, I believe.
    cheers
    Janis

  • Script and program name for MM:OUTWARD CHELLAN

    Hi all ,
    can any one give me the script name and program name  for MM:OUTWARD CHELLAN.
    Regards,
    Arun.j

    Hi
    There are Std Scripts for PO,RFQ,CONTRACT, GRN , GI Note etc in MM
    What is this Outward challan? what is its' equivalent SAP business document?
    Check in The Tcode NACE for the relavent one, for the Output applications like MR,MD,EF,ME etc
    Reward points for useful Answers
    Regards
    Anji

  • Standard program name for PO smartform in Ecc 6.0 onwards

    Hi,
    Could anyone please help me to know the program name for PO smartform in ECC 6.0 version onwards.i know about /SMB40/FM06P but this program is not there in Ecc 6.0.
    Plesea help me.
    Thanks,
    Sandeep.

    Hi Sandeep,
    The Driver program for the SapScript MEDRUCK is SAPFM06P.
    Thanks,
    Anon

  • Standard Program Name for updating the System-Variables everyday in BACKGRO

    Hi All,
    Can anybody tell me the Standard Program Name for updating the System-Variables everyday in BACKGROUND job?

    Hello matt,
    I have a program with variant.
    This VARIANT input values will store in TVARVC table every day night background job.
    i want the program name

  • Program name for E-mail processing routines for o/p type NEU

    Hi Friends ,
    What is the program name for E-mail processing routines for o/p type NEU for purchase order . This i want use this for send PO for vendor .
    RB

    Hi
    Program SAPFM06P
    Form Routine ENTRY_NEU
    Form MEDRUCK
    Transmission  Medium - External Send

  • Program name for LSMW

    How to findout the program name for LSMW, in se38, and how to do the custom coding in LSMW?
    Moderator message : Search for available information, read forum rules before posting.  Thread locked.
    Edited by: Vinod Kumar on Jul 21, 2011 3:19 PM

    Check if the below give thread can help you in getting the information you are looking for.
    In which table are LSMW Project details stored
    Thanks,
    K.Kiran.

  • Wats d in-built print PROGRAM name for layout MEDRUCK???

    wats d in-built print PROGRAM name for layout MEDRUCK??? and can we change it??
    wat shud we do if we want2 change it??
    i mean...assume we got a scenario in which we need ta use MEDRUCK layout n print progrm n change some text in it.. and d address  and header in it..
    how cud we do dis??

    Hi ,
    The print program name for 'MEDRUCK' is <b>SAPFM06P</b>, it is not advisable to change the print program instead if you want to do any changes use Subroutines in the layout. Eg : PERFORM <Subroutine name> in PROGRAM <pname> USING <in_variables>
                   CHANGING <out_var>
    ENDPERFORM.
    Srini

Maybe you are looking for

  • How to get the values entered in parameter as comma separated

    Hi friends, I need to capture the values entered in the parameter which is entered as comma separated in the srs window o for ex in the parameter : 1234,4586,356,..... now i need to capture all the values to select in my list of employee numbers as e

  • How can I start a client Application from a procedure?

    Hello, can someone help me to solve this problem? I've written a client Application.(just one file Client.java) Then I created a .jar file for my applicaiton component and loaded it to the server using loadjava. (MyExample.jar) It should be invoked b

  • Blue screen on Satellite P755-10c

    My laptop toshiba satellite p755-10c was restarted and covered many times this week with a blue screen of death! Does anyone know what is the problem?

  • Java Code to Connect to OIM on HTTPS

    Hi All, I have recently disabled the HTTP Port for OIM and enabled only HTTPS Port. I have java code that I used to connect to OIM on HTTP Port but that doesn't working anymore. I have update the OIM_URL to use t3s but not sure what else in system pr

  • Problem exporting Prores proxy files in CS6

    I have a bunch of Apple Prores proxy files which were created from RAW DNG files in DaVinci Resolve. I have completed an edit of a music video with these files in Premiere Pro CS6. However when I try to export the files from the timeline, the exporte