TransactionRolledBackTotalCount attribute,reset JTAtransation rolback inter

Hi All,
Is there a way to reset JTA transaction rollbacks at 5 or 10 mins interval? We are trying to monitor this metric but due to the totalcount nature, we are not able to set alert based on a defined threshold. Basically, we are exploring way to enable us to reset the transaction rollback from what ever value to 0.
Basically, we want to monitor the JTA transaction rollback. The particular attribute we want to use is call TransactionRolledBackTotalCount. As the name indicated, it is a total rollback count, meaning, once the managed server is up and if there are transaction rollbacks, the counter will increment the number, i.e , it'll goes from 1 to 2 to 3 to 4, etc. And this counter will not be reset back to 0 until the managed server is shutdown and start backup.
The question I have is if there is a way to reset the counter back to 0 (zero) without having to shutdown and restart the managed server?
Can it be done from Weblogic console, config or programmatically (api or using wlst)?
Regards,
user

Similar Messages

  • GETTING DATA FROM ODS BY USING A FUNCTION MODULE..

    Hi Frnzs,
    Here is my issue..Plz go thru it..
    I  have a function module (YFSF_ICR_GET_EXCHG_RATE_ODS).
    the function performs the current logic without any changes,
    that is reading SPOT rates for actuals (the planning cycle is empty) or S rates
    for forecasts based on the planning cycle. Nothing needs to be changed here
    concultion : Based on flag I_ICR ni , we have to read new exchange rates ( From ODS)
    the fucntion module code is here
    FUNCTION yfsf_icr_get_exchg_rate_ods.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(I_PLANCYC) TYPE  /BIC/OIYPLANCYC OPTIONAL
    *"     REFERENCE(I_SALESORG) TYPE  /BI0/OISALESORG OPTIONAL
    *"     REFERENCE(I_IC) TYPE  /BIC/OIYINVCURR
    *"     REFERENCE(I_RC) TYPE  /BIC/OIYREPCURR
    *"     REFERENCE(I_FISCPER) TYPE  /BI0/OIFISCPER
    *"  EXPORTING
    *"     REFERENCE(E_EXG) TYPE  /BI0/OIEXCHG_RATE
    *"  EXCEPTIONS
    *"      NO_RATE_FOUND
      DATA: l_s_exg TYPE /bic/ayfsfexg00,
            l_t_exg TYPE /bic/ayfsfexg00 OCCURS 0,
            l_year TYPE /bi0/oifiscyear.
      IF i_plancyc IS INITIAL.
    Actuals
        FREE l_t_exg.
        SELECT *
          INTO CORRESPONDING FIELDS OF TABLE l_t_exg
          FROM /bic/ayfsfexg00
          WHERE fiscper <= i_fiscper
            AND fiscvarnt = 'JJ'
            AND /bic/yrepcurr = i_rc
            AND /bic/yinvcurr = i_ic
            AND /bic/yplancyc = ''
            AND /bic/yexchtype = 'SPOT'
         ORDER BY fiscper DESCENDING.
        IF sy-subrc <> 0.
          RAISE no_rate_found.
        ELSE.
          READ TABLE l_t_exg INTO l_s_exg INDEX 1.
          e_exg = l_s_exg-exchg_rate.
        ENDIF.
      ELSE.
    Forecasts
        l_year = i_fiscper+0(4).
        SELECT SINGLE *
          INTO l_s_exg
          FROM /bic/ayfsfexg00
          WHERE fiscvarnt = 'JJ'
            AND fiscyear = l_year
            AND salesorg = i_salesorg
            AND /bic/yrepcurr = i_rc
            AND /bic/yinvcurr = i_ic
           AND /bic/yplancyc = i_plancyc
            AND /bic/yplancyc = ''
            AND /bic/yexchtype = 'S'
            AND exchg_rate GE '0.0000001'.
        IF sy-subrc <> 0.
          RAISE no_rate_found.
        ELSE.
          e_exg = l_s_exg-exchg_rate.
        ENDIF.
      ENDIF.
    ENDFUNCTION.
    ok
    now my requirement is that I need to enhance the Function module for reading exchange rates.
    for this i got the following information:
    - It requires an additional flag I_ICR for instance that can be empty or 'X'
    for instance
       - If the flag is empty, the function performs the current logic without any changes,
    that is reading SPOT rates for actuals (the planning cycle is empty) or S rates
    for forecasts based on the planning cycle. Nothing needs to be changed here
       - If the flag is 'X', the function reads a new exchange rate type, let's call
    it "ICR". As stated in the requirements and functional specs, these exchange rates
    are the Reuter rates valid for a complete year. These are fixed rates so no planning
    cycle. The users will enter records in the format (year, reporting currency, invoicing
    currency, exchange rate). If the input flag I_ICR is X, the function determines
    the year based on the input period, then, based on the year it selects on the same
    table as for the other exchange rates with a restriction on exchange rate type "ICR",
    year, from and to currency and return the exchange rate
    Update rules. There are two:
       - To the consolidation ODS. No changes are required there; the function has to
    read either S or SPOT rates (I_ICR flag is empty)
       - From the consolidation ODS to the cube. As stated in my previous email, the
    from currency is the one available in the data package. The to currency is determined by reading the sales organization master data (reporting currency attribute) based on the inter-company sales organization (also available in the incoming record). It then calls the function module above with the parameter I_ICR set to 'X' so it reads the Reuter rates.
    I guess i need to create another function module and can be used.
    Observation
    ODS table fields.
    - FISCPER
    - FISCVARNT JJ
    - FISCYEAR 2006
    - /BIC/YREPCURR EUR
    - /BIC/YINVCURR JPY
    - SALESORG 0010
    - /BIC/YMRC 3090
    - /BIC/YPLANCYC
    - /BIC/YEXCHTYPE S
    - - RECORDMODE
    Thanx in advance..

    Haii
    I have given below the basic functionality..u can go throught the api and start working..
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import java.io.File;
    import org.w3c.dom.Document;
    public class OrderProcessor {
       public static void main (String args[]) {
          File docFile = new File("orders.xml");
          Document doc = null;     
          try {
             DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
             DocumentBuilder db = dbf.newDocumentBuilder();
             doc = db.parse(docFile);
           Element root = doc.getDocumentElement();
          System.out.println("The root element is " + root.getNodeName());
         NodeList children = root.getChildNodes();
       System.out.println("There are "+children.getLength()
                                      +" nodes in this document.");
          } catch (Exception e) {
             System.out.print("Problem parsing the file.");
    }regards
    Shanu

  • Issue with Function Module...

    Hi Frnzs,
    Here is my issue..Plz go thru it..
    I have a function module (YFSF_ICR_GET_EXCHG_RATE_ODS).
    the function performs the current logic without any changes,
    that is reading SPOT rates for actuals (the planning cycle is empty) or S rates
    for forecasts based on the planning cycle. Nothing needs to be changed here
    concultion : Based on flag I_ICR ni , we have to read new exchange rates ( From ODS)
    the fucntion module code is here
    FUNCTION yfsf_icr_get_exchg_rate_ods.
    ""Local interface:
    *" IMPORTING
    *" REFERENCE(I_PLANCYC) TYPE /BIC/OIYPLANCYC OPTIONAL
    *" REFERENCE(I_SALESORG) TYPE /BI0/OISALESORG OPTIONAL
    *" REFERENCE(I_IC) TYPE /BIC/OIYINVCURR
    *" REFERENCE(I_RC) TYPE /BIC/OIYREPCURR
    *" REFERENCE(I_FISCPER) TYPE /BI0/OIFISCPER
    *" EXPORTING
    *" REFERENCE(E_EXG) TYPE /BI0/OIEXCHG_RATE
    *" EXCEPTIONS
    *" NO_RATE_FOUND
    DATA: l_s_exg TYPE /bic/ayfsfexg00,
    l_t_exg TYPE /bic/ayfsfexg00 OCCURS 0,
    l_year TYPE /bi0/oifiscyear.
    IF i_plancyc IS INITIAL.
    Actuals
    FREE l_t_exg.
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE l_t_exg
    FROM /bic/ayfsfexg00
    WHERE fiscper <= i_fiscper
    AND fiscvarnt = 'JJ'
    AND /bic/yrepcurr = i_rc
    AND /bic/yinvcurr = i_ic
    AND /bic/yplancyc = ''
    AND /bic/yexchtype = 'SPOT'
    ORDER BY fiscper DESCENDING.
    IF sy-subrc <> 0.
    RAISE no_rate_found.
    ELSE.
    READ TABLE l_t_exg INTO l_s_exg INDEX 1.
    e_exg = l_s_exg-exchg_rate.
    ENDIF.
    ELSE.
    Forecasts
    l_year = i_fiscper+0(4).
    SELECT SINGLE *
    INTO l_s_exg
    FROM /bic/ayfsfexg00
    WHERE fiscvarnt = 'JJ'
    AND fiscyear = l_year
    AND salesorg = i_salesorg
    AND /bic/yrepcurr = i_rc
    AND /bic/yinvcurr = i_ic
    AND /bic/yplancyc = i_plancyc
    AND /bic/yplancyc = ''
    AND /bic/yexchtype = 'S'
    AND exchg_rate GE '0.0000001'.
    IF sy-subrc <> 0.
    RAISE no_rate_found.
    ELSE.
    e_exg = l_s_exg-exchg_rate.
    ENDIF.
    ENDIF.
    ENDFUNCTION.
    ok
    now my requirement is that I need to enhance the Function module for reading exchange rates.
    for this i got the following information:
    - It requires an additional flag I_ICR for instance that can be empty or 'X'
    for instance
    - If the flag is empty, the function performs the current logic without any changes,
    that is reading SPOT rates for actuals (the planning cycle is empty) or S rates
    for forecasts based on the planning cycle. Nothing needs to be changed here
    - If the flag is 'X', the function reads a new exchange rate type, let's call
    it "ICR". As stated in the requirements and functional specs, these exchange rates
    are the Reuter rates valid for a complete year. These are fixed rates so no planning
    cycle. The users will enter records in the format (year, reporting currency, invoicing
    currency, exchange rate). If the input flag I_ICR is X, the function determines
    the year based on the input period, then, based on the year it selects on the same
    table as for the other exchange rates with a restriction on exchange rate type "ICR",
    year, from and to currency and return the exchange rate
    Update rules. There are two:
    - To the consolidation ODS. No changes are required there; the function has to
    read either S or SPOT rates (I_ICR flag is empty)
    - From the consolidation ODS to the cube. As stated in my previous email, the
    from currency is the one available in the data package. The to currency is determined by reading the sales organization master data (reporting currency attribute) based on the inter-company sales organization (also available in the incoming record). It then calls the function module above with the parameter I_ICR set to 'X' so it reads the Reuter rates.
    I guess i need to create another function module and can be used.
    Observation
    ODS table fields.
    - FISCPER
    - FISCVARNT JJ
    - FISCYEAR 2006
    - /BIC/YREPCURR EUR
    - /BIC/YINVCURR JPY
    - SALESORG 0010
    - /BIC/YMRC 3090
    - /BIC/YPLANCYC
    - /BIC/YEXCHTYPE S
    - - RECORDMODE
    Thanx in advance..

    Hi Badrinath,
    Welcome to SDN,
    If i guess right then you are asking the question that whether to include the new functionality in existing function module or not.
    You can edit the same function module.
    but prefrably u can create a new function module.
    you have all the details with you u need to check the condition of  I_ICR in calling program and then call the new FM or the old one.
    creating new function module will also keep the modularisation and clean code.
    Hope this helps

  • Need key commands list - complete

    can someone do me a favor and email me the clipboard output of the comprehensive key command list? i'm not in a position to do this myself right at the moment. if someone chimes up, i'll reply with the email address to send it to. no formating or anything is necessary.
    also, for those that use key commands a lot and have some complex customization, what is your opinion on its reliability? my questioning is due to the possible utilization of a remote session of logic, receiving custom MIDI sysex commands to basically remote control functionality via MIDI. (i will be sending commands via TCP, but there will be a local server sending MIDI to the host machine) do key commands ever not execute? if you send a rapid sequence of key commands, do they execute in a predictable fashion? etc...

    Why do you need to use Sysex commands? They're so much more complicated to program and keep track of...
    In terms of reliability, sometimes I find that key commands "go bad". This is almost always a case of "key label" commands going bad and to fix the problem they need to be re-programmed as "key position". That's the only buggy behavior re key commands, aside from the bugs in the key command window itself. But that's another story. Here's the list:
    -------- Global Commands --------
    * Record
    •Record Repeat
    Tab •Record Toggle
    sh - 18 •Capture Last Take as Recording
    •Capture Last Take as Recording & Play
    Enter Play
    ; Pause
    Return Stop
    Space Play or Stop
    Rewind
    Forward
    Fast Rewind
    Fast Forward
    Rewind 1 frame
    Forward 1 frame
    Rewind by format value
    Forward by format value
    Shuttle Rewind
    Shuttle Forward
    Scrub Rewind
    Scrub Forward
    Scrub by MIDI Value (-2-)
    ct 0 •Play from Beginning
    •Play from previous Bar
    •Play from Left Locator
    •Play from Right Locator
     •Play from left window corner
     Goto Left Locator
    ct Enter Goto Right Locator
    Goto Last Play Position
    Stop Goto Last Play Position
    Stop Goto Left Locator
    op co G •goto Position...
    . Set Left Locator...
    ct . Set Right Locator...
    sh [ Set Left Locator by Song Position
    [ Set Left Locator by rounded Song Position
    Set Left Autodrop Point by Song Position
    Set Left Autodrop Point by rounded Song Position
    sh ] Set Right Locator by Song Position
    ] Set Right Locator by rounded Song Position
    Set Right Autodrop Point by Song Position
    Set Right Autodrop Point by rounded Song Position
    Set Locators by Regions
    op O Set rounded Locators by Regions/Events
    ct X •Set Locators & Play
    X •Set rounded Locators & Play
    •Set rounded Locators & Cycle Play
    •Set rounded Locators & Record
    •Set rounded Locators & Cycle Record
    Swap Left and Right Locator
    Move Locators forward by Cycle Length
    Move Locators backwards by Cycle Length
    sh Enter •Play from Selection
    •Goto Selection
    ct a Create Marker
    sh a Create Marker without rounding
    Create Marker by Regions
    Delete Marker
    sh M Open Marker List...
    Open Marker List as Float...
    Open Marker Text...
    Open Marker Text as Float...
    Set Locators by Marker & Enable Cycle
    Set Locators by previous Marker & Enable Cycle
    Set Locators by next Marker & Enable Cycle
    sh -123 Goto Previous Marker
    sh -124 Goto Next Marker
    Goto Marker Number...
    sh - 85 Quick Edit Marker
    ct 1 Goto Marker Number 1
    ct 2 Goto Marker Number 2
    ct 3 Goto Marker Number 3
    ct 4 Goto Marker Number 4
    ct 5 Goto Marker Number 5
    ct 6 Goto Marker Number 6
    ct 7 Goto Marker Number 7
    ct 8 Goto Marker Number 8
    ct 9 Goto Marker Number 9
    ct op 0 Goto Marker Number 10
    ct op 1 Goto Marker Number 11
    ct op 2 Goto Marker Number 12
    ct op 3 Goto Marker Number 13
    ct op 4 Goto Marker Number 14
    ct op 5 Goto Marker Number 15
    ct op 6 Goto Marker Number 16
    ct op 7 Goto Marker Number 17
    ct op 8 Goto Marker Number 18
    ct op 9 Goto Marker Number 19
    ct op co 0 Goto Marker Number 20
    Select Previous Song
    Select Next Song
    Select Song 1
    Select Song 2
    Select Song 3
    Select Song 4
    Select Song 5
    Select Song 6
    Select Song 7
    Select Song 8
    Select Song 9
    Select Song 10
    Select Song 11
    Select Song 12
    Select Song 13
    Select Song 14
    Select Song 15
    Select Song 16
    Select Song 17
    Select Song 18
    Select Song 19
    Select Song 20
    C Cycle
    Drop
    Replace
    S Solo
    op -  1 •Set Solo Lock Mode
    ct op co -  1 •Reselect Solo-locked Regions
    Solo off for all
    Mute off for all
    sh ct * Record off for all
    Sync intern/extern
    •Tap Tempo
    MIDI Machine Control
    sh ct op * Toggle MIDI Remote (always MIDI remotable)
    Disable MIDI Remote
    co 3 •Set next higher Format
    co 2 •Set next lower Format
    N MIDI/Monitor Metronome Click
    Send Reset Controllers
    sh Help Send discrete Note Offs (Panic)
    Send Maximum Volume
    Send Used Instruments MIDI Settings
    Send All Current Fader Values except Sysex
     Send All Current Fader Values
    •Revert to Current Screenset
    Copy Screenset
    Paste Screenset
    Lock/Unlock Current Screenset
    •Next Screenset
    •Previous Screenset
    - 83 Recall Screenset 1
    - 84 Recall Screenset 2
    - 85 Recall Screenset 3
    - 86 Recall Screenset 4
    - 87 Recall Screenset 5
    - 88 Recall Screenset 6
    - 89 Recall Screenset 7
    - 91 Recall Screenset 8
    - 92 Recall Screenset 9
    sh op co C Copy MIDI Events...
    sh ct X Extended Region Parameters...
    Import Settings...
    Open Synchronization Song Settings...
    sh N Open Metronome Song Settings...
    Recording options...
    Open Tuning Song Settings...
    sh ct -106 Open Audio Song Settings...
    ct -106 MIDI options...
    sh ct C Chase Events...
    Open Score Song Settings...
    Open Video Song Settings...
    Preferences...
    Open Global Preferences...
    -106 Open Audio Preferences...
    Open MIDI Preferences...
    Open Display Preferences...
    sh ct co S Score Preferences
    Open Video Preferences...
    sh F14 Open Automation Preferences...
    Open Control Surfaces Preferences...
    Open Surround Preferences...
    Initialize All Except Key Commands...
    Start Logic Setup Assistant...
    Start Logic AU Manager...
    Import File...
    sh F1 Open Event Editor...
    co 1 Open Arrange Window...
    Open Track Mixer...
    F3 Open Score Editor...
    co 4 Transform
    Open Hyper Editor...
    Open Matrix Editor...
    co 7 Open Transport...
    F8 Open Environment...
    co K Open Step Input Keyboard
    \ Open Audio Window...
    Loop Browser...
    sh co - 14 Open Sample Editor...
    EXS24 Instrument Editor
    Open Project Manager...
    Open Signature Changes List...
    ct F1 Toggle Event Float
    F1 Toggle Event Editor
    Toggle Arrange Window
    co M Toggle Track Mixer
    sh F3 Toggle Score Editor
    Toggle Transform
    Toggle Hyper Editor
    F2 Toggle Matrix Editor
    F4 Toggle Transport
    Toggle Environment
    Toggle Audio Window
    Toggle Sample Editor
    Toggle Signature Changes List
    Start external Sample Editor
    sh / Open System Performance...
    TDM DSP Usage
    T Open Tempo List...
    Open Tempo Operations...
    Open Tempo Interpreter...
    K Open Key Commands...
    ct C Open Object Colors...
    Open Movie...
    sh co F Open Movie as Float...
    Open Movie Again
    sh ct op A Open Movie Again as Float
    Find Scene Cuts
    Remove Scene Markers
    / Open Audio Record Window...
    •Toggle (Mute) Audio Inputs
    •Toggle (Mute) Audio Tracks
    •Toggle (Mute) Audio Aux
    •Toggle (Mute) Audio Bus
    •Toggle (Mute) Audio Outputs
    Toggle Current Track Automation Off/Read
    Set Current Track to Automation Read
    Toggle Current Track Automation Touch/Read
    Toggle Current Track Automation Latch/Read
    Toggle Current Track Automation Write/Read
    Toggle Current Track Automation MIDI/Read
    Set All Tracks to Automation Off
    ct op co R Set All Tracks to Automation Read
    Set All Tracks to Automation Touch
    Set All Tracks to Automation Latch
    Set All Tracks to Automation Write
    Set All Tracks to Automation MIDI
    co E Automation Event Edit...
    sh F15 Track Automation Settings...
    Toggle Automation controlling Volume
    Toggle Automation controlling Pan
    Toggle Automation controlling Mute
    Toggle Automation controlling Send Levels
    Toggle Automation controlling Plug-in parameters
    Toggle Automation controlling Solo
    Toggle Automation Quick Access
    Toggle Group Clutch
    Open Group Settings...
    Write To End
    Write To Right Locator
    Delete currently visible Automation Data of Current Track
    Delete All Automation Data of Current Track
    Delete Orphan Automation Data of Current Track
    Delete All Automation Data of All Tracks
    sh ct R Move Current Region Data To Track Automation
    Move Current Track Automation Data To Region
    Move All Region Control Data To Track Automation
    op co M Move All Track Automation Data To Region
    Refresh Freeze Files
    •Refresh Audio Configuration
    - 75 Audio Hardware Setup
    ct \ Audio Configuration
    co \ Set Audio Record Path...
    Toggle Punch On The Fly
    Toggle Auto Input Monitoring
    sh ct / Toggle Pre-Fader Metering
    sh Space Clear Overload Flag in Audio Channel Display
    Toggle Velocity Engine support
    co W Close Window
    co Esc Close Floating Window
    Esc Close Window or Song
    Close Song without Save
    sh F Select Next Window
    sh R Redraw current window
    co N New...
    Initialize Song
    co O Open...
    Project Settings...
    Clean up Project...
    Consolidate Project...
    Rename Project...
    sh co W Close
    co S Save
    ct -  1 Save Song as...
    Save a Copy As...
    Save as Template...
    Save as Project...
    Revert to Saved...
    Page Setup...
    co P Print
    Import...
    Export Selection as MIDI File...
    Export Region as Audio File...
    Export Track as Audio File...
    Export All Tracks as Audio File...
    Export Song as OMF File...
    Export Song as OpenTL File...
    Export Song as AAF File...
    Song to FinalCut Pro/XML...
    Bounce...
    co Q Quit
    co Z Undo
    sh co Z Redo
    Undo History...
    Delete Undo History
    co X Cut
    co C Copy
    co V Paste
    -117 Clear
    co A Select All
    co F4 Zoom Window
    Tile Windows
    Tile Windows horizontally
    Stack Windows
    Import Audio File...
    Next Plug-In Setting
    Previous Plug-In Setting
    Next EXS Instrument
    Previous EXS Instrument
    Next Plug-In Setting or EXS Instrument
    Previous Plug-In Setting or EXS Instrument
    Next Channel Strip Setting
    Previous Channel Strip Setting
    Copy Channel Strip Setting
    Paste Channel Strip Setting
    Save Channel Strip Setting as...
    Next Channel Strip or Plug-in Setting or EXS Instrument
    Previous Channel Strip or Plug-in Setting or EXS Instrument
    Plug-in Delay Compensation: All
    -------- Various Windows --------
    •Show Tools
     •Set Next Tool
     •Set Previous Tool
    W •Set Arrow Tool
    R •Set Scissors Tool
    •Set Glue Tool
    •Set Eraser Tool
    •Set MIDI Thru Tool
    E •Set Text Tool
    •Set Solo Tool
    •Set Pencil Tool
    •Set Crosshair Tool
    •Set Mute Tool
    •Set Finger Tool
    •Set Layout Tool
    •Set Magnifying Glass Tool
    •Set Size Tool
    •Set Voice Separation Tool
    •Set Camera Tool
    •Set Velocity Tool
    •Set Quantize Tool
    •Set Audio Crossfade Tool
    •Set Automation Tool
    •Set Marquee Tool
    sh G Toggle Global Tracks
    Toggle Signature Track
    Toggle Tempo Track
    Toggle Chord Track
    Toggle Beat Mapping Track
    Toggle Marker Track
    Toggle Video Track
    Toggle Transposition Track
    Hide All Global Tracks
    Show All Global Tracks
    ct Left Zoom Horizontal Out
    ct Right Zoom Horizontal In
    ct Down Zoom Vertical Out
    ct Up Zoom Vertical In
    co F1 •Recall Zoom 1
    co F2 •Recall Zoom 2
    co F3 •Recall Zoom 3
    sh co F1 •Save as Zoom 1
    sh co F2 •Save as Zoom 2
    sh co F3 •Save as Zoom 3
    Zoom to fit Selection vertically & horizontally, store Navigation Snapshot
    Zoom to fit Selection horizontally, store Navigation Snapshot
    Zoom to fit Locators, store Navigation Snapshot
    Store Navigation Snapshot
    Navigation: Back
    Navigation: Forward
    PageUp Page Up
    PageDown Page Down
    Page Left
    Page Right
    1/3 Page Left
    1/3 Page Right
    1/8 Page Left
    1/8 Page Right
    Home Page Top
    End Page Bottom
    Page Left-most
    Page Right-most
    Scroll In Play
    sh F4 Hide/Show Transport
    Hide/Show Parameters
    Hide/Show Toolbox
    sh op co G Grid
    Plain Background
    A Catch Clock Position
    Link Window (Same Level)
    D MIDI Out Toggle
    MIDI In Toggle
    M Mute Folders/Regions
    F12 Hyper Draw: Disable
    F13 Hyper Draw: Volume
    Hyper Draw: Pan
    Hyper Draw: Modulation
    Hyper Draw: Pitch Bend
    Hyper Draw: Note Velocity
    Hyper Draw: Other...
    H Hyper Draw: Autodefine
    -------- Arrange and Various Editors --------
    co a •Go Into Folder or Region
    a •Go Out of Folder or Region
    Deselect All
    sh ct T Toggle Selection
    ct op co F Select All Following
    Select All Following of Track
    Select inside Locators
    Deselect outside Locators
    Deselect Global Tracks
    sh U Select empty Objects
    sh O Select overlapped Objects
    op = Select Equal Objects
    ct op S Select Similar Objects
    = Select Equal Channels
    sh = Select Equal Subpositions
    ct op co M Select Muted Regions/Events
    sh co 1 •Select First
    sh co 2 •Select Last
    Left •Select Previous Event
    Right •Select Next Event
    sh Left •Toggle Previous Region/Event
    sh Right •Toggle Next Region/Event
    -  5 Scroll To Selection
    Q Quantize Again
    •Quantize: next value
    •Quantize: previous Value
    sh Q De-Quantize
    sh co F Note Overlap Correction
    sh co C Note Force Legato
    Select Top Line
    ct op co Down Select Bottom Line
    sh C Lines To Channels
    co L Sustain Pedal to Note Length
    co F Note Overlap Correction (selected/selected)
    ct co C Note Force Legato (selected/selected)
    co R Note Overlap Correction for Repeated Notes
    •Delete Similar Objects
    •Delete but Keep Similar Objects
    •Delete and Select Next Region/Event
    ct V Paste at original Position
    Paste Replace
    Erase Unselected within Selection
    sh co R Repeat Objects...
    J Merge Objects
    Split Regions/Events by Locators
    sh F5 Split Regions/Events by rounded Song Position
    F5 Split Regions/Events by Song Position
    ct op co P •Pickup Clock (Move Event to SPL Position)
    sh ct P •Pickup Clock & Select Next Event
    •Set Region/Event Start to SPL Position
    sh \ •Set Region/Event End to SPL Position
    ct op + •Nudge Event Position by SMPTE frame +1
    ct op - •Nudge Event Position by SMPTE frame -1
    sh ct + •Nudge Event Position by SMPTE Bits +1
    sh ct - •Nudge Event Position by SMPTE Bits -1
    ct + •Nudge Event Position by SMPTE frame + 0.5
    ct - •Nudge Event Position by SMPTE frame - 0.5
    •Nudge Event Position by SMPTE frame + 5
    •Nudge Event Position by SMPTE frame - 5
    •Nudge Event Position by Tick +1
    •Nudge Event Position by Tick -1
    ct op Right •Nudge Event Position by Format +1
    •Nudge Event Position by Format -1
    •Nudge Event Position by Beat +1
    •Nudge Event Position by Beat -1
    •Nudge Event Position by Bar +1
    •Nudge Event Position by Bar -1
    •Nudge Event Position by + Nudge Value
    •Nudge Event Position by - Nudge Value
    •Set Nudge Value to Tick
    •Set Nudge Value to Format
    •Set Nudge Value to Beat
    •Set Nudge Value to Bar
    •Set Nudge Value to SMPTE Frame
    •Set Nudge Value to 0.5 SMPTE Frame
    •Nudge Event Length by Tick +1
    •Nudge Event Length by Tick -1
    sh ct Right •Nudge Event Length by Format +1
    sh ct Left •Nudge Event Length by Format -1
    •Nudge Event Length by Beat +1
    •Nudge Event Length by Beat -1
    •Nudge Event Length by Bar +1
    •Nudge Event Length by Bar -1
    •Nudge Event Length by SMPTE frame +1
    •Nudge Event Length by SMPTE frame -1
    op Up •Event Transpose +1
    op Down •Event Transpose -1
    + •Event Channel +1
    - •Event Channel -1
    P Positions/Time Ruler in SMPTE Units
    co U Unlock SMPTE Position
    ct op co - 37 Lock SMPTE Position
    Snap Mode: Smart
    Snap Mode: Bar
    Snap Mode: Beat
    Snap Mode: Format
    Snap Mode: Ticks
    Snap Mode: Frames
    Snap Mode: QF
    sh co D Snap Mode: Samples
    Drag Mode: Overlap
    Drag Mode: No Overlap
    Drag Mode: X-Fade
    Drag Mode: Shuffle L
    Drag Mode: Shuffle R
    -------- Windows showing audio files --------
    ct op co W Show file(s) in Finder
    -------- Arrange Window --------
    Up •Select previous Track
    Down •Select next Track
    Left •Select previous Region
    Right •Select next Region
    ct op co D •Deselect All Regions Except Recording Track
    •Set Track & MIDI Thru Parameters by Region/Folder
    ct op co C Select Equal Colored Regions
    Pack Folder
    Unpack Folder
    Unpack Folder (Use Existing Tracks)
    Append Track to Track List
    sh - 17 Create Track
    sh ct Return Create Track with next Instrument
    Create Multiple Tracks...
    Delete Track
    co D Delete unused Tracks
    sh op co D Delete Redundant Audio Tracks
    sh co T Tracks for Overlapped Regions
    Tracks for Selected Regions
    H Toggle Hide View
    Hide Current Track and Select Next Track
    Unhide All Tracks
    Toggle Track Mute
    Toggle Track Mute of all Tracks of Folder
    Toggle Track Mute of all Tracks With Same Instrument of Song
    Record Enable Track
    Toggle Track Solo
    ct op Down Individual Track Zoom In
    ct op Up Individual Track Zoom Out
    Toggle Individual Track Zoom
    Auto Track Zoom
    ct op co -  6 Individual Track Zoom Reset
    ct op co T Individual Track Zoom Reset for All Tracks
    Make Alias
    Make Alias but Copy Folder
    Turn Alias to Real Copy
    Reassign Alias
    Find Original of Alias
     Select All Aliases of Region
    Select All Orphan Aliases
    Delete All Orphan Aliases
    Audio Crossfade Options for Merge...
    Merge Regions per Tracks
    < Snip: Cut Time and Move by Locators
    Insert Time and Move by Locators
    Splice: Insert snipped part at Song Position
    Demix by Event Channel
    Demix by Note Pitch
    ct op co F15 Empty Trash
    ct op co F14 Open Trash
    Create New Instrument
    ct T Create Trackname
    Delete Trackname
    Move Selected Regions to track
    Adjust Tempo using Region Length and Locators
    ct op co O Set Region(s) to Recording Position
     Convert Regions to New Regions
     Convert Regions to New Audio Files
    sh ct co - 37 Adjust Region Length to Locators
    Adjust Region Length to Nearest Bar
    Strip Silence...
    ct op co A Open in Apple Loops Utility...
    Copy ReCycle Loop
    Paste ReCycle Loop
    Search Zero Crossings
    ct op co N Normalize
    Normalize without Channel
    Normalize without Channel & Delay
    ct op co Q Apply Quantization Settings Destructively
    L Toggle Loop
    sh L Turn Loops to Real Copies
    Turn Loops to Aliases
    Erase Duplicated Events
    ct op co X Set Optimal Region Sizes rounded by bar
    Set Optimal Region Sizes rounded by denominator
    Snap Region Start to Bar
    Remove Overlaps
    sh Tab Tie Regions by Length Change
    op Tab Tie Regions by Position Change
    Replace Overlapped Regions
    Tie Regions within Locators
    Insert Instrument MIDI settings as Events
    Erase inside Locators
    Erase outside Locators
    ct E Erase outside Region Borders
    Crop Regions outside Marquee Selection
    Remove Groove Template from list
    Make Groove Template
    Import DNA Groove Templates...
    Show Channel Strip Only
    sh A View Track Automation
    ct D Delay in ms
    Region Content
    sh op C Instrument Colors To Regions
    sh op N Tracknames To Regions
    Waveform vertical zoom x 1 (Normal)
    Waveform vertical zoom x 2
    Waveform vertical zoom x 4
    Waveform vertical zoom x 8
    ct op co -125 Waveform vertical zoom out
    ct op co Up Waveform vertical zoom in
    -------- Track &Mixer --------
    Toggle MIDI Instruments
    Toggle Audio Inputs
    Toggle Audio Tracks
    Toggle Audio Instruments
    Toggle Audio Aux
    Toggle Audio Busses
    Toggle Audio Outputs
    -------- Environment Window --------
    New Standard Instrument
    New Multi Instrument
    New Mapped Instrument
    New Fader/Knobs/...
    New Keyboard
    New Monitor
    New Arpeggiator
    New Transformer
    New Delay Line
    New Voice Limiter
    New Channel Splitter
    New Chord Memorizer
    New MIDI Out Port
    New Audio Object
    Clear Cables only
    Clean up Positions
    Reset Sizes
    ct A Align Objects
    sh ct op Left Object move left
    sh ct op Right Object move right
    sh ct op Up Object move up
    sh ct op Down Object move down
    Object Width -1 Pixel
    Object Width +1 Pixel
    Object Height -1 Pixel
    Object Height +1 Pixel
    Hide/Show Cables
    Protect Cabling/Positions
    •Toggle Channel Display Default of Multi Instrument
    sh ct T Toggle Selection
    ct F Select Used Instruments
    op G Select Unused Instruments
    Select Cable Destination
    ct op co / Select Cable Origin
    Goto Layer of Object
    Goto previous Layer
    Send Selected Fader Values
    Send All Fader Values except Sysex
    Delete Layer
    Insert Layer
    Cable serially
    Apply Buffer Template to Position and Size
    Apply Buffer Template to Position
    Apply Buffer Template to Size
    Apply Buffer Template to Definition
    Apply Buffer Template to Definition, channel increment
    Apply Buffer Template to Definition, number increment
    Apply Buffer Template to Cable(s)
    -------- Score Window --------
    Page Edit
    Explode Folders
    ct P Explode Polyphony
    Hide/Show Instrument Names
    ct op co H Hide/Show Page Rulers
    Color View: individual
    sh ct F14 Color View: Show Pitch
    Color View: Show Velocity
    Color View: Show Polyphony
    Color View: Force Black & White
    sh G Go to Page #...
    ct op co V Paste Multiple
    •Paste Multiple at original Position
    Right •Next Event
    Left •Previous Event
    Down •Next Staff
    Up •Previous Staff
    sh ct D Default Syncopation
    sh ct F Force Syncopation
    sh ct G Defeat Syncopation
    ct G Default Interpretation
    ct F Force Interpretation
    ct D Defeat Interpretation
    Stems: default
    - 23 Stems: up
    - 19 Stems: down
    Stems: hide
    Stem End: Default Length
    sh ct op Up Stem End: Move Up
    sh ct op Down Stem End: Move Down
    Voice/Staff Assignment: default
    Voice/Staff Assignment: staff above voice
    Voice/Staff Assignment: staff below voice
    Ties: default
    ct PageUp Ties: up
    ct PageDown Ties: down
    B Beam Selected Notes
    U Unbeam Selected Notes
    Default Beams
    Not Independent
    co I Independent
    co G Independent Grace
    Default Accidentals
    sh ct 3 Enharmonic Shift: #
    sh ct B Enharmonic Shift: b
    ct [ Flats To Sharps
    ct ] Sharps To Flats
    Force Accidental
    Hide Accidental
    sh co G Guide Accidental
    co N Reset Note Attributes
    Reset Line Layout
    op V •Align Object Positions Vertically
    op H •Align Object Positions Horizontally
    •Align Object Positions
    Split To Channels
    ct op co Up •Nudge Position Up
    •Nudge Position Down
    ct op co Left •Nudge Position Left
    ct op co Right •Nudge Position Right
    ct op co PageUp Open Score Style Window
    ct op co PageDown Open Instrument Set Window
    ct op co G Settings: Global Format
    ct N Settings: Numbers Names
    Settings: Guitar Tablature
    Settings: Clefs & Signatures
    Settings: Clefs & Signatures
    Settings: Clefs & Signatures
    Settings: Score Colors
    Selection To New Instrument Set
    •Partbox: 1/1 Note
    •Partbox: 1/2 Note
    •Partbox: 1/4 Note
    •Partbox: 1/8 Note
    •Partbox: 1/16 Note
    •Partbox: 1/32 Note
    •Next Partbox Symbol
    •Previous Partbox Symbol
    •Next Partbox Group
    •Previous Partbox Group
    •Attach Symbol: Fermata Up
    •Attach Symbol: Fermata Down
    - 47 •Attach Symbol: Staccato
    •Attach Symbol: Staccatissimo
    - 28 •Attach Symbol: Accent
    •Attach Symbol: Strong Accent
    •Attach Symbol: Long Accent
    •Attach Symbol: Tenuto
    sh ct U •Attach Symbol: Up-Bow
    •Attach Symbol: Down-Bow
    •Attach Symbol: Flageolet
    sh ct P •Attach Symbol: Pizzicato
    •Attach Symbol: Left Hand
    •Attach Symbol: Right Hand
    •Attach Symbol: Soft
    •Attach Symbol: Heavy
    •Attach Symbol: Jazz 1
    •Attach Symbol: Jazz 2
    •Attach Symbol: Jazz 3
    •Attach Symbol: Jazz 4
    •Attach Symbol: Jazz 5
    •Attach Symbol: Jazz 6
    sh ct W Insert: Slur Up
    sh ct S Insert: Slur Down
    co , Insert: Crescendo
    co . Insert: Decrescendo
    -------- Event Window --------
    Left Scroll to Previous Event
    Right Scroll to Next Event
    Length as Absolute Position
    Local Position
    •Numerical Edit of Event Position
    •Duplicate Event and Numerical Edit
    ct op co E •Copy value to all following events
    -------- Hyper Edit --------
    Create Hyper Set
    Create GM Drum Set
    Create Hyper Set For Current Events
    Clear Hyper Set
    Create Event Definition
    Delete Event Definition
    Multi Create Event Definition...
     Convert Event Definition...
    Copy Event Definition
    Paste Event Definition
    Select All Event Definitions
    Protect Values toggle
    Auto define toggle
    -------- Audio Window --------
    Up Select Previous Audio File
    Down Select Next Audio File
    Show Audio File Details
    Hide Audio File Details
    Play/Stop Region
    ct O Add Audio File...
    Add Region
    Delete File(s)
    Optimize File(s)...
    Backup File(s)
    Copy/Convert File(s)
    Move File(s)
    ct F Select Used
    ct D Select Unused
    ct G Show All Regions
    ct H Hide All Regions
    sh W Strip Silence...
    Import SDII Regions
    Export SDII Regions
    Create Group...
    Delete selected Groups
    -------- Sample Edit Window --------
    Play/Stop Selection
    sh ct Space •Play/Stop All
    ct Space •Play/Stop Region
    •Play/Stop Region to Anchor
    sh ct A •Play/Stop Region from Anchor
    Create Backup
    Revert to Backup
    Save A Copy As...
    Save Selection As...
    Region -> Selection
    Selection -> Region
    Left •Goto Selection Start
    Right •Goto Selection End
    •Goto Region Start
    sh E •Goto Region End
    sh A •Goto Region Anchor
    ct R Create New Region
    ct N Normalize
    Change Gain...
    Fade In
    Fade Out
    ct Backspace Silence
    Invert
    ct < Reverse
    F7 Trim
    Remove DC Offset
    Time and Pitch Machine...
    ct G Groove Machine...
    ct E Audio Energizer...
    Sample Rate Convert...
    Silencer...
    Audio to MIDI Groove Template...
    Audio to Score...
    Quantize Engine...
    Search Peak
    Search Silence
    -------- EXS24 Instrument Editor --------
    Z Select zones pointing to selected group(s)
    Toggle Selection
    Left Previous Zone/Group
    Right Next Zone/Group
    Open file selector for selected zone
    New Zone
    New Group
    View: All / Toggle Mode
    View: Next Zone Parameter
    View: Next Group Parameter
    Move Audio files
    Copy Audio files
    •Backup audio files of all USED and ACTIVE instruments of current song...
    •Shift selected zone(s) left
    •Shift selected zone(s) right
    •Shift selected zone(s) left (inc. root key)
    •Shift selected zone(s) right (inc. root key)
    -------- Keyboard Input --------
    Note 'C'
    Note 'C#'
    Note 'D'
    Note 'D#'
    Note 'E'
    Note 'F'
    Note 'F#'
    Note 'G'
    Note 'G#'
    Note 'A'
    Note 'A#'
    Note 'B'
    Rest
    Next note will be sharp
    Next note will be flat
    Chord Mode
    Erase
    - 43 Step backwards
    - 47 Step forward
    Octave 0
    Octave 1
    Octave 2
    Octave 3
    Octave 4
    Octave 5
    Octave 6
    Octave - 2
    Octave - 1
    Octave + 1
    Octave + 2
    1/1 note
    1/2 note
    1/4 note
    1/8 note
    1/16 note
    1/32 note
    1/64 note
    1/128 note
    Next three notes are triplets
    Next two notes are a dotted group
    Velocity 16 (ppp)
    Velocity 32 (pp)
    Velocity 48 (p)
    Velocity 64 (mp)
    Velocity 80 (mf)
    Velocity 96 (f)
    Velocity 112 (ff)
    Velocity 127 (fff)
    Sustain inserted note(s)
    Quantize note starts on/off
    -------- Project Manager --------
    Up
    Down
    Left
    Right
    Scan
    Expanded Scan
    Scan folder...
    Abort scan process
    Check for modified or deleted files
    Clear scanned data
    Save Project Manager data
    Install files from...
    Toggle find mode
    Toggle Scan Paths mode
    Set selected folder as display root
    Move display root one level up
    Move display root to top
    Consolidate files of selected Songs...
    Add selected files to Audio Window
    Find used files for selected items
    op co U Find unresolved file references for selected items
    Move used files for selected EXS-Instruments...
    Copy selected EXS-Instruments and used samples...
    Convert selected REX files to Apple Loops...
    Set comment 1 for selected...
    Set comment 2 for selected...
    Show details for selected
    Hide details for selected
    Move selected items...
    Copy selected items...
    Start/stop preview
    Back
    Update file list in find mode
    Add selected files to Arrange
    -------- Global Control Surfaces Commands --------
    Open Setup
    Open Setup as Float
    Open Controller Assignments
    Open Install
    sh ct op M Open MIDI Monitor
    Open MIDI Monitor as Float
    Scan all models
    Rebuild Defaults
    Learn new Controller Assignment
    -------- Setup Window --------
    as Icons
    as List
    -------- Install Window --------
    Scan for selected models
    Scan all models
    Add selected models
    (the "old") Quad, 6G RAM   Mac OS X (10.4.5)   LP 7.1.1, MOTU PCI/2408/1224

  • Translate your website into different languages

    Well,
    i wanted to have my website available in different languages.
    (Eg. mandarin, french, japanese, german...).
    I heard that there is coding sample available on the internet that show you a sample of how to code out the translating tool, to be used. Or did anyone of you here knows the way?
    Axile

    Hi Robert,
    I have property files Inter.properties,Inter_en.properties in WEB-INF/classes .
    In web.xml :
    <context-param>
    <param-name>
    javax.servlet.jsp.jstl.fmt.LocalizationContext
    </param-name>
    <param-value>
    Inter
    </param-value>
    </context-param>
    Test.jsp:
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
    <fmt:setBundle basename="Inter" var="Inter" scope="session"/>
    When I try to execute the jsp file I receive the following message:
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: An error occurred while evaluating custom action attribute "bundle" with value "Inter": Attempt to convert String "Inter" to type "javax.servlet.jsp.jstl.fmt.LocalizationContext", but there is no PropertyEditor for that type
    What is wrong with my settings?
    I think that in web.xml :
    <param-value>
    Inter
    </param-value>
    is the problem.
    Thanks
    Daniel
    the proper way is to use tags for this. proceeding:
    get you a copy of the JSTL (jsp standard template
    library).
    define a property file for each language like you do
    for any resource bundle, e.g. text.properties,
    text_en.properties, text_en_US.properties etc. and put
    it to your java class files in the web application
    (i.e. WEB-INF/classes or
    WEB-INF/lib/your_archive.jar).
    define an initialization parameter in web.xml with
    param-name
    "javax.servlet.jsp.jstl.fmt.localizationContext" and
    param-value that points to the properties file
    (without the extension)
    then use the tag lib in your jsp's and use tag
    "message" to return the message texts. you should set
    the current user's or session's Locale. this is an
    example include file that you should statically
    include in every jsp:<%@ taglib
    uri="/WEB-INF/c.tld" prefix="c" %>
    <%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %>
    <c:if test="${ ( ! empty user ) && ( ! empty
    user.locale ) }">
    <fmt:setLocale value="${ user.locale }"/>
    </c:if>this snippet assumes there is typically
    a bean "user" in the session, which has a property
    "locale" that returns a java.util.Locale.
    robert

  • The Date Accessed attribute is resetting to all the files in a folder

    Hi all,
    I have an issue that the "Date Accessed" attribute is often resetting to all the files in a folder if i open single file as this folder is from File server mapped as Drive to me. This is happening to all the users whoever connect to that fileserver
    and i see same issue from RDP as well. is there any option to check which is resetting the "Date Accessed" attribute to all the files. The Date Access attribute is simillar to Date accessed and Date modified. We need to fix this issue as it is related
    to security concern for us. The file server is windows 2008 R2 and the client machines are windows 7.
    Side note: I can see that there is no software, antivirus, offline sycn is causing this issue.
    Thank you,
    Sampath
    P.Sampath

    Hi,
    It seems that some specific process accessed the files and updated the attribute. You could configure auditing on the shared folder. Then you can go through the auditing log to check which process is doing the read operation on all these files. 
    Configuring Audit Policies
    http://technet.microsoft.com/en-us/library/dd277403.aspx
    Best Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Protecting the attribute value from getting reset!

    Hello all,
    I have attached a custom drop down search help to the attribute "SERVICE_UNIT_NAME" in the "BTPARTNERSET" context node. The drop down list contains a blank entry as well as a couple of other entries, I have placed a create object statement for my search help class in the Getter method "GET_V_SERVICE_UNIT_NAME" while written the following code in the setter method "GET_P_SERVICE_UNIT_NAME" as suggested by one of the esteemed experts here on the forum.
      case iv_property.
        when if_bsp_wd_model_setter_getter=>fp_fieldtype.
             rv_value = cl_bsp_dlc_view_descriptor=>field_type_picklist.
      endcase.
    This drop down list is showing correctly, however my problem is that if the user selects any value from the drop down list, the selected value gets copied to the attribute but when ever the user press an "ENTER KEY" or any other action, the value in the attribute gets initialized to the first value in the drop down list which is a "BLANK" value. I want to preserve the value originally selected by the user from the drop down list, without it being reset by any other user actions on the screen.  Do I need to redefine any other method for this attribute? I'll appreciate any help.
    Regards,

    Naresh and Sumit, many thanks for your valuable inputs however, I have tried your code but I am still facing the same issue, as the attribute value for "SERVICE_UNIT_NAME" is getting refresh every time an "ENTER" is pressed on the page. Let me specify some other detail that may help in understanding this behaviour for the attribute value, actually when on the initial page, user has to enter his phone no / network ID, so that the standard functionality bring about the city, postal code, country etc. so once these values are set in the related attributes, the user will click on the incident button, which brings about a search help (web dialogue) for partner selection, so any value selected, is displayed afterwards in the "SERVICE_UNIT_NAME" attribute on the next page. However, after putting the custom drop down list at the said attribute, the value selected on the previous page is not populating in the attribute and the user can select the value from the custom drop down list now, but once he press "ENTER" or pushes any other button the page, the selected value in the attribute gets initialized. Is there a way to check for the user input?

  • Robocopy wont reset archive attribute with /M switch..incremental backup to zip folder...partially RESOLVED!!!

    hello, OS server 2012, 2008 r2, w7 ult.
    I want to make backup only files which have archive attribute set. /M switch is what I need but robocopy wont reset archive bit from subfolders and only reset bit on files in root of source folder. How to force robocopy to reset archive bit from all copied
    files???
    This is syntax:
    @echo off
    set year=%date:~10,4%
    set month=%date:~4,2%
    set day=%date:~7,2%
    SET Now=%Time: =0%
    SET Hours=%Now:~0,2%
    SET Minutes=%Now:~3,2%
    Robocopy c:\source c:\dest /m /s /r:1 /w:1 /log:"c:\dest\Incremental_%month%-%day%-%year% %hours%h-%minutes%m.log" /NP
    "C:\Program Files\7-Zip\7z.exe" a -tzip -mx1 C:\c\Incremental_%month%-%day%-%year%-%hours%h-%minutes%m.zip C:\dest
    echo Y | DEL C:\Temp\*.*
    I can use attrib command but I have in working folder 900.000 files so this is not option.
    edit....robocopy work as expected in 2012 standard. /M switch reset archive attribute so I can use robocopy for incremental backups.
    Script: c:\a is source and c:\b is destination. c:\b\temp is temporary folder from where 7zip package backed up files to archive. After 7zip finish jod script delete all files folders from temp folder. I want to use zip archive because this will be much
    easier for file system. With time I will have some zip files instead 10000000 files or folders. Zip files will have in name date and time for easier tracking. 
    @echo off
    set year=%date:~10,4%
    set month=%date:~4,2%
    set day=%date:~7,2%
    SET Now=%Time: =0%
    SET Hours=%Now:~0,2%
    SET Minutes=%Now:~3,2%
    Robocopy c:\a c:\b\temp /s /m /r:1 /w:1 /log:"c:\b\temp\Incremental_%month%-%day%-%year% %hours%h-%minutes%m.log" /NP
    "C:\Program Files\7-Zip\7z.exe" a -tzip -mx1 C:\b\Incremental_%month%-%day%-%year%-%hours%h-%minutes%m.zip C:\b\Temp
    set folder="C:\b\temp\"
    cd /d %folder%
    for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q)

    Hi,
    Thank you for your helpful sharing! This will help others who are fighting with similar issues.
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Page Item Drag and Drop reset all items Displayed Field attribute

    If I use the Drag and Drop feature it resets all items Displayed/Field attribute to yes. Is this just the way it is and it is to bad so sad for Nicholas or is there something I can do to be able to use drag and drop and still retain my setting for the Item's Displayed/Field attribute.
    Any assitance is much appreciated

    Probably the easiest way would be to have 2 arrays that hold
    the data being sent to box A. Just add/or subtract from one that
    you don't care if it changes, and leave the other one alone. When
    you want to reset, just clear Array 2 and populate it again from
    Array 1. For Box B, just reset the contents of the array to nothing
    - myArrayB = new Array({item1:'',item2:''})

  • Updating Media Content - stuck at Reset Read Only Attributes.

    I'm currently using - MDT 2010 on Windows 7 on a Virutal Machine. I deploy my images using a USB stick. (Advanced Configuration / Media). The process of creating a selection profile, Creating Media, and updating my media works perfectly.
    I wanted to move to MDT 2012 SP1 on Server 2008 R2 platform. So I installed AIK, MDT 2012 SP1, etc on a Server 2008 R2 Virtual Machine. I setup the MDT same way as my current working model and it was looking good. Next I created my Selection Profile
    and Media. Then when I ran "Update Media" it seems to work until it gets stuck at the last process "Reset Read Only Attributes"
    Looking for any advice on why it might keep getting stuck here. The only way I can exit the process it to "Stop Execution"
    Reminder - on my Win 7 / MDT 2010 box, it works fine and this process completes.
    Thanks for any feedback.

    What is happening here is that MDT Litetouch console is calling OSCDIMG.exe, and that program has stopped.
    Sadly, MDT does not capture the OSCDIMG.exe output for analysis, so we are stuck here.
    I have personally encountered problems with OSCDIMG.exe running on my Windows 8 box, where images created with source files from the C: pass, however when the source files are placed on a "Storage Spaces" volume, the program hangs. No response from MSFT.
    If you need help diagnosing the problem, you can run OSCDIMG from a console window, just to see what the output is
    OSCDIMG.exe -u2 -udfver102 -m -o -h -w4 "<MediaSrc>" %temp%\Dest.iso
    Longer:
    OSCDIMG.exe -u2 -udfver102 -m -o -h -w4 -yo"<Path_to_Bootorder.txt>" -bootdata:2#p0,e,b"<Path_TO_ETFSBoot.com>" #pEF,e,b"<Path_TO_EFIsys.bin>" "<MediaSrc>" %temp%\Dest.iso
    -k
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Binded attribute value reset in ADF BC 10.1.3.3.

    Hi,
    I have a jspx page with data from a couple of bind iterators. On one of those iterators I have an attribute AuditId I'm using when user chooses to view some data or download some file. I need this AuditId to be the same the until user leaves the page so that every part of data he sees is stored in DB with the same Id.
    I've created an transient attribute on one of the iterators with -1 the default view. When the page is opened and there exists some data that the insight into must be recorded, the AuditId is given and set to this attribute. This works fine for the data already displayed on the page, but when the user downloads some document from the page - the code is in an actionListener of the command button and on application module - the value of attribute AuditId is -1 again although the execute for that iterator was never executed (I know this since I have a custom execute method and I set a breakpoint there - it is executed only when the page opens).
    How comes that the attribute value is reset to -1 without executing the query behind the iterator's VO that has already been set to the right value.
    Before this solution I also tried putting the value to processScope and the behaviour was the same. Without resetting the value through the code the value was lost somewhere. Maybe there is a problem that I have some code in a backing bean and some on the application module? Is there some other way to store the value of this attribute without declaring it on a VO?
    Thank you in advance,
    regards!

    Dragan,
    If you are talking about iterating over VO records - have a look at the VO tuning parameters, especially if you are using range paging mode. In range paging mode, the performance of getting the next set of rows degrades as you proceed through the result set.
    John

  • Ldap programming: Admin Reset Password Attribute

    Hi,
    I would like to write a program to reset the user password by a administrator such that the user will get a return code 2 "password is reset by admin" to notify the user to change his password.
    I know attribute password of a user in Directory Server store the password, but I dont know which attribute contain information about "admin had reset the user pasword".
    I got trobule for this question for a few day, hope I could got the answer here. Thz

    The following is an example showing you how to cacth the server control in password expired respective:
    LDAPControl[] ctls = ld.getResponseControls();
              if (ctls != null) {
                   for (int i=0; i<ctls.length; i++) {
                        if (ctls[i] instanceof LDAPPasswordExpiredControl ) {
                             status = PASSWORD_EXPIRED;
                             break;
                        else if (ctls[i] instanceof LDAPPasswordExpiringControl ) {
                             LDAPPasswordExpiringControl c = (LDAPPasswordExpiringControl)ctls;                         
                             status = c.getSecondsToExpiration();
                             break;

  • FLIR camera Attributes incorrect - how to reset in MAX

    Hi,
    This concerns a system which uses a FLIR A series GigE camera which has been running for some years. The camera failed and a new one was acquired, however it seems FLIR have changed some of the names of the cameras GeniCam attributes in the new firmware, so our Labview software does not work with the new camera.We installed and older version of the software but the attribute names that MAX is using for the camera are still the ones from the new firmware version so MAX gives errors when trying to connect
    For example, in the old firmware there was an attribute : CameraAttribute::ImageSizeControl PixelFormat
    in the new firmware it appears to be CameraAttribute::ImageFormatControl PixelFormat
    Since the camera now has the old firmware it is expecting ...ImageSizeControl.., but in the icd it is  ..ImageFormatControl...
    Where does MAX get this information from? How do I reset this in MAX? I have tried deleting the cameras .icd file but it makes no difference,
    Thanks,
    Mike

    Try this if it helps
    http://digital.ni.com/public.nsf/allkb/2C7480E8569​87FFF862573AE005AB0D9
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13

  • Query Panel reset is clearing attribute level validations in the results table.

    Hi,
    I'm using JDeveloper 11.1.2.3.0.
    I have a query panel with editable table in a jsf page.
    In the EmployeesEO i have an attribute validation for Salary. that is Salary should not  be a negative value.
    I ran the Jsf page, click on Query panel Search, results are displayed.
    I changed the salary to -100 from 50000 and tabout, error message is shown properly at attribute level.
    I clicked on Query panel's Reset button, now Salary is showing as 50000 in the results table. But when i click on Commit button to save the changes, then -100 is showing and throwing the validation message.
    Can you please let me know if there is any way to not clear the values in the Results Table?
    Thanks,
    Vinod

    Once you submit the values the reset button can't undo these changes. To reset the changes you either need to call rollback or you have set a save point before the changes and then reset to the save point.
    What I don't understand is why the click on the reset does show you the old value.
    Timo

  • Attribute #MX_MSKEYVALUE_DN could not be found Self Service Password reset

    Hi,
    I use NetWeaver 7.02 and IDM 7.2
    I've just created the Self Service-Task Password Reset.
    If I call the page http://<host>:<port>/idm/pwdreset I get the following error message:
    Attribute #MX_MSKEYVALUE_DN could not be found
    DE: Attribut #MX_MSKEYVALUE_DN konnte nicht abgerufen werden
    The attribute MSKEYVALUE is available in my Identity Store.
    The Task for "Edit authentication questions" is available.

    Hi Chris,
    I use NetWeaver 7.00 SP14 and IDM 7.2 SPS 3 (tried IDM 7.1 before, but had same error) on Windows Server 2003 SP2 with an Oracle DB 10.2.0.1
    The IDM is working fine except the PwdReset Application. Maybe it has to do something with the Anonymous User?
    Executing SELECT * FROM MC_LANGUAGE_TRANSLATIONS WHERE LANGKEY = '#MX_MSKEYVALUE_DN'
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=AR
    LANGIDSTORE=1
    LANGVALUE=?????? ??????
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=BG
    LANGIDSTORE=1
    LANGVALUE=???????? ??
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=CA
    LANGIDSTORE=1
    LANGVALUE=Identificador unÌvoc
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=CS
    LANGIDSTORE=1
    LANGVALUE=JednoznacnÈ ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=DA
    LANGIDSTORE=1
    LANGVALUE=Entydig ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=DE
    LANGIDSTORE=1
    LANGVALUE=Eindeutige ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=EL
    LANGIDSTORE=1
    LANGVALUE=???ad??? ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=EN
    LANGIDSTORE=1
    LANGVALUE=Unique ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=ES
    LANGIDSTORE=1
    LANGVALUE=ID unÌvoco
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=FI
    LANGIDSTORE=1
    LANGVALUE=Yksiselitteinen tunnus
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=FR
    LANGIDSTORE=1
    LANGVALUE=ID unique
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=HE
    LANGIDSTORE=1
    LANGVALUE=????? ??????
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=HR
    LANGIDSTORE=1
    LANGVALUE=Jedinstveni ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=HU
    LANGIDSTORE=1
    LANGVALUE=EgyÈrtelmu ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=IT
    LANGIDSTORE=1
    LANGVALUE=ID univoco
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=JA
    LANGIDSTORE=1
    LANGVALUE=?? ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=KO
    LANGIDSTORE=1
    LANGVALUE=?? ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=MX
    LANGIDSTORE=1
    LANGVALUE=Unique ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=NL
    LANGIDSTORE=1
    LANGVALUE=Unique ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=NO
    LANGIDSTORE=1
    LANGVALUE=Entydig ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=PL
    LANGIDSTORE=1
    LANGVALUE=Jednoznaczny ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=PT
    LANGIDSTORE=1
    LANGVALUE=ID unÌvoco
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=RO
    LANGIDSTORE=1
    LANGVALUE=ID univoc
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=RU
    LANGIDSTORE=1
    LANGVALUE=??????????? ??.
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=SH
    LANGIDSTORE=1
    LANGVALUE=Jedinstveni ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=SK
    LANGIDSTORE=1
    LANGVALUE=JednoznacnÈ ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=SL
    LANGIDSTORE=1
    LANGVALUE=Enoznacen ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=SV
    LANGIDSTORE=1
    LANGVALUE=Entydig ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=TH
    LANGIDSTORE=1
    LANGVALUE=ID ?????????
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=TR
    LANGIDSTORE=1
    LANGVALUE=Benzersiz tanitici
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=UK
    LANGIDSTORE=1
    LANGVALUE=?????????? ?????????????
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=ZH_CN
    LANGIDSTORE=1
    LANGVALUE=????
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=ZH_HK
    LANGIDSTORE=1
    LANGVALUE=?? ID
    LANGKEY=#MX_MSKEYVALUE_DN
    LANGCODE=ZH_TW
    LANGIDSTORE=1
    LANGVALUE=?? ID
    Kind Regards,
    Tobias

Maybe you are looking for

  • Can't Post Journals to GL

    Yesterday we were able to post Journals to GL and today we can't. We are running 11.5.10. Yesterday I shut off and restarted notification mailers. I am not aware of any other changes that may have occurred. This is the log from the failed Posting. Ge

  • Change spacing between "LED's" in 2D boolean array indicator

    Hi All In my application I am tring to mimic a LED matrix sign using a 2D boolean array indicator. Its obvious enough how to chage the size of the LED's in the array indicator but I would also like to reduce  the spacing between LED's as I have very

  • My iphone 5 doesn't turn on

    I was using my iPhone 5 last night, and before go to sleep I plugged it to the charger for some reason this morning my phone doesn't turn on, I tried different plugs and my mac, but still... I tried another cables and remain the same. When I press th

  • IPhoto content insecure...now duplicates with weird codenames

    iPhoto told me that my content was insecure and asked me to create a new folder and then started reuploading all my photos. Now I have duplicates of photos and everything has weird code-like names in the captions. What happened and what can I do to m

  • Is the Company Application Portal available in Config Man 2012 SP1?

    I heard while at Teched this year, that a company application portal was part of Config Man 2012 SP1. Is that true or is that a new 2012 R2 feature? thanks Thanks Lance