Message Manager "Please Wait" Message.

Hi Experts,
referring to "Display PDF in Popup / How to do this?
I'm developing a WebDynpro where the user can convert its output into PDF and display/download it. The Converting Process is started via a button. Once the user klicks the button, there's quite a lot of stuff happening in the background, It'll take about 10-15secs. I'm afraid that some users might start hammering on F5 once nothing appears on screen after 3 secs or so, thus I want to display a message "Please Wait until..." etc once the user clicks on that button. I thought I could just do that at the beginning of my Event Handler of the Button. But the message is displayed as recently as the complete method has run through...
How can I immediately display a message once a user klicks on that button?
best regards,
Lukas

Hi,
You can write your message handling code before your actual code, i.e. at starting, first it will execute and display message.
OR
You better display popup confirmation message saying that "Please wait 15 Sec.. Processing" Like that.
Check Below code..
data lo_window_manager type ref to if_wd_window_manager.
  data lo_api_component  type ref to if_wd_component.
  data lo_window         type ref to if_wd_window.
  data lo_view_controller type ref to if_wd_view_controller.
  data :  lt_text TYPE string_table,
          ls_text TYPE string.
  ls_text = ' Please WAit 15 Sec...Processing..'.
  INSERT ls_text INTO TABLE lt_text.
Get Window manager
  lo_api_component  = wd_comp_controller->wd_get_api( ).
  lo_window_manager = lo_api_component->get_window_manager( ).
  lo_window = lo_window_manager->create_popup_to_confirm( text = lt_text
  button_kind     = if_wd_window=>CO_BUTTONS_OK
  message_type    = if_wd_window=>CO_MSG_TYPE_WARNING
  window_title    = 'Information to Confirm...'
  window_position = if_wd_window=>co_center ).
  lo_view_controller = wd_this->wd_get_api( ).
creating ok button
  lo_window->subscribe_to_button_event(
             button = if_wd_window=>co_button_ok
             action_name = 'OK'          // Createonce action of name OK.
             action_view = lo_view_controller
             is_default_button = abap_false ).
Set the height and width here
  lo_window->set_window_size( width = '40%' height = '5%' ).
  lo_window->open( ).
Cheers,
Kris.

Similar Messages

  • OVM manager 3.0.3.546 locked up with message "Please wait while system is initializing"

    Hi ,
    I am receiving this message on any actions on OVM manager.
    and AdminServer.log with this message
    ####<Aug 16, 2013 9:26:16 AM EST> <Warning> <com.oracle.ovm.mgr.model.ModelEngine> <serverneame> <AdminServer> <Odof Tcp Client Thread: /127.0.0.1:54321/101> <<anonymous>> <> <0000K24Ij5W5yWNLuIP5iX1I3MCB000002> <1376609176392> <BEA-000000> <Object 'null<500739>' got an unexpected rollback Lifecycle State.DELETING>
    As soon as this message occur the discovery process is stopped and OVM manager lock up with the "Please wait while system is initializing" message.
    any ideal?

    Perform the following procedure to recover the management functionality OVM manager.
    > 1) stop ovmm service
    > # service ovmm stop
    > 2) backup OVM3DB database
    > # ovm_upgrade.sh --export --dbuser=ovs --dbpass=<ovspassword> --dbhost=<db host> --dbport=<db port> --dbsid=<sid/schema>
    > 2) delete the database OVM3DB
    > # ovm_upgrade.sh --deletedb --dbuser=ovs --dbpass=<ovspassword> --dbhost=<db host> --dbport=<db port> --dbsid=<sid/schema>
    > 3) Restart ovmm service
    > # service ovmm start
    > 4) Login into the manager and re-discover your Servers and  Repositories.
    Back to business

  • OT: How can I manage a "Please Wait" message with this scenario?

    I have a page which allows you to paste in a potentially
    large list of zip
    codes.
    When you submit this page, the list is de-duped, and then
    checked against a
    table of ~22,000 zips for matches.
    Where and how in this process could I bring up a "Please
    Wait" message while
    the transaction is being completed?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================

    > you could also just use the PVII script on body load to
    show the
    > appropriate div - you could change the name in the" with
    the appropriate
    > switch statement.
    Ew. Double ew.
    I'm going to let it ride as is, until someone complains.
    Thanks for the
    neurons, though. Do you need them back? Or I should say, "you
    DO need them
    back"!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "crash" <[email protected]> wrote in message
    news:[email protected]...
    > you could also just use the PVII script on body load to
    show the
    > appropriate div - you could change the name in the" with
    the appropriate
    > switch statement.
    >
    > It's my belief that some of your html elements will be
    able to show while
    > others are still being built. I guess I could be wrong
    on this, but I
    > think practically I'm right (ie, you can see elements on
    my page building
    > before the page is completely done).
    >
    > HTH,
    >
    > Jon
    >
    > "crash" <[email protected]> wrote in message
    > news:[email protected]...
    >> summation:
    >> In your SQL, at the bottom of the statement, you
    should be able to put a
    >> javascript call that will re-structure the
    visibility of the elements
    >> according to the variabels returned by the SQL. One
    page, reloaded once.
    >>
    >> My switch statement got a little convoluted. You
    should be able to just
    >> set one variable, or set one number and go from
    there (ie, if $v=3, hide
    >> other two), but i've not had any coffee or caffinne
    yet.
    >>
    >>
    ===========================================================
    >> Is the code in the third message on this post from
    the originating page?
    >> I took that it was, that it had a form, that form
    reloaded the same page?
    >>
    >> If so, you should be able to put a switch in there:
    >>
    >> switch($stage){
    >> case "upload":
    >> #this should be once the form has been completed
    >> $status=1; //status equal one, two or threee is one
    method you could
    >> use.
    >> break;
    >> case "complete"://you could aalso set a variable for
    each section, i
    >> think the one above is better, but this one made
    more sense right now,
    >> lol.
    >> #show the results,
    >> $resultsState="show";
    >> $formState="hide";
    >> $waitState="hide";
    >> break;
    >> case default:
    >> #empty, or first state, show the form to upload the
    data
    >> $live="form";
    >> break;
    >> }
    >>
    >> then, below:
    >>
    >> <div id="form" class="<?php echo $formState
    ?>">
    >> <form>
    >> whatever
    >> </form>
    >> </div>
    >>
    >> <div id="wait" class="<?php echo $waitState
    ?>">
    >> <img src="img/wait.gif" />
    >> </div>
    >>
    >> <div id="results" class="<?php echo
    $resultsState ?>">
    >> <h1>Results</h1>
    >> <p>stuff here</p>
    >> </div>
    >>
    >>
    >>
    >>
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>>I can do that. I'm worried about passing the zips
    array (which has been
    >>>exploded from the input) to the process page. How
    would I best do that?
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "crash" <[email protected]> wrote in
    message
    >>> news:[email protected]...
    >>>> THis is how I see the process, I guess I
    might not be following you:
    >>>>
    >>>> 1. User goes to form page, to submit zips.
    >>>> 2. User completes form, hits upload
    >>>> 3. Page refreshes itself, publishes please
    wait message (ie, could you
    >>>> not put an if [form submit] is true, echo
    this image, then begin the
    >>>> sql calculations)
    >>>> 4. As the calculations are finished, toggle
    visibility of image off,
    >>>> toggle div with results on.
    >>>>
    >>>> If that doesn't work, sorry, I completely
    misunderstand and will leave
    >>>> you be.
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> But then there's no opportunity to slam
    the waiting message up
    >>>>> there....
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "crash" <[email protected]>
    wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> couldn't you just have it reload the
    same page (isn't it anyway?).
    >>>>>>
    >>>>>>
    >>>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>> Thanks, Joe. This troubles my
    mind, either way!
    >>>>>>>
    >>>>>>> --
    >>>>>>> Murray --- ICQ 71997575
    >>>>>>> Adobe Community Expert
    >>>>>>> (If you *MUST* email me, don't
    LAUGH when you do so!)
    >>>>>>> ==================
    >>>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM)
    >>>>>>> Technotes
    >>>>>>> ==================
    >>>>>>>
    >>>>>>>
    >>>>>>> "Joe Makowiec"
    <[email protected]> wrote in message
    >>>>>>>
    news:[email protected]...
    >>>>>>>> On 23 Oct 2006 in
    macromedia.dreamweaver.appdev, Murray *ACE*
    >>>>>>>> wrote:
    >>>>>>>>
    >>>>>>>>> LOL - OK, see, I was
    hoping to avoid breaking it into separate
    >>>>>>>>> pages
    >>>>>>>>> like that, but that way
    looks like it'll work....
    >>>>>>>>
    >>>>>>>> You can just re-call the
    page which processes the form data, and
    >>>>>>>> check
    >>>>>>>> whether or not the
    processing has been done:
    >>>>>>>>
    >>>>>>>> <?php
    >>>>>>>> if ($dataWasProcessed) {
    >>>>>>>> echo '<h1>Thank you
    for using Murray's Data Processing</h1>';
    >>>>>>>> } else {
    >>>>>>>> // Code to process form goes
    here
    >>>>>>>> // Code to re-call page with
    $dataWasProcessed set goes here
    >>>>>>>> // How to set that var left
    as an exercise for the reader
    >>>>>>>> }
    >>>>>>>>
    >>>>>>>> Personally, I find that it
    troubles my mind less to do such things
    >>>>>>>> in
    >>>>>>>> separate files.
    >>>>>>>>
    >>>>>>>> --
    >>>>>>>> Joe Makowiec
    >>>>>>>>
    http://makowiec.net/
    >>>>>>>> Email:
    http://makowiec.net/email.php
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • "Please Wait" message

    Good afternoon,
    I have setup the javascript to display a clock icon with "...Working..." displayed while long processes are running when a button is pressed. What I need to do now is to define a link in a report column, initializing values from columns within the report and still display that "Please Wait" icon & message.
    How do I get the "Please Wait" to work and still pass multiple parameters to my linked page that are values from the report, not within variables in the page?
    Thanks,
    Don.

    Good morning,
    I have managed to figure this out for myself. Here is the solution (in case someone else wants to do this):
    1. Creating the whole "PLEASE_WAIT" process using the following information that I found here in the APEX Forum:
    A.) Add this text to the Page HTML Header (or create a shortcut like I did):
    <script type="text/javascript">
    <!--
    function html_Submit_Progress(pThis){
    $x_Show('AjaxLoading');
    window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    doSubmit('SUBMIT');
    function submit_HideAll(pThis){
    $x_Hide('wwvFlowForm');
    doSubmit('SUBMIT');
    function submit_ButtonRegion(pThis){
    $x_Hide('button_region');
    doSubmit('SUBMIT');
    //-->
    </script>
    B.) Add this text to the PAGE FOOTER for each page you wish to use the "Please Wait" pop-up.
    <style>     #AjaxLoading{padding:5px;font-size:18px;width:100px;text-align:center;left:50%;top:50%;position:absolute;border:2px solid #666;background-color:#FFF;}
    </style>
    <div id="AjaxLoading" style="display:none;">..Working..
    <img src="#WORKSPACE_IMAGES#clock.gif" id="wait" /></div>
    C.) Add this to the BUTTON (or URL) you wish to activate the "Please Wait" pop-up.
    D.) Be sure to have a default branch back to the page containing the "Please Wait" pop-up; if you are adding this to page 5, have an unconditional branch to Page 5.
    To add it to a url, add the following text to the Page HTML Header:
    <script type="text/javascript">
    function open2(url){
    window.location = url;
    </script>
    Then, in the "Column Link" section of the report item definition, provide your link as follows:
    javascript:javascript:html_Submit_Progress(this);open2('f?p=&APP_ID.&APP_PAGE.:&SESSION.::&DEBUG.::P19_Variable:#P18_VALUE#);
    Substituting the P19_VARIABLE and #P18_VALUE# with the appropriate variable name and value. You can have multiple variables assigning each a value, simply separate the varible names with a comma and do the same for the variable.
    If this is all too confusing, write to me and I'll try to explain it better. I'm not a JAVA person myself, so this might not be the optimum solution - but it is a solution that works.
    Thanks,
    Don.

  • My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    I have worked my way through the assistant and nothing works. I have tried connecting in disc mode but although the screen on the ipod is showing that the device is charged and that it is in disc mode as soon as I connect it to the computer it comes up with the error message 'please wait very low battery' and stays like that until I disconnect when it appears to be OK again. I have tried on both pc and mac.
    BTW the ipod is an ipod video not classic if that makes any difference.
    Thanks

  • I cannot open a PDF in either Chrome or Firefox. I have uninstalled and reinstalled Adobe Reader XI.0.09 and restarted my computer.   This is the error I receive:Please wait...    If this message is not eventually replaced by the proper contents of the do

    I cannot open a PDF in either Chrome or Firefox. I have uninstalled and reinstalled Adobe Reader XI.0.09 and restarted my computer.   This is the error I receive:   Please wait...    If this message is not eventually replaced by the proper contents of the document, your PDF  viewer may not be able to display this type of document.    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by  visiting http://www.adobe.com/go/reader_download.    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark  of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other  countries.

    Or http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • Sharepoint 2003 Message please wait while setup upgrades your sharepoint sites. This may take a few minutes to a few hours depending on the size of your sites.

    Hi All,
      We have recently installed Service Pack 4 In SharePoint 2003 I,e SPS 2.0 , we ran the stsadm upgrade command from the Command Prompt , since 5 days the upgrading the sites windows showing and does it completes or not or is there some thing wrong ?.
    Environment:
        SharePoint 2003 Service Pack 3
    SharePoint 2003 Message  :
    Please wait while setup upgrades your sharepoint sites. This may take a few minutes to a few hours depending on the size of your sites.
    We have applied in development box it was completed in 8 hours , but when we do the same in production it was never coming back since 5 days. Not sure what happening
    Thanks in Advance
    Ravishankar Maduri MCTS,MCPD,MCP

    how large are your site collections and content databases?
    sounds to me like you're WELL past the recommendations, which could certainly cause such an impact.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0

    Problem
    Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0
    Full message
    Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document. You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting  http://www.adobe.com/products/acrobat/readstep2.html. For more assistance with Adobe Reader visit  http://www.adobe.com/support/products/ acrreader.html. Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S
    Actions
    Updated Windows RT 8 to 8.1
    Uninstaled Adobe Reader Touch 1.3 and instaled 2.0 Build 84770
    Additional Information
    The form was created 10 or 11 months ago, and we are pretty sure that we were able to open it a while back
    The same PDF file opens just fine in Windows 8.1 using Adober Reader XI 11,0.06, it is only the app that is affected.
    The document cannot be opened by any other mobile app that we have tried or on another mobile OS (iOS)
    Any ideas?
    Thanks & Regards
    Jim

    The user's assertion is surprising to me, but perhaps I'm missing something important. I thought the correct position was from the conclusion of my earlier post "it can't be done". Adobe state their Reader Touch doesn't support XFA (http://blogs.adobe.com/readermobile/2012/12/13/adobe-reader-for-windows-8-tablets/). Unless (see that blog entry) you changed the type of form.

  • Each time I have a message ''please wait while windows configures iTunes''.

    when i start my itunes each time i have a message ''please wait while windows configures iTunes''. i recently Upgrad to 9.0.2. i already uninstall and install.
    pls help me.
    thank you in advance .

    when i start my itunes each time i have a message ''please wait while windows configures iTunes''.
    The iTunes desktop shortcut is an "advertised shortcut". When you click it, the first thing it does is check the iTunes.msi and determines (against the installation database in there) whether or not there's any files and registry entries and whatnot for iTunes missing on your PC. If it finds something missing, it'll do a repair install of iTunes, which is the "configures" message you're seeing.
    As to why it's always doing it in your case, and fixing it ... we'd better first work out if there's real damage to the iTunes stuff on the PC or if the shortcut/itunes.msi/registry machinery is just a bit confused.
    Apart from the "configures" message you're getting every time you launch iTunes, is it working okay? Are you able to sync, play music, use the Store and so forth without any trouble? Or are you getting other problems as well?

  • I get a please wait message, and the pdf document never loads?

    I get a Please Wait message, and the pdf document never loads. i have the latest version on my mac- no luck!

    windows xp version x1 the latest.  trying to open  in gmail.
    On Mon, Feb 17, 2014 at 1:23 PM, Claudio González

  • Want to show a "Please Wait" message while processing

    Hi,
    I'm developing an image-processing tutorial applet where the user selects an image and then sets some parameters before pressing an update button which will run a JPEG compression on the image and show the compressed image.
    The compression takes a few seconds, so I want the program to show an image saying "Please wait" in the position that the compressed image will appear while the compression is done.
    Here is the relevant code:
    public void paint (Graphics g) {
      if (updating) {
        updating = false;
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250); //clear the area where the image will appear
        g.setColor(Color.white);
        g.drawImage(updatingImg, 575, 370, 250, 250, this); //updatingImg just displays a "Please Wait" message
        doImage = true;
      if (doImage) {
        doImage = false;
        //perform the compression to get the new image and then show it
        newImg = imagetest.compressImage(origImg, quantizationMat);          
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250);
        g.setColor(Color.white);
        g.drawImage(newImg, 575, 370, 250, 250, this);
    public void actionPerformed(ActionEvent evt) {
      if (evt.getSource() == update){
        //perform some error checking
        if (errorFound == false){
          updating = true;
          repaint();
    }The problem is that the "Please wait" image never gets shown.. while the compression is carried out that part of the screen remains blank and then the new image is shown.
    Can anyone tell me how to fix this?
    Thanks.

    Never mind, I've figured it out.. needed to put the time consuming code in a new thread.

  • HT1483 my iPod is not responding. It is giving a message low battery, please wait and is displaying the apple support link

    my ipod is not responding. It is giving a message pleases wait low battery and showing me a link to apple support 

    Hey,
    Welcome to Apple Support Communities.
    Well leave it for few minutes then try plugging it to the charger, if that does not work. Try restoring it from revious backup. This will change the software and hopefully earase the error. If that did not fix it i guess you need to take it to the Store for a check.
    I really hope this helps you. Let me know if it does. If not feel free to give me a shout. Best of luck.

  • "Please Wait For The User Profile Service" message when logging on to TS 2008

    I have a Windows 2008 AD Domain with 2 Windows 2008 Terminal Servers.  Both are configured identically.  I have the TS Roaming profiles stored on a 3rd server and a GPO pointing all users to the roaming profiles.  On one of the servers everything works perfectly.  On the second server the users, after they input their credentials, get the following message "Please Wait For The User Profile Service".  The message can stay there for up to 3 minutes, then they are logged innormall with the correct profile.  This problem does not occur on log off.  Any help would be appreciated 

     99% of the times I had this problem it was caused by either DNS issues or network bindings.
    Are your servers multihomed? In other words: do you have multiple network cards? If so, make sure your "production" card is on top in the network connections -> advanced settings -> adapters and bindings.
    You could also enable user env logging (search microsoft how to do that)

  • "Please Wait" Message Box

    Hello!
    I´d like to know what´s the best way of creating a message box 
    with a "Please Wait" message that opens at some point and closes
    automatically after a sequence code?
    Thank you!
    Luanna

    Are you having a pop up message box in mind??
    my suggestion would be, keep a string indicator on front panel itself, make it appear and disappear like this
    Attachments:
    please wait.vi ‏22 KB

  • Display a "Please wait " message

    Is there any way a message can be displayed to advise the user
    "Please wait - program running...."
    while the macro actually executes.
    Function such as MSGBOX just stop executing - I am looking for something that will alert the user to be wait while the program runs.
    many thanks
    Peter

    Reshma,
    The MsgBox will block the thread and the program (macro) stops running until you close the message box.
    Peter,
    You need to run another thread to get things working as you need. Typically the job is launched on another thread while the user sees the message box with a progress bar or just a text message like you want. You need to develop an Office add-in
    for that, see
    Walkthrough: Creating Your First Application-Level Add-in for Excel for more information. The
    BackgroundWorker component can be used for that.

Maybe you are looking for

  • Arabic Text Printing in PO Layout

    Hi, The requirement is only "Vendor Name" mainained in Arabic language in "Name3" field of the Vendor Master, should print in Arabic Text in PO Layout Printout. PO Printing is in English. This vendor name is appearing corrrectly in Vendor Master Name

  • How to programatically find whether excel is installed in a client system o

    Hi all, I am developing a web application and need to send the op as excell so that end user sees it in excel format.. how could i find whether he is having excel instaled in the system or not...

  • Creating a non database field

    Hi., i am using jdev 11.1.5 i need to insert a non database field in jspx page i had created a table finperiod i need to insert a four nondatabse fields named as rec,dist,supl,cust. How can i acheive this?

  • RTMT for Unity error

    Hello, Im trying to use RTMT to monitor Unity. When I click "Start Polling" i receive this error: Port Status query failed: ; nested exception is:      java.lang.ClassCastException: org.apache.axis.attachments.AttachmentsImpl cannot be cast to org.ap

  • Selection tools gone wild

    Anyone know what is going on here? We're seeing it pretty regularly. When a selection is made on an image, with lasso or marquee select, this happens: The only thing we can seem to find to trigger it is changing from Standard to Precision cursors. Op