TVARVC variables not showing in the variant selection

Hi,
My client want to use the TVARVC table to maintain the settlement period. So everymonth, the variant for the settlement run will retrieve the settlement period from this table.
I was following the instruction:
1. run tcode STVARVC
2. Create a new variable SETT_Period_Current
3. Put 9 as the value for now.
then I used the SE38 to create a variant. In the attribute screen, I put "T" in the field "Selection Variables". Then when I selected the dropdown list of the field "Name of Variables", I did not find the variable "SETT_Period_Current" in the list. I don't know what went wrong.
Can anyone shed some lights on this?
Thanks,
Ting

Please check this link
http://help.sap.com/saphelp_nw70/helpdata/en/c0/980386e58611d194cc00a0c94260a5/frameset.htm

Similar Messages

  • Process Chain got struck and not showing all the variants in the log view

    Hi,
    We have some process chains which are running daily.The problem here is that one of the process chains got struck at some point
    and it is not showing all the variants in the log view but able to see in planning view.
    Could any one please let me know why this is occuring.

    Hi Ramanjaneyulu,
    Thanks for the reply.
    As you said,i clicked on the 'display message' but it is not showing any errors.It is showing
    that the process completed successfully.
    Thanks.

  • I would like to use time Machine to back up to a network SMB drive. I can see the drive on my desktop but it will not show in the time machine window to be able to select it

    I currently have a mini server (OSX10.8.5, server 2.2.2) that I am using Time Machine to back up 4 external drives that are connected to the server via firewire 800. I would like to use Time Machine to back up to a windows network SMB drive. I can see the drive on my desktop but it will not show in the time machine window to be able to select it for use.
    Can this be done
    Thanks for any and all help

    The supported targets for Time Machine backups are local (direct-connected) disks, and network targets include Time Capsule, a disk hanging off the current-generation AirPort (though not earlier AirPort devices), and OS X Server systems.
    The Time Machine storage is based on the HFS+ file system, so I would not expect TM to work with SMB file services.
    While there are hacks to allow Time Machine to access network drives, I would not consider those to be reliable. Skim the forum and the 'net for related details, and for previous discussions of setting this up and the related issues that can arise.
    Remember to test the recovery with whatever you decide to use; whole point of backups is the ability to restore the data, after all.
    If you want to learn more about Time Machine, Pondini is an excellent resource.

  • The templates are not showing up after I select them???

    the templates on pages are not showing up after I select them....unless I highlight the entire page and select a particular colour.  That leaves all the colours in the photo off.  Any help would be so very helpful.   

    CeraG - It will help to answer if you supply your system version, pages version and if you lately have done anything to the computer (installing, uninstalling etc)
    I think you have forgotten to do a Software update or it could also be a font problem but more info from you is needed!

  • BI publisher report is not showing all the data

    Hi All,
    I have created a report using BI Publisher in R12. The report is not showing all the records.
    I have checked the result XML it is also not having all the data. My query returns 846 rows but my report only has 662 rows.
    what might be the issue.please give me some idea to resolve this issue.
    Thanks in advance.
    Regards,
    P.Kalidoss

    Hi Arun,
    In the following code: public SelectItem[] getAllPrinters() {
    if (allPrinters == null) {           // allPrinters is not defined. what type of object it is
    PrintService[] printers = PrintServiceLookup.lookupPrintServices(null, null);
    allPrinters = new SelectItem[printers.length];
    for (int i = 0; i < printers.length; i++) {
    SelectItem printer =
    new SelectItem(printers.getName(), printers[i].getName());
    allPrinters[i] = printer;
    return allPrinters;;;
    Variable allPrinters is not defined. what type of object it is?
    And also the same variable is referenced here <af:selectOneChoice label="Available Printers" partialTriggers="cb1"
    value="#{pageFlowScope.applicationPrinterBean.selectedPrinter}"
    id="soc1"
    autoSubmit="true">
    <f:selectItems value="#{pageFlowScope.applicationPrinterBean.allPrinters}" id="si1"/>
    </af:selectOneChoice>.
    Thanks.

  • In solution manager system not showing all the system in SLD

    Dear Gurus,
    During the installation of solution manger sysyem i selected as a Central SLD as solution manager
    Later installed ECC 6.0 and EP systems selected SLD as solution manager system during the instllation.
    If i login in to http://hostname:50000/sld (solution manger system) and the screen also not showing all the options also. some options missing in the tab. Wat I need to do to see all the options clearly.
    It is not showing all the systems if i check in EP and ECC for SLDCHECK it is not givng any errror.
    But if i login into solution manger not  able to see all the system in SLD.
    Regards

    Thanks for reply
    it is not showing all the systems

  • Alv is not appearing in the same Selection Screen

    Hi people..
    First time using  cl_gui_docking_container.
    I have a problem, my alv is not appearing in the same Selection Screen.
    is there somethign wrong with my code? it doesnt even show a dump or catch.
    Regards
    DATA: lo_dock TYPE REF TO cl_gui_docking_container,
           lo_cont TYPE REF TO cl_gui_container.
    DATA: gr_table      type ref to cl_salv_table,
           gr_functions  type ref to cl_salv_functions,
           gr_display    type ref to cl_salv_display_settings,
           gr_columns    type ref to cl_salv_columns_table,
           gr_column     type ref to cl_salv_column_table,
           gr_sorts      type ref to cl_salv_sorts,
           gr_agg        type ref to cl_salv_aggregations,
           gr_filter     type ref to cl_salv_filters,
           gr_layout     type ref to cl_salv_layout,
           color         type lvc_s_colo,
           key           type salv_s_layout_key.
       SELECT * INTO TABLE tbl_datos_items FROM zsd_micros_bd.
    CHECK lo_dock IS INITIAL.
      CREATE OBJECT lo_dock
           EXPORTING
             repid = sy-cprog
             dynnr = sy-dynnr
             ratio = 70
             side  = cl_gui_docking_container=>dock_at_bottom
             name  = 'DOCK_CONT'.
         IF sy-subrc <> 0.
           MESSAGE 'Error in the Docking control' TYPE 'S'.
         ENDIF.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( )

    Hi ,
    First you have to create you own screen ( dynpro )  with a screen number ( 0101 for exemple )  , you need to pu a custom control in it , name the custom control ( lo_cont )
    For the screen created you need to create a module for the PBO , in this module you sould put you code for displaying the liste :
    Module STATUS_0101 output.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( ).
    Endmodule.
    and give the screen number when calling  lo_dock 
    CREATE OBJECT lo_dock 
           EXPORTING
             repid = sy-cprog
             dynnr = '0101'.
    tested
    Regards

  • My Online number is not showing to the phone I am ...

    When I am calling to any other phone using skype, my online number is not showing in the CLI of that phone.
    But When I call to my Online number, I can receive calls in my skype.
    This is happening after I extended my Online number.

    nilaydiya wrote:
    When I am calling to any other phone using skype, my online number is not showing in the CLI of that phone.
    But When I call to my Online number, I can receive calls in my skype.
    This is happening after I extended my Online number.
    It is possible that the Caller ID settings got wiped out when you extended your Online Number.  This is, unfortunately, something other users have reported.  I'm sorry it happened to you. 
    To reset your Caller ID settings, log into your Skype account here on the Skype web site.  Use the "Account" link at the top of this page, and enter your Skype name and password.  Then you can access your Caller ID settings, and select your Online Number to - once again - be your Caller ID. 
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • Service monitoring is not showing all the services when i create a service monitor under Management pack templates.

    Hi All,
    I am using SCOM 2007 R2 CU4 in my environment. I want to do a service monitoring on specific agents. When i try creating this service monitor which comes under the Management pack template  when i select the service which i want to monitor it does not
    show all the services in the drop down.
    For example - I have Windows audio service which is present on the machine, But it is not showing in the service list. 
    So from the services stating from "W" i see only 5 in SCOM and in services.msc in the Agent i see more than 5.
    Below is the screen shot.
    Can any one please help.
    Gautam.75801

    Hi Yan Li,
    So based on your above suggestion, If the services are already managed  / monitored by a specific
    management pack those services will not appear here in the Wizard while creating this type of a Management pack object alert right ?
    If that is the case why does not the same reflect here in the operations console in the Services monitor
    TAB ?
    Gautam.75801

  • Payroll cheques posted to GL in PCP0 but not showing on the cheque register (FCHN)

    Our Finance is trying to find out what happened with a few Payroll cheques from early 2013.  We can see that they were posted to GL 100300 in PCP0, but the cheques are not showing on the cheque register (FCHN).
    Does anybody have any ideas to help mefind out where they went or what happened? Would appreciate any advice.

    Hi Tatiana,
    Possibly that print check program was never run for the employees using transaction PC00_M10_FFOC.
    Please note that you will need a check lot and banking configuration set-up done for this transaction to run successfully.
    Table REGUH stores information about your pre-dme for each of employee for run number and run identification.
    You will need to check table PAYR and see if the employees have entry in it and if they have then if they have check number or not.
    Table PAYR is read by check register to find employees' check numbers.
    Hope this helps.
    If you see check numbers in table PAYR for employee, please verify if you have entered correct selection on selection screen for check register importantly the check box for Payroll Checks is checked.
    Also, if possible please send across screenshot of your selection screen.
    Thanks,
    Ameet

  • Finder does not show all colors from selected color Labels

    Since a view days finder does not show all Color Label colors. When I select either yellow or green it is selected, but it does not show in the file list with details, I can see it in icon and 3 pane view, but not in the detail list view.
    does anybody know why or how? Or what plist files I might need to delete to get this reset?

    Create a new account, name it "test" and see how your labels work in that User acct in list view? (That will tell if your problem is systemwide or limited to your User acct.) This account is just for test, do nothing further with it.
    Open System Preferences >> Accounts >> "+" make it an admin account.
    Let us know and we'll troubleshoot this further.
    -mj
    [email protected]

  • Apps needing access to Contacts are not showing in the Privacy pane of security

    I have apps like cobook and Alfred that need access to Contacts but they are not showing in the Privacy pane of the Security & Privacy System Preferences.

    Back up all data.
    Triple-click the line below to select it:
    ~/Library/Application Support/com.apple.TCC/TCC.db
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with an item selected. Move the selected item to the Desktop, leaving the window open. Log out, log back in, and test. All your privacy settings will be reset to their defaults. If there's no change, put the item you moved back where it was, overwriting the one that may have been created in its place, and log out again. Otherwise, delete the item you moved.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Prices for the characteristic is not showing in the webshop

    hi all,
    we are facing a strange issue.
    When we are trying to select configuration for the configurable product the prices are not showing in
    the webshop against each configaration option but when we press the accept button after selecting the configuration the prices are adding automatically to the total.
    our actual requirement is we have to show the prices against each configurable part of the configurable product in the webshop.
    Whether we have to implement any special IPC user exit for this ?
    there is already one standard implementation com.sap.spc.document.impl.userexit.csticValueSurcharge.StandardImplementation
    under the CVS type userexit with the std delivery.
    Note:we haven't done any custome development in this page of the webshop.
    Please help it is urgently needed
    Thanks and Regards
    shanto allor
    Edited by: shanto aloor on Mar 13, 2009 3:49 PM
    Edited by: shanto aloor on Mar 16, 2009 1:47 PM

    Hi Shanto,
    The business requirement you have can be managed by the field catalog.
    I think you will have to maintain the value of all possible combinations while you are selecting the characterstics.
    You will have to add a field to the field catalog at item level  and subsequently included this field in a condition table, access sequence and condition type.
    When attributes of field catalog are being passed to IPC, you need to populate this new field by writing a code in BADI   CRM_COND_COM_BADI.
    Then in the WEB UI the field can be accessed  using java code , i think this shud help you.
    Wish u gud luck for this assignment.

  • Songs are syncing to phone but some songs not showing in the playlist, you have to manually search for them...

    Hi guys,
    All music is syncing across from my purchased items to my phone... However, some are missing from the 'purchased' playlist and I can only come across them when scrolling through the 'Artist' or 'Song' menu. I then have to manually add them back to my purchased playlist.
    Is there any way to stop this?
    I want all my 'purchased' songs in that playlist and then have all of my other music from CDs in their individual ones (which works fine).
    This happens for about 5/6 every time and it's a nightmare trying to work out which ones are missing so to speak unless I stumble upon then.
    So basically, the songs ARE on the phone but not showing in the playlist, just to make that clear.
    Many thanks in advance...

    This sounds very similar to an issue that I experienced.  There was a phantom 6G assigned to movies even when no movies were on my iPad.  I could make the phantom 6G come and go by checking/unchecking the "Sync Movies" box in iTunes.
    First, try a system reset.  It probably won't fix your problem but it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    There is one other thing that you can try but I don't want to describe it unless the above doesn't help.

  • MovieClips actions not showing in the navigator of Actions panel

    I'm using Mac and Flash CC
    MovieClips actions not showing in the navigator of Actions panel
    Steps i tried..
    1) new Symbol
    2) open actions panel
    3) input stop() in the actions
    4) symbol definitions not showing in the the actions navigator..
    i can add scripts for stage and can be selected from the actions panel..
    see screenshot..
    anyone has idea what matter with this issue? many thanks.!!!

    I can only speak for myself, but your explanation of what you did and whatever problem you are having is not clear to me.  The image doesn't appear to show anything as an issue.  What are you trying to do and what do you expect to see?

Maybe you are looking for

  • X240 - Thinkpad Ultra dock Problem with external monitors

    I have tried to connect my two external monitors to the dock (the one connected to the vga port) but it was only able to detect one of them (though at a low resolution) and not the other. i have tried using a replicator to connect the screen to the d

  • ITunes 10.5 No Longer Shows App Folders for iPhone

    One day they were there, the next they weren't. The folders are still on my iPhone. Any ideas how I can fix this? Thanks!

  • Doubt About Soap Adapter

    Hi Experts, I have one doubt Here iam Implementing SOAP To RFC Scsnario Using EP(WebDynpro). Here Should I Generate WSDL File in Integration Directory of XI. Or Can we generate In WebDynpro Appln. Please let me know Regards Khanna

  • Photo problem with tungsten e

    When I click on "Photos" there is like a flash of black screen on bottom half and goes back to menu. I can view photos on desk top but cannot pull them up on two different units of tungsten e.  I s there a way to check which programs are needed to ru

  • Lightroom 3.5 still has ACR 4.6 as Profile in Develop Module - please help!

    Hi there! I am hoping that someone can please help me out, as i'm racking my brain trying to figure this out. I have Lightroom 3.5 - Photoshop CS5 Extended and both are up to date but I'm trying to get my ALR to use the latest Camera Raw 6.5 but it's