Regarding table of variants for job cycles

Hi all,
  When I am creating jobs for various allocation cycles for execution I am saving those jobs as a variants now I am looking for a table name from which I can pull out all the variants for those jobs so if anyone has any idea kindly share with me.
Thanks,
Bob

Hi,
Only the way we can get the variants for generic articles is follows
Table: MEAN
enter the generic article, followed by the - and no of charatestics
ex: Generic article# 1010101
variants - 1010101-010
1010101-011
1010101-012
in the table you enter the article# as 1010101-***
u will get all the variants for the generic articles with their respective ENA no
u can do the concanecate fromula in excel for all the generic articles in excel and attach to the clipboard, u can get all the details in one shot
Hope this may answer ur question, we are following same method in our project

Similar Messages

  • How to set up Dynamic Variants for job which is based on Pay Period

    Hi,
    We need to set up dynamic variant for payroll interface.  This interface is based on Pay periods and that is why we need to use different variant for each month.  Letus know how to set up dynamic variant which will take care of Pay Periods

    Hi,  Thnx for reply.
    We are not changing the control records, current period will be some old period in system. 
    payroll is not processed in SAP,

  • Table Control Variant For ME21N - Item level - account assignment tab.

    Dear All,
    I want to change Table Control Screen that is in Me21n(Service PO)>Item level> Account Assignment  tab -> Table control.
    In that table control i want to add one column Name is OrderNo(AUFNR) ,but system is not changing the table control.
    When i m going to change table control scrren in ---> Condition tab its working fine but not for above case.
    Please guide me to solve this issue.
    Regards,
    Sanket.

    Please provide the solution.
    Regards,
    Sanket.

  • Regarding Variants for Background jobs

    Hi Folks
    Can you please let me know the procedure how we can create the variants for Background jobs.
    Points are assured for correct answers.
    Regards,
    kumar

    Hi Sree Ram,
    Check this info.
    If you have any selection screen parameters for your program you need to enter the values for those fields in runtime. So, if you schedule your program in background to execute then there is no one to do this job. Here comes the concept of Variant.
    With variant you define what are the selection field values in the runtime. During runtime the program picks this values and runs the program.
    When you execute your program which has selection fields, you enter the values and then you click on 'GO TO ' tab and 'SAVE AS VARIANT'.
    When you schedule your program in background, give this variant also. Then it will run automatically.
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • How to create variant for table/view ?

    Hi,
    When I go through SM30, I find a radio button called variant. I don't know the effect.
    Can anyone tell me how to create variant for table / view ?
    I want to know when we need to create variant for table/view.
    Best regards,
    Chris Gu

    hi ,
    Whenever you start a program in which selection screens are defined, the system displays a set of input fields for database-specific and program-specific selections. To select a certain set of data, you enter an appropriate range of values.
    For further information about selection screens, refer to Selection Screens in the ABAP User's Guide.
    If you often run the same program with the same set of selections (for example, to create a monthly statistical report), you can save the values in a selection set called a variant
    Procedure
    To create a new variant:
           1.      On the ABAP Editor initial screen, enter the name of the program for which you want to create a variant, select Variants, and choose Change.
           2.      On the variant maintenance initial screen, enter the name of the variant to be created.
    Note the naming convention for variants (see below).
           3.      Choose Create.
    If the program has more than one selection screen, a dialog box for screen assignment appears. The dialog box does not appear if the program only has one selection screen. The selection screen appears in this case.
           4.      If there is more than one selection screen, select the screens for which you want to create the variant
    5.      Choose Continue.
    The (first) selection screen for the report appears.
    If your program has more than one selection screen, use the scroll buttons in the left-hand corner of the application toolbar to navigate between them and to fill the fields with values. If you keep scrolling forwards, the Continue button appears on the last selection screen.
           6.      Enter the desired selection values, including multiple selection and dynamic selection.
           7.      Choose Continue.

  • Variant for selection screen with the Table control entries in another Tab

    Hi Guys,
      The requirement is to create a variant for the two tabs on a selection screen.
      First tab contains the select options and the second contains table control for making entries.
      So will it be possible to create a variant when the user makes entries in the fields in one tab and the table on other tab?

    You wrote
    Utilizing the "Save as variant" option from the selection screen itself works out perfectly, but this variant cannot be transported.
    But, give the variant a name beginning with "CUS&" and this variant will be transported. Variant beginning with "CUS&" or "SAP&" are so-called "system variant" and are  transported automatically. You can then copy the transaction code and use this new variant in the new transaction.
    Regards,
    Raymond

  • Setting new cell variant for an alv table column

    Hi,
    I want to set a new cell variant for a column. Therefore I did the following steps:
    1. Create an object of CL_SALV_WD_CV_STANDARD
    2. SET_KEY( 'CELLVAR1 )
    3. set_cell_design([..]-goodvalue_medium )
    4. SET_EDITOR( lr_alv_input_field )
    After that I added the cell variant to the column by using the method "add_cell_variant".
    The last step is to call method SET_SELECTED_CELL_VARIANT.
    I checked my program by using get_selected_cell_variant( ) and the return string was okay.
    But when the table is displayed, the new cell variant isn't working. I defined an input field as the cell editor for my new cell variant but when the table is shown, it is just text - no input possible. In addition to that the selected cell design (goodvalue_medium , step 3) isn't working. So I think the cell variant is not used.
    Can you help me?
    Thanks & Regards,
    Hendrik

    Hi
    I wonder if you can help me please, I too am having issues implementing ALV cell changes in WDA?
    I am basically trying to dynamically change the individual color of a cell (not the entire column or row) dependant on certain criteria. I apologies but find that you are the closest resource for any potential information. Please see screen shot below.
    Currently my code is as follows:
    see: www.picasaweb.google.co.uk/dave.alexander69/Pictures#5244416971466907938
    data: lr_cv TYPE REF TO cl_salv_wd_cv_standard.
    loop at table 1 row data
            loop at table columns
              for the date columns only...
              IF <fs_column>-id(4) = 'CELL'.
               get and set column header dates from select option user input - done
                loop at table 2 row data (table 2 contains date ranges for row concerned)
                  MOVE: ls_zdata-variance TO lv_variance.
                  method 1 - as in sap press WD4A -:
                  lr_cv = cl_wd_table_standard_cell=>new_table_standard_cell(
                                                     view        = view
                                                    variant_key = lv_variance ).
                 as mentioned...
                  CREATE OBJECT lr_cv.
                  lr_cv->set_key( 'VARIANCE' ).
                  lr_cv->set_cell_design( '09' ).
                  lr_cv->set_editor( lr_input_field ).
                  lr_column->add_cell_variant( lr_cv ).
                  lr_column->set_cell_editor( lr_input_field ).
                  lr_column->set_sel_cell_variant_fieldname( 'VARIANCE' ).
                  lr_column->set_cell_design_fieldname( value = 'COLOR_CELL' ).
                  lr_field = lr_table->if_salv_wd_field_settings~get_field( <fs_column>-id ).
                  lr_field->if_salv_wd_sort~set_sort_allowed( abap_false ).
                  the only way I get cell coloring to work - but this is for entire column?
                  ls_zdata-color_cell = cl_wd_table_standard_cell=>e_cell_design-one.
                  MODIFY lt_zdata FROM ls_zdata..
                ENDLOOP.
              ENDIF.
              IF <fs_column>-id = 'COLOR_CELL'.
                CALL METHOD lr_column->set_visible( EXPORTING value = '00' ).
              ENDIF.
            ENDLOOP
          ENDLOOP.
    As you see I am in the dark a bit regarding cell variants and wonder if you can point me in a better direction.
    Many thanks for any help,
    Dave Alexander

  • Tables for  Job (STEXT)in Org model

    Hi friends
    Could any one please tell me the table names which stores JOB-STEXT  (which is there under the position field )in the ORG model .Now my requirement is that i should get the job of the BP based on the personal number or BP.
    Earlier reply would be appreciated
    Thanks in advance
    Rao

    The function module to find the BP number for the given sales organisation is 'CRM_ORGUNIT_GETBUPA' give organization number as '50000637' instead of 'O 50000637'. you will get bp guid as out put. then you can go to BUT000 and pass the BPGUID and get BP number. else call 'BBP_BUPA_GET_NUMBER' and pass the guid, get the BP number.
    You can write select SOBID from hrp1001 into table it_hrp1001 where otjid = orgid and sclas = 'BP'.
    here SOBID is the field which contains BP number for that sales org. sclas field should be 'BP'.
    Reward points if it helps you
    Regards,
    Srinivas Maddineni

  • Regarding Screen Variant for tcode va11

    hi all,
    i am trying to create a screen variant for tcode va11. the fileds in the item level has to changed.. we have a requirement to show only those fields that are usefull as per our clients requirement.. there are fields which will never be used .. so we have top remove it .. i have created a screen variant and made all the fiedls not needed invisible .
    then i link this csreen variant to a transaction varaiant .. howver when i execute
    this i don't find any difference in screen .. guess my screen variant not working..
    Is there anything we have to take care for table control.
    the Program name is SAPMV45A
    Screen number is 4900
    please if any body has done this before ,,kindly suggest.
    thanks and regards
    Sriniavs

    this variant is in Active state ?
    what is system status ?
    check which PF/GUI it is using .
    system-->status>Program here u have to get ur Zvariant name.
    Regards
    Prabhu

  • Job cycle for Prog. /VIRSA/ZVFATBAK for GRC

    Hi Experts,
       I want to know JOB cycle for Prog. /VIRSA/ZVFATBAK for GRC.
       Please advice the matter.
    Regards,
      Gaito

    Hi,
    This job scheduled every hour.
    Check SAP Note 1039144 - Superuser job is not completing or is not retrieving data
    Thanks
    Sunny

  • Table for Job effective date

    Please let me know the table and field for the Effective date the employee moved into the job
    Lisa

    Hi Lisa,
    the fileds BEGDA and ENDDA represent the Effective date and end date of the EE assigned to the Job
    Thanks
    Cheera

  • Query regarding the data type for fetcing records from multiple ODS tables

    hey guys;
    i have a query regarding the data type for fetcing records from multiple ODS tables.
    if i have 2 table with a same column name then in the datatype under parent row node i cant add 2 nodes with the same name.
    can any one help with some suggestion.

    Hi Mudit,
    One option would be to go as mentioned by Padamja , prefxing the table name to the column name or another would be to use the AS keyoword in your SQL statement.
    AS is used to rename the column name when data is being selected from your DB.
    So, the query  Select ename as empname from emptable will return the data with column name as empname.
    Regards,
    Bhavesh

  • Use of Cell Variant for a normal table

    Hi Experts,
    I have a requirement in a normal table where a row is first in read-only mode, then on click of edit button (given on that row),
    the row should become editable and also edit button should become invisible and two more buttons update/cancel have to be visible. How to achieve this using a cell variant for this normal table.
    A detailed reply would be appreciated.
    Thanks in Advance,
    Mirza Hyder.

    Hi Mirza,
    Cell variant property is used to chenge the cell property not for other.That means in one cell you want checkbox and in other cell you want textview like this you can change the property of cell as you want.
    Test this standard program WDR_TEST_TABLE in that test view cell varint for your understanding.
    Coming to your requirement.You can do in this way.
    Check in the below thread in that i gave code to make the entire row is editable when you click on the lead selection of row.I gave code for ALV.I hope that code is use ful for you.
    How to make all columns of alv editable
    To make tool bar buttons disable and enable:Write your logic in method handler of lead selection event like change the visible property of button to none.
    Note: In the event handler method you dont get reference of view.You only get reference of view in WDDOMODIFYVIEW only so take a global variable of type ref to if_wd_view and populate that global variable in method WDODIFYVIEW.So that you can access any view element in any method.
    For cell variant in ALV check this Article written by me.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0e7461d-5e6c-2b10-dda9-9e99df4d136d

  • Dynamic Date Variant for SAP Job

    Hi Guru
    We have a program to be ran in the Background .
    I am unable to create a Variant for Date ( Current year Jan 01st to  Current Date).
    Could you please advice how to create a Variant with Dynamic Date Calculation for above date range.
    Thanks in Advance.
    Thanks
    Ravi

    Hi,
    I guess that you know how manage dynamic dates in a variant. (Please, tell me if you need help about it)
    You can try with two DATUM type fields in the ABAP program. Fix the first one with a fixed date u201901.01.2009u2019 and the second one will be fixed with the dynamic date u2018Current Dateu2019
    Regards,
    OLA

  • Table entry for Valuation variant for material prices

    We want to define a valuation variant for costing run.  In that we need to select the material price based on the plan price.  We have provision of entering three plan prices in the Costing tab-2 in the material master.  But we want to enter plan  prices for more than three dates. For this, we propose to enter the dates and prices in a separate table and that table needs to be accessed in the valuation variant for material prices closest to the date of valuation.  How we can go about this ?

    Hi
    When you create Valuation Variant, choose Strategy U i.e. Price from userexit
    Then code the exit COPCP0005 with the help of ABAP consultant
    The logic should be:
    a. Refer the "costing date from" entered in Ck11N
    b. refer the Z table... and pick the price relevant on that date
    br, Ajay M

Maybe you are looking for

  • Updates won't install - Creative cloud

    1. Tried to update illustrator using the Adobe Application Manager 2. Received an "Update Failed" pop-up window 3. Clicked on the Error log link. Report showed: Error Code: U44M1P7 4. Called Adobe support 5. They sent me an e-mail (Case Number: 01844

  • UTF-8 needed for oracle database

    Hi, I stuck with error after installation and now configuring shared services " error suggest to use UTF-8 encoding oracle db instead of non UTF-8" is this makes any sense if i prefer just English? please help how to change oracle DB Regards Kumar

  • Designer not in sync with coding

    I am having a major hair pulling problem with Dreamweaver. When I highlight something in the designer, the code is not highlighted with it. Therefore changes apply to the last code I had highlighted. The only way the code and the designer sync up is

  • Deluge 1.1.2 won't start

    hi i have 2 arch boxes both with deluge, after performing an update on both machines one can no longer start deluged Traceback (most recent call last): File "/usr/bin/deluged", line 8, in <module> load_entry_point('deluge==1.1.2', 'console_scripts',

  • Lost connection to Westell router after Airport Extreme Update

    I've looked through the discussions and have seem similar issues but haven't found one that I could say "that's it!" I use the airport card in my MacBook OS X 10.4.11 to wirelessly connect to my Westell versalink router and have done so for over a ye