Variant not existing

Please explain me the reason of this message:
"variant xxx of program yyy is not the current version"
Why is this happening?

Hi,
This has happened because there are some changes to the program (on which variant was created) after the variant creation.
You need to re-create the varaint after any changes to the base program.
Let me know if you need more info.
Pl reward if you find this info useful.
Thanks,
Ramesh

Similar Messages

  • Background job is cancelled dut o variant not exist

    Dear friends,
    In my program I have created a variant using FM 'RS_VARIANT_CREATE', and after the creation of variant , i'm submitting the job immediately, but the job  get canceled with error message, specified variant is not defined.
    when i checked the VARID table the variant gets updated, the time differnce is approximately 8 sec for both varaint creation and job start timre. Can any one face this type of issue, could any one help on this.
    Thanks for your time.
    Best regards
    Kumar.

    Hi Kumar,
    Right after you create your variant use the statement COMMIT WORK AND WAIT.
    If it doesn't work you can do something like this
    While f_found = space.
    select * from varid
      where report = 'XYZ'
      and  variant = 'MYVAR'.
    if sy-subrc = 0.
      f_found = 'X'.
    else.
      wait up to 1 seconds.
    endif.
    endwhile.
    I still think try COMMIT WORK AND WAIT after calling RS_VARIANT_CREATE.
    Kind regards,
    Marius

  • SPM related masterdata loads: Variants doesnot exist

    Hi,
    We were trying to load the data through process chains(0ASA_XA_P27, 0ASA_XA_P14, 0ASA_XA_P13... etc) for GEOGRAPHY, CATEGORY, SUPPLIER etc. And the common failure we are getting is the corresponding program variants not exist.
    Program Name                                                 Program Variant
    RSXSA_HIERARCHY_UPLOAD                      SAP_XSA_GEOS, SAP_XSA_SLCAT, SAP_XSA_SGSUP
    These program variants are not available and hence the chain fails.
    Please let me know the possible solution.
    Thank you.

    Raj,
    Go to Transaction SE38, For Program RSXSA_DIVSTAT_UPLOAD, create the following Variant:
    Variant Name: XA_SUPDIV
    Variant Parameters >>
    Upload ID : 1
    Hierarchy name : SUPPLIER DIVERSITY
    InfoObject : 0XASUPPLIER
    Hierarchy-bearing attribute : 0XARPARENT
    Hierarchy root node : SUPPLIER DIVERSITY
    Go to Transaction SE38, For Program RSXSA_HIERARCHY_UPLOAD, create the following Variant:
    Variant Name: SAP_XSA_CUST01
    Variant Parameters >>
    Upload ID : 1
    Hierarchy name : CUSTOM01
    InfoObject : 0XSAC001C1
    Hierarchy-bearing attribute : 0XARPARENT
    Hierarchy root node : CUSTOM01
    Go to Transaction SE38, For Program RSXSA_UNSPSC_HIERARCHY_UPLOAD, create the following Variant:
    Variant Name: SAP_XSA_UNSPSC
    Variant Parameters >>
    Upload ID : 1
    Regards,
    Rohit

  • RSPC Variant does not exist - Could not find or load print parameters

    We are on BI 7.0 (support pack SAPKW70017).  We recently freshed test system from production.   After the refresh, we have problems opening all the process chains.  
    1. When I go to RSPC to open a process chain, I get many messages like this:
    Variant &0000000067180 does not exist (there are different variant numbers)
    Message no. DB612
    Diagnosis
    You selected variant &0000000067180 for program RSPROCESS.
    This variant does not exist.
    2. When I go to SM21 to check the system log, it displays many entries like below:
    EJ  F Could not find or load print parameters for step 1, job BI_PROCESS_TRIGGER/09134500
    Documentation for system log message EJ F :                                                                               
    An error occurred during loading of the print parameters for a        
    background job step.                                                  
    The print parameter record may have been deleted even though there was
    a still a step that needed that data. This is an error as the         
    reorganization of the print parameters should prevent this from       
    happening.                                                            
    To fix the problem, edit the step and save it, copy the job, or       
    schedule a new job. The print parameters will be regenerated in all   
    these cases.    
    3. I applied the OSS note 1169659 - Correction: Process variants not entered by BDLS.   The Basis rerun BDLS.  But it did not fix the problem.
    Would appreciate if someone could provide any help.
    Thank you.

    Hi Rebecca.
    1) Please verify if exist process types called 'unknown job'. If exist:  delete process types called 'unknown job' in your process chain. To do that please remove the chain from scheduling (menu bar > process chain > remove from schedule), afterwards switch the detail view on (menu bar >  view) > right mouse click on the process type "unknown job" > displaying scheduled jobs > delete that job. After deletion of the 'unknown jobs' activate and schedule your process chain again.
    2) After the removal of the 'unknown jobs' please check if the error messages with the missing variants pop up when calling your process chain disappears. If not, please implement and execute the attached report Z_FIND_JOBS_WITHOUT_VARIANT which deletes the jobs without variants.
    I have already attached report as Report Z_FIND_JOBS_WITHOUT_VARIANT, you can download and create the report accordingly.
    = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    REPORT  Z_FIND_JOBS_WITHOUT_VARIANT.
    data: l_t_job type table of tbtcp with header line,
          l_s_varsel    TYPE rsvar,
          l_t_variant   TYPE TABLE OF rsparams.
    parameters: delete type rs_bool.
    select * from tbtcp as job into table l_t_job
                        where progname = 'RSPROCESS'
                        and   exists ( select * from tbtco
                              where jobname = job~jobname
                              and   jobcount = job~jobcount
                              and   status = 'S' ).
    loop at l_t_job.
      l_s_varsel-report  = l_t_job-progname.
      l_s_varsel-variant = l_t_job-variant.
      CALL FUNCTION 'RS_VARIANT_CONTENTS'
        EXPORTING
          report               = l_s_varsel-report
          variant              = l_s_varsel-variant
          execute_direct       = 'X'
        TABLES
          valutab              = l_t_variant
        EXCEPTIONS
          variant_non_existent = 1
          variant_obsolete     = 2
          OTHERS               = 3.
      if sy-subrc <> 0.
        write: / l_t_job-jobname, l_t_job-jobcount.
        if delete = 'X'.
          CALL FUNCTION 'BP_JOB_DELETE'
            EXPORTING
              JOBCOUNT = l_t_job-jobcount
              JOBNAME  = l_t_job-jobname
            EXCEPTIONS
              OTHERS   = 1.
          IF SY-SUBRC <> 0.
            write 'not deleted'.
          else.
            write 'successfully deleted'.
          ENDIF.
        endif.
      endif.
    endloop.
    = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    I hope I can be helpful.
    Thanks,
    Walter Oliveira.

  • Variant YAE14 does not exist- F.27- Customer statement

    Hi All,
    User is getting an error message as Variant YAE14 does not exist. Message no. DB612. Variant YAE14 is correctly assinged to the company code and variant and print program is correctly defined in OB77 and OB78 respectively.
    Kindly advice.
    Diagnosis
    You selected variant YAE14 for program RFKORD11.
    This variant does not exist.

    Have you created the variant for your program (Not asking about the assigning it in OB78)
    Create it through SE38
    or
    IMG ==> Accounts Receivable and Accounts Payable ==> Vendor Accounts ==> Line Items ==> Correspondence ==> Make and Check Settings for Correspondence ==> Create Report Variants for Correspondence
    Create with the same name (The variant name must be matched with the error variant user is getting)

  • Variant BP_CASH does not exist.

    Hi frnds,
    Variant BP_CASH does not exist
    Message no. DB612
    Diagnosis
    You selected variant BP_CASH for program RFCASH20.
    This variant does not exist.
    Procedure
    Correct the entry.
    in Prd while doing fbcj tcode.
    Tryng to take printout of the screen by selecting Print cash journal the above error is cmng and its going out of the screen..
    Note : In development is working without any issues pl guide to solve this issue in Production.
    Thanks in advance.

    Thanks

  • Variant SAP06 does not exist

    Hi,
    When i try to process account statement through FB12 it take me fine but once i go to F.64 and click on the generated request it shoots following error
    Variant SAP06 does not exist
    Message no. DB612
    Diagnosis
    You selected variant SAP06 for program RFKORD10.
    This variant does not exist.
    Procedure
    Correct the entry.
    Please advise if i am missing anything in configuration.
    Thanks!
    Mohammed Zia

    Hi ZIA,
    for correspondence variant needs to be assigned to program.
    Goto SA38 enter RFKORD10. then maintain variant. click save and rerun f.64.
    let me know if you have any problem.
    Pls assign points as way to say thanks

  • ALE error - variant LOGSYS does not exist?

    In trying to setup ALE within SAP (ECC 5.0) to send a material master IDOC from the ERP to XI.  I followed the ALE Quick Start guide and several other resources on the net including IDOC Cookbook and others.  When I try to select transaction BD10 (Send Material Master), it returns the following error:
    Variant LOGSYS does not exist
    The long text is:
    Variant LOGSYS does not exist
    Message no. DB612
    Diagnosis
    You selected variant LOGSYS for program RBDSEMAT.
    This variant does not exist.
    Procedure
    Correct the entry.
    In trying to narrow down the problem, I created a minimal scenario of just sending the MATMAS IDOC from one client to another on the same system and I get the same error.
    My first thought was the logical systems for the two
    clients were not setup correctly, but they seem okay.  I'm using the 'PRODUCTION' logical system that came with the IDES version we installed (client 811) and trying to send to a new client I setup as logical system VM1CLNT300 (client 300) on the same system.
    RFC Destinations test okay, partner profiles, ports, and the distribution model seem okay.
    Googling for that error message above produced nothing that I could get an answer from.  Any ideas?
    Thanks,
    -tim

    Yes, both logical systems are there.  Additionally, each
    client has been set to the appropriate logical system:
    client 811 -> PRODUCTION logical system
    client 300 -> VM1CLNT300 logical system
    -tim

  • DP Mass Processing error Variant &0000000000322 does not exist

    Hi,
    When I double click on the process chain which is created already in transaction RSPC, the system displays message Variant &0000000000322 does not exist.
    Please help to resolve this issue.
    thanks and regards
    Murugesan

    Hi,
    Variants starting with & are temporary variants and are not transported from one system to another. So if you have transported your process chain from one system to another, the chances are the temporary variants have not been transported.
    So pls change your process chain to use a more permanent variant. You can create permanent variants for mass processing jobs as follows.
    Go to SE38, type program name as /sapapo/ts_batch_run. Click on variants and create variants with the relevant info.
    Hope this helps.
    Thanks
    Mani Suresh

  • Variant SAP11 does not exist

    Dear Friends,
    Using T.code F.61 ( Trigger for correspondence) , I entered correspondence - SAP11(Customer Credit memo), Company code:2000, Document No:2000000,Fiscal year 2011 and excuted.
    I am getting the error as follows,
    Variant SAP11 does not exist
    Message no. DB612
    Diagnosis
    You selected variant SAP11 for program RFKORD50.
    This variant does not exist.
    Procedure
    Correct the entry.
    Please suggest how to solve the error.
    Regards
    Sridhar

    Hi Sridhar,
    Variant are client specific so you have to create the variant in the client your are testing this scenario.
    Just make same variant in client and test the scenario.

  • Variant does not exist

    Hi All,
    Pls suggest me how to resolve this issue.
    Am getting error message in r/3 after referesh,but in BW side i dnt find any jobs getting failed this particular job getting failed only in r/3 and the error is Variant &0000000000000 does not exist
    Thanks & Regards
    Con

    Hi,
    Am getting logon of the user getting failed when starting a step .
    Variant &0000000000000 does not exist
    This is the error message am getting on r/3 in sm37 , this particular job alone getting failed which is related to BW,but i dnt find any such jobs getting failed in BW.
    Thanks
    Con

  • ERROR SHOWS 'VARIANT CASHDE DOES NOT EXIST' WHILE GIVING PRINT in tcod FBCJ

    DEAR ALL,
      MY FI CONSULTANT WHILE PRESSING PRINT BUTTON IN FBCJ TCODE FOR CASH JOURNAL AN ERROR MESSAGE SHOWS 'VARIANT CASHDE DOES NOT EXIST '. AS AN ABAPER I TRIED A LOT AND DEBUG THE STD. PROGRAM BUT I AM UNABLE TO SOLVE THE ISSUE. SO I NEED UR HELP .PLEASE SUGGEST ME TO SOLVE THE ISSUE.
    IT IS VERY URGENT.
    REGARDS
    BANAJA

    Thanks

  • Process Variant does not exist in version A:

    Good day
    I have changed an existing process chain by removing an InfoPackage that had no link to any other process but the 'start'. When I 'test' the chain the message: "Process Variant AND .... does not exist in version A" is displayed. I have not even touched the 'AND' process.
    As a result the chain does not want to activate.
    What am I missing here?
    Thanks
    Cornelius Faurie

    Thanks for your quick response. Sorry, I did not give you all the information. The 'AND' process was still connected between two Ioad processes (One IP loads Mdata from a flat file, then the AND process, then the second IP load from CRM (0BPARTNER)) BUT there were two AND's with the same name. I think I removed the process of the one AND at one stage, but the second remained (Copy of the same AND).
    I have removed the AND process in totality and created a new one and it is activating now.
    Sorry, my stupidity.
    Thanks anyway
    C

  • Layouts - Variant &1 does not exist for version &2 of layout module &3

    Hi Sap All.
    when i am trying to create IDOC's of type LAYMOD01 using LSMW with IDOC Object type ,there were some IDOC;s failing in SAP With status 51 saying as  "Layouts - Variant &1 does not exist for version &2 of layout module &3".
    the following below text explain you the error message related to one particular IDOC of type LAYMOD 01 which was failed in sap with status 51 :
    Variant 6325 does not exist for version 0000 of layout module EC-83-0214
    can any one explain me the reason on why the IDOC's were failed.
    regards.
    Varma

    not required any more

  • Error : COmpany code does not exist or has not been fully maintained

    Hi ,
    I tried creating a material with industry sector : mechanical , material type : raw material.
    i selected basic data 1 and 2 view or MRP 1 view for views , i gave plant as SUJA and storage location value S001 ( plant and stor loc i have created in the company code 2001)
    but i get this error COmpany code 2001 does not exist or has not been fully maintained..
    I created COMPANY CODE using SPRO - Entreprise structure --definition -  financial accounting --define , copy , check , delete company code..
    kindly suggest me the solution for this error..

    Hi,
    Your company code not activated for material management. Few pre-requisites to create material and one is to activate company code for material management
    Please activate in T.code: OMSY,
    [For example: For Fiscal year variant K4]
    In OMSY steps, u have to enteru2026u2026u2026..
    Company Code (enter your company code name 2001)u2026u2026u2026u2026u2026.
    Company Name..
    Fiscal Year of Current Period 2009
    Current period (posting period) 03( )
    Fiscal year of previous period 2008( will come automatic)
    Month of previous period 02( will come automatic)
    Fiscal year of last period of previous year 2008
    Last month of previous year 12
    Allow Posting to Previous Period (Back posting)
    Disallow back posting after a change of period
    Now create material with T.code; MM01
    Regards,
    Biju K

Maybe you are looking for

  • How to create a workbook in BI 7.0 with more than 15 Sheets?

    Hi Experts, i would like to know how to create a workbook with more than 15 Sheets. One Workbook should be based on one query  and the other on differents queries. How should be the authorization? If you have any documents please just send it to me.

  • "Save Image As" does not appear on the right click menu of an image I want to save.

    Trying to save images as a file to my desktop/laptop. I right click on the image and the menu appears. The entry Save Image As... is not present on the menu. How do I get the menu to show this entry? I've heard that the problem may have something to

  • Password change RFC

    Hey guys, Could you please tell me that which standard RFC is being called to change the user password?

  • IPhoto 2009 Slideshow

    Slideshow: can I randomize the order of photos in an album I want to make into a slideshow? If so, how? iPhoto 2009.

  • Issues with layer

    Sorry if this is a stupid question but I am just frustrated and cannot think strait.  I am using CS4 and I use the Totally Rad Action Pack.  Whenever I use an action it runs like normal and then when I go to edit the layer it does nothing.  Example,