Problem in Nls_lang (words on form appears like ??????????)

hi
i develop forms in old release of developer 10g suit and recompile it in higher release of developer 10g suit
i have a problem with language in my forms , all my words on my forms appears question marks like ??????????
i`m using developer 10g suit(higher release) , OracleXEUniv database engine , windows XP as OS.
words on forms written by Arabic ,
i change all NLS_Lang registry files for oracle into ARABIC_EGYPT.AR8MSWIN1256
and change regional and language options >advanced tap > Arabic(Egypt), and mark all Arabic choices and transfer all files needed from windows CD.
and recompile forms,the problem still there,
please replay for answers , how can i fix it?
thank you,

hi
are u able to write in arabic?
sarah

Similar Messages

  • I have everything set for Arabic fonts and the keyboard as well. When I type in WORD or EXCEL I just get individual Arabic letters, but they never connect, they should be for example like this   الس    but they always appear like that ا ل س

    I have everything set for Arabic fonts and the keyboard as well. When I type in WORD or EXCEL I just get individual Arabic letters, but they never connect, they should be for example like this   الس    but they always appear like that ا ل س

    MS Word for Mac has never supported Arabic.  You have to use other apps.  Mellel is best, but Pages 5, TextEdit, Nisus Writer, or Open/LibreOffice should work OK.
    Sometimes you can make Word for Mac do connected Arabic if you are editing a document created with Windows Word.

  • Word styles not appearing in Print Document Appearance dialog

    My custom list styles in Style Mapping.dot are not appearing in the Print Document Appearance dialog when I try to map CSS styles to Word styles.
    The styles do appear in the template when I open it in Word. They appear in the styles task pane whether I select "In current document" or "In use" in the Style Pane Options dialog in Word. The styles have the same name (such as "Bullet" or "Number") in Word as the CSS styles in RoboHelp.
    I tried saving Style Mapping.dot as .dotx, thinking that RoboHelp 8 might work better with the current template type, but no help. I tried adding the template to the same folder as the Normal.dotm template is in and opening it there. No improvement.
    Oddly, the built-in Word styles List, List 2, & etc and List Continue and its series appear in the Robo dialog, but the styles List Bullet and others in that series do not appear.
    I suppose I could modify the list styles that do appear in Robo and map them to my CSS list styles, but that feels a bit like a desperate kluge.
    Does anyone know what might be wrong, either with my Word template or with Robo, that might be causing what seem to be perfectly good Word styles to not present themselves for mapping?
    Thanks again,
    John

    Peter,
    I think your discussion of this problem could explain the situation and propose a workaround more simply than it does.
    Based on your article, I assumed that Robo displays only the built in Word list styles such as List and List Continue (since those were the only styles showing up in the style mapping dialog and since your example shows matching a Robo style named List Mapping to a Word built in style named List). I assumed I would have to match my Bullet style to a style named List in Word, and match the indented bullet style to List 2, and so on. The actual situation is that Robo, for some godforsaken reason that only idiots would understand, will not show a Word style if any numbering (bullets or numbers) is applied to it. That is, one does not have to avoid a class of styles called “List styles”, one only has to avoid applying numbering to the styles until later.
    Thus the workaround is to create the word styles (with names that match the Robo styles!) that contain every attribute you need EXCEPT the numbering. That is, I can link Bullet to Bullet and Number to Number and Indented Number to Indented Number, and so on and on, as long as I have all the Word styles in the template with their numbering set to None.
    Then after I generate the document, I can modify the styles to add the appropriate numbering, and voila!
    Currently scrolling the doc & modifying styles. Might be a glimpse of daylight.
    John
    From: Peter Grainge [email protected]
    Sent: Thursday, October 13, 2011 8:47 AM
    To: John Dawson
    Subject: Word styles not appearing in Print Document Appearance dialog
    Re: Word styles not appearing in Print Document Appearance dialog
    created by Peter Grainge<http://forums.adobe.com/people/Peter+Grainge> in RoboHelp - View the full discussion<http://forums.adobe.com/message/3969382#3969382

  • Strange problem when opening word doc situated in WLS virtual dir

    Hi all,
    we have a strange problem when opening word doc
    situated in C:\Oracle\Middleware\as_1\forms\webutil
    we put some word docs there and tried to open from forms using for example web.show_document('http://wp0606:9001/forms/webutil/mug00103.doc', '_blank');
    no problem using FF, however in IE8 the word doc is shown in its binary format, this also happens when we try to open the doc in IE8
    however when we google and search for instance for a test.doc and then click on this url a file save dialog is shown
    that's why we believe that this might be due to a configuration issue of WLS
    any help would be greatly appreciated
    Kr
    Martin

    I think you have 2 ways to go here. Figure out what html is from wherever weblogic gets it, meaning you have to delve into the docs, snoop
    around in directories and find what it must be sending (This is going to be unavoidable if you are going to change what weblogic is doing.
    Sooner or later you have to try to figure out where it gets this stuff from)
    or
    you can experimentally snoop on your url with a tool like wget or curl. These are fundamental web tools.
    The latter is always a useful thing to be able to do. (you need to formulate a query to get the content-type).
    Whoever managed to get weblogic to serve any files in the first place probably can figure this out.

  • Problem with freeze on Document forms

    Hi all,
    i've a problem with freeze on document's forms (like invoice) when i make changes on matrix.
    For example i've an addon that calculate discounts for items and update the information in the matrix. But when I update the info in the Matrix I see the cursor run across the matrix.
    This create two problems. The first one is the orrible aspect that the operation assume, the second is that sometimes some cells turn to black and remain ofthis color.
    Can someone help me?
    Here I post a piece of my code:
        Dim oForm As SAPbouiCOM.Form = SBOApplication.Forms.Item(FormUID)
        Dim oMatrix As SAPbouiCOM.Matrix = oForm.Items.Item("38").Specific
        Dim oRefLine As Integer = 0
        oForm.Freeze(True)
        Dim Cnt As Integer = 1
        Try
          While Cnt <= oMatrix.RowCount
            If oMatrix.Columns.Item("U_RefLineId").Cells.Item(Cnt).Specific.Value <> "" Then
              Dim apDouble As Double = oMatrix.Columns.Item("15").Cells.Item(Cnt).Specific.Value.ToString.Replace(".", ",")
              If apDouble <> 100 Then
                SetMatrixValue(oMatrix, "U_RefLineId", Cnt, "")
                SetMatrixValue(oMatrix, "11", Cnt, oMatrix.Columns.Item("U_OrigQtyMN").Cells.Item(Cnt).Specific.Value)
                SetMatrixValue(oMatrix, "U_OrigQtyMN", Cnt, 0)
                Cnt = Cnt + 1
              Else
                oMatrix.Columns.Item("15").Cells.Item(Cnt).Click()
                SBOApplication.ActivateMenuItem("1293")
              End If
            Else
              SetMatrixValue(oMatrix, "15", Cnt, 0)
              Cnt = Cnt + 1
            End If
          End While
        Catch ex As Exception
          SBOApplication.StatusBar.SetText("Error: " & ex.Message, SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
        End Try
        oForm.Freeze(False)

    Hi Daniele,
    I use a little different approach because the Freeze on a Form is like parenthesis on formula. You must be sure that the Freeze(true) are balanced by a Freeze(false).
    So my pattern is:
    Try
        oForm.Freeze(True)
        ' the operation you need to do with the freezed form
    Catch Ex as Exception
        ' Menage the errors here
    Finally
        oForm.Freeze(False)
    End Try
    The Finally statement is executed in both case when an Exception is raised or when the code is right executed.
    But I think this is not the problem in your code.
    If you still having problem, probably we need to examine your sub-routine "SetMatrixValue".
    It is also important to know your SAP Business One version because in the past there was a version with a problem in the refresh of matrix.
    I use SAP Business One 2007A SP01 PL06 HF1 and I do not have problem with the freezing.
    Hope it helps.
    Carmine

  • Order type Personalization Problem in Standard Sales Order Form

    Hi All,
    We have a problem in personalization of Sales order form.Here we are trying to personalize three field based on order type
    Scenario 1:_
    _Nav-->Oredr Management Super User-->Orders,returns-->Sales Orders-->order type-->standard_
    In this type if we are navigating to lines it should ask the following fields as mandatory
    (Nav-->Oredr Management Super User-->Orders,returns-->Sales Orders-->others form)
    1.Shipping Method
    2.Freight Terms
    3.Shipment priority
    Scenario 2:_
    _Nav-->Oredr Management Super User-->Orders,returns-->Sales Orders-->order type-->Bill only & Internal & RMA_
    then it should navigate to line items without asking those three mandatory fields.
    For that we did the following Personalization through Help-->Diagnostics-->Custom Code-->Personalize
    Level--> Form level
    Enabled-->Yes
    Condition_
    Trigger Event: When-Validate-Record
    Trigger Object: Order
    Condition : +(:ORDER.ORDER_TYPE not like '%INTERNAL') and (:ORDER.ORDER_TYPE not like '%BILL%') and (:ORDER.ORDER_TYPE not like '%RMA')+
    Processing mode : both
    level:site
    Actions_
    seq:10
    type:property
    description:Make field mandatory
    language:all
    enabled:yes
    object type:item
    target object :ORDER.SHIPPING_METHOD
    property name:REQUIRED
    value:TRUE
    Problem+_
    The problem we are facing is when we first select the ordar type as Bill only or Internal or RMA it is working as expected. But first if we are select the order type as standard then we navigiting to lines it is not allowing us without entering those three mandatory fields as expected. Hence the problem is without closing the form we changed the order type as Bill only now also those fields remains as mandatory this is issue .
    So hope the problem is clear to you all and we have to move this in production on tomorrow.
    If somone helps to resolve this ASAP we would thankful to you.
    Thanks in advance
    Regards,
    CSK

    Hi Sandeep,
    Thanks for your quick response.
    you might not have getting the our problem sorry. let me explain you clearly
    If the ordre type is standard the following fields should be mandatory without those fields it should not navigate to line items_
    1.Shipping Method
    2.Freight Terms
    3.Shipment priority
    If the ordar type as Bill only or Internal or RMA_
    1.Shipping Method
    2.Freight Terms
    3.Shipment priority
    non mandatory should navigate to line items
    for that we did three personalization for those three fields as in the previous post
    but the problem is
    when we first select the ordar type as Bill only or Internal or RMA it is working as expected the fiel sare non mandatory the without closing the form if we select order type as standard then if i try to navigate lines it is not allowing me without entering the three fields. But incase first we are select the order type as standard then we navigiting to lines it is not allowing us without entering those three mandatory fields as expected. Hence the problem is without closing the form now we changed the order type as Bill only or internal or RMA now also those fields remains as mandatory this is issue .
    hope now the problem is clear to you .
    Thanks in advance
    Regards,
    CSK

  • Problems in changing Thousand's separator appearance

    I am having problems in changing the thousands separator appearance. I am based out of India and here the thousands separator works in format - 1,00,00,000 (i.e. 2 digits after last 3 digits). I want to change this into standard 3 digit thousands separator  - 1,000,000,000. However not able to do this. Kindly suggest any workaround for this.

    Yes! You can definitely change and customize integers.
    Its a little tricky to explain how you have to do this in the Numbers interface but follow below:
    Select cells or table > open Inspector > select Cells tab (4th from the left) > Use the drop down list under "Cell Format" and select "Custom" at the bottom....
    From here you can edit your own intergers by dragging elements from below onto the field above (See example below). Don't worry if the elements do NOT match what you want below... You add the element by dragging it, THEN once in the field you can click on it and edit how many digits there are, as represented by '#' simply by pressing Up and Down on the keyboard, Or clicking on its own little drop down arrow to access features like "Remove separator". Then in between these elements simply type a comma " , " and drag the next element, keep editing away like that and you should get something like what I have below:
    Feel free to ask any more questions PrashKot :]

  • MDIChildren flickering problem while switching between child form with dockstyle.fill and borderstyle.none

    I have an mdi applicaton in Visual studio 2010 (.Net framework 4.0). I'm having a flickering problem when user switch between an MDI Child form. I'm declaring the child form then setting the borderstyle.none at design time and dock property to fill
    through programming and make them a MDIChildren before I show them so that it takes up the entire space of the MDI Parent window without being maximized (client request). 
    i don't want to display control box(minimize, maximize,close) of child form in mdi parent form. (client request)
    The problem is that when the child form is being displayed it is briefly shown in it's default size with icon and control box before being resized to fill the available area on the MDI Parent form. When a Child Form loads, you can see it in it's original
    size (the size from Design-time) then all this flickering while maximizing .
    In other words, child form show up in the client area of the MDIForm, not maximized, with a caption, very shortly, before they are finally filling the client area. there is a short flicker when a new form is created and displayed. This process is most noticeable
    with a not-so-powerful PC or there are lots of control inside child form.
    below is my code to show child form 
       MyChild1 c1 = new MyChild1();
                                c1.MdiParent = MdiMainParent;
                                c1.Dock = DockStyle.Fill;
       c1.Show(); 
    how can i solved the problem of flickering issue?
    I tried many options which i have described below
    1.double buffering.
    2.set style property to child form
          this.SetStyle(ControlStyles.UserPaint, true);
          this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
          this.SetStyle(ControlStyles.DoubleBuffer, true); 
    3. override below method in each child form
    protected override CreateParams CreateParams
                get
                    CreateParams cp = base.CreateParams;
                    cp.ExStyle |= 0x02000000;
                    return cp;
    4. override below method in each child form
      const int WM_NCPAINT = 0x85;
            const int WM_SIZE = 0x05;
            protected override void WndProc(ref Message m)
                if (m.Msg == WM_NCPAINT)
                    if (this.WindowState == FormWindowState.Maximized)
                        return;
                if (m.Msg == WM_SIZE)
                    if (this.WindowState == FormWindowState.Maximized)
                        return;
                base.WndProc(ref m);
    but I didn't see any effects.  please someone help me to resolve flickering issue. thanks in advance.

    Hi hardikvaishnav,
    This is a known issue which has been reported to Microsoft Connect. Unfortunately, this issue will not fix due to stability issues around MDI. For more details, see 
    https://connect.microsoft.com/VisualStudio/feedback/details/97787/border-of-mdi-child-form-flashes-up-despite-formborderstyle-none.
    You might use a user control or panel instead.
    Best Regards,
    Bob Wu [MSFT]
    MSDN Community Support | Feedback to us

  • The movies from my Iphone 5 are not coming across on Apple TV. The little spinning beach ball appears like it is thinking.  It use to work but quick working a month ago.

    The movies from my Iphone 5 are not coming across on Apple TV. The little spinning beach ball appears like it is thinking.  It use to work fine but quick working a month ago. I mirror from my phone to the Apple TV.  Still images and everything I do on the phone is mirrored on to the TV except when I want to show a YouTube video or any video and then the screen on the phone and the TV screen go black and the spinning beach ball appears.  The videos open right up on the phone if I do not have mirroring on and going through the Apple TV.  I just downloaded the latest update to the phone it did not fix the problem.  Please help.  Thanks, Elvis G

    Hello Elvis G,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps concerning device issues. You may want to consider a reset, then testing to see if the issue is resolved:
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/ht1430
    How to reset
    You should reset your device as a last resort and only if you can't restart it.
    To reset, press and hold both the Sleep/Wake and Home buttons for at least 10 seconds, until you see the Apple logo.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Having problem to install Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit

    Dear All Precious Friends,
    I am having problem while installing Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit,
    I have already installed Oracle Database 11g Release 2 -------
    ----Then i configured JAVA Access bridge
    --------then installed and configured Required Schema using Repository Creation Utility of same version of Database 11g,
    -----------then installed Oracle Business Intelligence 11g version 11.1.1.6.0 which includes Web logic..............I am feeling that i did right at this point...........
    ..............also feeling comfortable after install Oracle Identity and Access Management 11g ..................
    -----------------but don't know how to configure OID to install Oracle Portal Forms Reports and Discoverer 11g...............
    Please help my Oracle Friends
    Your early help will be highly appreciated.
    thanks and regards
    Hassan

    You said, "...+I would like to install Release 2(11.1.1.2.0)+ ...". Be careful. 11.1.1.2.0 is not Release 2. The version for Rel 2 is 11.1.2.0, notice that there is one less "1". Also, there is no way to patch from Release 1 to Release 2.
    In EDelivery, this is what you should find if you search on "Oracle Fusion Middleware" for "Microsoft Windows x64 (64-bit)":
    First look for this link then drill into it:
    Oracle Fusion Middleware 11g Media Pack for Microsoft Windows x64 (64-bit)
    In this section you will find the following:
    This is the full product installation of FMw 11 Release 2 (Forms & Reports)
    Oracle Forms and Reports 11g R2 (11.1.2.0.0) for Microsoft Windows x64 (64-bit) V28761-01
    This is the full product installation of FMw 11 Release 1 (includes Portal, Forms, Reports, and Disco)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 1 of 4) V18785-01
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 2 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 3 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 4 of 4)
    This is the FMw 11 Release 1 patch set that will bring the above 11.1.1.2.0 installation to 11.1.1.6.  This is NOT a full product installation - just a patch
    Oracle Portal, Forms, Reports and Discoverer 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit) V29850-01
    There are no patch sets for Release 2 as of yet.

  • Problem opening docx Word attachments in Communications Express

    We have a problem where some Word documents of the .docx type won't open properly in IE. IE will treat the docx file as a zip file, and offer to open it up using zip, instead of Word. The strange thing is that some docx files open fine into word, but others don't. Also, we have yet to see any such problem in Firefox. The basic work-arounds are to right-click on the attachment link and save, and then open it in Word, or to suggest the user uses Firefox.
    We're at a point where we think the problem is with the version of Word (or OpenOffice or whatever) that creates the document, and that it's putting weird things into the headers of the document. Our thought was that adding "docx" to the MIME types for Word could fix the problem, so I did the following on our test system. I opened up /var/opt/SUNWwbsvr7/https-{SERVER-HOSTNAME}/config/mime.types and changed the following line:
    type=application/msword exts=doc,dot,wiz,rtf
    to read:
    type=application/msword exts=doc,dot,wiz,rtf,docx
    I then stopped the webserver, removed the cached(generated) files, start the webserver, deleted the cache on IE and tried again. IE still treats the docx file as a ZIP file. Our patch level for UWC is 122793-30.
    Is there some other place to look at for modifying MIME types for UWC?

    Kdcypher wrote:
    On our test server, which has both UWC & Messaging Server running on the same box (in prod, these functions are on separate hardware), I made these changes in /var/opt/sun/comms/messaging64/config/mappings and [same_path]/conversions, which I understand to be the config dir for the back-end Messaging Server (in case you hadn't guessed, I'm not necessarily our mail guru, but his plate is extremely full at the moment, and I'm getting to learn more about Messaging Server by working this problem). Do I need to be setting this up elsewhere, as in under UWC?You only need to configure these files at the MTA level. Make sure the conversions file is owned by the messaging server user/group (mailsrv:mail by default).
    Also make sure the mappings entry is exactly how I provided (including leading spaces).
    My testing yesterday, using your configuration suggestions, was all from Firefox, which could explain why your code wasn't working because (as I understand it) your code was set to convert anything with a content-type of "application/x-zip-compressed" and would ignore anything with "application/octet-stream"You can add additional rules to the conversions file to handle the various scenarios.
    So it did not get changed by the server.Please provide the mail.log_current entry for the above attempt.
    Is there any way to tell "imsimta cnbuild" to be verbose and actually tell me what it's doing?The cnbuild command compiles the MTA configuration files. It either works or it doesn't.
    Or is there a log file that contains details of what it's doing?You can enable more verbose MTA logging e.g.
    => add "slave_debug" to the source channel (e.g. tcp_intranet) in the MTA imta.cnf file
    => add MM_DEBUG=3 to the MTA option.dat file
    => run ./imsimta cnbuild;./imsimta restart
    => re-run your test, this should result in a file called tcp_local_slave.log-<something>
    In that file you should see something like the following:
    12:22:48.59: Checking CONVERSION entry #1
    12:22:48.59:   IN-TYPE pattern: application, actual type: application
    12:22:48.60:   IN-SUBTYPE pattern: x-zip-compressed, actual subtype: x-zip-compressed
    12:22:48.60:   Checking IN-DPARAMETER-NAME #0
    12:22:48.60:     Dvalue: filename, pattern: *.docx, actual value: SR7285240.docx
    12:22:48.60:   Out channel pattern: ims-ms, actual out channel:  ims-ms
    12:22:48.60:   Entry matched.
    12:22:48.60:   New content type: application
    12:22:48.60:   New content subtype: vnd.openxmlformats-officedocument.wordprocessingml.document
    12:22:48.60:   New content disposition: attachmentRegards,
    Shane.

  • Problems saving responses in PDF forms

    Hi all -
    I have created a few forms for my organization, but I've been getting a lot of feedback about problems with one of the forms.  It's set up just like the other ones (that don't have problems) - 22 drop down menus, 6 text boxes.
    Often, when one person saved the form on their computer, they email it to submit, but the responses come through blank on my end... even though the saved version on the original computer has the responses saved.  For others, the form won't save responses at all.  Many times, people submitting this form have had to physically print and scan the form in order to submit it... which defeats the purpose of having the electronic form.
    Any ideas on what the problem might be?  Is there anything I could do to fix these problems with saving?  Is it a problem with the others' version of reader?  I don't have any idea how to approach this issue.

    Hi, sorry for my vague question, I'll clarify that -
    I created the forms in Acrobat 9 Pro.  Mostly, the other people using the form fill it out with Adobe Reader.  They all have different versions, basically.  Whenever I hear about these problems, I've always told the person to update their Adobe Reader to the latest version... that has never seemed to actually help.

  • Import Word 2007 Form check boxes undefined

    Any one have any idea on how to get the forms wizard to import the field property names for check boxes in an Adobe form?
    I have a Word 2007 form which I have tried saving as a .doc, .dot, dotm, .docx and no matter what format I choose, I cannot get the check box fields to import.  I used the legacy checkbox field under the developer ribbon in Word 2007 to create the check boxes.   I have tried to import with protection on the word form enabled and stopped but it doesn't make a difference. The check box fields come across fine but the name and the text fields both say undefined rather then display the field name given in Word.  I am using Adobe 9 pro.  I have checked my Adobe preferences in Word and made sure all the boxes were checked for converting bookmarks but it still did not make a difference.  The text fields are importing fine with the property field names.
    Here is an example:
    I have a yes check box that is labeled StorageY and a no checkbox labeled StorageN for the properties in Word.  I then went to the form wizard in Adobe 9 and selected start with existing form and selected the fillable word form I created with the check boxes.  I imported it and the check box properties say Undefined for both storageY and storageN.   There are about 60 check boxes in the document and I don't want to retype them every time in Adobe when the word form is updated and has to be conveted again.
    I sure hope there is a solution.
    Thanks.

    Thanks for the information but I respectfully disagree with "there is no import".  If you open Adobe Acrobat
    9 pro and go to Forms, Start Forms Wizard, select An Existing electronic document and click on Next. Select "import" a file from file system and browse for the word document and click on Next.
    Using this method not only runs the automatic field recognition you were referring to, it also brings in all the word form field text and formats with the exception of the check boxes.  My only guess is the problem has something to do specifically with the check box fields as it does bring over the radio button text.  A lot less work to keep the form updated.  It rocks.  You should try it some time.
    Word 2007 pdf writer does the same thing as the openoffice.org but neither bring across the form field info.  They just create a starting point and you would have to use the method you described above to create the fillable form.

  • When I restart my Mac, the grey screen appears like usual. But it takes more than 40 minutes (more) for it to load to finish restarting the Mac. What should I do?!

    When I restart my Mac, the grey screen appears like usual. But it takes more than 40 minutes (or more) for it to load to finish restarting the Mac. What should I do to fix it?!

    Disconnect all devices from your computer if you have not already done so.  Restart again.  If the problem has been resolved, you had a peripheral conflict.  You will then have to reconnect the devices one at time, restart,  to locate the culprit.
    Login Items is another culprit.  Check your login items.
    System Preferences>Accounts>Login Items
    Delete/disable all you do not need or want.

  • Making parameter form appears

    Dear All,
    i have a problem regarding showing parameter form that made by report developer when i call the report from my form
    first i use winXP sp3, database 10g ,developer suite 10g
    the problem is as follow:
    the report run perfectly from report builder and the parameter form appears but when i call the report from the form the report appears without parameter form screen and this make report empty
    notice1 :  i call any other report it is appears successfully
    in a short way (how can i make report parameter form appears when i call it from a form )
    i call the report through the following procedure
    procedure open_my_report (p_repname varchare2) is
    report id  report object;
    reportserverjob varchar2(100);
    report_status varchar2(20);
    begin
    report_id := find_report_object('myreport');
    set_report_object_property(report_id,REPORT_FILENAME,'c:\developersuitehome_1\reports\'||p_repname||'.rep');
    set_report_object_property(report_id,REPORT_EXECUTION_MODE,BATCH);
    set_report_object_property(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    set_report_object_property(report_id,REPORT_DESTYPE,FILE);
    set_report_object_property(report_id,REPORT_DESNAME,'c:\reports\'||p_repname||'.pdf');
    set_report_object_property(report_id,REPORT_DESFORMAT,'pdf');
    set_report_object_property(report_id,REPORT_SERVER,'rep_raysoft');
    reportserverjob := run_report_object(report_id);
    if rep_status = 'FINISHED' then
    copy_report_object_output (reportserverjob,'c/'||prepname||'.pdf');
    host('c/'||prepname||'.pdf',no_screen);
    message('report '||p_repname||' completed successfully');
    else
    message('error when running '||p_repname||' report .');
    end if;
    end;
    notice2: i try to activate the parameter form by adding this line in the procedure
    set_report_object_property(report_id,REPORT_OTHER,'paramform=yes');
    but it desn't make any differance
    so i will be so apreciated if anyone can help me
    thanks
    regards
    yasser elbighily

    Dear All,
    thanks for your attention
    really i modify my code to be appear as follow
    PROCEDURE OPEN_MY_REPORT (p_repname Varchar2) IS
    v_report_id Report_Object;
    vc_ReportServerJob VARCHAR2(100); /* unique id for each Report request */
    vc_rep_status VARCHAR2(100); /* status of the Report job */
    v_reportservername VARCHAR2(50):='rep_raysoft'; /* THE NAME OF THE REPORT SERVER*/
    vjob_id VARCHAR2(100); /* job_id as number only string*/
    BEGIN
    /* Get a handle to the Report Object itself. */
    v_report_id:= FIND_REPORT_OBJECT('MYREPORT');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_FILENAME,'C:\DevSuiteHome_1\reports\'||p_repname||'.rep');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,FILE);
    /* Define the report output format and the name of the Reports Server
    as well as a parameter form to be displayedwhen required. */
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER,v_reportservername);
    if p_repname = 'REPCENTERSPREADING' then
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER,'paramform=yes');
    else
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER,'paramform=no');
    end if ;
    vc_ReportServerJob := RUN_REPORT_OBJECT(v_report_id);
    message(vc_ReportServerJob);
    message(vc_ReportServerJob);
    vjob_id := substr(vc_ReportServerJob,length(v_reportservername)+2,length(vc_ReportServerJob));
    message(vjob_id);
    message(vjob_id);
    /* If finished, check the report status . */
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status='FINISHED' THEN
    /* Call the Reports output to be displayed in a separate browser
    window. The URL for relative addressing is valid only when the Reports
    Server resides on the same host as the Forms Server. For accessing a
    remote Reports, you must use the prefix http://hostname:port/ */
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'|| vjob_id||'?server=rep_raysoft','_blank');
    ELSE
    message ('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    and it helps me to display the parameter form but i face another problem that is when i enter values for my parameter it gives me the following error
    REP-52007: Parameter form format error.
    note: i test the report directly from report builder and it work successfully without any problem
    so can anyone help me please
    yasser elbighily

Maybe you are looking for