Variant is not transported

Hello SAP gurus,
Immediate requirement your help is required.
I have created a variant and a TR number in VT04 but when the TR has been moved to quality system I could not find the variant there. The TR number is correctly imported from development to quality but variant is not there.
So my doubt is if we need to create the variant manually in each system.
Thanks
Sha

variants can be transported, please see OSS Note 128908 - Transporting report variants 
for details.
This note has related notes which fix as well some problems, maybe you have one of these bugs in your system

Similar Messages

  • Report variant not transport to ECC 6.0

    hi all,
    after migration from SAP 4.6 to ECC6, i cant see the SAP transaction report variant not transaport over....is there any SAP table store the user variant not transported ?
    Thanks .

    Pls. check manual:
    Phase SAVE_VAR_CHK
    After the upgrade, many of your variants can no longer be used because the relevant selection screens
    have changed. If your Basis Source Release is 4.5B or higher, the SAP system offers two reports to
    save the variants:
    n RASUVAR1 saves your variants on the source system.
    n RASUVAR2 restores the variants in the target system.
    During phase SAVE_VAR_CHK you can decide whether you want the upgrade tool to run report
    RASUVAR1. The report is started in phase JOB_RASUVAR1. If you have decided to run report
    RASUVAR1, phase JOB_RASUVAR2 automatically starts report RASUVAR2 towards the end of the
    upgrade.
    For more information about the reports, see SAP Note 712297.

  • "Delete PSA" variant  not transported

    I have a process chain which involves a 'Delete PSA request' process. When this is transported into our Test environment the variants do not appear so the deletion does not happen. The process still exists but the variant defining which PSA to delete is blank and so no deletion occurs.
    Does anyone know what the problem could be and how we can resolve it?

    Hi, the table names are different in Dev and QA (/BIC/B0000628 in QA and /BIC/B0000302 in Dev). So if we reactivate the datasource in Dev, then re-transport the datasources and then retransport the process chains should this resolve the issue? Would the psa tables be re-created with the correct table names in QA if we do this?
    Nothing in QA has been activated manually after transport so not sure how that would happen.
    We are using NW 2004s, SP 8 at the moment.
    Thanks for you help
    Message was edited by: Katherine Huggins

  • Problem in transporting Variants - "You cant transport client-specific obj"

    Hi,
    I am facing a problem while trying to transport variant from DEV to QAS.
    When I tried to transport one of the variants (of a program) from DEV to QAS (quality system), it gave me an error that: "You cannot transport client-specific objects".
    Pleasehelp.
    Thanks,
    Vishal.

    Hi,
    The program is Not a local object. I am trying to assign the variant to a transport via. SE38->variant->display->utilities->transport request-> request number.
    Is there a way to modify this variant from client specific to "non-client-specific".
    Also, please let me know hoe do we copy this variant into a new variant which is not client specific (i.e. a global variant).
    Thanks,
    Vishal.

  • Unable to see variant description when transported from development box

    Hi Experts,
                      i am unable to see variant description when transported the variant from DEVELOPMENT box to Pre Production box,i have maitained translation as yes for all the transports.
    thanks for your help in advance.
    Regards
    harish

    When you maintain translation, its not added to the transport request automaticly.
    You can add translation manually to the request transport or use the program RS_LXE_RECORD_TORDER.
    Bye.

  • 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.

  • How to use the Variants in SAP Transportation and what is its use ?

    Hi experts,
    How to use the Variants in SAP Transportation and what is its use & How to create a variant in SAP ?
    Can anybody answer this ?
    Regards,
    Shakti

    Hi,
    If you are asking about "slection vairants" in SPRO settings of "shipment cost document" then
    When it is activated,
    each user can have his own slecetion  and list criteria for
    1. List shippment costs:calculation
    2. List shippment costs: settlement
    This can be directly saved from VI01 screen by the user.
    from environment> lists
    This is user specific only.
    Hope this helps.
    Regards,
    Sharan

  • Fiscal year variant is not maintained for calendar year 2009

    Hi,
    After upgrade to BI 7.0 we are getting error: "Fiscal year variant & is not maintained for calendar year 2009" while opening a query through Bex Analyzer.
    Basically it is happening like when we open a particular query, the Variable selection screen comes up, then on clicking the exection button (after selection) it shows SYSTEM_FAILURE exception & clicking the details button, shows the message ""Fiscal year variant is not maintained for calendar year 2009"
    Please provide some information/resolution to this.
    Thanks,
    Shantanu.

    HI,
    Please ensure that you have defined your fiscal year variant in OB29
    correctly.  It is necessary that:
      1.  the previous year has been maintained,
      2.  an entry for Dec 31 exists in each fiscal year,
      3.  the following fiscal year has been maintained.
    Hope this helps.
    Regards,
    Nitin

  • IMR7 : Creation of a new Screen Variant does not save Layout

    Hello,
    In IMR7, if I create a new screen Variant with a modified the default Layout field, the next time I log-in to SAP, system does not recognize my Layout selection.
    Do you have a suggestion?
    Thanks
    François

    Hello,
    Thanks for your support but it did not resolved my problem.
    When I save Layout I  have three fields:
    -Layout name
    -User-specific checkbox
    -Description
    Even though User-specific is not checked, next time I relog to SAP and choose my Variant, the layout I have chosen in this variant is not keeped in memory. A layout named 4_SAP_IM is always displayed.
    Do you have the same behavior?
    Thanks
    François

  • KM content transported once is not transporting again

    Hi Experts,
    I have a problem in ICE online transfer.
    Let me explain you clearly.
    I transported ABC folder  from one portal system to other using ICE - online method.  that is
    source path is /documents/abc   and destination path is  /documents/xyz/abc    All the content is transported successfully.
    Now I want to transport  to destination path  /documents/abc  in target system. I configured corectly but it is not happening.
    Same problem I am facing with other folders also. The content that is transported once is not transporting again. once fully transported it is doing only incremental update but not full update.
    How can I transfer full update again using ICE - online.   Is there any possibility of removing cache.
    Any kind of hint will be appreciated.
    Raghu
    Edited by: Raghavendranath Garlapati on Apr 22, 2010 9:47 AM

    HI Raghu , <br>
    Refer the following  [link|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/802c1739-d270-2910-ad9f-f369de07c1bf?QuickLink=index&overridelayout=true].<br>
    As per this pdf,  leave the target path as blank, so that subscriber can choose the path to store the document.
    <br>Hope this will help<br>
    _Vishal

  • First time data is not transported to pop up window through event handler

    Hi all,
    I am using NWDS 7.0, Now I want to open a pop up on click of a action link.
    There are two DCs DC-A and DC-B.
    I am calling action from DC-A to DC-B. DC-B contains view of pop up window.
    In DC-A I am using intreface controller of DC-B by using used coponents.
    Now In the DC-B used components I have created one fireplugin which is connected ith pop up view of DC-B and that firplugin is called from DC-A action to transport data from Dc-A to DC-B.
    Problem : when I click first time to open pop-up window then event handler is not called but the windows opened. When I close that window and again open the transported data start displaying on pop up window.
    So can you please help me that why first time data is not transported to pop up window.
    Thanks
    Kaushal

    You'll need to use an OARawTextBean. Oracle doesn't support opening links in new windows using OAFormattedTextBean. Just be aware that you'll need to set the CSS class in the HTML as well if you need it formatted a certain way.

  • Fiscal year "A3" Variant is not maintained for Financila year 2010

    Hello All,
    while creating asset master using AS01 T Code i am getting an error "Fiscal year "A3" Variant is not maintained for Financila year 2010 for Compnay Code 0600".
    but i have configured Fical year variant and assigned to co code, i am able to post the transactions for all the periods i.e financial year 2010.
    here my question is whether we need to maintain the Fiscal year variant separately for Asset accounting in ECC 6.0.
    Please Suggest
    Thanks
    Shankar

    Hi Murali and Christian,
    Thanks for your reply..
    now i have configured year dependent fiscal year to my co code, if i configure calender year i am able to create the Asset master
    please help
    Thanks
    Shankar

  • SAP BW DTP error: Fiscal year variant is not maintained for calendar year

    Hi experts,
    Running DTP for loading 2LIS_12_VCITM results in following error "Fiscal year variant A2 is not maintained for calendar year 2012".
    I have already done following checks:
    - the fiscal variant A2 exists for the fiscal year 2012 in the BW system (T009 tables)
    - the DTP does only give this error for 2 company codes, and works fine for other company codes
    - in our R3 system, the fiscal year variant A2 is assigned to all the company codes, how or where can I check this assignment in the BW system ?
    Kind regards, Guy Verschueren

    Hi
    Please check the following threads
    "Fiscal year variant V3 is not maintained for calendar year 2011" (OAOB)
    Error FGV002: Fiscal year variant & is not maintained for calendar year &
    Hope it helps.
    Thanks,
    Rajesh.
    Please assign points to answers if you find them heplful

  • Fiscal year variant V3 not defined or maintained for date 01.01.2011

    Hi  Team,
    While doing "ABUMN" we are getting below error message"
    Fiscal year variant V3 not defined or maintained for date 01.01.2011
    Message no. GMMASTERDATA108
    if we change asset value date 02.01.2011, there is no error message.
    we are getting error message only when asset value date is 01.01.2011.
    Please let us know is there any problem 01.01.?
    Thanks and Regards,
    Ram

    Hi Ashwin,
    Yes I have maintained 31 days for JAN in OB29. Even though I'm getting the same information.
    Could you give some other solution.
    Thanks & Regards
    SK.

  • Web Dynpro ABAP personalization not transported to Quality

    Hello,
    We personalized the iView in portal with j2ee_admin credential for SRM7.0 implementation at Role level.
    We got the pop up saying Do no Transport personalization and transport personalization. We chose Do Not Transport Personalization in portal.
    We transport the personalization using the application WD_ANALYZE_CONFIG_USER , we transported for all user.
    But when we check in the portal the personalized content is not shown.
    Could anyone help on this asap since we are in phase of UAT?
    Regards,
    Senthil Kumar S.

    Please post it in forum [SAP Community Network Forums » SAP Solutions » Floorplan Manager for WebDynpro Abap |;
    Close this thread.

Maybe you are looking for