Strange Chars after modify reports.sh NLS_LANG

I had a problem when I modify NLS_LANG in reports.sh in linux. If i put NLS_LANG=PORTUGUESE_PORTUGAL.WE8MSWIN1252 my reports comes with strange some like greek characters. My database charset is WE8MSWIN1252.
My database v$NLS_PARAMETERS are:
NLS_DATE_LANGUAGE
PORTUGUESE
NLS_CHARACTERSET
WE8MSWIN1252
Anyone with same problem too?
Thanks
Joao

Sorry,
I forgot to mention that, I have already added 3of9 font in PPD files, by oversight i missed in my question.
Even after adding I cannot print a report Arabic + Barcode + English character.
I am able to print report either Arabic+English or Barcode + English and all three together NO.
Please suggest..

Similar Messages

  • Be abble to automatically remove unused resultLists, after onTheFly reporting, onTheFly DB writing ...

    Hello,
    If you get memory problems, you had to tune your reports options, result collecting, load / unload modules  .... 
    These tasks are very long, you have to point all memory consumers first ... It pollutes your test sequence only for memory purposes ! 
    When you try to modify the result reccording, you will also have problems for your report generation ... 
    It should be nice to add a new feature allowing an automatic result list removing, after onTheFly reporting, ontheFly database writing have treted them ...
    A kind of "OnTheFly and remove unused results"
    When ontheFly reporting, and The OnTheFly database writing are over, the treated resultList should be put in a garbage structure !
    Older test results could be removed if memory is needed ... 
    I know this could be not simple ... but this could help very much, for big sequences creation. 
    Thanks a lot.
    Manu.net (TestStand memory dustman !)
     

    Guys, I think I've found the strange thing.
    First, in the recovery shell, when I type "lvm lvscan", it prints:
    WARNING: lvmetad is running but disabled. Restart lvmetad before enabling it!
    and then it says that all four my logical volumes root,boot,home and var are inactive.
    So I tried to set them up manually, with "lvm vgchange -a y", and guess what happened: I was able to boot!
    I still haven't managed to understand the real causes of this problem, but basically it seems that I have the same problem explained here: https://bbs.archlinux.org/viewtopic.php?id=184340.
    The only difference is that there the OP says to have solved the problem with an upgrade to Linux 3.15.7, while it appeared to me with the upgrade to 3.18.3, and as I said it doesn't go away neither with a downgrade nor with another upgrade to version 3.18.4
    Last edited by rdm (2015-01-29 21:55:44)

  • Unable to upload the updated/modified Report template (rtf file) in siebel

    Hi,
    I am unable to upload the updated/modified Report template (rtf file) if already exists in the local database.
    Initially I have uploaded a rtf template, generated xliff, registered it and can view the report from the registered view. Later I have made few changes to the rtf template, in the reports template view, I have uploaded this. When i run the report in the registered view, I am able to see the earlier version and it doesnt show me the updated changes.
    I am using 8.1.1.3 siebel and BIP 10.1.3.3.1 on local.
    Looking at the metalink found "How To Upload Modified RTF Template Files In The Siebel Application For BI Publisher Reporting [ID 1136418.1]" which is related to server but I am working on local database
    Please find attached the template, xml file. can you please look into this and update me ASAP
    Thanks,
    RV

    Hi,
    Not able to find Report - Standard templates or Report - Custom templates view in Administration - BIP reports in Siebel 8.1.1.3?
    We have applied 8.1.1.3 patch on 8.1.1.0
    below are the steps followed
    Reports are not generated after 8.1.1.3 patch installtion.
    we have also followed to below steps mentioned for this issue in oracle support.
    "In order to resolve this behavior it is necessary to ensure that the 8.1.1.3 FixPack has been applied to the Siebel Tools installation. This will provide an additional .zip file in the REPPATCH folder of the Siebel Tools installation. Once this has been done please then follow the configuration steps as documented :
    change sysprefix to X_ before sif import and chage back to SBL_ after sif import.
    1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
    2) Import the 4 SIF files in the following order:
    S_XMLP_REP_TMPL_02112010.sif
    SBL_XMLP_REPORT_SELECTION_FLG.sif
    Report Template BC.sif
    Report Template Registration Applet.sif
    3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
    Once the above steps have been completed the Selected Record flag will appear in the Report Template Registration views."
    we still not able to generated able to generate reports even after following above steps.
    Thanks
    Sean

  • Strange behaviour after querying a friendly device name

    Hi,
    I have observed some very strange behaviour after querying the friendly name of an audio capturing device. This is my code:
    #include "stdafx.h"
    #include <mmdeviceapi.h>
    #include <Functiondiscoverykeys_devpkey.h>
    int main(int argc, char *argv[]) {
        HRESULT hr = CoInitializeEx(0, COINIT_APARTMENTTHREADED);
        if(FAILED(hr)) throw;
        IMMDeviceEnumerator *pIMMDeviceEnumerator = 0;
        hr = CoCreateInstance(__uuidof(MMDeviceEnumerator), 0, CLSCTX_INPROC_SERVER, __uuidof(IMMDeviceEnumerator), (LPVOID *) &pIMMDeviceEnumerator);
        if(FAILED(hr)) throw;
        IMMDeviceCollection *pIDeviceCollection = 0;
        hr = pIMMDeviceEnumerator->EnumAudioEndpoints(eCapture, DEVICE_STATE_ACTIVE, &pIDeviceCollection);
        if(FAILED(hr)) throw;
        IMMDevice *pIMMDevice = 0;
        hr = pIDeviceCollection->Item(0, &pIMMDevice);
        if(FAILED(hr)) throw;
        IPropertyStore *pIPropertyStore = 0;
        hr = pIMMDevice->OpenPropertyStore(STGM_READ, &pIPropertyStore);
        if(FAILED(hr)) throw;
        PROPVARIANT propVariant;
        PropVariantInit(&propVariant);
        pIPropertyStore->GetValue(PKEY_Device_FriendlyName, &propVariant);
        PropVariantClear(&propVariant);
        pIPropertyStore->Release();
        pIMMDevice->Release();
        pIDeviceCollection->Release();
        pIMMDeviceEnumerator->Release();
        CoUninitialize();
        return -1;
    Please ignore the strange error handling, it's just to make the example code short.
    The problem is the return value (as can be seen in the output window of Visual Studio after running the program or using "echo %errorlevel%" in cmd.exe). Certainly, one would expect to get -1. However, I get 0 instead of -1. What makes this
    really strange is that -1 is properly returned when the line "pIPropertyStore->GetValue..." is commented out. Why does this have any effect on the return value of the process? I have observed this on two different Window 7 machines with different
    soundcard configurations. However, I did another test on a Windows 8.1 machine, where everything worked correctly.
    Can anyone explain what's going on here?
    Thanks,
    Holger

    OK, here's what's going on.
    Everything goes fine until main() exits.
    At that point, mmdevapi.dll's DllMain is called with lpReserved set to a non-NULL value, which is to say, "don't bother to clean up."
    mmdevapi.dll decides to clean up anyway (for shame) and calls into some SetupAPI.dll functions.
    SetupAPI.dll is waiting on a critical section, but at that point ntdll.dll kicks in and says "you know what, the process is shutting down, and this is the last thread, so I can guarantee you this critical section will never be set." ntdll.dll then
    terminates the process, and main()'s exit code is lost.
    Matthew van Eerde

  • Notification after the report had been saved by scheduler

    1)
    HOw can I insert a record in my Db after the scheduled report is generated Scheduler and saved at the a particular location in the webserver ????/
    2)How to pass the error messages occured during the scheduler generating/saving a scheduled report to the end user.
    Thanks in advance,
    YUg

    Hi Cabio,
    Before addressing your specific question, I want to let you know that you can configure the report file path in the Report File pathname tab of the report options.  You can choose from a number of options, including specifying a custom expression for the report path.  This will allow you to customize where the report is saved with no code changes.
    If this doesn't address your needs, the problem you are likely having is that you are accessing the report object before the report is actually generated.  To access the report object after it has been populated, override the ProcessCleanup callback, which executes after the report has been generated.  (for an example of overriding a callback, refer to the PreUUTCallback shipping example.
    Note: if you are using TestStand 2012, this method will not work unless you configure the report generator to not use a new thread.  You can configure this option in the result processing dialog by selecting the Show More Options checkbox.  If you do want to use a new thread, you can access the report by modifying the AddUUTReportAndSave sequence in ReportGen_ATML.
    Al B.
    Staff Software Engineer - TestStand
    CTA/CLD

  • HT5429 How long after you report a problem does it take for the fix to be picked up in maps?

    How long after you report a problem does it take for the fix to be picked up in maps? The street I live on is misspelled. It's shown as one word, but it should be two words. Maps cannot find the address when it is spelled correctly, so I have it purposely misspelled it as one word in my contacts, which helps for the most part, however it still tries to place my home on an entirely different street all together. Fortunately this new random street is at least close to where I live. When I used to spell my street correctly with two words, maps would try to send me to the next town over. So it kind of works, as long as I misspell my street, and ignore the fact that it is showing where I live to be a couple of streets down from where I actually live. I live in Connecticut - not in the most populated of areas, but not in the middle of nowhere either. Amazingly enough Google Maps will correctly find my address whether it's spelled with one words or two words. Google Maps also shows my apartment complex, which Apple Maps does not. I really wish Apple would just do a quick pass of the area to fix these issues. I’ve reported the problem several times, months ago. How long will it take for there to be a fix? I keep trying to use the Apple ecosystem, but Google is clearly the better solution for me.

    Apple does not do the GIS data for maps. That comes from 3rd party vendors like Tom Tom. I have read it takes some time to update map data. The only thing you can do is report it.
    Not to belittle your complaint, but on my end it is Apple that is clearly better. When looking at my house in Google, the satellite photo is more than 4 years old, and the Apple one is much newer. I can tell because of the condition of my home and the neighbor's. They had an above ground pool which was removed 4 years ago and it shows on the Google Map. I had remodeling and roof work done to my home that started 3 years ago and Apple's satellite view showed this work done, which took over a year to complete. I live in the middle of a block in a rural town. Both Apple and Google split the block into 100 parts and put my home close to the beginning of the block instead of where it actually sits. I've reported it to both Google and Apple and no one has changed. Just one of those things. But, keep your chin up, it will get corrected eventually.

  • Access DB (& .ldb file) does not close after crystal reports

    Post Author: mgold
    CA Forum: Crystal Reports
    Access DB (& .ldb file) does not close after crystal reports
    Hi! We have a VB application using Crystal Reports 6 that has worked successfully on hundreds of systems for over 10 years. Now, on one network, the application and access database does not close. It seems to hang on the &#91;.Close&#93; command.
    When we open the application an peruse the screens without opening up a report (using crystal reports), the application and access db closes fine. But as soon as we run a report and then close the report and try to close the application, the access db does not close. Many of the screens open the db and grab data from the access db, but it's only after running crystal reports that we have this problem. (Please see more information below.)
    Setup: Application and data (access 97 db) reside on a server in the same folder, but application shortcut is kicked off on client PC. Kicking off the shortcut on the client PC means that the image/process runs on the client PC (not on the server). In this problem case, the application shortcut is on a Windows XP Pro Version 2002 SP2 PC with the app & data on a Windows 2003 server. Users are local Admins on their PCs with "Full Control"over the directory and files on the server where the data (access 97 db) resides. This type of setup is typical and has worked without any problems for clients.
    The application is written in Visual Basic, using Crystal Reports 6 (using DAO). We close the recordset, set it to zero and then it hangs on closing the db (.Close command).
    A few key pieces of information:
    - The application closes fine if the app & data (access 97 db) are on a local PC. This includes closing fine if the application is run directly on the Windows 2003 server where the data is stored.
    - It worked on this client's network until sometime in the last few weeks.
    - One thing that changed is that the company is using VMWare on its servers. Not sure if they started using VMWare at the same time as it started failing. This may be unrelated. Possibly other things changed, but can't get any more information ... yet.
    - It works fine running the application from a Windows Vista PC with a user who is a domain admin.
    - The access db and application hang for about 10-20 minutes and then eventually closes. It appears that somehow
    Crystal Reports is keeping the db open, but I'm not sure why.The application doesn't quit and the database doesn't close even if I try to end the task with the Task Manager.
    - The Crystl32.ocx version being used is 8.0.0.4 (if that matters).
    - I copied 6 month old program files and database files to a test folder on the Windows 2003 server. It fails using these files that worked fine 6 months ago.
    Any ideas or help would be greatly appreciated! If you know of another good place to post this, please let me know.
    Thanks!
    - Mark

    Crystal doesn't support tables in HTML interpretation. 
    You can probably work your way around this by doing Replace() calls on the relevant tags.
    See:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313337333033383334%7D.do
    The supported HTML tags are:
    " html
    " body
    " div (causes a paragraph break)
    " tr (causes only a paragraph break; does not
    preserve column structure of a table)
    " span
    " font
    " p (causes a paragraph break)
    " br (causes a paragraph break)
    " h1 (causes a paragraph break, makes the font bold
    & twice default size)
    " h2 (causes a paragraph break, makes the font bold
    & 1.5 times default size)
    " h3 (causes a paragraph break, makes the font bold
    & 9/8 default size)
    " h4 (causes a paragraph break, makes the font bold)
    " h5 (causes a paragraph break, makes the font bold
    & 5/6 default size)
    " h6 (causes a paragraph break, makes the font bold
    & 5/8 default size)
    " center
    " big (increases font size by 2 points)
    " small (decreases font size by 2 points if it's 8
    points or larger)
    " b
    " i
    " s
    " strike
    " u
    The supported HTML attributes are:
    " align
    " face
    " size
    " color
    " style
    " font-family
    " font-size
    " font-style
    " font-weight

  • Unable to modify Report using JRC alone

    Hi
    I am trying to modify the report generated thru Crystal reports 2008 programmatically using JRC.
    I dont see any API in com.crystaldecisions.reports.sdk.DataDefController to modify filters,groups,parameters,sort objects and summaries.
    I could find Controller API to modify the above in com.crystaldecisions.sdk.occa.report.application package part of RAS SDK which requires RAS to be installed.
    WIll it be possible to modify report using JRC alone?
    because when i use com.crystaldecisions.sdk.occa.report.application.ReportClientDocument class to open a report, it thorws
    ReportSDKServerException: There is no server specified exception.
    and i am not sure what need to set for ReportClientDocument.setReportAppServer()
    Pls help me .

    Hi,
    Thanks for your help.
    I am getting the below  exception when I am trying to open a report programmatically using  com.crystaldecisions.reports.sdk.ReportClientDocument.
    oReportClientDocument.open(reportName, 0);
    I am not sure how to resolve this issue.
    I have even created a new rpt file. I am getting the same exception/
    I could open this report directly thru Crystal Reports.
    12/16/10 16:19:57:376 IST] 10c3f2a6 WebGroup      E SRVE0026E: [Servlet Error]-[The document is being opened.]: com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: The document is being opened.---- Error code:-2147215349 Error code name:docNotReady
    Error code:-2147215349 Error code name:docNotReady
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown Source)
         at com.crystaldecisions.client.helper.ObjectState.a(Unknown Source)
         at com.crystaldecisions.client.helper.ObjectState.if(Unknown Source)
         at com.crystaldecisions.client.helper.ObjectState.stopping(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.close(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.close(Unknown Source)
         at com.crystaldecisions.reports.sdk.ReportClientDocument.close(Unknown Source)
         at org.apache.jsp._CrystalReportViewer._jspService(_CrystalReportViewer.java:389)
         at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:344)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:662)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(
    Pls help me.
    Edited by: D.Sangeetha on Dec 16, 2010 12:33 PM

  • Update SAP tables after ALV report is displayed

    Hi All,
    I have to display a ALV report using function module REUSE_ALV_GRID_DISPLAY.
    After the report is displayed, user can edit some of the flds in the report, and the fields need to updated in the table. How do I proceed to accomplish this.
    Is it possible to use FM 'REUSE_ALV_DRID_DISPLAY' to do this or we need to use OOPS ALV to do this. 
    I searched for this in this forum, but couldnt get.
    Thanks in advance,
    Ananth

    You can use the REUSE_ALV_GRID_DISPLAY. and can make it a changable. You can specify the column to be changable. Once the user enters data into that coloumn the interna table automatically gets populated with the values.
    I have done a similar program. However you might need to copy some standard GUI status based on your requirements.
    Whats ur mail ID. I can send you the program I have developed.
    Shreekant

  • Strange problems after installing Solaris 10 u6 on 64-bit PC

    Hi all,
    I have run into some very strange issues after installing Solaris 10 update 6 on my 64-bit PC (it's almost new). The problems are with graphical applications and desktop environments based on GTK (so it seems, at least).
    I have installed Solaris normally, following most of the default options and choosing the "Entire Group" software packages installation. However, after the first login I've seen that:
    1. No user creation process was offered to me and I had to login as root (I find it pretty strange)
    2. After logging in as root into JDK system, my screen went blank for a couple of seconds and then the system threw me back to the login screen.
    3. Logging into the old CDE environment was possible, but launching Firefox from there (using a command line terminal) wasn't. It gave me the following error message:
    ld.so.1: firefox-bin: fatal: libmlib.so.2: open failed: no such file or directory
    ld.so.1: firefox-bin: fatal: relocation error: file /usr/bin/firefox/firefox-bin: symbol gtk_init: referenced symbol not found.
    It's very strange because GTK toolkit and JDK environment are supposed to be the core functionalities provided by Solaris. Does anyone have an idea what's going on?
    My system sum-up:
    CPU: Intel Core 2 Quand Q6600 @ 2.4 GHz
    RAM: 2 Gb of DDR2 SDRAM
    Motherboard: MSI MS-7529 (Intel G31 chipset)
    Monitor: AOC LM725
    Graphics card: NVIDIA GeForce 9400 GT
    Hard disk: 2 Western Digital HDs (SATA) 320 Gb each,
    1 Western Digital external USB HD MyBook Essential 2, 500 Gb
    DVD drives: 2 LG DVD drives (SATA)
    Network card: Realtek RTL8168C(P)/8111C(P) PCI-E Gigabit Ethernet NIC
    I use my system in the following way:
    On the first hard disk, I have a one-partition 32-bit Windows XP SP3 installation (ported from my old computer).
    On the second hard disk, I have a functioning Fedora Core 9 installed on the first half of the disk's space (the installation is self-organized into several Linux partitions, e. g. /boot, /swap etc; I am a newbie so I don't know too much about Linux partitioning - only specified to Fedora how much space it could use for its volume group). I installed Solaris onto the second half of the second disk.
    It has be noted that my USB external drive seemed to conflict with the network or graphics cards during the Fedora installation and caused it to hang sporadically, so I installed Fedora with this disk detached. I also detached it when I was installing Solaris, though it seems to have not influenced the problems I experienced. I also have attempted installing Solaris before I did so with Fedora, but had the same issues.

    Well, it seems that the cause of the problem was that my DVD image was just corrupted - I didn't check it vs MD5 codes supplied by Sun assuming it went automatically OK. I downloaded the image again (this time it was OK), reinstalled the system and successfully logged into JDS. However, I am still puzzled why Solaris doesn't offer to create a default non-root user during the installation process.

  • Error value after modifying the contract

    Hi Guys,
    I need help in getting the correct values of u2018Released valueu2019 field of Contract.
    I have written code in u2018ZV_USEREXIT_SAVE_DOCUMENTu2019.  The following code is updating incorrectly on the screen for all line items with the last value of xvbap-awert, when I am saving the contract after modifying it like changing PO date :-
      loop at xvbfa where posnv ne 0 and rfwrt ne 0.
        move xvbfa-rfwrt to xvbap-awert.
        update vbap set netwr = xvbap-awert " RV45A-AWERT
                  where vbeln = xvbap-vbeln
                    and posnr = xvbap-posnr.
        commit work.
    Endloop.
    If the above code is commented, all line items u2018Released valueu2019 field is initialized.
    The values of xvbap-awert for all line items are modifying correctly in internal table xvbap. But in the initial screen of Contract field (VA42) u2018Release valueu2019 is displaying last value of xvbap-awert. This screen field is a structure field RV45A-awert.
    Please help at earliest.

    Hi,
    Did you follow the article below:
    Optional Configurations
    https://technet.microsoft.com/en-us/library/ee758052%28v=exchg.140%29.aspx
    After disable the Automatic Alert Resolution Feature in the Correlation Engine, have you restart the Microsoft Exchange Monitoring Correlation Engine service?
    I assume you missed something when you edit the config file.
    You may change it back and then check the result.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • After ALV Report i need to display the text below that

    Hi Experts,
    I need a help.
    I want to display a write statment after alv report is generated.pls help me.
    Please Urgent.

    here is an example
    call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE' 
                i_callback_html_end_of_list = 'END_OF_LIST_HTML'
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
                i_save                  = 'X'
           tables
                t_outtab                = it_ekko
           exceptions
                program_error           = 1
                others                  = 2.
    *&      Form  end_of_list_html
          output at the end of the list - not in printed output       *
    FORM end_of_list_html USING end TYPE REF TO cl_dd_document.
      DATA: ls_text TYPE sdydo_text_element,
            l_grid     TYPE REF TO cl_gui_alv_grid,
            f(14) TYPE c VALUE 'SET_ROW_HEIGHT'.
      ls_text = 'Footer title'.
    adds and icon (red triangle)
      CALL METHOD end->add_icon
        EXPORTING
          sap_icon = 'ICON_MESSAGE_ERROR_SMALL'.
    adds test (via variable)
      CALL METHOD end->add_text
        EXPORTING
          text         = ls_text
          sap_emphasis = 'strong'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(bold)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Bold text'
          sap_emphasis = 'strong'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(normal)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Normal text'.
    adds new line (start new line)
      CALL METHOD end->new_line.
    display text(bold)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'Yellow triangle'
          sap_emphasis = 'strong'.
    adds and icon (yellow triangle)
      CALL METHOD end->add_icon
        EXPORTING
          sap_icon = 'ICON_LED_YELLOW'.
    display text(normal)
      CALL METHOD end->add_text
        EXPORTING
          text         = 'More text'.
    *set height of this section
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          e_grid = l_grid.
      CALL METHOD l_grid->parent->parent->(f)
        EXPORTING
          id     = 3
          height = 14.
    ENDFORM. "end_of_list_html.

  • Modify Report in po help

    Hi Gurus
    Need to modify report:
    Printed Purchase Order Report(Portrait)
    POXPRPOP
    User want to print PO's greater then $2,500 only
    or can give option's ALL or > 2,500. Any help Thanks in advance
    [email protected]

    There exists a standard Oracle Report "Purchase Order Detail Report". This reports details the PO along with the information on Quantity/Amount Due and Billed.
    Please check if you can use it effecitvely to your use.

  • Very strange thing after 10.7.3 update?

    Very strange thing after 10.7.3 update?
    Everything seems to be working normal except the desk top BBC iPlayer which plays fine in a small window but when you go to full screen still plays the sound but the screen just goes black, no video?
    I thought maybe the update knocked off one of the plugins or players but reinstalled iPlayer and same problem, anyone got a workaround or suggestion as to how I can fix it, am I the only one?
    Full screen YouTube works fine.
    Everything else seems ok, maybe running a little hotter and the fans are kicking in a little sooner but does feel a little snappier.
    Thanks
    Phil

    Seems like they are on it
    http://iplayerhelp.external.bbc.co.uk/help/announcements/full_screen_mac_desktop
    I hope it doesnt take too long

  • Strange. After importing a series of images from a Sony camcorder, I see the images but there's no sound, although there is sound on the camera.

    strange. After importing a series of images from a Sony camcorder, I see the images but there's no sound, although there is sound on the camera.

    Hi Jan,
    Looks like a common problem, see if this is of any help...
    http://www.bigasoft.com/articles/how-to-import-sony-handycam-avchd-mts-mpeg2-to- imovie.html

Maybe you are looking for

  • IMac G5 (iSight) kernel panics

    I'm having continuous kernel panics with my iMac G5. I unplugged all external drives/accessories. I removed additional RAM. I zapped the PRAM. I rebooted with different disks (all crash sooner or later -- often sooner). I ran Techtool pro (in target

  • Change IP address on ECC6 (ABAP + JAVA stack)

    Hi all, we need to change the IP address of our server running an ECC6 with double stack (ABAP & Java). Also the DB is in the same server (it's a Demo IDES system). The computer's name will remain the same as previously. In the HOSTS file we have upd

  • Error Message in cyrus

    Hi, I have an error message in cyrus warning: database /etc/aliases.db is older than source file /etc/aliases Any idea how I can resolve this? Cheers Ben

  • Can I save Projects in their entirety (with photos) for future printing?

    Hi - I have 15 iPhoto books that I would like to have printed. I have built these books with photos selected from a group of roughly 12,000 in my iPhoto library. I would like to have the books printed and then archive my photos to DVDs and delete the

  • Pdf and email

    I have been working on a procedure to send pdf email attachments and have come across a problem that is testing my patience. I am trying to send two types of pdf, one created in oracle reports and one created in microsoft access. The pdf i send from