Variant error in f-22

i post one document in f-22  document number 100000 after that this document number to assign the correspondece request in fb12 system asks document number,company code once enter request saved in f.64 i have execute this one according to the document number whther system showing error messaage 
Variant ZI1 does not exist  & where we create the related programme variant

thanks for your sending answer it is very helpful answer, i post one document  document no: 102005 after fb12 this document is request for correspondence but the system showing defaultly the correspondence of sap19 for customer invoice how to change this one & once i am executing f.64 i had given input parameters for correspondence or company code after execute the system popup error message
Report allocatn for correspond.type SAP19 has not been fully maintained
A correspondence request SAP19 was selected for company code 1005, for which the report allocation to the correspondence type has not been maintained completely. The name of the print program and/or the name of the variant is missing in the report allocation.

Similar Messages

  • Layout variant error

    Please find code below. When I run this report with transaction it gives variant error .How can I fix this problem
    REPORT yiwm_uom_stock                         .
    *---Data Include
    INCLUDE yiwm_uom_stock_data.
    *INITIALIZATION.
    PERFORM initialize_variant.
    *----ON SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
      PERFORM f4_for_variant .
    *---START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM write_data .
    *&      Form  get_data
    FORM get_data.
    *--Quants of stock with selection screen.
      SELECT werks lgort lgnum gesme
             verme einme ausme lgpla
             lgtyp matnr lqnum
        FROM lqua
        INTO CORRESPONDING FIELDS OF TABLE gt_itab
       WHERE werks IN s_werks
         AND lgnum EQ p_lgnum
         AND lgort IN s_lgort
         AND lgtyp IN s_lgtyp
         AND kober IN s_kober
         AND matnr IN s_matnr.
      LOOP AT gt_itab.
        CLEAR lagp .
        SELECT SINGLE  lgtyp lgber lptyp plauf skzua skzue skzsa skzse
                       skzsi spgru anzqu maxqu anzle maxle btanr btaps
                       kzdyn lgewi gewei mgewi bdatu bzeit ivivo sorlp
                       rdatu rzeit kzinv idatu ivnum ivpos brand uname
                       laedt kober reihf verif
                 FROM  lagp
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE  lgnum = gt_itab-lgnum
           AND  lgpla = gt_itab-lgpla
           AND  lgtyp = gt_itab-lgtyp.
        CLEAR mara.
        SELECT SINGLE matnr meins zzshmat matkl
                      mtart ean11 zzkshrtyp
          FROM mara
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE matnr EQ gt_itab-matnr.
        CLEAR marm.
        SELECT SINGLE meinh umrez umren breit hoehe
                      meabm volum voleh brgew gewei
          FROM marm
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE matnr EQ gt_itab-matnr
           AND meinh EQ p_meinh.
        CLEAR mlgn.
        SELECT SINGLE ltkza ltkze lgbkz block
                      bsskz l2skr mkapv
          FROM mlgn
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE matnr EQ gt_itab-matnr
           AND lgnum EQ gt_itab-lgnum.
        CLEAR mlgt.
        SELECT SINGLE lgpla lpmax lpmin
                      mamng nsmng kober rdmng
         FROM mlgt
         INTO CORRESPONDING FIELDS OF gt_itab
         WHERE lgnum EQ gt_itab-lgnum
           AND lgpla EQ gt_itab-lgpla
           AND matnr EQ gt_itab-matnr
           AND lgtyp EQ gt_itab-lgtyp.
        CLEAR makt.
        SELECT SINGLE maktx
          FROM makt
          INTO gt_itab-maktx
         WHERE matnr EQ gt_itab-matnr.
        MODIFY  gt_itab.
        CLEAR   gt_itab.
      ENDLOOP.
    ENDFORM.                    "get_data
         Form  write_data                                              *
    FORM write_data.
      PERFORM find_list_header.
      PERFORM fill_field_cat TABLES gt_fldcat
                             USING  'GT_ITAB'
                                    'YIWM_UOM_STOCK'.
      gv_repid = sy-repid.
      gs_variant-report  = sy-repid.
      gs_variant-variant = p_vari.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active    = ' '
          i_callback_program = gv_repid
          i_default          = 'X'
          i_save             = 'A'
          is_layout          = gs_layout
          it_fieldcat        = gt_fldcat[]
          is_variant         = gs_variant
        TABLES
          t_outtab           = gt_itab.
    ENDFORM.                    " write_data
        Form  find_list_header                                         *
    FORM find_list_header.
      CLEAR : gt_header, gt_header[].
      gt_header-typ  = 'H'.
      sy-title = 'UOM STOCK REPORT'.
      MOVE sy-title TO gt_header-info.
      APPEND gt_header.
    ENDFORM.                    " find_list_header
        Form  fill_field_cat                                           *
    FORM fill_field_cat  TABLES gt_fldcat
                          USING p_intname
                                p_inclname.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = sy-repid
          i_inclname             = p_inclname
          i_internal_tabname     = p_intname
        CHANGING
          ct_fieldcat            = gt_fldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " fill_field_cat
    *&      Form  INITIALIZE_VARIANT
          text
    FORM initialize_variant .
      g_save = 'A'.
    CLEAR g_variant.
    g_variant-report = sy-repid.
    gx_variant = g_variant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = g_save
        CHANGING
          cs_variant = gx_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 0.
        p_vari = gx_variant-variant.
      ENDIF.
    ENDFORM.                               " INITIALIZE_VARIANT
    *&      Form  F4_FOR_VARIANT
          text
    FORM f4_for_variant.
      gs_variant-report  = sy-repid.
      gs_variant-variant = p_vari.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = gs_variant
          i_save     = g_save
        IMPORTING
          e_exit     = g_exit
          es_variant = gx_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S'      NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF g_exit = space.
          p_vari = gx_variant-variant.
        ENDIF.
      ENDIF.
    ENDFORM.                               " F4_FOR_VARIANT
    *&      Form  PAI_OF_SELECTION_SCREEN
          text
    FORM pai_of_selection_screen.
    IF NOT p_vari IS INITIAL.
       MOVE g_variant TO gx_variant.
       MOVE p_vari TO gx_variant-variant.
       CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
         EXPORTING
           i_save     = g_save
         CHANGING
           cs_variant = gx_variant.
       g_variant = gx_variant.
    ELSE.
       PERFORM initialize_variant.
    ENDIF.
    ENDFORM.                               " PAI_OF_SELECTION_SCREEN

    Hi Narendan ..
    I changed but it is already leave to the code screen (leave program). I think it will be useful to send complete code again .Please remember , it gives  error only call with transaction.
    REPORT yiwm_uom_stock                         .
    *---Data Include
    INCLUDE yiwm_uom_stock_data.
    INITIALIZATION.
      PERFORM initialize_variant.
    *----ON SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
      PERFORM f4_for_variant .
    *---START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM write_data .
    *&      Form  get_data
    FORM get_data.
    *--Quants of stock with selection screen.
      SELECT werks lgort lgnum gesme
             verme einme ausme lgpla
             lgtyp matnr lqnum
        FROM lqua
        INTO CORRESPONDING FIELDS OF TABLE gt_itab
       WHERE werks IN s_werks
         AND lgnum EQ p_lgnum
         AND lgort IN s_lgort
         AND lgtyp IN s_lgtyp
         AND kober IN s_kober
         AND matnr IN s_matnr.
      LOOP AT gt_itab.
        CLEAR lagp .
        SELECT SINGLE  lgtyp lgber lptyp plauf skzua skzue skzsa skzse
                       skzsi spgru anzqu maxqu anzle maxle btanr btaps
                       kzdyn lgewi gewei mgewi bdatu bzeit ivivo sorlp
                       rdatu rzeit kzinv idatu ivnum ivpos brand uname
                       laedt kober reihf verif
          FROM  lagp
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE  lgnum = gt_itab-lgnum
           AND  lgpla = gt_itab-lgpla
           AND  lgtyp = gt_itab-lgtyp.
        CLEAR mara.
        SELECT SINGLE matnr meins zzshmat matkl
                      mtart ean11 zzkshrtyp
          FROM mara
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE matnr EQ gt_itab-matnr.
        CLEAR marm.
        SELECT SINGLE meinh umrez umren breit hoehe
                      meabm volum voleh brgew gewei
          FROM marm
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE matnr EQ gt_itab-matnr
           AND meinh EQ p_meinh.
        CLEAR mlgn.
        SELECT SINGLE ltkza ltkze lgbkz block
                      bsskz l2skr mkapv
          FROM mlgn
          INTO CORRESPONDING FIELDS OF gt_itab
         WHERE matnr EQ gt_itab-matnr
           AND lgnum EQ gt_itab-lgnum.
        CLEAR mlgt.
        SELECT SINGLE lgpla lpmax lpmin
                      mamng nsmng kober rdmng
         FROM mlgt
         INTO CORRESPONDING FIELDS OF gt_itab
         WHERE lgnum EQ gt_itab-lgnum
           AND lgpla EQ gt_itab-lgpla
           AND matnr EQ gt_itab-matnr
           AND lgtyp EQ gt_itab-lgtyp.
        CLEAR makt.
        SELECT SINGLE maktx
          FROM makt
          INTO gt_itab-maktx
         WHERE matnr EQ gt_itab-matnr.
        MODIFY  gt_itab.
        CLEAR   gt_itab.
      ENDLOOP.
    ENDFORM.                    "get_data
         Form  write_data                                              *
    FORM write_data.
      PERFORM find_list_header.
      PERFORM fill_field_cat TABLES gt_fldcat
                             USING  'GT_ITAB'
                                    'YIWM_UOM_STOCK'.
      gv_repid = sy-repid.
      gs_variant-report  = sy-repid.
      gs_variant-variant = p_vari.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active    = ' '
          i_callback_program = gv_repid
          i_default          = 'X'
          i_save             = 'A'
          is_layout          = gs_layout
          it_fieldcat        = gt_fldcat[]
          is_variant         = gs_variant
        TABLES
          t_outtab           = gt_itab.
    ENDFORM.                    " write_data
        Form  find_list_header                                         *
    FORM find_list_header.
      CLEAR : gt_header, gt_header[].
      gt_header-typ  = 'H'.
      sy-title = 'UOM STOCK REPORT'.
      MOVE sy-title TO gt_header-info.
      APPEND gt_header.
    ENDFORM.                    " find_list_header
        Form  fill_field_cat                                           *
    FORM fill_field_cat  TABLES gt_fldcat
                          USING p_intname
                                p_inclname.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = sy-repid
          i_inclname             = p_inclname
          i_internal_tabname     = p_intname
        CHANGING
          ct_fieldcat            = gt_fldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " fill_field_cat
    *&      Form  INITIALIZE_VARIANT
          text
    FORM initialize_variant .
      g_save = 'A'.
      CLEAR g_variant.
      g_variant-report = sy-repid.
      gx_variant = g_variant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = g_save
        CHANGING
          cs_variant = gx_variant
        EXCEPTIONS
          EXCEPTIONS
          wrong_input = 1
          not_found = 2
          program_error = 3
        OTHERS = 4 .
      IF sy-subrc = 0.
        p_vari = gx_variant-variant.
      ENDIF.
    ENDFORM.                               " INITIALIZE_VARIANT
    *&      Form  F4_FOR_VARIANT
          text
    FORM f4_for_variant.
      gs_variant-report  = sy-repid.
      gs_variant-variant = p_vari.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = gs_variant
          i_save     = g_save
        IMPORTING
          e_exit     = g_exit
          es_variant = gx_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S'      NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF g_exit = space.
          p_vari = gx_variant-variant.
        ENDIF.
      ENDIF.
    ENDFORM.                               " F4_FOR_VARIANT
    *&      Form  PAI_OF_SELECTION_SCREEN
          text
    FORM pai_of_selection_screen.
      IF NOT p_vari IS INITIAL.
        MOVE g_variant TO gx_variant.
        MOVE p_vari TO gx_variant-variant.
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
          EXPORTING
            i_save     = g_save
          CHANGING
            cs_variant = gx_variant.
        g_variant = gx_variant.
      ELSE.
        PERFORM initialize_variant.
      ENDIF.
    ENDFORM.                               " PAI_OF_SELECTION_SCREEN

  • ABAP Query variant - Error during SE93

    Team,
    I am creating ztransaction codes for abap queries via SE93. Sometimes in SE93 error comes stating that Variant is required. I want to know the table name where this info/indicator/flag is maintained.
    I need this info to automate my BDC.
    Thanks
    Error Msg:
    Report AQ10CR==========35============ can only be started with a variant
    Message no. DB623

    Hi,
    Check in SQ01, there are options to set the ABAP query to be executed with varaint. If this check box is enabled then you can execute the query only with a varaint. So i believe its the setting in the query definition and not in Se93.
    Btw you can define or create a transaction code  in SE93 to run a query with the varaint as well.
    Let me know if you need more info.
    cheers
    VJ

  • Fiscal Year Variant Error

    Hi All
    we are getting the below error when trying to post the transaction MICN :
    Fiscal year variant T2 is incorrect
    Message no. F5234
    However, i have checked OB29, OMSY, OB37 & OB52 - all are correctly set up...
    can anyone guide me as to how I can correct this error
    Thank you
    Rukshana

    Hi Christian
    Thank you for the response...
    yes I have checked all of them and none of them are giving me a solution.
    SAP OSS notes too are not much of a help....
    Thats why I am trying to pick someone's brain to see if they have encountered a similiar error and what they did to rectify it..
    Thanks again
    Rukshana

  • Can't apply system variant (Error MSG)

    hi experts,
    i have to make a system variant, starting with cus&****
    but when i try to save it, it says:
    "In Mehrmandantensystemen dürfen keine Systemvarianten angelegt werden."
    in english:
    "In Systems with more Clients you're not allowed to apply system variants"
    sorry for my bad english but i hope you understand it that way
    it's not a problem with user rights isnt it?

    If you're trying to launch the application by opening a document, select the document in the Finder, choose Get Info from the File menu, and set it to open with the correct application in the Open With section. If you're opening the application directly or through another method other than opening the document, move it to the Applications folder; that error means that the application set as the default wasn't found or is in the Trash.
    (26337)

  • Variant error in off cycle payroll

    dear experts,
    while running offcycle workbench program i am getting the following error
    Variant SAP_OC does not exist
    how to recify this
    I have maintained this varinat in the required table V_T520CV
    But still i am getting error.
    advice solicited
    regards
    Nataraj s

    1q
    Edited by: satya narayana on Aug 7, 2008 11:22 AM

  • Transaction Variant Error

    Hi all,
    I am trying to create a transaction variant for one of the SAP std transaction and when I execute tcode shd0 and put the tcode there and hit the create button I get the following error message:
    Variants are possible only for dialog transactions.
    Message no. MS417
    Diagnosis
    You cannot create variants for variant or parameter transactions.
    So can you please tell me how can I create variant for such case.
    Thanks,
    Rajeev

    This is the place you are getting the error MSHD0F01 , As in my earlier reply i mentioned you cannot write transaction variant wrapper on transaction variant
      select single * from tstc where tcode = shdtv-tcode.
      if sy-subrc >< 0.
        message e416 with shdtv-tcode.
      else.
        if tstc-cinfo o c_type_menu     "menu
        or tstc-cinfo o c_type_para.    "parameter-/variant transaction
          message e417.
        endif.
      endif.

  • Fiscal variant error

    Hi All
    I got an error query execution by SAP BEX " value 000 is invalid for the fiscal year variant ".
    Thanks Prasanna

    Hi Prasanna,
    If you are using any SAP EXIT or Customer exit for Fiscal variant, just check the values for the same '000' may not be executed in the routine.If the value exists for Fiscal variant and it is not required for report just do a selective deletion at cube level and try to execute the query.
    Hope this helps.........
    Rgs,
    I.R.K

  • Transport Request Ended with Process variant error

    Hi,
    One transport request related to process chains failed with the follwoing error.
    Process variant CHAIN SCOMMONMD does not exist in version A.
    Process variants are not avaialble with version A in target system.
    Anyone suggest me how to mainatain process variants to resolve this error.
    Regards,
    RC

    Thanks for quick reply. I will try with this solution.
    Regards,
    RC

  • Abap program variant error in process chain

    Hi experts,
    I need your help one more time...
    In our process chain, we run the program RSIMPCUST to bring currency and units from the source system to BW. We have created a variant to run this program and call it in the process chain. One of the variant's parameter is the logical system, which was configured as our DEV system.
    When we transport this process chain to QA and run it, the variant continues to refer the DEV logical system, and not the QA logical system as it should.
    any ideas?
    Thanks!
    Thiago Braga

    Values in variants are not converted.  You can use the same variant in your ABAP program, but you need to change the value in the parameter for logical system in each system you transport the change to.  The only alternative is to create a logical system name in SM59 that is the same in all your BW systems but it refers to the local R/3 system.
    In other words, you will have two logical systems in your BWD system pointing to your R/3 Dev.  Let's call them R3DCLNT100 and R3SYSTEM, where R3DCLNT100 is also the source system (in RSA1).  You can use R3SYSTEM in your variant for your ABAP program.  In your BWQ (test system), you will have two logical systems also, R3QCLNT100 and R3SYSTEM, where R3QCLNT100 is also your source system.
    Does this help.

  • F110 variant error

    Hi Experts,
    While running the F110 i am giving the inputs for maintain variant (after selection printout/data medium button) at that time system is not picking check lot number. If i give then while posting system is not taking check lot number. After save check lot number is not showing in the same screen. Every thing i have checked but i didn't get the soluation
    << Moderator message - Everyone's problem is important. Please do not ask for help quickly. >>
    Thanks and regards,
    Anjiee.
    Edited by: Rob Burbank on Nov 24, 2010 4:59 PM

    Try to create the variant in transaction SE38 for that print progam.
    Also check that field is not defined as protected or dynamic field in the variant attributes.
    Regards,
    SDNer

  • Varying errors 1722 & 1726: Failed to add port monitor.

    Hi guys,
    I've got a problem installing the drivers for my litle HP deskjet 3050. I seem to be going around in circles.
    I've had this problem before but solved it.....although I can't for the life of me remember how I did it. This time around I just can't seem to knock it on it's head.
    The problem began after I reloaded an older system image backup after my HDD crashed (which I've replaced with a hybrid HDD). The printer wouldn't work from the moment I first tried after the reload.
    I've followed every instruction on this forum I can find, from uninstalling, stopping/starting the spooler servie, cleaning out temporary files, switching off the firewall (including Norton Antivirus), reinstalling the software (which fails),etc.....nothing seems to get passed the point of the driver installation.
    Have you guys got any ideas on what I must be overlooking?
    Cheers,
    Wayne.

    Hi @WayneCoburg 
    You have done so much I almost don't know what to suggest! I certainly do want to help though. I did some research and came up with some steps for you to follow. Please note; some of these steps will be steps you have tried already, but I would like you try perform these steps in the order they are presented in and let me know the outcome of your efforts;
    Click here to download and run the Microsoft Fix itWhat it fixes...
    Corrupted registry keys on 64-bit operating systems
    Corrupted registry keys that control the update data
    Problems that prevent new programs from being installed
    Hold down the Windows Logo key (  ) on the keyboard and the 'R' to open the run box,  type %temp%
    Delete all files and folders from the temp folder. Choose skip if any pop ups appear saying any of the files could not be deleted
    Uninstall the software again - Uninstalling the Printer Software Instructions
    When the uninstall has completed restart the computer
    Follow these steps to reset the registry settings and options for Windows Installer.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type msiexec /unregister, and then click OK.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Open box, type msiexec /regserver, and then click OK
     *Note: there is a space between the c and the /
    If you have any difficulty with this step, please use this link to perform it another way. Restarting Windows Installer
    Download and install this Patch Microsoft Visual C++ Runtime Error (if you didn't already do this)
    Run Disk cleanup from Accessories\ System Tool < How to Delete files using Disk Cleanup
    Download and install the latest version of Adobe flash player http://www.adobe.com/support/flashplayer/downloads.html
    Restart the computer
    Turn off the Real-Time Scanning and Firewalls; The image below is a McAfee example, if you have a different antivirus program and need help disabling Real-Time Scanning and Firewalls let me know.
     Image source
    Download and run the HP Printer Install Wizard for Windows
    If the issue persists, Try the Printer install Wizard on a new admin account; These instructions are helpful, and easy to follow; Creating a New Administrator Account.
    Finally, if the issue still remains unresolved, maybe the following steps posted by another community member would be helpful. The error code is different but the solution may be the same; failed to add monitor HP Discovery Port Monitor.
    I look forward to hearing back from you.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Changing variant in FBL5N

    Hi all,
    In FBL5N (Customer line item display), users would like to change and save a variant but they are not authorized.
    Which authorization object allows changing and saving a variant?
    Thank you very much,
    Annabelle

    Hi,
    Just run FBL5n T.Code.
    Try to change the variant.Error message will appear immediately run SU53 T.Code and show this to your Basis Person.
    In this you will get the authorisation object missing.
    Check this one in SUIM T.Code.There is a tab authorisation objects.Click on that.
    Regards,
    Krishna.

  • ABAP Query Variant Problem

    Hi,
       I am trying to Execute a query through Program
      I had copied standard querys (ME80FN) Program  RM06EAAW  to my custom program
      In that program , it is caaling a query and assigning one variant
      Any idea from when that variant was assigned or How to create variants for ABAP Queries??
    Thanks
    Chandrasekhar J
    Edited by: Chandrasekhar Jagarlamudi on Feb 20, 2008 1:08 AM

    Hi,
    Check these links...
    http://help.sap.com/saphelp_nw04/helpdata/en/62/bc934814ba11d6999900508b6b8b11/frameset.htm
    Re: ABAP Query variant - Error during SE93
    Hope it helps u...
    Regards,
    KK

  • Error in Secatt Script

    Hi Guys,
    I have been running secatt for user creation and adding one role through su01. Everything is fine until I define Variant in Test Configuration.  I guess I'm keep doing something that gives me an error when I execute the script.  I know its something related to variant.
    I keep getting this error:
    Version 1 External Variant SAVARIENT
    Message no. ECATT507
    Can anyone please tell me where am I doing wrong?
    Thanks a lot in advance
    Faisal

    >
    Faisal wrote:
    > Version 1 External Variant SAVARIENT
    I don't get exactly the same error on variants "Version 1 External Variant SAVARIENT" but there are a few things you can check in regards to variant errors.
    Run SECATT->Test Configuration and bring up your test configuration script.
    Click on Change
    Click on Variants Tab
    Verify that your file is correct
    Click on Execute
    Click on Shared Tab (Default Screen)
    Error Behavior select - S No Termination, Continue with next Script Command
    Debugging Mode select - I Ignore Breakpoints (Default for Collective Execution)
    Click on the Variant Tab
    Click on Change Path
    Verify your path for your source file under the following fields
    eCATT Objects
    Variants
    WebDynpro
    SAPGUI Command
    Then EXECUTE
    Good Luck!

Maybe you are looking for