Variant Name of the program

Dear user,
I want to find out who has changed the setting of the Variant Name of the program.
Is there any table that captured the changes as well as the original setting before the new changes?
Thank you.

Hi,
Thank you. This is what I want. By the way, is there any table that capture the original value before the changes?
Eg CDHDR
Thank you.

Similar Messages

  • How to get the VARIANT name in the program

    Hi Guys,
    Can somebody tell me how to get  the VARIANT name in a program.
    I have to perform some code with specific variant only. So I want to check in program which variant has been used to call the program.
    Thanks,

    Hi,
    Variants are stored in table VARI and VARID.
    You can use RS_ALL_VARIANTS_4_1_REPORT to get all the variants for a report program.
    please check out the link below it will be helpful to you
    Re: Programs for a transaction variant
    Hope this helps.
    ashish

  • Getting the variant name when the report program is run in background

    Hi All,
    How to get the variant name for the report program when run in background? My requirement is to create an email attachement with the name 'variant.XLS', where variant = selection screen variant, when the report program is run in background. The system field SY-SLSET holds the variant name only when run online.
    Any pointers to this will be highly appreciated.
    Thanks and regards,
    Nilesh.

    Hello Nilesh,
    Please find the algo:
    1. Call the FM: GET_JOB_RUNTIME_INFO to get the background job details.
    2. Select data from TBTCP using these details:
    DATA:
    FP_EVENTID   TYPE BTCEVENTID
    FP_EVTPARM   TYPE BTCEVTPARM
    FP_ACTIVE    TYPE BTCXPGFLAG
    FP_JOBCNT    TYPE BTCJOBCNT
    FP_JOBNM     TYPE BTCJOB
    FP_STEPCNT   TYPE BTCSTEPCNT.
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
        IMPORTING
          EVENTID                 = FP_EVENTID
          EVENTPARM               = FP_EVTPARM
          EXTERNAL_PROGRAM_ACTIVE = FP_ACTIVE
          JOBCOUNT                = FP_JOBCNT
          JOBNAME                 = FP_JOBNM
          STEPCOUNT               = FP_STEPCNT
        EXCEPTIONS
          NO_RUNTIME_INFO         = 1
          OTHERS                  = 2.
      IF SY-SUBRC <> 0.
    *   Error calling FM: GET_JOB_RUNTIME_INFO
      ENDIF.
    DATA: FP_VARIANT TYPE BTCVARIANT.
      SELECT JOBNAME JOBCOUNT STEPCOUNT VARIANT
      FROM   TBTCP
      INTO TABLE L_IT_TBTCP
      WHERE  JOBNAME   = FP_JOBNM
      AND    JOBCOUNT  = FP_JOBCNT
      AND    STEPCOUNT = FP_STEPCNT.
      IF SY-SUBRC = 0.
        SORT L_IT_TBTCP BY JOBNM JOBCNT STEPCNT.
        READ TABLE L_IT_TBTCP INTO L_WA_TBTCP INDEX 1.
        IF SY-SUBRC = 0.
          FP_VARIANT = L_WA_TBTCP-VARIANT.
        ENDIF.
      ENDIF.
    Hope this helps.
    BR,
    Suhas

  • Get the variant name of the job shceduled in the Background

    Hello All,
    I am shcduling printout of the Payment Document from F110 transaction code in background.
    My requirement is to get the variant name.
    F110 create background job for printing and when i debug it the value of sy-SLSET it is coming some
    junk value like &000000012.
    I can not schedule this job from  SM36. I have to go for F110 only.
    Is there any way to get the variant name of the background job.
    Kindly help.
    Regards
    Sachin

    Hi,
    I am running F110 by maintaning three variant at the same time.
    So my program will run three times for these three variant.
    Depending upon the variant i have to perform some validations.
    So I want to know the variant name for each one run.
    I am maitaing the variant but when i checked the system field sy-SLSET it is coming some junk value '&000000013'.
    How to get the variant name from this.
    Regards
    Sachin Yadav

  • I am unable to successfully install itunes 10.5. I can download it, but when I go to install the program it says that a program could not be run and it won't give the name of the program. I have the vista 64-bit system.

    I cannot install iTunes 10.5. I can download it, but when I go to install it says that a program cannot be run and it won't give the name of the program. I have the Windows Vista 64-bit system.

    That would be my first guess.  You might be trying to install the 32 bit version of the program.
    Update the thread with more info on your apple software etc if its a 64 bit install you're trying to perform.

  • Name of the program generating the spool request

    Hi,
    i want to know the name of the program due to which a particular
    spool request has been generated
    thanks

    Hi Anirudh,
    Is this what you are looking for:
    Re: Finding the Background job name from Spool request number
    Regards,
    Swarna Munukoti

  • Names of the programs which Extend Materials, Load Materials and Load maste

    Hi ,
    Could you please give the names of the programs which Extend Materials, Load Materials and Load master data settings for auto replenishment.
    With regards,
    Pritee.

    HI,
    As per your needs programs list as follows.
    1) Material Extended T-codes(program) :
       a) LSMW - Legacy System Migration Workbench
       b) BDC    - Batch data communication
       c) MM17  - Mass Maintenance Materials and
       d) MM01  - Create Material also extended material one by one.
    2) Load Materials
       a) LSMW - Legacy System Migration Workbench
       b) BDC    - Batch data communication
    3) Load Material Master
        a) MM01  - Create Material.
    Hope, it is useful for you.
    Regards,
    K.Rajendran

  • How to find the name of the program of session in sm35 ?

    I have some session in sm35.
    How to find the name of the program of session in sm35 ?
    Could you please help me ?

    In the list of sessions displayed -> double click the session that an error (i.e. Transaction Ended with errors).
    Then it will take you to another screen, here you choose the Screens tab.
    Check
    Re: BDC session's program name
    Re: BDC session's program name
    Regards,
    Santosh
    Message was edited by:
            Santosh Kumar Patha

  • Getting the name of the program or the FM called from security audit log

    Dears,
    Is there a way to get the name of the ABAP program called through transaction SE38, or the FM called through transaction SE37, from the security audit log ?
    What is available is only : RSABAPPROGRAM for transaction SE38, and RSFUNCTIONBUILDER for transaction SE37
    Thanks.
    Reda

    I had always assumed this log to be in the SUBMIT statement, but never used it.
    If I remember correctly this is recorded it the runtime submit, so it should be there.
    Perhaps it is only in selected reports? I will check in my system.
    Please compare with sm20n and run the report from sa38. The submits are different in sa38 etc compared to se38.
    The FM will only be recorded it it has a destination extention in the source system which is mostly remote. Local fm calls are not recorded for sure.
    Cheers,
    Julius
    Edited by: Julius Bussche on Jul 26, 2011 11:32 PM

  • Setting Variants and running the program in the background.

    Hi experts,
    I have a custom program which needs to be executed in the background with a set of variants on every monday. For this I will execute the program in background and i will set the time and date.
    One of my variants in the screen is the running date based on which the records will be fetched from the table in the program.
    When i run on 29/05/2006 (MONDAY) the date select option should be set as 23/05/2006 to 29/05/2006.
      how should i do this.
    regards,
    Arul Jothi.

    Hi,
    You can change the DATE values dynamically. Look at the variant options.
    While saving the variant, click on the SELECTION OPTIONS for the DATE parameter (Select the L Parameter check box) and you can specify the dates.
    Here you specify the DYNAMIC DATE CALCULATION WHERE YOU can specify the high and low values.
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • What's the path and file name for the program to make window xp recovery cd?

    I need to replace a hard drive, so I  have to make a set of CDs to install windows XP,  but in ACCESS IBM, I cannot find the program to make window xp recovery cd as instructed on the website. where can I find it? Thanks
    solved, thanks anyway. mine is T43, the hard disk got bad setctors now, so I got a new disk to replace it, so I need to install xp first, that's what I need, but there are no xp installation cd now and I can not find the program to make the cd. I downloaded  xp from internet to solve this problem.
    Message Edited by mary2001 on 07-04-2008 12:05 PM

    Hi mary2001
    I have a similar problem, so where did u downloaded the xp? I have a produkt key on the back of my IBM T43, but no cd.
    Please help me...

  • How to get the variant name from the Selection Screen

    Hi Friends,
                       I have a Selection Screen with Variants.In the Report which is classical,i need to get the <b>name</b> of the variant which is used in the selection screen..Can anyone help me in this?

    You can use system variable
    SY-SLSET
    Thanks
    Seshu

  • WHere are my Downloads? The computer is downloading en scanning a program, but the name of the program doesn't show up in the downloads part.

    So I cannot install the new program.
    I have also internet explorer 9 on my computer.
    I've removed firefox, closed the computer and reinstalled firefox . But still the same problem.

    You can check where your downloads are going by Clicking on Tools/options/general
    On this page under downloads it will tell you where you are downloading to.
    You can change this here as well..
    So if you download any programme it will be in this folder.
    I find using the desktop and then moving it to a home folder after that saves a lot of problems as when you download you might want to put the download in different files.
    If you forget where you downloaded your last file and download another it will go to that location..

  • How can i find name of the variable used in the program and assign to a str

    double width= .333;
            int i;
            for (i = 0; i <=2; i ++){
                segment[i] = i+1;
            }is a bit of code...Is there anyway using which I can find out the variable names and assign them to string variables so that i can match them with another table ....
    That is I want the "width", "segment[0]", "segment[1]" and "segment[2]"...
    pls help...

    I am trying to find out the variable names in the program so that they can be matched against a given table for availability. I want to do that so that i can send the name, its type and value as a data packet to another node...I am not familiar with this...pls..would you give me a sample code

  • What was the name of that program?

    I'm a rookie to the Mac world and can't seem to remember the name of the program I need to download to run PC/Windows programs. If you can point me in the right direction, I would greatly appreciate it!
    THANKS IN ADVANCE!!

    running bootcamp and parallels, you need to have a copy of windows xp sp2 or higher.
    if you only need to run windwos apps (without the OS iteself) then ur looking for Crossover for mac

Maybe you are looking for

  • Is there a way to play ios games on mac

    is there a way to play ios games on mac

  • IPOD 5th generation will not upload new games

    I purchased a new game and it will not upload it on my IPOD. It says it needs the 1.2 version which it has. I installed Itunes 7 and when the ipod is sync it says it's syncing software is version 1.2. I restored my IPOD and it still did not eliminate

  • Hp officejet 6700 premium printer-printer failure

    I bought a HP officejet 6700 premium a month ago.  I installed the printer and it printed ok.  But after a few day of use, it suddenly stopped printing and gave a Printer Failure massage on the front control panel.  The message says: There is a probl

  • CRM 2015 outlook client does not connect to CRM

    Hi, I am trying to run the configuration wizard to connect the office 2010 outlook to Dynamics CRM 2015 server and get the error below (outlook client 2015 is successfully installed). All the required components are installed on both server and clien

  • JSP, BC4J, AM: where/when are the PCST tables created

    Hi all. I am currently needing to access a second database instance from my BC4J JSP application, and so I have added a new Application Module to my project. For some reason that I don't understand, the wizard doesn't ask you what connection to use.