How to find the corresponding job name or program name of a file

Hi Friends,
  I am having a file name in Unix server. Is there any way I can find out which program or job it had run to give this file.
Eg. the file name is in location /sapdaemon/DW/Out/test.dat and I want to know which program it had run to produce this file.
Regards,
Ramesh.

Hi,
Goto table TVARV and display all entries it contain. Then search for the file path. if it is present, then use this variable name and search the variable in the programs that you suspect it would have been used..
Please reward points if useful
Rgds,
Harikrishna .

Similar Messages

  • How to find the patches for perticular concurrent program

    HI
    How to find the patches for perticular concurrent program. suppose for one concurrent program we create the patch and applied now i want know the which patch applied for perticular concurrent program through back end.
    Thank's

    Query the concurrent program in Sysadmin responsibility.
    Note the concurrent executable.
    Query the concurrent executable in Sysadmin.
    Note the file name.
    If it is a package, open the package in TOAD and note down the file name.
    If it is a report/form, open it in form developer and note down the file name.
    Go to patch find screen in metalink. In the advanced search screen, enter the file name and you will see patches that contain it.
    Hope this answers your question
    Sandeep Gandhi
    Independent Consultant
    513-325-9026

  • How to find the given job and all the programs in it

    Plz suggest me how to find a job whether it exists in sap or not?
    I searched using sm37 and using table TBTCO still the job name is not available there.
    Note: I know one program name which is part of that job.
    I could not found the given job ?

    Goto SM37 and the last field there is ABAP program name.
    give the program name there and select period well back from past to til till now say -
    01.01.2006 to 12.02.2007.
    and execute ..
    u will find the list of the jobs using this program.
    or Use FM  -
    BP_FIND_JOBS_WITH_PROGRAM

  • How to find the corresponding characteristics of a operations in ABAP?

    I want to filter the existing characteristic in my report according to operation. That is, if I choose operation 0010, only some characteriistics of 0010 will be displayed on screen. So I need to fetch the all the corresponding characteristers of a operations, just like the TCODE QP02. Can anyone provide me with the logic, tables? I want to know how to identify their relationship between them. thanks a lot.

    I found the solutions.
    use FM BAPI_INSPOPER_GETDETAIL
    and pass inspection lot no and operation no and check read_char_requirement
    we can find the content in the result table.

  • How to find the corresponding  field in r/3 to a info object in a cube?

    Hi,
           In a cube I have an info object WKNO and data is loaded from r/3 through  a process chain to that cube.
    now i need to check from which field and table in r/3 the data is coming to the info object?

    Hi
    You can take the datasource name for the Cube and the infoobject
    Then pass this to table RSOFIELDMAP , to get the corresponding  R/3 fieldname
    And for R/3 table u need to check datasources definition in BI content library
    May b if ur datasource is there in below the link u can follow the tables to get the exact field source
    https://wiki.sdn.sap.com/wiki/display/BI/BW%20SD%20MM%20FI%20DATASOURCES
    Hope this helps
    Sonal.....

  • How to find the corresponding application program of an application doc. ?

    hi,
      can anybody give me some good idea on how the creation of an application document invokes a message control? i am working on interface right now. also, i am interested in knowing the corresponding application program of an application document. kindly somebody help me getting these two informations.
    waiting eagerly to award some good points to good helps.
    thanks,
    max

    sse the FUnction module ..MASTER_IDOC_DISTRIBUTE..if it is used zreport or program
    that means the message type used in the program are manually triggered.
    Prabhudas

  • How to find the corresponding RTF to The RDF

    Dear all,
    We have an XML Report in the EBS. i only know the RDF file which is XXARMSXTRTKTBOND.RDF but i do not know the corresponding RTF for that file to modify some thing.how i can search for that one???
    Regards...Ashraf

    Hi,
    Have a look at this thread.
    RECORD HISTORY (or) WHO COLUMNS in R12???
    RECORD HISTORY (or) WHO COLUMNS in R12???
    Regards,
    Hussein

  • How to find the corresponding programs for a particular condition type

    Hi experts,
    I have one condition type( KSCHL ).
    I need to find the programs where this condition type is used.
    Thanks in Advance.

    Dear Nagireddy,
    You have to go further by using where-use list option(Arrow Direction Icon) from SE11 or from SE38 editor. Then the system will show you the places where the condition type KSCHL is being used.
    Thanks & Regards,
    Dinesh

  • How to find the Form on knowing print program

    Hi
    I have to do changes for particular script layout. Print program for the same is Z program. I know the program name based on that I could not find the form. I have verified all the possibilities mentioned below.
    1. NACE transaction
    2. TNAPR, TTXFP
    3. SPRO
    I could see the layout thru print program.
    Any help appreciated.
    Thans.
    Regards
    Raj

    try
    spro
    Finance Accounting Global Settings
    Accounts Receivable and Accounts Payable
    Business Transactions
    Outgoing Invoices / Credit memos
    Make and check Settings for Correspondence
    Define form names for correpondence print

  • How to find the list of un used table names in a schema?

    Hi,
    I have a doubt in Oracle. The doubt is that If we are using any tables in Function Or Proc.... Then...We can list all those used table names from USER_DEPENDENCIES system table. Right...
    But, If the table is used with Execute Immediate Statement, then, those table names are not coming out with USER_DEPENDENCIES system table. Because they are identified at run time and not compile time.
    It is fine. And I agree.. But, If I want to list out those tables also...then...How to do? Any idea?
    I think ‘USER_SOURCE’ system table may not be the right one. If there is any other system table avails for this purpose...then..it would be very grateful to extract right...
    So I am wanting that exact system table.
    Please let me know about this, if you have any idea or check with your friends if they have any idea.
    Regards,
    Subramanian G

    Hi Guys,
    Thanks for all your answers.
    Yes....You are all right. We can list out the used tables upto certain extent. Anyhow, I have done some R&D to derive the SQL's which is given below:
    SELECT TABLE_NAME FROM USER_TABLES
    MINUS
    SELECT DISTINCT UPPER(REFERENCED_NAME)
    FROM user_dependencies
    where
    referenced_type='TABLE' and UPPER(NAME) in
    select distinct UPPER(object_name) from user_objects where UPPER(object_type) in
    'MATERIALIZED VIEW',
    'PACKAGE',
    'PACKAGE BODY',
    'PROCEDURE',
    'TRIGGER',
    'VIEW',
    'FUNCTION'
    UNION
    SELECT UT.TABLE_NAME FROM
    SELECT TABLE_NAME FROM USER_TABLES
    MINUS
    SELECT DISTINCT UPPER(REFERENCED_NAME)
    FROM user_dependencies
    where
    referenced_type='TABLE' and UPPER(NAME) in
    select distinct UPPER(object_name) from user_objects where UPPER(object_type) in
    'MATERIALIZED VIEW',
    'PACKAGE',
    'PACKAGE BODY',
    'PROCEDURE',
    'TRIGGER',
    'VIEW',
    'FUNCTION'
    AND REFERENCED_OWNER=(SELECT sys_context('USERENV', 'CURRENT_SCHEMA') FROM dual)
    ) UT,
    ( SELECT * FROM USER_SOURCE
    WHERE NAME IN
    ( SELECT DISTINCT NAME FROM USER_SOURCE
    WHERE TYPE NOT IN ('TYPE')
    AND
    UPPER(TEXT) LIKE '%EXECUTE IMMEDIATE%'
    ) US
    WHERE
    UPPER(US.TEXT) LIKE '%'||UPPER(UT.TABLE_NAME)||'%'
    AND
    (UPPER(US.TEXT) NOT LIKE '%--%')
    The above SQL Query can list out unused tables by checking the Dynamic SQL Statement also upto some level only.
    Once we extracted the list of unused tables, having a manual check would be also greater to verify as it is should not impact the business applications.
    Regards,
    Subramanian G

  • How to find the Data Entered Date and User Name?

    Dear Team,
    An End User feeds a data wrongly in KP26. I would like to find by whom it was entered and when? i.e, user name and Date of particular entry.
    Regards
    R.Thillai govindrajan

    Hi Thillai,
    I don't think you can find that information now. If you have switched on trace on that user before he changes, you would have got those details in trace file.
    Thanks,
    Siva Kumar

  • How to find the background job exection?

    Hi all,
    when i execute a report in background, i should get a different output which is different from the foreground execution output.
    so how to check this foreground, background execution in my coding?
    Thanks,
    Shanthi

    The output is most likely anyway different: foreground to the presentation server; background to the spool server.
    Perhaps you want to use different variants for the same selection screen of the same program?
    In that case you can check system field sy-batch, and if 'X' submit it using variant 'A' else submit it using varint 'B' via the selection screen.
    Take a look at transaction VARCH.
    Cheers,
    Julius
    ps: If you do not want users to arbitrarily change the variant, it makes sense to lock it or control access to it...

  • How to find the active version of a program from table

    Hi to all experts.
                          without using version management of a program how can we find out the active version of the program through tables . I have checked table E071 couldn't find anything there .
    Thanks in advance

    Chk out htis link.
    Table Name for Transport Requests & Program name

  • How to find the transaction type in our program

    dear sir,
              in solution manager in that crmd_order there are 4 transaction type (SLF1 SLFN SLFD SLFH) .. now i want to validate one field in standard screen in that t-code crmd_order . but the same screen used in all transaction type (SLF1, SLFN,SLFDand SLFH ) i want to validate that field only if the transaction type is SLF1 or SLFN otherwise no need .. so i want to check if transaction type is SLF1 or SLFN in my program .. so now i need transaction type .. so how how capture type in our program ( not SY-TCODE ) is stored in any system variable..
    Regards
    kumar

    hi siva velma,
    thank you fro your answer.
    how i conclude that when i see the where list which table is the actual table i need.
    please make me understand that.
    what about the ordre types ..in crm how we have them..for complaints , returns, sales order etc.in r/3 we have re for returns, or for std sales order.
    there so many sales orders which one i should take.
    there are so many transaction types for complaints cmrr,cmrp,dmrb etc - for complaints.which is for what how i wil know.
    <b>if i want to print the out of a output list how do i do that .pl tell me the spool settings.the printer settings.</b>
    thank you,
    hun<b></b><b></b>

  • How to find the SAP Standard form given the variant name.

    I am working on forms, How to find the standard form given
    print program name or the variant name .
    for eg:
    given
    print program is RKFORD10
    varinat is SAP06
    The SAP standard Form is F140_ACC_STAT_01.
    I need to find the standard form given the variant as SAP13.

    In SPRO,
    SAP Customizing Imp guide->Financial Accounting->Fin Account Global Settings->Correspondence
    Under this-
    'Assign Programs for Correspondence Types'(Tcode OB78) &
    'Define Form names for correspondence print'
    should be useful to you
    Message was edited by: Sravanthi

Maybe you are looking for

  • All music on external hard drive - ITunes 'sees it' but can't find it

    a while back i moved all of my music to an external hard drive - i was unaware of all the steps that had to be taken to preserve the ITunes library. Now I've gotten back on ITunes and there's an "!" next to every single song i burned from all of my C

  • Adding a Time Capsule to an existing AEBS

    Hi, thanks in advance for any advice. I've been reading Apple's "Designing Networks" doc and digging around the forums for days and haven't been able to find all the pieces that add up to a solution for my situation. I have an existing wireless netwo

  • How do I get iTunes to accept FLAC files into the library?

    If I want to use iTunes to catalog FLAC files (but NOT play them...as I use my logitech Squeezebox fior that) how do I get iTunes to accept FLAC files into the library?

  • The internet very very slow and drop in my brand new Mac pro OS X 10.8.3 any help!

    I bought new Mac pro with Retina display (OS X 10.8.3) , I am suing Wifi and  the Internet very slow and drop most of the  time compare to my other Mac  OS X10.7.4! any advice. Thank you

  • Problem with plymouth themes

    Hello world , sorry if my englsih is bad I've installed Plymouth on my laptop (Lenovo Thinkpad Edge E330, with intel GPU) but i've a display problem with every themes of plymouth , le screen is black with 3 white dots. My /etc/default/grub is : GRUB_