OnCompanyChanged - What to do via B1Wizard

I'm using the B1Wizard dll for my addons & it has really made things easier. Up to now, I've only had one DB to connect to in any given add on, but now I need to know what to do when the OnCompanyChanged event triggers.
I guess I need to disconnect from the old one an connect to the new? I am using the B1Connections.diCompany object. There is some auto-generated code that does the initial connection in the Sub Main method, but I'm not sure if I need to run all of that, some of it or none.
I'm reproducing that sub, below, just for ease of reference. Can anyone tell me what needs to be done?
Public Shared Sub Main()
Dim retCode As Integer = 0
Dim connStr As String = ""
Dim diRequired As Boolean = True
'CHANGE ADDON IDENTIFIER BEFORE RELEASING TO CUSTOMER (Solution Identifier)
Dim addOnIdentifierStr As String = ""
If (System.Environment.GetCommandLineArgs().Length = 1) Then
connStr = B1Connections.connStr
Else
connStr = System.Environment.GetCommandLineArgs().GetValue(1).ToString()
End If
Try
'INIT CONNECTIONS
retCode = B1Connections.Init(connStr, addOnIdentifierStr, diRequired)
'CONNECTION FAILED
If (retCode <> 0) Then
System.Windows.Forms.MessageBox.Show("ERROR - Connection failed: " + B1Connections.diCompany.GetLastErrorDescription())
Return
End If
'CREATE DB
If (diRequired = True) Then
Dim addOnDb As DMCSBOAddOnPQS_Db = New DMCSBOAddOnPQS_Db
addOnDb.Add(B1Connections.diCompany)
End If
'CREATE ADD-ON
Dim addOn As DMCSBOAddOnPQS = New DMCSBOAddOnPQS
System.Windows.Forms.Application.Run()
Catch com_err As System.Runtime.InteropServices.COMException
'HANDLE ANY COMException HERE
System.Windows.Forms.MessageBox.Show("ERROR - Connection failed: " + com_err.Message)
End Try
End Sub
Thanks

I disconnect from the old session this way. The reconnection occurs when the add on is reloaded in the new session.
Private Sub SBO_Application_AppEvent(ByVal EventType As SAPbouiCOM.BoAppEventTypes) Handles UIAPP.AppEvent
            ' the following are the events sent by the application
            ' (Ignore aet_ServerTermination)
            ' in order to implement your own code upon each of the events
            ' place you code instead of the matching message box statement
            Select Case EventType
                Case SAPbouiCOM.BoAppEventTypes.aet_ShutDown
                    'SBO_Application.MessageBox("A Shut Down Event has been caught" & _
                    '    Environment.NewLine() & "Terminating Add On...")
                    ' Take care of terminating your AddOn application
                    System.Windows.Forms.Application.Exit()
                Case SAPbouiCOM.BoAppEventTypes.aet_CompanyChanged
                    'SBO_Application.MessageBox("A Company Change Event has been caught" & _
                    '    Environment.NewLine() & "Terminating Add On...")
                    System.Windows.Forms.Application.Exit()
                    ' Check the new company name, if your add on was not meant for
                    ' the new company terminate your AddOn
                    '    If SBO_Application.Company.Name Is Not "Company1" then
                    '         Close
                    '    End If
                Case SAPbouiCOM.BoAppEventTypes.aet_LanguageChanged
                    'SBO_Application.MessageBox("A Languge Change Event has been caught")
            End Select
        End Sub

Similar Messages

  • What procedures in BRF+ workbench and what in ABAP via coding

    Hello Gurus ,
    I am new in BRF+ development. I have a query -what procedures should be done in BRF+ workbench and what in ABAP via coding.
    If we create all object in BRF+ workbench  and  use ABAP for only invoking the function , passing parameters and displaying result .
    Is  there be any limitation/ issues for extending BRF+ functionalities later using this approach.
    Thanks in advance.
    Best Regards,
    PS

    Moderator message -
    When closing old threads, there is no need to add a comment. Adding a pasted answer like "thanks a lot" only brings old threads to the top of the forum list and pushes current ones down. If you do add a comment, please indicate just how the problem was resolved.

  • Contract not what was agreed via email and phone

    Hi all, new to this forum so I'm hoping people here will be friendly and helpful .
    I recently (Oct '10) changed my phone back to BT and got a package deal along with my existing BB and Vision services.
    Spoke to a helpful guy called Tim Chappell who organised everything via email and phone.
    I have had my recent quarterly bill it is not what we agreed.  I am paperless billing and I cannot see what package deal I am on until my quarterly bill comes through. The first bill was very confusing with lots of cancellations for the existing package and then lots of price shuffling so I could only really see what I was paying on my second quarterly bill.
    I have tried and tried in vain to contact Tim with no response. Live Chat and Cancellations have emailed him to contact me urgently but still nothing.
    All the agreement is in the emails I received/sent so I have proof of the package he did, but what it says on my billing is different so it's my word against theirs until Tim responds to me.
    Sorry for the long rant, can anyone help solve this please?
    Solved!
    Go to Solution.

    DS wrote:
    Aye, although me no work for BT, I still like to wear one when I'm posting - makes me feel like one of the team!
    Check your exchange or major service outagesIf someone has given a helpful answer, please click on their Ratings star on the left-hand side. ***

  • How to determine host status in a task via python api

    Hello all,
    using the python api I am having some issues trying to determine the status of a host within a task. For example I have a job, with one task and 10 hosts associated with that task. Eight hosts finish the task, 2 fail. However via the api I can only seem to determine the status of the job and the task. What I want is to be able to generate a report that basically matches what you see via the gui (ie 8 hosts ok, 2 hosts failed). The data structure OnStageTaskData gives me a status and a list of hosts, but not a status for each host. (Note I am not using any of the depricated functions/data structures). Currently my code looks like (minus the api init, etc)...
    # list all the jobs for last week
    joblist = api.GetJobs()
    for job in joblist:
    # if the job occured in the last week
    if job.c_time > reportstarttime:
    print "\nJob name %s Time %s " %(job.name, time.ctime(job.c_time))
    try:
    jobdetails = api.GetOnStageJob(job.id)
    except COsApiJobNotFoundException:
    print "Can't find job %s details" %job.name
    continue
    for tasks in jobdetails.job_data.tasks:
    for hostid in tasks.task_data.target:
    try:
    hostinfo = api.GetHostGroup(hostid)
    except OsApiHostNotFoundException:
    print "Can't find host details %s" %tasks.task_data.name
    print "Hostname %s Status %s" %(hostinfo.name, tasks.status)
    which generates output like...
    Job name chg233146-sol9 Time Sun Jan 13 10:31:42 2008
    Hostname tacnomsrv02 Status Failed
    Hostname tacpthsrv01 Status Failed
    anyone have another way to doing this or suggestions? Or is this kind of info not available via the api? Thank you.

    Hi ConnectSolutions,
    As you correctly pointed out, there is some bug in our code
    that keeps the room active and you dont receive any events or
    notification if you are entering as guest and waiting and the host
    arrives. Also, since you havent entered yet i.e your role is still
    5 i.e. UserRoles.LOBBY , you can't access any of the UserManager's
    collections and will get a length of 0 always. We will be fixing
    this with priority .
    But you can get around the problem as of now, by having a
    small shared model of yours ( any collectionNode or sharedModel
    will do) where you create a node and publish a message on it from
    the Owner's side whenever the owner/host enters to notify everyone
    that he has entered. Just remember to set the accessmodel of
    NodeConfiguration of node on which you are publishing to LOBBY ie.
    role = 5 , and make the publishModel = 100 so that only owners can
    publish on this node. In this way , any users waiting will be
    receiving this message and will know the host has arrived. If you
    can't get this sharedModel concept to work, let me know. I will try
    to run on my side.
    And as of our side regarding actual fix, we will fix this use
    case and put in the next drop of SDK and also update in forum about
    it.
    On the host side though, he is always notified when he enters
    if there are pending users knocking to enter. See the KnockingQueue
    example in case you want to explore that.
    Thanks
    Hironmay Basu

  • I want to read a SD card, but its not working. What need i to do?

    I have a 8GB SD card, and i want that my macbook-pro read this card, i put the card into my MBP, but its giving no response, and it doing nothing?
    Does somebody know what I can do? (Im using MAC os LION)

    hey, thanks for the reply but that isn't the issue. my issue is that the animation doesn't stay within the div container. I tried what you said via chrome console but that's more of a hack way of doing it. I should be able to contain the animation within the div that its being wrapped with but for some reason it is jumping outside the div container.
    Does that make sense? Would be awesome if there was a walkthrough on how the edge animation settings worked. for example the code below. would i need to adjust something below for it to contstrain within the container?
        scaleToFit: "both",
        centerStage: "both",
        minW: "320",
        maxW: "1200",
        width: "830",
        height: "430"
    }, {"dom":{}}, {"style":{"${symbolSelector}":{"isStage":"true","rect":["320px","1200px","830px","430px"] ,"fill":["rgba(255,255,255,1)"]}},"dom":{}});

  • Templates other than what comes with iWeb

    I want to use a template other than what is provided via iweb, is this possible?

    Yea you can. Open up your iDisk (if you don't keep it synchronized on your desktop, go to the Go menu in Finder, then iDisk, then Mount My iDisk). In your iDisk, you can put your site in the Sites folder, but not the Web folder; the Web folder is reserved only for iWeb and other Apple apps.
    Any sites you put in your iDisk/Sites folder will live at homepage.mac.com/username/site. You won't be able to use .Mac's domain redirection.

  • HT204291 is my iphone 4 and ipad compatible to mirror via apple tv ?

    i have an iphone 4 and an ipod(1) but i cant view whats on either via my apple tv, i can play music, youtube etc and view photo album but cant view whats on the screens of my other devices, is there anyway of mirroring or are my devices not compatible ?

    iPhone 4S or newer and iPad 2 or newer are required for mirroring the display.
    Standard Airplay in compatible apps of pre-rendered video/audio will work.
    AC

  • What happened to English definitions for Japanese words?

    I have an iPhone 4S.  When I was using iOS 5.1.1 I was able to hold my finger on a Japanese word in an email message and buttons would pop up, one of which said "define."  When I touched that button I would see the definition in English as well as in Japanese, and the correct pronounciation.  Now that I have upgraded to iOS 6 I can only see the definition and pronounciation in Japanese, the English definition no longer appears.  Do I need to change a setting to get the English defnitions turned back on?  What happened to this incredibly useful feature??

    I think it is gone.  Tell Apple what you want via
    http://www.apple.com/feedback

  • You Can't Calculate Totals on that!...SO #@!%#! WHAT, YOU GREAT PILE OF !@#

    In Access you have an asterix which represents every field in the table. Useful if you want to see all the data in a table for a single record. I've done it a million times before.
    So why is it telling me that I can't calculate totals on the *, so I should remove it from the query grid and replace it with the fields I want and calculate totals then.
    I DON'T WANT TO CALCULATE ANY #!@%#@!! TOTALS!!
    I AM PUTTING THE FIELDS I #@!%$#! WANT - I WANT ALL OF THEM!! I JUST DON'T WANT TO DOUBLE CLICK 30 TIMES WHEN ONCE WILL DO!
    It's driving me insane because I'm going through hundreds of Oracle tables and it takes so long to browse to the record I'm looking for and it should work to use the asterix, I've done it so many times before.
    How do I override this utterly unhelpful behaviour? Am I stuck in some sort of "Queries will only calculate Totals! mode that I don't know about?
    I know, I know, Access is a micro$loth invention, not Oracle, but we have to use an ODBC link to the SQL database via Acces and it's going to kill me.
    Unless I slam my PC into my neighbour's head first!
    Any help greatly apprciated.
    Sorry for the rant!
    Cheers
    IsNull

    IsNull wrote:
    Cheers,
    I am serious and I know this isn't an Access site, and I know there are differences between SQL in Access and SQL in Oracle, and I'm trying to get funding to do some proper SQL and VBA training, but if anyone can help I'd be very grateful.What? with the funding? Sorry, there's a credit crisis doncha know! ;)
    In the Access/ODBC/Oracle query design view you can create a query by linking fields in tables and then choosing fields you want to output in the query results. At the top of each table is an asterix which uses all the fields from the entire table in a query and outputs the data from all the fields. I'm looking through various tables to find useful fields and using one particular record as my example so I get consistent data output.
    Now, I can look in the actual linked tables and see what they contain, but I want the data for a single record, not the general table contents and there are hundreds of thousands of records. So I'm using the query design to search for the data for a single record and using only one table per query. But if I double click on the asterix to indicate "Use All Fields from this Tabel" I get the "But you can't calculate totals on that!" message. If I add them all individually I get an "Illegal use of LONG data".I once looked at Access, many moons ago. Didn't like it.
    However, from what you describe, it would seem that you need to somehow join the tables as you're doing, but also apply some restrictions on the data so that you're not trying to retieve all the rows back. As for it's error complaining about the totals, I would expect something like you've got an aggregate function in there and things aren't being grouped together. Either that or there's some "setting" somewhere that automatically tries to total things, which hopefully you could turn off. The best thing is to take the error message/number and lookup what that means via some website/documentation that lists Access errors and how to resolve them.
    You'll be lucky to find anyone here who will know (or care about) Access.

  • What does Java do and is it necessary?

    I'm looking for a little education here.  A How To article on disabling Java in the recent Mac Life indicates Java can be an malware vector to OS X.  I am looking for a brief understanding of what Java is and what it does, and more importantly is it really necessary to be enabled?  I understand it is an interpretive programming language that runs graphics on websites.  Is that all it is/does?  Where does java Script fit in?  Lastly, by disabling it on my Mac and in my browsers, will websites just not work?
    BTW, I use Intego's anti-malware suite. 
    Thank you

    I'm looking for a little education here.  A How To article on disabling Java in the recent Mac Life indicates Java can be an malware vector to OS X.  I am looking for a brief understanding of what Java is and what it does, and more importantly is it really necessary to be enabled?
    1st, if you have installed all the latest Mac OS X Lion (or Snow Leopard, or Leopard) updates, the known Java flaw has been fixed.  If you have not applied all the updates, you should do it as soon as possible.
    You can disable it, either just in your browser or entirelly if you like.  If something doesn't run, it will ask for Java to be installed and you will know that you might need it for that 3rd party application.
    The Flashback malware gained access via the web browser Java plug-in, so just disabling that is also good enough, but also redundent if you have applied all the latest Mac OS X updates.
    I understand it is an interpretive programming language that runs graphics on websites. Is that all it is/does?
    Java is a complete programming environment developed by Sun Microsystems (Sun is now owned by Oracle).
    It is commonly used to write applications that run on multiple platforms with little or no changes.  This is why it is popular as most Java developers do not need to worry if the system is Mac, Windows, Unix, etc...  It is also used in some Smart Phones, Set Top TV boxes, dedicated black box electronics, etc...
    On the Mac some (but not very many) web sites use Java for complex web site interactions, such as a game you run from a web site.  However, this is very rare and you are unlikely to run into one of these web sites, so disabling your browser's Java plug-in is generally not a problem.
    Where does java Script fit in?
    JavaScript is a totally different language and programming environment that was created about the time Java was the "Cool Kid" in town, so the JavaScript developers stole the name.  They are not really related.
    One of the reasons very few web sites depend on Java is because they can do most of what they need via straight HTML or HTML and JavaScript.
    So you DO WANT JavaScript enabled, or that will impact your web browsing experience.
    Lastly, by disabling it on my Mac and in my browsers, will websites just not work?
    Again, few web sites use Java, so disabling the Java plug-in within your browser's preferences is generally an OK thing to do.
    However, you may have some applications written in Java that you use on yoru Mac where disabling Java via the Applications -> Utilities -> Java Preferences may (or may not) affect running some apps on your Mac.  For example, if you use CrashPlan (backup utility) it is written in Java.
    But so far, Java based applications have not been a malware problem.  Only the Java browser plug-in.

  • Since I have learned my late 2007 Macbook 3,1 will not support Mountain Lion, what is the best way to upgrade from 10.6.8 to 10.7 Lion?

    Can I download the latest version of Lion from Apple. I have heard that if I call Apple Sales support I can still get Lion from Apple. Lastly, what about Lion via the Thumb USB?

    Welcome to the Apple Support Communities
    Correct. Call Apple to purchase OS X Lion > http://support.apple.com/kb/HE57 If you want the OS X Lion USB Thumb Drive, you will have to search it in Amazon or eBay. Make sure that the USB drive is white with a grey Apple logo.
    Then, make a backup of your data before upgrading, and check that your applications are compatible > http://www.roaringapps.com After checking everything, you can upgrade to OS X Lion

  • What to do after MacPro hangs

    Hi,
    I'm getting frequent (1 per week) hangs on my MacPro 2.8GHz Octo. This has just started happening in the last month, previously the machine has been perfect - superb even. It's got an 8800 with 10Gb RAM, always update the OS (currently 10.5.4). What happens is the screen just freezes, and the keyboard and mouse don't appear to repond.
    My question is what do I do in order to work out what's happening and try and solve the problem?
    To date I have tried plugging in different keyboards (no result), ssh'ing in from another machine - I can do this but I don't really know what to do via top to see what the issue is, other than it looks OK (84% idle). However if I issue reboot or shutdown -h now I get 'shutdown: WARNING: couldn't lock kext manager for reboot: (ipc/send) invalid destination port' - see below from dump of ssh issued shutdown command:
    Shutdown NOW!
    * FINAL System shutdown message from [email protected] *
    System going down IMMEDIATELY
    shutdown: WARNING: couldn't lock kext manager for reboot: (ipc/send) invalid destination port
    System shutdown time has arrived
    ... and nothing happens.
    The only thing I can do is hold the power button on the front until it reboots. I've run disk utility on reboot but it never finds any issues.
    Any help would be greatly appreciated,
    many thanks,
    ROg.

    When it freezes, you need to boot from some other drive, emergency partition only need be 20GB.
    I delete the cache folders (not in home though) as well as extensions.mkext. Turn off journaling, run Disk Warrior, and when "Okay" do a Safe Boot.
    But you also want a bootable backup clone probably along with possibly TimeMachine.
    Don't rely on Disk Utility Verify from same drive, or did you boot from another drive to run? my experience is DU not finding IS a problem, it doesn't do as good a job, and hasn't but Alosft and MicroMat out of business. And you can't ask it to scan for weak or bad sectors and try to map out. You also don't get the power of Windows's sfc /scannow (system file checker) that can find corrupt and damaged files.
    And that is just to deal with side effects.
    The cause is as you tried, often USB cables and devices, 'noise' or something.
    Use SuperDuper to clone your drive. See how that works. Or do a fresh install and then later import your home account, or create a new test account to rule out any problem there.
    This just has to be the week - I am seeing a couple similar reports every day.

  • Update the logon date user via a function

    Hi,
    I use a web application (webdynpro ABAP) what is connected via RFC at a R3 system. At each connexion of the user, I must update this logon date on R3 system. What is the used function or BAPI to update the user logon date?
    Thansk in advance.
    Xavier.

    Hi,
    I suggest using Administrator account to change the "Due Date" for testing.
    If Administrator can edit it, it seems the permission issue. I suggest re-granting the permissions to the user.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Converting RAW to DNG! What are the advantages / disadvantages?

    I have Canon cameras and shoot RAW, but the question itself is surely also valid for Nikon, Sony or other brand-shooters.
    When importing my pictures to Lightroom, I could convert them to DNG but didn't do this up to now, because I do not know what I loose. I suppose that I loose the ability to process my files with DPP, but I will not do that anyhow. I can appreciate the advantage of having the file in an open documented format, where even I could easily write a reader for it. So the answer should not be what I can easily find in the Adobe introduction into DNG. I have also the DNG specification in front of me, and I can read it, because I once wrote a program to read TIFF files. I understand that I could add the original RAW image stream, but I do not want using up the space wasted for this. I know, that all development parameters used for the specific RAW image can be written with the image file instead of having those stored in a database or a side-car-file.
    But what I did not find until now a technical explanation about what happens during the convert. Who can enlighten me? Where do I find the missing technical explanations?
    Thanks in advance!
    Lucien.

    Feierwoon wrote:
    That wasn't the question... .
    Based on the title of the thread and your initial post, it seems like your question had a lot of
    "What are the advantages / disadvantages?"
    in it, and only a little
    "What happens at a technical level when converting"
    But if you want more detailed info about conversion, and you have the aptitude to understand, I recommend doing what Lr5user-pt recommended:
    Download the DNG SDK and dig in - all your questions will be answered (and if not, you can also ask DNG-specific technical questions in the DNG forum).
    As far as my "sources" regarding the technical summary I presented, they are many and varied, none of which are the DNG SDK. In other words, my knowledge is based more on experience over the years - I don't know all the details under the hood..
    Some experiments to consider doing:
    * exiftool (-X) a proprietary raw file, then convert to DNG and repeat.
    * open a proprietary raw in a DNG-supporting software of your choice and inspect metadata, then open the converted DNG in the same software and re-evaluate. Compare to proprietary raw opened in manufacturer's software, and what you see via exiftool.
    Tom Hogarty (Lightroom project manager) and others who know have said: "DNG converter discards no metadata", and I believe them, but haven't verified for myself. Yet once proprietary metadata is in the DNG, most (all?) software will no longer decode it. A prime example is focus points - presumably they're there, but once converted, focus point feature is no longer supported. The amount of work required to support converted focus point data is unknown (to me), but as far as I know, no software has ventured to do it. If you want focus points, don't convert.
    If you want the truth, I think for most people it's "not wise" to convert to DNG. Why? because unless you already know why you are converting (and need to convert to satisfy your goals), or you already know why you must NOT convert (e.g. so you can open the files in mfr.software, and see focus points..) the pros and cons are likely to be a wash, and now you have twice the number of raw files, unless you discard your originals, which would be REALLY "not wise", in my opinion. If you find the notion of "openly documented format" sufficiently compelling, then, ya know, more power to ya (I don't judge..), but there is no guarantee that DNG will outlast NEF (or..), and if it does, there will be ample opportunity to convert before you're left in the cold, unless you're stuck in a cave for a few decades, or are kryogenically frozen.. True, if all companies die, you may be able to write your own DNG converter (/reader), given the DNG documentation, but FWIW, NEF is also thoroughly documented (document is in freely downloadable SDK), and reverse engineerable (that's what Adobe and Phil Harvey does), so you could also write your own NEF converter, so not really a very compelling argument, not this year anyway - ask me again in a few decades..
    If filesize is a main draw, then be sure NOT to save the hi-rez previews in your DNGs, otherwise you've just lost most or all of the filesize advantage. Also, you can strip previews from some proprietary raws (e.g. NEFs), to reduce filesize.
    Personally, if DNG supported sidecars, I would be more likely to convert, because file-management/backup is only an issue if you "forget" about xmp sidecars (and I do not forget), and I'd rather have my xmp in separate ready-to-read xml text files, rather than embedded in binary files, but hey, that's me..
    PS - I always use/encourage-others-to-use DNG when distributing raws to others for use in Adobe software, so xmp is not separate and can not get lost.
    PPS - proprietary raws and dngs are both just glorified tiff files - raw data, previews, and metadata..
    Don't get me wrong: I am NOT anti-DNG, and in fact - just the opposite: I am PRO dng, it's just that I wouldn't (don't) convert my own raws to DNG at this point. If you find the reasons to convert now are sufficiently compelling, you have my complete support and cooperation, fwiw..
    Cheers,
    Rob

  • "What U Hear" Setup Help Needed

    Hello. For a long time now, I have been recording media streams online using a third party software which captures whatever is on the screen. However, I haven't been able to record the audio.
    But today I found out that my soundcard (Creative X-Fi Gamer) has 'What U Hear'. As I understand it, this allows me to record whatever comes out of my speakers. The program I use for recording apparently supports this.
    I enabled it in the Windows Recording tab, but that's as far as I've gotten. I have tried my third party program, and also the default recording on Windows 7. I have tried playing media streams from online, as well as music through Winamp and Windows Media Player. There is still no sound being recorded. I have the latest drivers.
    So I am hoping someone can help me set it up. Is there anything else I should be doing? My speakers are plugged into the green 'line out' socket on the soundcard. Should they be plugged in somewhere else?
    Thanks in advance

    Hmm. I'm wondering if this is a common problem and just unnoticed or very rare (I found it a few times via Google search, but no solutions).
    So could you, or somebody else, do me a favour
    In Windows Vista:
    - Turn off "What you hear" via Mixer / Windows Settings
    - Set Microphone Input to 00%
    - Enable Microphone Boost
    - Set Windows Sound Output Volume to 00% (if you got boxes, lower the volume, of course)
    - If you got a Mic: Mute it via Hardware Switch or just make sure it doesn't record anything or unplug it from the sound-card
    - Start a Media Player and play loud music (set Volume to 00% here as well)
    - Start Windows "Audio Recorder" (under Accessories)
    - Record for ~ 0 seconds
    - Save the File
    - turn off the music
    - Play the recorded file
    If you hear something, then you got the same problem. If you don't hear anything at all, well, I am alone here in the forum with this bug

Maybe you are looking for

  • How to figure out which material documents should be deleted?

    Hi, I am creating a report that sums up material movement. But I meet a problem about reversal material documents. In my report, I collect all the documents and delete all the document with field SMBLN is not empty. Code is like below. MOVE it_mseg[]

  • Wireless connection on x41 - can't get it to work

    Hello I have just bought a used x41 laptop - it came with no OS, so i have put XP on and am currently trying to set up all the drivers. it's going ok, apart from i cannot get the wirless connection to work. I stil have a yellow exclamation in the Dev

  • Deletion of Purchase Requisition when PM order is TECO

    When a Purchase Requisition (PR) is created from PM order using control key PM03, after approval of PR, Purchase Order (PO) is issued. After completion of maintenance job and acquiring services or material procured against PR which has been created f

  • Changing theme (look & feel) in ICAN505 Enterprise designer

    Hello I'm running different Enterprise designers against different repositories and I would like the GUI to appear in different "styles", to make it easier for me to recognise what ED/repository I'm running against. I have identified the possibility

  • Which Apache-Tomcat is better?warp or jk?

    We are using apache 1.3.23+ tomcat 4.0.4/4.1.17. It seem to me mod_webapp is not stable.