Without fclose

Hi,
For debugging the application, some logs are written using UTL_FILE utility; but by mistake, fclose statement is missing. Thus the debug log file is created with 0 byte size and nothing has been written in it.
While trying to delete that file from OS, it is throwing error "It is being used by another person or program".
Can you please suggest how I can delete that file.
Thanks,
Anjan

Anjan Sil wrote:
For debugging the application, some logs are written using UTL_FILE utility; I do not think this is a good idea... A long time ago, in a computer environment far far away, we had only files to use. Flat files, ISAM files, VSAM files, etc.
And we lamented that these were so clunky. That you could not easily index a file, filter data, aggregated data.
And then came the RDBMS. And we had the database replacing the file. Allowing us to easily do all we wanted, from isolating transactions to providing read consistency, able to handle TB's of data fast and efficiently.
Now you want to throw that way, by creating an external log file? Using primitive I/O techniques that are not really thread-safe? Writing to a file on a server that is outside the security fence of the database? That is difficult to access, filter, sort and aggregate?
Why?
Surely it is a lot easier, faster, and more robust, to use a log table as oppose to a flimsy log file?

Similar Messages

  • Linking to an OBIEE report without showing the user and password

    Hi!
    we are trying to access to an obiee report from an external portal (coded with php).
    The idea is that the user clicks on a link an gets the report in pdf format. For that purpose we are using this url:
    http://ttivobiee01:7001/analytics/saw.dll?Go&Path=/shared/Prueba/ogp_obi&Action=Print&P0=1&P1=eq&P2="Criteria"."Key"&P3=1402&NQuser=user&NQPassword=pass&format=pdf
    But this url is expossing OBIEE's user and password.
    In order to avoid this security issue we tried to do an wget of the url but it doesn't return the report. Instead we get an html, which seams to download the report chunk by chunk (using javaScript).
    The question is, is there any way that we could let our portal ussers access to an obbie report without expossing the user and password?
    I have been looking into oracle forums and have found this: OBIEE Go URL with password protected
    but we couldn't use this aproach due to security issues.
    Thanks!
    Nuria

    Hi!
    We have finally done this (and it works!)
    <?php
    $urlInforme='http://obi:7001/analytics/saw.dll?Go&Path=/shared/Prueba/ogp_obi&Action=Print&P0=1&P1=eq&P2="Criterios"."Clave oficial"&P3=1402&NQuser=user&NQPassword=pass&format=pdf';
    $ch = curl_init($urlInforme);
    $ckfile = tempnam ("./", "CURLCOOKIE");
    $ch = curl_init ($urlInforme);
    curl_setopt ($ch, CURLOPT_COOKIEJAR, $ckfile);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    $output = curl_exec ($ch);
    $ch = curl_init ($urlInforme);
    curl_setopt ($ch, CURLOPT_COOKIEFILE, $ckfile);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    $fp = fopen("salida.pdf", "w");
    curl_setopt($ch, CURLOPT_FILE, $fp);
    $output = curl_exec ($ch);
    curl_close($ch);
    fclose($fp);

  • I want to write record type variable in ult file.How to i can write record type varable without column name.

    I want to write record type variable in ult file.How to i can write record type varable without column name.
    type rec_format_type is record
         format1  VARCHAR(3),
         format2  VARCHAR(3),
    my_record     rec_format_type;
    UTL_FILE.PUT_LINE(file_out, my_record);

    ibney wrote:
    I have below requirement.
    DECLARE
         emp_data UTL_FILE.FILE_TYPE;
    BEGIN
        emp_data := UTL_FILE.FOPEN ('EXDATAPUMP','TEST_BC_NN_PARALLEL.csv','W',32000);
        FOR TEST1 IN (SELECT /*+ PARALLEL(TEST_BC_NN,4) */  * FROM TEST_BC_NN) LOOP
            UTL_FILE.PUT_LINE (emp_data, TEST1);---Here i want to write record in utl file.without knowing the structure of table
        END LOOP;
        UTL_FILE.FCLOSE (emp_data);
    END;
    Why all the ugly upper case? You do realise that NO programming standard, ranging from Java and .Net, to C/C++ and Ada (of which PL/SQL is an implementation of), use upper-case-for-reserved-words as a standard.
    The easiest and simplest way to address your requirement is as follows:
    SQL> create or replace type TStringArray is table of varchar2(4000);
      2  /
    Type created.
    SQL>
    SQL>
    SQL> begin
      2          for c in(
      3                  select
      4                          TStringArray(
      5                                  to_char(empno,'000000'),
      6                                  ename,
      7                                  to_char(hiredate,'yyyy-mm-dd')
      8                          ) as COLS
      9                  from    emp
    10                  order by empno
    11          ) loop
    12                  for i in 1..c.Cols.Count loop
    13                          dbms_output.put( c.Cols(i) );   -- write column
    14                          if i < c.Cols.Count then
    15                                  dbms_output.put( '|' ); -- write column separator
    16                          end if;
    17                  end loop;
    18                  dbms_output.put_line( ' *end*' );               -- write record terminator
    19          end loop;
    20  end;
    21  /
    007369|SMITH|1980-12-17 *end*
    007499|ALLEN|1981-02-20 *end*
    007521|WARD|1981-02-22 *end*
    007566|JONES|1981-04-02 *end*
    007654|MARTIN|1981-09-28 *end*
    007698|BLAKE|1981-05-01 *end*
    007782|CLARK|1981-06-09 *end*
    007788|SCOTT|1987-04-19 *end*
    007839|KING|1981-11-17 *end*
    007844|TURNER|1981-09-08 *end*
    007876|ADAMS|1987-05-23 *end*
    007900|JAMES|1981-12-03 *end*
    007902|FORD|1981-12-03 *end*
    007934|MILLER|1982-01-23 *end*
    PL/SQL procedure successfully completed.
    SQL>

  • New DC without netlogon share is not working.

    Hello all,
    I have a brand new DC  (server 2012) that I joined to my domain and it is not behaving. It is a clean install plus the directory services role, the static IP and the promotion, nothing else. The domain has one more DC (server 2012) and it is functioning
    properly. The DNS servers of the new DC are the working DC and 127.0.0.1 as secondary. The time is the same, the name is new on a new install of windows (no images, no cloning, no restores). The promotion completed successfully with the initial replication
    (it said).
    Here is the output of dcdiag:
    Directory Server Diagnosis
    Performing initial setup:
       Trying to find home server...
       Home Server = IL-DC2
       * Identified AD Forest.
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\IL-DC2
          Starting test: Connectivity
             ......................... IL-DC2 passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\IL-DC2
          Starting test: Advertising
             Warning: DsGetDcName returned information for \\MD-DC.mydomain.com, when we were trying to reach IL-DC2.
             SERVER IS NOT RESPONDING or IS NOT CONSIDERED SUITABLE.
             ......................... IL-DC2 failed test Advertising
          Starting test: FrsEvent
             ......................... IL-DC2 passed test FrsEvent
          Starting test: DFSREvent
             There are warning or error events within the last 24 hours after the SYSVOL has been shared.  Failing SYSVOL
             replication problems may cause Group Policy problems.
             ......................... IL-DC2 passed test DFSREvent
          Starting test: SysVolCheck
             ......................... IL-DC2 passed test SysVolCheck
          Starting test: KccEvent
             A warning event occurred.  EventID: 0x80000481
                Time Generated: 03/06/2014   05:07:50
                Event String: Internal event: The following schema class has a superclass that is not valid.
             A warning event occurred.  EventID: 0x80000481
                Time Generated: 03/06/2014   05:07:50
                Event String: Internal event: The following schema class has a superclass that is not valid.
             A warning event occurred.  EventID: 0x80000481
                Time Generated: 03/06/2014   05:07:50
                Event String: Internal event: The following schema class has a superclass that is not valid.
             A warning event occurred.  EventID: 0x80000B46
                Time Generated: 03/06/2014   05:09:43
                Event String:
                The security of this directory server can be significantly enhanced by configuring the server to reject SASL
     (Negotiate,  Kerberos, NTLM, or Digest) LDAP binds that do not request signing (integrity verification) and LDAP simple
     binds that  are performed on a cleartext (non-SSL/TLS-encrypted) connection.  Even if no clients are using such binds,
    configuring the server to reject them will improve the security of this server.
             ......................... IL-DC2 passed test KccEvent
          Starting test: KnowsOfRoleHolders
             ......................... IL-DC2 passed test KnowsOfRoleHolders
          Starting test: MachineAccount
             ......................... IL-DC2 passed test MachineAccount
          Starting test: NCSecDesc
             ......................... IL-DC2 passed test NCSecDesc
          Starting test: NetLogons
             Unable to connect to the NETLOGON share! (\\IL-DC2\netlogon)
             [IL-DC2] An net use or LsaPolicy operation failed with error 67, The network name cannot be found..
             ......................... IL-DC2 failed test NetLogons
          Starting test: ObjectsReplicated
             ......................... IL-DC2 passed test ObjectsReplicated
          Starting test: Replications
             ......................... IL-DC2 passed test Replications
          Starting test: RidManager
             ......................... IL-DC2 passed test RidManager
          Starting test: Services
             ......................... IL-DC2 passed test Services
          Starting test: SystemLog
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 03/06/2014   04:20:58
                Event String: The WinRM service is not listening for WS-Management requests.
             A warning event occurred.  EventID: 0x000003F6
                Time Generated: 03/06/2014   04:50:41
                Event String:
                Name resolution for the name teredo.ipv6.microsoft.com. timed out after none of the configured DNS servers r
    esponded.
             A warning event occurred.  EventID: 0x000003F6
                Time Generated: 03/06/2014   04:50:41
                Event String:
                Name resolution for the name teredo.ipv6.microsoft.com. timed out after none of the configured DNS servers r
    esponded.
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 03/06/2014   04:51:32
                Event String: The WinRM service is not listening for WS-Management requests.
             An error event occurred.  EventID: 0x00001001
                Time Generated: 03/06/2014   04:56:46
                Event String:
                The machine IL-DC2 attempted to join the domain mydomain.com but failed. The error code was 1332.
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 03/06/2014   04:58:07
                Event String: The WinRM service is not listening for WS-Management requests.
             An error event occurred.  EventID: 0x0000271A
                Time Generated: 03/06/2014   04:58:06
                Event String:
                The server {9BA05972-F6A8-11CF-A442-00A0C90A8F39} did not register with DCOM within the required timeout.
             A warning event occurred.  EventID: 0x00001796
                Time Generated: 03/06/2014   04:59:21
                Event String:
                Microsoft Windows Server has detected that NTLM authentication is presently being used between clients and t
    his server. This event occurs once per boot of the server on the first time a client uses NTLM with this server.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:00:09
                Event String:
                Driver HP Universal Printing PCL 6 required for printer HP Universal Printing PCL 6 is unknown. Contact the
    administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:00:09
                Event String:
                Driver Send To Microsoft OneNote 2010 Driver required for printer Send To OneNote 2010 is unknown. Contact t
    he administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:00:12
                Event String:
                Driver HP Universal Printing PCL 6 required for printer HP Color LaserJet CM1312nfi MFP (192.168.2.20) is un
    known. Contact the administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:00:12
                Event String:
                Driver Microsoft XPS Document Writer required for printer Microsoft XPS Document Writer is unknown. Contact
    the administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:00:13
                Event String:
                Driver PrimoPDF required for printer PrimoPDF is unknown. Contact the administrator to install the driver be
    fore you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:00:13
                Event String:
                Driver Send to Microsoft OneNote 15 Driver required for printer Send To OneNote 2013 is unknown. Contact the
     administrator to install the driver before you log in again.
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 03/06/2014   05:08:51
                Event String: The WinRM service is not listening for WS-Management requests.
             A warning event occurred.  EventID: 0x00001796
                Time Generated: 03/06/2014   05:12:17
                Event String:
                Microsoft Windows Server has detected that NTLM authentication is presently being used between clients and t
    his server. This event occurs once per boot of the server on the first time a client uses NTLM with this server.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:13:02
                Event String:
                Driver HP Universal Printing PCL 6 required for printer HP Universal Printing PCL 6 is unknown. Contact the
    administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:13:02
                Event String:
                Driver Microsoft XPS Document Writer required for printer Microsoft XPS Document Writer is unknown. Contact
    the administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:13:03
                Event String:
                Driver HP Universal Printing PCL 6 required for printer HP Color LaserJet CM1312nfi MFP (192.168.2.20) is un
    known. Contact the administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:13:04
                Event String:
                Driver PrimoPDF required for printer PrimoPDF is unknown. Contact the administrator to install the driver be
    fore you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:13:04
                Event String:
                Driver Send To Microsoft OneNote 2010 Driver required for printer Send To OneNote 2010 is unknown. Contact t
    he administrator to install the driver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 03/06/2014   05:13:05
                Event String:
                Driver Send to Microsoft OneNote 15 Driver required for printer Send To OneNote 2013 is unknown. Contact the
     administrator to install the driver before you log in again.
             ......................... IL-DC2 failed test SystemLog
          Starting test: VerifyReferences
             ......................... IL-DC2 passed test VerifyReferences
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : mydomain
          Starting test: CheckSDRefDom
             ......................... mydomain passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... mydomain passed test CrossRefValidation
       Running enterprise tests on : mydomain.com
          Starting test: LocatorCheck
             ......................... mydomain.com passed test LocatorCheck
          Starting test: Intersite
             ......................... mydomain.com passed test Intersite
    I also have the following event:
    Log Name:      System
    Source:        NetJoin
    Date:          3/6/2014 4:56:46 AM
    Event ID:      4097
    Task Category: None
    Level:         Error
    Keywords:      
    User:          S-1-5-21-1062633599-3710215183-3313947919-500
    Computer:      IL-DC2
    Description:
    The machine IL-DC2 attempted to join the domain mydomain.com but failed. The error code was 1332.
    Although the machine joined the domain, it is listed with the appropriate records and promoted. 
    Can anybody help me get a second DC for this domain running? It is kind of urgent... I tried demoting/promoting, reinstalling, I tried to do a non-authoritative restore, however, I don't have the appropriate registry key... I saw the various different posts
    on similar issues, please do not paste them as I read them and I was not able to solve this.
    Thank you in advance for any responses!
    Best regards,
    Irina

    Umar,
    Thank you big time for your time and help today. After we finished talking I tried the authoritative restore (vs non-authoritative the first time - didn't help) and then I started over (one more time) and created one more DC. Before promoting it I disabled
    the firewall and the user control in order to make sure nothing is stopping it. I also triple checked the time. I promoted it without the DNS server and Global Catalog functions. I faced the same wall. After the promotion the SYSVOL and NETLOGON shares were
    still not there. 
    After hours of more reading I finally found this:
    http://social.technet.microsoft.com/Forums/en-US/58b8cdc3-a990-46c7-a70e-a51fd6965537/sysvol-and-netlogon-shares-missing-from-new-domain-controllers-using-dfrs?forum=windowsserverpreview
    and it saved me. So I followed this guy's steps and my system shares showed up on both new DCs. Then I had to wait one more hour for everything to get in sync and after that I successfully shut down my main DC and the other two took over. 
    Thank you again for the help!
    Best regards,
    Irina

  • View data in client B from client A in the same SID without a valid logon?

    Hi Folks
    We are planning on upgrading our 4.6C system to ERP 6.0, and are initialy considering having two clients in the same sandbox SID.  One would be for the developers to perform code remediation checks (client A), and one would contain a copy of production data for performing testing of functionality over live data (client B).
    Would it be possible to view data in client B from client A in the same system without a valid logon to client B or RFC connection to client B from client A?   For example via the use on an ABAP program to SQL the database?
    I know one can use transactions like SM30/SM31 to view, compare, and adjust data between clients, but this requires an RFC connection and valid logon to the target client.
    Regards
    Kevin.

    Hi Kevin.
    >
    Kevin McLatchie wrote:
    > Would it be possible to view data in client B from client A in the same system without a valid logon to client B or RFC connection to client B from client A?   For example via the use on an ABAP program to
    Short answer: yes.
    If someone has the right to write and execute ABAP reports on the system he is able to access the data of all clients. So I don't think that this setup is advisable. Don't mix development and production data in one system.
    Best regards,
    Jan

  • SSO to ECC (without java stack), BI (on NetWeaver), & Portal

    I have a client that wants to configure their SAP systems in such a way so that the users sign onto their Windows workstations, are authenticated by Windows Active Directory and from then on they can sign on directly to an ECC ABAP instance, a BI instance, and an SAP Portal without having to supply a user/password combination again. (We already have SSO setup for users access some BI reports through the Portal, but in this case we want to setup direct access to the ECC and BI systems without necessarily going through the Portal environment).
    The servers are running HP-UX, the clients Windows XP, and the AD system is running under Windows 2003.
    Is this possible without using a third-party tool and if so,can anyone point me to the appropriate documentation (I've done a lot of searching, but can't find anything).
    Thanks in advance!

    I am sure this has been done before and often discussed here?
    Take a look in the FAQ thread at the top of the forum for a general overview discussion of SSO. If you keep an eye out for the note numbers, terms used and those folks who contributed to it when searching, then I am sure will find plenty of infos to start with.
    Specific vendor evaluation details and comparisons (outside of the technical realm) are generally not provided, as the 3rd parties are generally competitors...
    Cheers,
    Julius

  • OBIEE 11g - without going to Sawbridge first.....

    If you called OBIEE via the default path: http://domain-name/analytics?NQuser=xxx&NQpassword=xxxx
    instead of
    http://domain-name/analytics/saw.dll?NQzuser=xxx&NQpassword=xxxx  
    would your credentials be checked by weblogic before the default login jsp has access to the request parameters or after?
    Or does weblogic/OBIEE  stop you passing parameters to the default URL?
    What I'm trying to say is, if you go via the default domain without calling saw.dll first can you pass an encrypted password to your bespoke login.jsp (default.jsp) within the analytics domain and get this default.jsp
    to convert the password to plain text and then this default.jsp calls (forwards) to saw.dll....

    I have been trying to log in with my YouTube account name and password like usual. I just tried using my gmail log in and it works. Did they merge or something? It was working yesterday just fine without me changing the way I logged in. Either way, thanks for the help! Works great now
    Message was edited by: EvoXFTW

  • Edit and output video without modifying any pixels?

    That subject line sounds cryptic, I'm sure, but I need to assemble numerous snippets of animated pixel art into what should become a somewhat lengthy animation. Final Cut should perform no internal resizing and no compression prior to output; all input files are 240x160 without exception. Stills are PNG to take advantage of the Alpha channel, but the animated clips are uncompressed QuickTime with a single, unique RGB value reserved for the background for chroma-keying (all layering is to be all-or-nothing with regard to the Alpha/keying; there is no partial transparency at play).
    All I need is to compile these clips together, layer a few elements on top of each other, and tweak the timing here and there. Beyond that, Final Cut should leave everything exactly like it found it, down to the pixel. (I'll worry about the output format and compression later.)
    Is this possible (and easy) in Final Cut Express? In my disastrous trials with Adobe Premiere Elements (v.1), Premiere insisted on internally resizing the clips for editing, which fuzzed up the images and defeated the chroma keying (as if the fuzziness wasn't bothersome enough). It's possible this was due to user error, but as far as I can tell, nothing can prevent Premiere from reprocessing everything into its native DV dimensions, which is quite destructive toward pixel art. Anyway, I'm frustrated enough with Premiere that I'm willing to purchase Final Cut, if it can meet these requirements easily.
    Thanks much for any information you can provide. Oh, and if Final Cut could possibly output the entire sequence as an animated GIF, that'd be fantastic, but I tend to think it'd be a little too heavy-handed (even though my total palette is well below 256 colors) because it's used to crunching fancy true-color videos instead of this basic pixel art.

    After some further research, it seems my best approach for this project will be to compose my small QuickTime clips with all layering done beforehand, then assemble them with a utility such as QuickTime Pro or MPEG Streamclip, as discussed here:
    http://discussions.apple.com/thread.jspa?messageID=7813920&#7813920
    MPEG Streamclip, in fact, seems to work quite well in my initial tests. If the clips are numbered sequentially, dropping them into the application assembles them beautifully. And it's free!
    Thanks again to those who replied.

  • Sale Order without Division

    Hi,
    I have an issue in prodution system, there is a sales order created in 2008 without division (I dont know how the system allowed), this sale order is created with reference to a contract, and the contrct is having division. And now users want to close the sale order. When i am trying to open sale order in VA02 / VA03, it is giving error mesage " Sales area 1000 10 is not defined". Now I am unable to open the order.
    Pls anybody suggest me how to close this order??
    How system will allow to create a sale order without delivery??
    Regards,
    Srikanth

    Hi,
    I can see a way by which this could have happened.
    Initially there was a sales area called 1000/10/00. For tihs sales area, some transactions were created. After sometime, by mistake or intentionally the assignment of this sales area is deleted in configuration. If this is done, it will affect the documents in retrospect and all those documents cannot be processed from then onwards. There is a possibility that this has happened in your case.
    Check some other sales orders for the sales org 1000 created in 2008 and you are bound to get this error. If you realise that there are lot of documents affected because of this, please check the change logs in the sales area configuration and find out when was the sales area dimantled in the system. There can be some business reason behind this. Find out the business reason, tell them implication of removing the sales area, do the configuration once again and rectify the affected documents once again by means of a Zprogram.
    Please check initially what is said, and let me know if you need more information on this

  • Open discoverer report in new browser window and without connections page

    Hi All,
    We are using Oracle 11g Discoverer 11.1.1.4.  Requirement is to open the discoverer report in a new browser window and without connections page.
    When we are running discoverer reports with this parameters we unwantedly get the connections page of the discoverer plus which we don't want.
    Went through the documentation given in this page and followed it still the issue persists, and i see couple of threads with my issue and no updates.
    This excerpt is from the documentation available in the link
    " _plus_popup=true and framedisplaystyle=embedded launches Discoverer Plus in a new pop-up browser window that contains the Plus applet embedded in it "
    http://www.art2dec.com/documentation/docs/oas10g1012/linux/bi.1012/b13918/urlstart.htm
    and Here is what we use to invoke our reports.
    http://ipaddress:port/discoverer/plus?cn=cf_123&_plus_popup=TRUE&framedisplaystyle=EMBEDDED&wb=disc_wb_1
    Request the forum users from PRO discoverer group to help me out of this issue and expect a good discussion on this.
    Thanks in advance

    Closing the thread
    We were able to achieve by changing the browser settings in the IE 8 Browser. Disabled Tabbed browsing.

  • Activity Report download is saved without extension and unreadable

    Hello,
    The Portal Activity Report iView has a button which enables the user to download the report to his PC.
    The problem is that when the user clicks on that button and saves the file it is being saved by this default name: com.sap.portal.activityreport.frontend.DownloadableActivityReport
    The main problem is that it is being saved by default without any extension and after saving the user needs to manually add the .xls suffix.
    Another problem is that once I open the report with Excel The Object Name column is unreadable.
    Is there any way to resolve these issues?
    Roy

    Hi Roy,
    > if it wasn't supported there
    > or you would still consider it as a bug?
    The feature in general of course was supported, but what I cannot say is if it was a known issue that it didn't work correctly. As I dont't use the ActivityReport, I also have no experience if it didn't work at some time and maybe now is working.
    The wrong filename I don't expect to be corrected in the meanwhile, as said, that's a problem in some places. So at least for this you could open an OSS message. And maybe combine this with the problematic column issue.
    But if upgrading to SP18 would be an option for you, maybe you could first test that.
    Hope it helps
    Detlev

  • Can we change billing doc without cancelling( excise invoice is subsequent)

    Dear all,
    Here is a urgent issue
    One Excise invoice has been created with reference to a billing document
    and we have not maintained tax code in that condition records so it is not allowing to release the doc for accounting entries
    now my requirement is without cancelling the excise invoice and also not to do transaction  J1ih,( to create excise JV for direct GL entries
    i want to change the billing document
    Thanks in advance

    have not maintained tax code in that condition records
    While it is not necessary to reverse the excise invoice, the fact is that since tax code was not flowing in billing document, I am sure, excise duty would also not be flowing, in which case, your excise invoice is also generated for wrong value. 
    I would be surprised if you say that excise values are flowing in billing document and also in excise invoice and if your issue is only tax, then as already suggested, maintain a condition record (with the date in line with pricing date in billing document) and try.
    G. Lakshmipathi

  • Proforma invoice is created for delivery without PGI in STO(Depot sales)

    Dear Gurus,
       I am facing a strange issue, user created Purchase order with some material X of 4 quantity, and he created the replenishment delivery for 1 quantity and without doing any Picking and PGI but system allowed to create proforma invoice with 4 quantity I checked the copy control config settings for Delivery and Proforma invoice all are maintained fine (viz., billing qty as D, copying req:311 and Data VBRK\VBRP:001)( Ichecked the change log for delivery but I didnt observed any chanes in delivery) .. strange to watch ........created the same scenario in quality but system doesnt allowed to create proforma invoice without PGI and picking(Just one month before quality is refreshed with Production).
    If anyone faced the same problem let me konw the solution ate the earliest.
    Best Regards,
    Kishore.SGR

    Hi
    As already said, as per the standard the Performa Invoice do not check the Goods Issue status of a Delivery since it uses the Copying Requirement 009 in transaction VTFL.
    If you want your performa invoice to be created only after the PGI of a delivery, then use the Requirement 003 in Copying Requirement field for the combination of your Delivery Doc. and Billing doc. in transaction VTFL at Header level.
    Regards
    Amitesh Anand

  • Have Macbook Pro & 4th gen iPod Touch. Downloaded & installed iOS 4.3.2 yesterday. Upgrade went without a hitch, but now iTunes on My Macbook Pro will not open. I get an error that says "iTunes" Data too new to be used with this version of iTunes.

    Have a Macbook Pro and a 4th gen iPod Touch. Downloaded and install iOS 4.3.2 yesterday. Upgrade went without a hitch, but now iTunes on My Macbook Pro will not open. I get an error that says --The file "iTunes Library" cannot be read because it was created by a newer version of iTunes--. I am running iTunes 10.1.  I searched for Updates to my MacBook Pro (running 10.6.7), but comes back saying no updates available. WHAT IS GOING ON??

    Is your computer still authorized in the Store menu in iTunes?
    iTunes Store: About authorization and deauthorization
    When I changed to my new MacBookPro I had to authorize it although I used TimeMachine to transfer my settings and data.
    Did you try to deselect Wi-Fi syncing and enable it again after that?
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi syncing
    Did you already transfer your purchases and manually started a backup?

  • XML Publisher Report in EBS without Standard Oracle Report

    Hi folks ,
    i have some questions.
    Can I create a XML Publisher Report for the EBS without a Standard Oracle Report in EBS.
    So that I can build up the files with the Desktop Publisher, create Data Definition / Template with Upload / Create the executable und concurrent and than only start the new program in EBS ?
    I have the situation that I can start my program with the template in the background but ít is searching for the report on the file system.
    Thanks in advance for the feedback.
    regards
    Kay

    Hi Ravi ,
    can i do it only with the xml Publisher , because when i tried it in the past and get all the staff like Template / DD / CP up and running and started the CR i get an error from the system that he is missing a report directly in the file system... so he searched for the report himself on system like a standard 6i Report. But the template and the dd is stored in the db. So my question again, can I use the XML Puplisher without a Standard Report or can i use a dummy file only for checking and after that he use my template / dd.
    regards
    Kay

Maybe you are looking for