Whiteboard, Polling and PowerPoint QoE / CDR Data

I'm trying to use either the Lync CDR or QoE databases to establish usage around usage of whiteboard, polls and powerpoint features of Lync conferencing. Neither database appears to identify usage of these features. Is there any way to establish or infer
usage of these features for any given conference?

please refer to the conference detail report 
for more information please refer
http://blogs.technet.com/b/dodeitte/archive/2013/06/02/sample-lync-server-archiving-report-available.aspx
PLEASE REMEMBER, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answered"

Similar Messages

  • Whiteboard, Polls, Q&A and Powerpoint not working over Federation

    Hi,
    I have a problem with whiteboard, polls, Q&A and Powerpoint sharing over federation, if the federated endpoint is behind a web proxy with HTTPS inspection enabled. Audio, video and desktop sharing works fine.
    Scenario:
    2 Domains which are federated (DomainA and DomainB), all Lync servers are full patched (June 2014)
    2 Users (UserA from DomainA and UserB from DomainB) works with full patched Lync Client 2013. Both Users work on their internal LAN. The client cannot reach the internet directly. Web requests go to through a proxy with HTTPS inspection.
    1. UserA starts a Chat with UserB. UserB accepts.
    2. UserA adds the whiteboard. UserB gets the "Add meeting content" button and accept.
    3. UserA gets the whiteboard, UserB gets a error message "Because of network issues..."
    In this scenario, UserB's Lync client tries to connect to WebConf Edge of DomainA over TCP/443 (HTTPS). Because UserB cannot reach the Internet directly from the inside LAN, the request goes trought the web proxy of DomainB (ProxyB). The web proxy is configured
    with https inspection, so on the WebConfEdge I get requests from the web proxy of DomainB which are also answered by the WebConf Edge. On the pc of UserB I also get the answer, but signed with a certificate of the web proxy which is added as trusted root certificate
    (normal behaviour if https inspection es enabled). On the network trace, as I can see, UserB resets (ACK, RESET) the connection to WebConf Edge directly after receiving the first https response.
    Then I changed the web proxy (ProxyB) to bypass the https inspection for the ip address of the WebConf Edge of DomainA. The same scenario works fine now. It always works fine, if UserB have directly access to web conf edge of Domain A (UserB is in the internet
    and not in the LAN).
    I also could check this vice versa. It depends on which side, the conferencing is hosted. As soon as the other user connects through a web proxy which doesn't bypass the request directly, the user do not get the web conf content.
    Then I tried with other domains and other environments, but all of them had the same issue, as long as the web request from the foreign user goes throug a web proxy. It seems there is no dependency on which product of web proxy will be used, it seems to
    be a dependency on https inspection and all changes the web proxy do in this case with a web request and response.
    I always tested with whiteboard, but the same behaviour is with Q&A and polls and also with Powerpoint (WAC). For Powerpoint it's only because the foreign user do not get the URL from web conf, so the client do not know how to connect to the WAC of DomainA.
    During the tests with several Domains (customers), I see a corrupt "Client Hello" from a specific web proxy. In the list of cipher suites in the "Client Hello", the web proxy added an additional byte (0xFF) at the last TLSCipherSuites
    entry, so the extensions, followed by the ciphersuites list in the "Client Hello" are not readable. So the connection will be reseted directly.
    Because my workaround depends on the web proxy of the foreign side (configure bypass) it's not really a practicable way to make sure, the web conferencing content will work. Is there an other way to solve this issue?
    Regards, Stephan

    Hi,
    From your description, the issue should be the
    https inspection on the web proxy, maybe you should change from the web proxy side.
    You can refer to the link of
    Enabling HTTPS Inspection causes some applications to stop working
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or
    information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Is there a way to get several serial data lines to poll and respond quickly?

    I have a PCI-485/8 card where I need to use all 8 ports. Attached is the vi that I�ve developed so far. It works well when there are only 1 or 2 ports. But it really slows down the calling vi when I get up to 8 ports. The Read Delay is intended to set the polling pace, which is used to set the data logging rate. The calling vi is a timed while loop where dt = 0. Due to constraints of the polled device, I cannot set the delay less than 1200 mSec, so it�s set to 1500 mSec as a safety margin.
    The poll string is !!SS0n where n is the address number and must be followed by \r\n. Because the poll must be terminated with \r\n, the termination character (for the VISA Configure Serial Port function) cannot be A or D (hex). Otherwise it sees it�s own poll, terminates, and then ignores the responding string. (The polled devices works from RS-485, 2-wire.) As a secondary question, I�d like to know if there is a way to have it ignore its own poll string. But the bigger issue is that it�s dreadfully slow (i.e. around 10 seconds) with all 8 ports configured. The goal is to have this thing run at a consistent 1500 mSec.
    Please note that I may be approaching the program from a wrong direction and I�m certainly open to use a better way. For example, it may be more appropriate to obtain the data continuously instead of using a polling scheme. The devices being polled is capable of sending data continuously. However, I choose to use the polling method for three reasons. 1) The device does not send data at a continuous rate. (They are slow and not particularly stable.) 2) The provided data string is not consitent. The string varies in length, which may be the cause of the first problem. 3) There is a project scheduled where I will need to poll at least two devices on each port. (I realize that will really slow things down, but I�ll cross that bridge when I get there.) In other words, I�m open to set the devices on the ports in continuous mode if that�s the only way to get a fast and consistent system.
    The application is for an off-shore oil rig where they want to monitor and log data from 8 winches that operate the anchor lines. I�m using LV 7.1, Win2000, NI-Serial v1.6. Please advise�
    Attachments:
    SD41_PR292_Poll_Data_8_2.vi ‏561 KB

    Split this into 3 VIs. The first configures and opens the ports (everything to the left of the VISA Writes). This VI executes before the timed loop starts. The second is in the polling loop with the Error lines passed via shift registers. This includes the Writes, Bytes at Port, and Reads. The VISA Close and the analysis are in the third VI (outside the timed loop). This prevents the program from initializing and closing the ports repeatedly, which may take much longer than you think.
    Also, I would put the Reads inside a Case structure that only calls the read if Bytes at Port > 0. Some devices do not like zero byte reads.
    In the end product you amy want to analyze errors programmatically and attempt to close and re-open a port with an error rathe
    r than having the Error Handler holler at the user.
    With Bytes at Port do you really need the delay?
    Lynn

  • Is it possible to take the CDR data from a v4.2 Call Manager and copy it to a separate server where it would be made available for reporting?

    Is it possible to take the CDR data from a v4.2 Call Manager and copy it to a separate server where it would be made available for reporting? We are not interested in migrating the CDR data to v6 because of the concerns it introduces to the upgrade process. Is it possible to get the raw data and somehow serve it from a different machine? (knowing it would be 'old' data that stops as of a certain date). If so, what would be the complexity involved in doing so?
    It seems like the CDR data lives within MSSQL and the reporting interface is within the web server portion of the Call Manager... that's as far as we've dug so far.

    Hi
    It is absolutely possible to get the data - anyone you have in your org with basic SQL skills can move the data off to a standalone SQL server. This could be done most simply by backing up and restoring the DB using SQL Enterprise Manager.
    Moving the CAR/ART reporting tool would be more difficult... if you do actually use that for reporting (most people find it doesn't do what they need and don't use it for anything but basic troubleshooting, and get a third party package) then the best option may be to keep your publisher (possibly assigning it a new IP) and leave it running for as long as you need reporting.
    You would then need a new server to run your upgraded V6 CCM; you may find you need this anyway.
    Regards
    Aaron
    Please rate helpful posts...

  • WORD, EXCEL, and POWERPOINT now crashing when saving new file

    I have Microsoft Office 2004 WORD, EXCEL, and POWERPOINT, which were working just fine for several days on 10.5.1. (all updates are current). Now, every time I try to save a new document, all 3 apps crash, with the following thing in common in the crash log:
    0xb80ec881 gettimeofday_wrapper + 37593
    This doesn't happen when opening an existing file, and saving changes to it. Note: A few days ago, I ran Disk Utility to do a permissions repair for another issue - could this have caused this issue?
    Any ideas???
    Thanks,
    Below is the complete crash log from one of the EXCEL crashes:
    Process: Microsoft Excel [144]
    Path: /Applications/Microsoft Office 2004/Microsoft Excel
    Identifier: com.microsoft.Excel
    Version: 070724 (11.3.7)
    Code Type: PPC (Translated)
    Parent Process: launchd [69]
    Date/Time: 2007-11-26 18:33:08.466 -0500
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXC_CRASH (SIGILL)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ??? 0x801a194a 0 + 2149194058
    1 translate 0xb80ec881 gettimeofday_wrapper + 37593
    Thread 1:
    0 ??? 0x800bb8e6 0 + 2148251878
    1 ??? 0x800c30dc 0 + 2148282588
    2 translate 0xb818b69a CallPPCFunctionAtAddressInt + 202826
    3 ??? 0x800ec075 0 + 2148450421
    4 ??? 0x800ebf32 0 + 2148450098
    Thread 2:
    0 translate 0xb8152b0b spinlockwrapper + 92383
    1 translate 0xb817b5d8 CallPPCFunctionAtAddressInt + 137096
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813d2cf spinlockwrapper + 4259
    Thread 3:
    0 translate 0xb8152bc4 spinlockwrapper + 92568
    1 translate 0xb817b2ee CallPPCFunctionAtAddressInt + 136350
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813d2cf spinlockwrapper + 4259
    Thread 4:
    0 translate 0xb8152803 spinlockwrapper + 91607
    1 translate 0xb816e76d CallPPCFunctionAtAddressInt + 84253
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813c9e9 spinlockwrapper + 1981
    Thread 5:
    0 translate 0xb815298f spinlockwrapper + 92003
    1 translate 0xb8183603 CallPPCFunctionAtAddressInt + 169907
    2 translate 0xb8186194 CallPPCFunctionAtAddressInt + 181060
    3 translate 0xb80df67b 0xb8000000 + 915067
    Thread 6:
    0 translate 0xb815298f spinlockwrapper + 92003
    1 translate 0xb8183603 CallPPCFunctionAtAddressInt + 169907
    2 translate 0xb8186194 CallPPCFunctionAtAddressInt + 181060
    3 translate 0xb80df67b 0xb8000000 + 915067
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0xb813cb3c ecx: 0xb7fffa6c edx: 0x801a194a
    edi: 0xb81d8794 esi: 0x00000004 ebp: 0xb7fffa98 esp: 0xb7fffa6c
    ss: 0x0000001f efl: 0x00000246 eip: 0x801a194a cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xb8135118
    Binary Images:
    0xb8000000 - 0xb81d7fe7 translate ??? (???) /usr/libexec/oah/translate
    Translated Code Information:
    NO CRASH REPORT

    I just fixed my own issue, based on a posting I saw in one of the other discussions. I did the same thing, by downloading the standalone update and then installing. After the required restart, everything worked fine!!! It seems like there was definitely a problem with the version that was installed via Software Update.

  • My hard drive failed. My applications were on the drive including Excel, Word, and Powerpoint. Apple told me I could pull everything from the failed drive. I tried that but the drive is bad so I can't get to anything. Do you think Apple will reinstall?

    My hard drive failed. My applications were on the drive including Excel, Word, and Powerpoint. Apple told me I could pull everything from the failed drive. I tried that but the drive is bad so I can't get to anything. The Office package was installed/included when I purchased the Mac. Does anyone think Apple will provide me with the Office package? Thank you!

    Thank you everyone. I apologize to confusing all but I am up to date and running OS X 10.8.2.  It's possible I purchased the key for Office but I don't think so although it was 3-4 years ago. I guess I will stop in the Apple Store and just ask. I may just buy the new bundle anyway to get the most updated.
    I have read there are issues with the MS Office bundle running on our latest OS, is that true?
    Thank you all!!! You've been great!

  • I have just taken delivery of my first MacBook Pro so I am new to all that goes on underneath the cover. One quick question though...I had pre-installed three programmes to cover Exel, Word and Powerpoint. Can anyone tell me where to find them?

    I have just taken delivery of my very first MacBook Pro so I am new to all that goes on under the cover. Can anyone tell me how I open the pre-installed programmes which are compatible with Word, Excel and Powerpoint?
    Thanks

    Your welcome, gald to be of help
    Welcome to Apple Support Communites and to the Mac, after a little time you will be flying!
    Make sure if you have not done so yet to run software update to make sure you MBP is up to date, you can do this by clicking on the Apple logo at the top left on your menu bar, and clicking on Software update.
    One other thing that will help you when posting here is to make syre your profile is up to date/correct. You have in your profile as of now your MBP model and year which is freat, but you have for your operating system, iOS(mobile devces) 7.02, which would be for and iPhone, iPad, iPod. Your MacBook Pro operates on OSX (which in your case should be 10.8.5, you can find this info under the Apple logo, About this Mac) having this info available to anyone reading a question post is very helpful for them offer advice/sugesstions that may apply to your particular OSX, as well as eliminating confusion.
    Thank you for the green check, by marking your respones it helps other users to find solutions if they are having a similar issue, if you are looking for something, after typing yor question, check the right hand side bar under "More Like This" and sometimes you may find an answer there.
    Synergy is a great thing.
    Thanks for using Apple Support Communities  and enjoy your new Mac.
    One more suggestion is to purchase AppleCare it will extend your warranty to 3 years and you will also have free phone
    in-store/online for the entire period. I have done this with my families machines and found it to well woth the relativly small investment.

  • CDR data

    We need reports from the CDR data that shows basic info: extension, date,time, length of call, incoming - calling number,outgoing - called number. In a format that we can print and give to management. Any suggestions?

    There are many third party vendors that will pull data from CCM CDR and organize based on your needs. The data in CCM CDR is fairly raw and not quite as customizable. If you wanted to search on extension, and pull up there calls, you can.... but trying to do by departments, etc.
    Unless you are a whiz at SQL, you could query the items you need and build your own.
    Software
    WinCall
    CommView
    vvxtracker
    if you search the forum also, you may find some others. I think Cisco has a few recommended partners.
    good luck

  • No CMR/CDR data for SCCP gateways - 6.1

    Hi All,
    I have some users complaing of intermittent poor quality phone calls at one of our branches. I have activated the CDR tool, but I'm only getting data on calls that are between an IP Phone and an MGCP Gateway. I also need data on calls between an SCCP and MGCP endpoints. What other settings are required to allow this? Or can CDR data not be recorded on SCCP gateways?
    Thanks.

    Hi All,
    I have some users complaing of intermittent poor quality phone calls at one of our branches. I have activated the CDR tool, but I'm only getting data on calls that are between an IP Phone and an MGCP Gateway. I also need data on calls between an SCCP and MGCP endpoints. What other settings are required to allow this? Or can CDR data not be recorded on SCCP gateways?
    Thanks.

  • Modbus and cFP-DI-304 data packet

    I’m using a host computer to communicate with the cFP-DI-304 using Modbus over Ethernet.
    When the cFP-DI-304 (revision D) is polled, it is returning incorrect data (looks like a timing issue). What is the sequence and data package when the cFP-DI-304 gets polled?  Does the data sequence starts from pin 1 to pin 32, pin 32 to pin 1, or some other combination? Also is the package 8 or 16 bits?

    Please post any VI's you have for doing this communication.  Is the cFP-DI module on a backplane with a cFP controller or a communications module?
    I'm not familiar with using ModBUS to communicate with individual cFP modules.  The usual method is to use datasockets or shared variables.

  • Hi..someone there?i am looking for an app, which can show and calculate. fully excel data from windows.until now i only found apps, which just show, but not calculate

    Hi..someone there?i am looking for an app, which can show and calculate fully excel data from windows.until now i only found apps, which just show, but not calculate.anybody who know an app???

    Look at the Rccharles answer on this post.
    https://discussions.apple.com/thread/6033082?tstart=0
    Also, you can download these free MS Office apps (Word, Excel, PowerPoint) to view (but not create or edit) these files.
    https://itunes.apple.com/us/app/microsoft-word-for-ipad/id586447913?mt=8
    https://itunes.apple.com/us/app/microsoft-excel-for-ipad/id586683407?mt=8
    https://itunes.apple.com/us/app/microsoft-powerpoint-for-ipad/id586449534?mt=8
    Microsoft Office for iPad:Early Reviews of Word, PowerPoint & Excel Apps
    http://ipadacademy.com/2014/03/microsoft-office-for-ipad-early-reviews-of-the-wo rd-powerpoint-excel-apps
     Cheers, Tom

  • With 1.1.1 update on Sep 2, excel opens and then closes immediately.  same with word and powerpoint

    with the 1.1.1 update of MS Word, Excel and Powerpoint for the iPad on Sep 2, all of the three open when selected and then close immediately.  Using iPad Air

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    iOS 7: Help with how to fix a crashing app on iPhone, iPad (Mini), and iPod Touch
    http://teachmeios.com/help-with-how-to-fix-a-crashing-app-on-iphone-ipad-mini-an d-ipod-touch/
    Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Delete the app and redownload.
    Downloading Past Purchases from the iTunes Store, App Store and iBooks Store
    http://support.apple.com/kb/ht2519
     Cheers, Tom 

  • MB5B Report table for Open and Closing stock on date wise

    Hi Frds,
    I am trying get values of Open and Closing stock on date wise form the Table MARD and MBEW -Material Valuation but it does not match with MB5B reports,
    Could anyone suggest correct table to fetch the values Open and Closing stock on date wise for MB5B reports.
    Thanks
    Mohan M

    Hi,
    Please check the below links...
    Query for Opening And  Closing Stock
    Inventory Opening and Closing Stock
    open stock and closing stock
    Kuber

  • When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.

    Problem:
    When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.
    Any help that you can provide in helping my iPhone accurately sync with iPhoto and iTunes will be greatly appreciated.
    Symptoms:
    1)   Sync:  It’s not completing the sync.  Below, I’ve provided all of my settings from the iTunes Summary tab so that you might tell me if I’ve selected any incorrect options.  I prefer to sync the “old school” way – by connecting to the computer – as opposed to syncing over the cloud. Perhaps this is what’s causing the problem? Here is a list of the steps displayed in the iTunes window as the sync progresses:
    waiting for sync to start (step 1 of 7)
    backing up (step 2 of 7)
    preparing to sync (step 3 of 7)
    determining apps to sync (step 4 of 7)
    preparing apps to sync (step 5 of 7)
    importing photos (step 6 of 7)
    waiting for changes to be applied (step 7 of 7)
    syncing apps / copying 1 of 4 (App name) (step 7 of 7)
    canceling sync
    apple icon
    2)   Photos: I've selected only certain of my iPhoto albums to sync to my iPhone.  All of the albums are correct/complete in iPhoto.  All of the albums are listed on my iPhone, both before and after the sync, but the albums are empty (no actual photos) before and after the sync. Perhaps this is tied to the fact that the sync isn’t completing, but because “importing photos” is one of the steps that the incomplete sync displays, I don’t know.
    3)   Apps: When I launch iTunes and click on the Apps folder under the Library listing, then click on the Updates tab, iTunes searches for any Apps needing to be updated and provides a list.  If I click on Update All, the Apps are successfully updated in iTunes.  But, when I plug in my iPhone so that the updates will transfer to the apps on my iPhone, the updates don’t transfer to the apps on my iPhone and those apps still reflect that they need updating on the iPhone.
    Other Potential Pertinent Info:
    The flash memory hard drive on my MacBook Air recently died (perhaps a month or two ago).  Apple had emailed me about a known issue and literally the next day, my MacBook Air crashed.  I installed a new flash memory drive and re-installed everything from a backup off of an external hard drive.  Everything seems to be working fine; it recreated accurately all of my software and data, including iPhoto and iTunes, the pictures and songs (respectively) for which are stored on that hard drive, as opposed to being on the flash memory in the MacBook Air itself.  However, I don’t recall if the start of the sync problem described herein started happening at the same time that I replaced the flash memory drive.  All I know is that the computer is working perfectly in all respects and that even as the sync is failing, it at least says that it’s doing the right things and looking in the right places (e.g., the list of albums on my iPhone matches the list of albums in iTunes, etc.).
    Settings/Status:
    MacBook Air
    OSX v. 10.9
    iPhoto ’11 v. 9.5 (902.7)
    iPhone iOS 7.0.4
    iTunes v. 11.1.3 (8)
    Summary Tab
    Backups (This Computer)
    Options
    Automatically sync when this iPhone is connected
    Sync only checked songs and videos
    Photos Tab
    Sync Photos from iPhoto (429 Photos)
    Selected albums, Events, and Faces, and automatically include (no Events)
    Albums – 9 are selected

    You need to download iTunes on your computer. iOS 6 requires the latest version of iTunes which is 10.7.

  • I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?

    I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?
    Attachments:
    try2.txt ‏2 KB
    read_array.vi ‏21 KB

    The problem is in the delimiters in your text file. By default, Read From Spreadsheet File.vi expects a tab delimited file. You can specify a delimiter (like a space), but Read From Spreadsheet File.vi has a problem with repeated delimiters: if you specify a single space as a delimiter and Read From Spreadsheet File.vi finds two spaces back-to-back, it stops reading that line. Your file (as I got it from your earlier post) is delimited by 4 spaces.
    Here are some of your choices to fix your problem.
    1. Change the source file to a tab delimited file. Your VI will then run as is.
    2. Change the source file to be delimited by a single space (rather than 4), then wire a string constant containing one space to the delimiter input of Read From Spreadsheet File.vi.
    3. Wire a string constant containing 4 spaces to the delimiter input of Read From Spreadsheet File.vi. Then your text file will run as is.
    Depending on where your text file comes from (see more comments below), I'd vote for choice 1: a tab delimited text file. It's the most common text output of spreadsheet programs.
    Comments for choices 1 and 2: Where does the text file come from? Is it automatically generated or manually generated? Will it be generated multiple times or just once? If it's manually generated or generated just once, you can use any text editor to change 4 spaces to a tab or to a single space. Note: if you want to change it to a tab delimited file, you can't enter a tab directly into a box in the search & replace dialog of many programs like notepad, but you can do a cut and paste. Before you start your search and replace (just in the text window of the editor), press tab. A tab character will be entered. Press Shift-LeftArrow (not Backspace) to highlight the tab character. Press Ctrl-X to cut the tab character. Start your search and replace (Ctrl-H in notepad in Windows 2000). Click into the Find What box. Enter four spaces. Click into the Replace With box. Press Ctrl-V to paste the tab character. And another thing: older versions of notepad don't have search and replace. Use any editor or word processor that does.

Maybe you are looking for

  • Urgent Help with 8.1.2

    I can download and install Adobe Reader 8.1.2 with no problem; however, when I try to open any PDF file, Adobe locks up and the only error I get is a Microsoft error stating that Microsoft has encountered a problem and needs to close. I have uninstal

  • File Adapter Archive File Name Pattern

    Hi All, Thanks in advance for your answers. Here is my question. I have BPEL process that reads a file, process it and archives it. The process is working fine, but the archived file has timestamp attached to the file extension. since my file already

  • Explain plan in OEM

    Is there a way to print or save of the explain plan within OEM?

  • How to develop xcelisus components using flex.

    Hi all, Is there any possibility of developing xcelsius dashboards in flex. or Is there any possibility to integrate Xcelsius and Adobe flex. pls refer the following link https://www.sdn.sap.com/irj/boc/xcelsius?rid=/library/uuid/a0f73f13-8b1c-2c10-6

  • How get the highest status

    hi, i have a internal table. may i know how to retain the record of the biggest number (nanum) and delete the smaller nanum. i sort werks charg matnr ascending nanum descending. what method i can use. before werks charg matnr nanum A001  B1     ABC