CF & Flash Streaming Server

I have a list of videos and I want the user to click on one.
This loads the Flash movie page where the movie they clicked on
loads. The code would get the video from a UIRL variable. However,
what I do not know how to do is get the CF Code to load the movie.
Does anyone know how to do this? Thanks

I know there has to be a more simple way of doing this, but
my work around was to place a flash player into my page so
Dreamweaver would do most of the coding. The name of the .flv file
is in the code twice. So I coped all of the code up to (but not
including) the first entry of the .flv file name and pasted it into
a MySQL table. Then I did the same thing for the code after the
first .flv file name, and again for the code after the second time
the .flv file name is listed. So now the code that Dreamweaver
generated should now be divided up and stored in your MySQL table
with out the .flv file name. It will be placed into the code later.
(I left the file path in the code so all I have to do is build the
code with these three data cells and the file name.)
Next I did a SQL call from my cfc to get the data from the
table:
<cfinvoke component="cfc.flashCode" method="flash1"
returnvariable="qFlash1"></cfinvoke>
<cfinvoke component="cfc.flashCode" method="flash2"
returnvariable="qFlash2"></cfinvoke>
<cfinvoke component="cfc.flashCode" method="flash3"
returnvariable="qFlash3"></cfinvoke>
Test for a url variable and assign it to a variable named
video, and if it is not defined give it a default value.
<cfif isdefined("url.message")>
<cfset video="#url.message#">
<cfelse>
<cfset video="open.flv">
</cfif>
Then where I want the flash video to be I entered this code:
<!--- This build the player code and inputs the video name
in both places--->
<cfoutput>#qFlash1.sData##video##qFlash2.sData##video##qFlash3.sData#</cfoutput>
Next is the list of .flv videos. I started with a cfc SQL
call to get the list:
<cfinvoke component="cfc.flvList" method="flvsToPlay"
returnvariable="qFlvs"></cfinvoke>
Then I entered the code to make the list with a link tag that
builds a link and passes the name of the .flv with the url
<table border="0">
<cfoutput query="qFlvs">
<tr>
<td>
<!--- Here is the link that passes the name with the url
then displays the name as a link--->
<a
href="/services/media.cfm?message=#qFlvs.name#">#qFlvs.name#</a>
</td>
</tr>
</cfoutput>
</table>
This is working as of now. Here is the flashCode.cfc code to
work with the MySQL tables.
<cfcomponent displayName="flashCode.cfc" hint="Works with
the flashCode Database">
<!--- Gets and Returns a the first storage slot in the
flashCode Database --->
<cffunction name="flash1" access="public"
returnType="query">
<cfquery name="qFlash1">
SELECT colName
FROM table
WHERE Id=1
</cfquery>
<cfreturn qFlash1>
</cffunction>
<!--- Gets and Returns a the second storage slot in the
flashCode Database --->
<cffunction name="flash2" access="public"
returnType="query">
<cfquery name="qFlash2">
SELECT colName
FROM table
WHERE Id=2
</cfquery>
<cfreturn qFlash2>
</cffunction>
<!--- Gets and Returns a the third storage slot in the
flashCode Database --->
<cffunction name="flash3" access="public"
returnType="query">
<cfquery name="qFlash3">
SELECT colName
FROM table
WHERE Id=3
</cfquery>
<cfreturn qFlash3>
</cffunction>
</cfcomponent>
Here is the flvList.cfc code to work with the MySQL tables.
<cfcomponent displayName="flvList" hint="Works with the
flvList Database">
<cffunction name="flvsToPlay" access="public"
returntype="query">
<cfquery>
SELECT name
FROM flvTableName
ORDER BY id DESC
</cfquery>
<cfreturn qFlvs>
</cffunction>
</cfcomponent>
I hope I made this easy enough to follow, and you can use it.
If some one knows of an easier way to do this I could also use it.
Thanks

Similar Messages

  • General query regarding the implementation of a Flash Streaming Server

    Hey lads,
    I'm looking at setting up an Adobe Flash Streaming Server at
    work. It will be used primarily to stream training videos across
    our Intranet - we have ~1000 users at the moment, with the capacity
    to expand to ~2000). We are looking at both filming with a camera
    and screencasting (using either
    Camtasia or Adobe
    Captivate) and then encoding to .FLV
    Camtasia can encode directly to FLV, however I'm not too sure
    of the quality, so the Adobe Flash Media Live Encoder looks like a
    good option too. For the time being we will just be concentrating
    on the screencasting though.
    The good thing is i can download a development server for
    free from Adobe which gives me complete access with just a
    restriction on the amount of users that can access the content
    (10).
    From what i can gather the (simple) way it works (and that
    I want it to work) is that you have a standard template SWF
    file containing relevant actionscript (sitting in most probably in
    a html/php/asp/ect file on the webserver), which then calls the FLV
    file from the flash server and streams the content to the clients
    PC. I assume i will pass a variable to the SWF file (the video ID i
    want), and that will then be used to call the corresponding FLV
    file.
    So effectively a YouTube website, i.e:
    watch?
    v=WjK6wNIWzts
    I just wanted to know if anyone had any general tips on how i
    should approach this? Obviously quality vs file size will be a big
    point - deciding on a standard FLV format will be a mission,
    however i do have the benefit of an internal network so can anyone
    recommend some good encoding tips? I was actually thinking of
    encoding a low quality and high quality version, but i don't think
    that's really sustainable/effective.
    There is a bit of documentation around for this, but they
    tend not to answer the basic questions. Am i heading in the right
    direction?
    Thanks for your help :)

    If you are not able to find older version of connector on Metalink then raise an SR with Oracle and give proper Business Justification for the same.

  • How to create a Playlist in flash Streaming Server

    Hi all,
            am new in the flash streaming server. I download the Flash streaming server and install it its work fine.
    I want know about the following question:
              how to stream the video using playlist?
              What is the format of the playlist?
              can i create a playlist from visual studio.Net and pass the value to the player?
    awaiting your reply,
    Thanks in advance.

    If you have bought Streaming Server License - you want to be able to create any server-side playlists as you cannot write you own customized code on Streaming Server.
    However what you can do is create client-side playlist using client-side code, place all your files in media folder of VOD and use them in your playlist. Playlist is nothing but set of plays which are queued up so you just need to issue NetStream plays with last parameter "reset" set to false - this is so that you do not reset your previous play.
    So it would be like
    ns.play("abc",0,20,true);
    ns.play("xyz",0,30,false);
    ns.play("uvw",0,20,false);

  • Playing video from a flash streaming server

    Hi I've been trying to insert a video in a flash project that is hosted on a flash media server. I put the address wich by the way is rtmp://p8bezucu.rtmphost.com/testevideo/portfolio.flv and it doesn't work, I'm pretty sure that the address is right, am I misssing something? Thanks a lot

    Have you tried dropping the .flv from the source url string? I think if the FLVPlayback component sees .flv it thinks it is a progressive download instead of a stream.

  • Re-encode and send to Flash Media Server?

    Hi all,
    I hope this is not a basic question - I'm in a bit of a loop
    with this.
    I need to do two things:
    grab a live video feed from a
    professional DV camera - the feed would be a standard BNC
    (composite) video cable + XLR mic cable or similar. I need to take
    that feed and somehow convert it to feed and broadcast live through
    Flash Interactive Streaming server (...a reliable hardware solution
    would be great!)
    I will also be receiving Windows
    Media MMS feeds from our parent company - can I re-encode live and
    send through Flash Streaming Server in real-time?
    Also - just in case it makes a difference, the camera is PAL
    - not NTSC. So far I've had no problem running tests with a camera
    connected directly via firewire.
    Thank you for any help you can offer.

    My first message got screwed up - so trying again.....
    Hi all, I hope this is not a basic question - I'm in a bit of
    a loop with this.
    I need to do two things:
    1. grab a live video feed from a professional DV camera - the
    feed would be a standard BNC (composite) video cable + XLR mic
    cable or similar. I need to take that feed and somehow convert it
    to feed and broadcast live through Flash Interactive Streaming
    server (...a reliable hardware solution would be great!)
    2. I will also be receiving Windows Media MMS feeds from our
    parent company - can I re-encode live and send through Flash
    Streaming Server in real-time?
    Also - just in case it makes a difference, the camera is PAL
    - not NTSC. So far I've had no problem running tests with a camera
    connected directly via firewire.
    Thank you for any help you can offer.

  • Will i need to have streaming server

    Hello and happy saturday,
    I have not used robohelp before, and thought I would download
    the trial. but
    just a quick question.
    when I create a robohelp application, do I need to put it on
    a streaming
    server, I am confused as to what to do when I have all
    created as, I wouldnt
    want my user to get to my page and then have to wait ages for
    it to open. I
    was going to use captive to capture me doing some things with
    somftware and
    create a small tutorial, I want to use that with robohelp.
    should I or will i need to have my application on a streaming
    server, if so
    can any one recomend some where that i can page a few dollars
    a month that
    is ok.
    best regards
    kenny

    Thanks you very much
    gratefully appreciated
    Kenny
    "johndaigle" <[email protected]> wrote in message
    news:f2ncae$sa5$[email protected]..
    > Hi, Twocans
    > Rick is right on. If I could expand a bit in case others
    are lurking with
    > similar questions. One of the great things about Adobe
    Captivate is that
    > the
    > Flash player is so common in all web browsers these
    days, most everyone
    > can
    > view them quite easily. More and more authors are using
    camcorder video to
    > illustrate real life situations to users and not just
    talking heads.
    >
    > The Flash Video format (FLV) is now supported by Adobe
    Captivate and Adobe
    > RoboHelp. This is where the Flash Streaming Server Rick
    referred to may be
    > involved. Fortunately in most cases I've not found it
    necessary. You can
    > just
    > include your Captivate movie (with or without FLV) into
    your RoboHelp
    > project
    > and publish to your webserver. If you are using FLV, you
    would want to add
    > the
    > file to the Baggage virtual folder.. If you have a bunch
    of FLV video and
    > this
    > is a major part of your project, then it might be worth
    the extra
    > investment
    > to host them on a Flash Streaming Server (your own, or a
    hosted server).
    > Meanwhile, if you'd like to read more about ways to
    include movies into
    > RoboHelp projects, check out my article on the Adobe
    Developer Center.
    >
    >
    http://www.adobe.com/devnet/captivate/articles/cp_rh_integration.html
    >
    > While, you're there, check out the many other articles
    by Rick Stone,
    > Peter
    > Grainge, Craig Clarke and Matthew Ellison.
    > The developer center is one of Adobe's best kept
    secrets. I'm surprised
    > many
    > folks simply don't know about it.
    > Thanx,
    > john
    >

  • Aggregated Adobe Captivate Video in Flash Media Server

    Hey,
    Has anyone attempted to implement a captivate video into Flash Media Server?
    I specifically need to know if an aggregated Captivate video will work in Flash Streaming Server. The reason I am not sure that it will is because there are multiple .swf files that an Aggregated video must communicate with and I wonder if that will cause any issues.
    Please let me know if you've run into any problems, if this works, or if you have any other information.
    Thanks!

    So an Aggregated Captivate Video is basically a compilation of several other Captivate Videos. To see what I mean, open up Captivate
    go to File --> New Project-->Aggregator Project.
    Choose the .swf files of published projects that you want to run together as a single video (aggregated .swf).
    Then, publish the Aggregator Video and you will generate a .swf file that plays all the ones you selected previously.
    So basically I am worried that Flash Media Server won't work because the main video file (the aggregated .swf) uses the component .swf files to play.
    Any thoughts?

  • Flash Media Server Priced to Lose?

    I would note that I recently read a report where, I believe,
    YouTube is going to the Apple platform. This I would have to
    consider as a major direction for this streaming video technology.
    Is this because the technology is better than Flash? I would have
    to say no. Well then why? In my opinion the answer is easy. The
    cost for streaming the products. The additional cost for streaming
    Quicktime or Windows video is ZERO. The cost to stream Flash is
    $4,500.00 per server. Prohibitive! The price to be hosted on one of
    Adobe's primary streaming Flash providers? $500.00 per month! The
    price to be hosted on a Windows server with Windows streaming?
    $13.30 per month. Adobe even offers a hack to the Windows Server
    software to stream Flash! In my opinion Flash is the best, most
    option rich animation software period. In my opinion streaming is
    the new technology for web sites. I would strongly suggest that
    Adobe's pricing of their streaming server software is a great big
    open door for people like Microsoft and Apple to take control of
    the streaming technology in the future. You can bet that Bill Gates
    and Steve Jobs have people working on exactly that right now. If
    that is true that YouTube/Google are going to Quicktime that on
    coming train is closer than they think.
    Right now I liken buying and learning Flash CS3 to buying a
    car and learning how to drive it only to find out later that to
    drive it out of my driveway is cost prohibitive.
    See
    Forbes
    from last year. They thought the same thing then and now YouTube is
    going to Quicktime.
    Open Source Flash Streaming server software:
    red5

    douglask1,
    > Why would they pay up to $4.500.00 per server to use
    Flash
    > when they can do it for free using Quicktime or Windows?
    If QuickTime and Microsoft do offer free streaming software,
    and if
    streaming is the true deal-breaker (not ubiquity of plug-in
    or, say,
    interactivity with traditional Flash animation), then I
    imagine Adobe would
    indeed take notice and compensate in their pricing structure.
    That's the
    volatile beauty of a free market.
    > Earlier, refering to YouTube going to Quicktime you said
    "It's
    > already going in a major direction. I would see that as
    a major
    > 'change' in direction. ;)". Well they are and I would
    bet they go
    > to streaming -vs- progressive.
    If your bet is right, I suspect we'll all see a big change,
    agreed.
    Time will tell.
    > I would further argue that the success of Flash is
    because of the
    > progressive downloads which are great for short clips.
    It's been great for long clips, too. I personally think much
    of the
    success is also due to the "one stop shop" nature of Flash
    video: no need
    for more than one plug-in. In addition, Flash offers keyed
    alpha that,
    while supported in the other video platforms, doesn't seem to
    be supported
    in their web implementations. (I could easily be wrong in
    that assessment;
    it's just that I haven't seen any QuickTime or WMV files with
    transparent or
    semi-transparent areas blended into the page in an apparently
    non-rectangular way. I haven't seen QuickTime or WMV files
    rotated or
    skewed, either.)
    > If one is interested in longer animations or videos
    progressive
    > severly restricts the amount a viewer can use the
    controls to scroll
    > forward or backward without waiting for a reload of that
    section
    Yes, that's a weakness of progressive download.
    > Progressive also allows for one to stop the video and
    grab (steal)
    > content.
    Agreed, that's arguably another weakness.
    > And, yes, server software is not cheep but Apache is
    free.
    > One could set up a server using Apache and Darwin, both
    free,
    > and stream Quicktime.
    Yes, and many do. Curiously, major motion picture studios
    seem to be
    leaning more on Flash, in spite this free approach. (That may
    change, as
    you've suggested, but it's interesting to me that Flash has
    taken so much
    market share in light of free alternatives. That suggests to
    me it's about
    more than just streaming.)
    > Flash is great! I love it! Don't take me wrong.
    No worries, douglask1, and I hope you don't take me wrong,
    either. I
    just don't see how this sort of speculation is useful on a
    tech support
    forum.
    > For anyone that wants/needs to use streaming Flash, in
    my opinion,
    > has priced themselves out of the market.
    That clearly cannot be, or there wouldn't be such a heavy
    Flash video
    market. Again, if your suspicions are are correct, that may
    change, but in
    the mean time, Flash video is enjoying a strong presence on
    the Web,
    streaming and not.
    > I guess you could use Flash and convert the videos to
    Quicktime
    > but how long do you think before good old Steve Jobs and
    his
    > team have a new version of Quicktime to compete with
    Flash CS3?
    I guess I just don't think of Flash and QuickTime as the
    analogous
    tools. Comparing those is like comparing apples to plum
    pudding. Yes,
    QuickTime content is programmable -- I've seen some really
    neat examples
    over the years -- but people barely seem to use it for that.
    Practically
    speaking, they use it for video. In the same way, PDFs are
    somewhat
    programmable, but people mainly use PDFs for "plain old"
    readable documents.
    Who knows why? Meanwhile, Flash content (clearly the heavy
    lifter by
    comparison, programming-wise) is being use all over the
    place. I honestly
    can't think of a more versatile platform: illlustrations,
    cartoons,
    PowerPoint-like presentations, MP3 players, games,
    multiplayer games,
    television output, Web applications ... and yes, Web video
    output. All from
    a single plug-in. That sometimes blows my mind (in a good
    way).
    What you're talking about are interesting topics, and
    depending on how
    things fall out, might make for some careful decision making
    on the part of
    numerous designer/developers (and the various companies
    discussed). Who
    would have thought Flash would have gotten as big as it did?
    Things change.
    Change is good. :)
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Windows Vista and Flash Media Server Streaming Problems

    My company recently started using Flash Media Server to
    stream audio and video content.
    My boss just installed Windows Vista Ultimate and now no
    streaming content will play at all. Simple Flash animations work,
    but nothing that accesses the Flash Media Server for content. I've
    uninstalled and reinstalled multiple versions of the Flash Player
    on his machine but nothing seems to work. I also tried the new
    "Reset" feature in IE that is supposed to return it to it's
    shipping state and that didn't work. I navigated to the "System 32"
    folder and ran the Flash Updater EXE. I downloaded and installed
    all of the available updates through "Windows Update".
    I also tested Flash Objects that stream video on Adobe.com
    and they don't play either. Has anyone heard of this happening or
    know what I need to do to fix it? I don't know if this is a bug in
    the Flash Player or with Windows Vista.

    This appears to be the solution:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=44&catid=184&threadid =1243464&enterthread=y

  • Create a Flash-DVD with videos on a streaming server

    Hello
    As I am new to this forum, I hope I found the best place for my question. I have rented a few GB's on a streaming server, becouse I plan to open a little website with dancing videos on it. I have Adobe premiere pro cs4 to cut my video and encore to build a dvd. Since the dvd menu is quite practical I would like to use encore to place exactly the same project on my servers. This is how far as i got: I changed the script file so that my flash files got uploaded to my streaming server. I loaded the index.html, flashdvd.swf and AuthoredContent.xml onto my webserver, but nothing works..... I know that my streamingserver uses Wowza software... could this be the problem? Do I need a Adobe Streaming Server???
    If you want to check the files, please don't hesitate to see www.dance-tv.ch/swidako'09/index.html This is the "progressive download" version of the project, but it seems to have the same problem as the one on the streaming server.
    Can anyone help please?
    Thank you
    Oliver

    A PNG sequence can be used if you will go through the Flash authoring app itself to add interactivity, for example. If not, or in either case, you can create a FLV (Flash video) file with alpha. This can be used directly with the Flash player on the web.
    Just pull the key with Keylight, and when it's done, Add the Comp to the Render Queue, set the Output Module's channels to RGB+Alpha and then pick Flash Video (FLV) as format, with one of the Flash 8 presets. The preset will instruct you in the comment field to adjust the stretch settings in the Output Module to the size specified by the preset.
    For more information, see Render and export a Composition as an FLV or F4V file in After Effects Help.

  • Audio not streaming correctly from Flash Media Server

    Our company has a Flex application (3.0.2) that is having a problem with audio dropping out in Windows 7.  The problem appears worse with a wireless connection, but it can’t be consistently reproduced there, either.  The only thing known for sure is that the problem has not been seen on any other version of Windows.
    The application thinks the audio is playing, because it is calling the appropriate event listeners triggered when the audio completes and when any audio cue points are hit.  The majority of our audio is streaming via Flash Media Server (3,0,2,201), but the problem was also seen using embedded sound effects.  In one instance, several clicks of a button triggered an error saying the sound effect could not be loaded, and then about a minute later, all the sound effects played at once and the user could then continue with the application.
    The problem has been repeated in IE 8, Firefox 3 and Chrome.

    Thanks for your details. But i need more info.
    Server:
    FMS      3.0.2 ?
    FMS installed in which platform Linux/windows? more details about it.
    Client:
    IE          7
    Flash Player version     ?
    WIndows 7
    Wireless connection - Was the client placed in poor bandwidth.
    Can you get the NetStream status info when u play the audio file.? We can check for the rebuffering happening at the client side.
    Can you run your audio file through flvCheck Tool to check if the media file is in good form. It is available at "\$Root|Flash Media Server\tools\flvcheck.exe"
    Now our intention should be to check the same media file with simpler application (since your production app is complicated) to ensure that the media streaming over 'client to server' is working fine.
    Regards,
    Janaki L

  • Flash Media Streaming Server HLS video

    Hi,
       I have Flash Media Streaming Server License and I want to learn that whether it has HLS capability? Are there any cheatsheet just spesific to Streaming Server? because every where all the information is given for all the Media Server family bu I want to learn just Streaming Server's capabilities.
      Thank you very much...

    You can find details here about each edition : http://www.adobe.com/products/flash-media-server-family/buying-guide-comparison.html

  • Flash Media Streaming Server

    Flash Media Streaming ServerがCreative Suite 4 Master Collectionに同梱されています。Flash Media Streaming Serverの設定の仕方、操作方法などCreative Suite 4 Master CollectionのAdobeの無償サポート(電話でのサポート)、4インシデント内で受けられるのでしょうか。 通常、体験版はインストール、アンインストールなどAdobeでは無償で電話でのサポートがありますが、Flash Media Streaming Serverも同様のサポートは受けられるのでしょうか。

  • How to limit streaming bandwith using Flash media streaming server

    Hello,
    We have recently designed our audio streaming player
    (designed in Flash) to stream mp3 content using FMS rather than
    progressive download. Our goal was to reduce the waste of bandwidth
    which occurs with progressive download - in cases where the player
    loads the song and only a few seconds are heard, though the entire
    song file is downloaded to the client computer which wastes
    bandwidth. We thought using FMS and streaming the mp3s using
    rtmp:// protocol would reduce our bandwidth usage.
    However this has not happened. Our bandwidth is slightly
    lower but not significantly so. Seems like FMS is also downloading
    the entire song even though a listener maybe only a few seconds
    from the beginning of the song. The bandwidth charts are
    essentially the same as compared with progressive download which
    was simply using
    http:// with the mp3 content on a web server.
    Does anyone have any suggestions of how we can make changes
    to FMS in a config file or console where we can set the streaming
    server to only download a few seconds beyond where the player is
    listening? It just seems like we are at no advantage with FMS in
    terms of decrease in bandwidth which was our major reason to go
    forth with this technology.
    Any suggestions would be greatly appreciated.
    Thanks,
    MD

    ...........ok perhaps I wasnt clear in my original post.
    I get that the 4g connection is going to use the best possible connection speed which will essentially stream the video inside the app in HD. 
    This uses a considerable amount of data.
    I'm wondering if there is an app out there that will let me control the streaming speed, throttle if you will, the speed of the connection so that i dont burn through my entire months data usage (12GB's) by watching 2 games.

  • How to secure Flash Media Streaming Server 3.5 (live stream connection)

    I have Flash Media Streaming Server 3.5 (not Interactive) running on RHEL5.5 x86_64 Linux.
    All is working well, however how do I prevent unauthorized access to connecting to the live stream and streaming content?
    How can I setup the server to require a user and password to stream live media to the server?
    Any help would be great, I am new to this product and I have been reading some documentation but I have not found a clear cut answer on how to force a username and password to connect to the server to stream live content only.
    I am using the Adobe FMS Apache install, what files need changing?
    I have the following files:
    /opt/adobe/fms/applications/live
    total 44
    -rwxr-xr-x 1 fms fms 1035 Jul 27 14:52 allowedHTMLdomains.txt
    -rwxr-xr-x 1 fms fms  992 Jul 27 14:52 allowedSWFdomains.txt
    -rwxr-xr-x 1 fms fms 1550 Jul 27 14:52 Application.xml
    -rwxr-xr-x 1 fms fms 4371 Jul 27 14:52 main.far
    -rwxr-xr-x 1 fms fms 2292 Jul 27 14:52 readme.txt
    I want to lock down a person from connecting to the server on the public internet and starting a live stream?
    Can this be done with a user name and password?

    If you are concerned about anyone starting publishing to your stream then we have security update on this. Please upgrade to 3.5.4 and now you can use FMS Authentication Add-in (used with FMLE as publisher). If you are facing problems with publisher which are not FMLE, please enable SWF Verification so that only valid SWF's connect to your FMS.
    You can find 3.5.4 update here : http://www.adobe.com/support/flashmediaserver/downloads_updaters.html
    You can find FMS Authentication Add-in on FMLE Download page: https://www.adobe.com/cfusion/entitlement/index.cfm?e=fmle3 (when you click on Agree - it will prompt for your Adobe ID - then when you reach Download page - you will get Optional Download of Authentication Add-in)

Maybe you are looking for

  • Problem in CRMD_BUS2000126

    In the CRMD_BUS2000126 transaction , i am performing an activity , in this transaction , i am providing 'Person Responsible' field  a value . After performing action ,say 'call succeefull/call unsuccessfull' the Business partner for the 'Person Respo

  • Can't Made PDF with Acrobat 9

    I just recently installed Acrobat 9 with the CS4 suite and can't make a PDF from either my scanner or MS Word. It says that my scanner can't do "Presets" and I don't see how I can change that. And Acrobat just tries for about ten minutes to make a PD

  • Iphoto transitions exporting to Quicktime

    Working in iphoto 08. "Fit slideshow to music" simply does not work, so I manually adjusted dissolves and display length to have the music and images end at roughly the same time. Exporting to Quicktime seems to ignore all of my transitions and the p

  • Does ESS business package have Recruitment in it

    Hi Experts, My Doubt is can we get Standard content of Recruitment as a part of ESS.? ( Content regards to content in Portal) what are the business packages which have Recruit standard content. is it possible to include the recruitment standard in ES

  • Java.lang.IllegalAccessException while starting MIDlet

    Hi. I am quite green to J2ME. I have developed and debbugged a large part of a J2ME application first under J2SE, as it was more comfortable. I used only the core CLDC1.1 and MIDP2.0 classes, but now, when I created a MIDlet that initializes the appl