Conversation prob

hi to all
i have created one flat file , there in start date coloum i have taken a startdate in date format like yyyy/mm/dd , but in excel sheet it is coming dd/mm/yyyy and report also 112,007.000 , plz give me any suggestion , its urgent plz
i will assign a point
regards
pranita

Hi Pranita,
Lets say in excel column a1 you have date stored . Change the cellformat to custom and format should be "00000000" .Search and replace "/" by space ,so 11/12/2006 becomes 11122006 .
And apply following code in some other column lets say B1
=CONCATENATE(MID(A1,5,4),MID(A1,3,2),MID(A1,1,2))
so it becomes 20061211 .
Hope that helps.
Regards
Kapadia
***Assigning points is the way to say thanks in SDN.***

Similar Messages

  • File Conversion Prob

    I recored some songs I wrote with the microphone of my 30GB Vision: M, and under properties the file type simply says, "File". Does anyone know how to change the format so I can put the songs on an audio CD so I can listen to it in my car?

    I tried that using Windows Media Player on two different computers, on one whenever I try to burn it says, "Error occured" and on the other a dialog box that says "Windows Media Player encountered an unknown error. This can occur when another program or operating system component encounters a problem but does not communicate the nature of the problem to the Player." pops up.

  • Video conversion probs

    How do i convert video files to work with my ipod nano 3rd g 8GB? it wont even let me drag them into my itunes library... any suggestions?

    Another free application is MediaCoder 0.6.0.
    see: http://mediacoder.sourceforge.net/index.htm
    Under the "Extentions" menu there is a preset that allows you to preload the iPod settings, which makes it pretty easy.
    Message was edited by: toujoursdan

  • Will bass management and 44kHz work in the next release for X

    title says it all. hard to seriously use XFi cards for serious HT or music with no bass management for analog out and forced sample conversion (prob not even using the xfi's hw to do it well) over spdif (and prob analog too, but no way to verify that).

    We have just released Adobe Reader Touch version 1.3 for Windows 8 and Windows RT.
    Basic form filling
    Color and opacity (transparency) options for Text Markups (Highlight, Strikeout, Underline)
    Adobe Reader Touch version 1.3 also includes the past updates.
    Printing
    Commenting tools (Sticky Notes, Highlight, Strikeout, Underline)
    Go to Page
    Save and Save As
    You can update your app from the Windows Store to get this latest capability and let us know what you think.
    FAQ: How to update Adobe Reader Touch to the latest version

  • My iphone 4 s has been losing service all day and freezing is anybody else having this prob its even to the point i cant hold a phone conversation without it cutting off.

    My iphone 4 s has been losing service all day and freezing is anybody else having this prob its even to the point i cant hold a phone conversation without it cutting off

    I had major issues with the iPhone 4s battery, however it’s resolved.
    The tech who set the phone up at the Apple store did so with little training.
    if you have a mobile me account. First go and move all your data to the cloud by going on your computer and logging in at me.com/move. The cloud has replaced mobile me, so there is no need for those two accounts
    Also make sure that for any of your email accounts you set them up to fetch, not push. My tech person set them all to have the email servers push data to the phone. The new iphone4s antenna is extremely strong so it will continually try to access stuff that is pushed–***** a lot of battery life doing this. It makes it worse if you have exchange 2010 accounts. Something about changes made to exchange really suck battery life from devices that access such accounts.
    turning of locator and the push notifications from facebook--they have a lot!

  • DST prob for conversion from US/Eastern- GMT but not from GMT- US/Eastern.

    Hi folks,
    I'm running the following SQL against a Oracle 10.2.0.1 g server using Oracle SqlDeveloper 1.5.3 & then again using SQLPlus 10.2.0.1.0.
    I'm attempting to provide SQL that highlights the jump forward by one hour at 2am US/Eastern on 14th Mar 2010.
    In order to do this I've converted times from GMT into US/Eastern using the oracle function from_tz and to_timestamp.
    The following sql statements are suffixed with a 'correct' or 'incorrect' as to whether they correlate to what I would expect and indeed to the time returned from the World Clock website.
    =======================
    = Via Oracle SqlDeveloper 1.5.3
    =======================
    -- The first section of selects highlight the jump of 1 hour forward that occurs on the 14th of March 2010 by converting the GMT time to the corresponding US/Eastern time and the second block reverses the conversion.
    select from_tz(to_timestamp('14-MAR-2010 0500' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 00:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0600' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0659' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01:59:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0700' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0701' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03:01:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0800' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 04:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0000' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 05:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0100' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06:00:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0159' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06:59:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0200' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 07:00:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0300' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08:00:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0301' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08:01:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0400' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 09:00:00.000000000 US/EASTERN incorrect
    which is as I would expect. At 6:59am GMT the time in US/Eastern is 1:59 am, however, at 7:00am the time in US/Eastern is now 3:00am. This correlates to the times I get back when I perform the same calculations using the converter at the WorldClock.
    http://www.timeanddate.com/worldclock/converter.html
    However when I attempt to perform the same conversions except in reverse i.e. from US/Eastern to GMT I get different results.
    -- everything is fine up until the actual time of the change over (2am US/Eastern). With the 2:00am time though I would expect Oracle or perhaps even the SqlDeveloper client to indicate either of the following :-
    a) the time 14-MAR-10 02:00am US/Eastern is actually a non-existant time as per the WorldClock.
    b) that it's defaulting the time 14-MAR-10 02:00am to 14-MAR-10 03:00am US/Eastern
    instead the results proceeding the sql statements are output and for any time on/after 2am they are 1 hour behind their correct GMT times as per the world clock.
    I understand that there is a patch for timezone's from 10.2.0.1 to 10.2.0.4 that should address this, however, the reason I'm posting this is because when I run the above SQL in sqlplus against the same server I get different results except this time both conversions are incorrect.
    =======================
    = Via SqlPlus 10.2.0.1.0
    =======================
    select from_tz(to_timestamp('14-MAR-2010 0500' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 00.00.00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0600' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01.00.00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0659' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 01:59:00.000000000 US/EASTERN correct
    select from_tz(to_timestamp('14-MAR-2010 0700' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 02.00.00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0701' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03:01:00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('14-MAR-2010 0800' , 'DD-MON-YYYY HH24MI'), 'GMT') at time zone 'US/Eastern' from dual; -- returns 14-MAR-10 03.00.00.000000000 US/EASTERN incorrect
    select from_tz(to_timestamp('13-MAR-2010 2300' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 04.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0000' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 05.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0100' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0159' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 06.00.00.000000000 GMT correct
    select from_tz(to_timestamp('14-MAR-2010 0200' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 07.00.00.000000000 GMT incorrect
    select from_tz(to_timestamp('14-MAR-2010 0300' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08.00.00.000000000 GMT incorrect
    select from_tz(to_timestamp('14-MAR-2010 0301' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 08.01.00.000000000 GMT incorrect
    select from_tz(to_timestamp('14-MAR-2010 0400' , 'DD-MON-YYYY HH24MI'), 'US/Eastern') at time zone 'GMT' from dual; -- returns 14-MAR-10 09.00.00.000000000 GMT incorrect
    so it's as if the Oracle Client SqlDeveloper somehow intervenes as the results come back from the server an adjusts it for the first set of conversions but not the second.
    Basically it looks like I need the patch for the timezones for 10.2.0.1 but what about the Clients? Is there patches I then need for them? Would the SqlPlus client that ships with 10.2.0.4 return the correct results or once the patch is applied to the server.
    Has anyone else encountered this problem and if so would they be able to point me in the direction of a resource describing and resolving it?
    Thanks,
    Mark.

    Hey Robert,
    Yes indeed we are paying for Oracle support? As far as I know I logged in through metalink in an effort to investigate this problem.
    Our DBA upgraded from 10.2.0.4 to 10.2.0.1 and all the inconsistency went away thankfully.
    Thanks for taking the time to reply to me,
    Mark.

  • My conversation with a Verizon Rep concerning the iPhone shipments.

    I understand that a lot of you think that the CSR's are not very knowledgeable about the shipment of our phones, and that may be the case, however I thought I would post my conversation that I just had with one. 
    I added more to the bottome as I continued my chat.
    JoAnn Ford: Great! Thank you for your help.
    Please hold for a Verizon Wireless sales representative to assist you with your order. Thank you for your patience.
    You are now chatting with 'Brittany'
    Brittany: Hello. Thank you for visiting our chat service.  May I help you with your order today?
    JoAnn Ford: I pre-ordered an iPhone 4s. Im sure you are getting a million of these questions so I apologize ahead of time....
    JoAnn Ford: But I didn't order mine until yesterday. I received a confirmation email, and a few hours later I received an email stating that my phone had shipped.
    Brittany: I will be glad to help you with your phone concern today.  Was this an upgrade order?  
    JoAnn Ford: But the link to track takes me to the USPS website and the tracking number doesn't work just yet. Do you know why this is?
    JoAnn Ford: I just signed a 2 year contract and ported a number from sprint, then turned on an old VZ phone and ordered it as an upgrade on the website, but technically it is not an upgrade.
    Brittany: The phone has not really shipped out yet could be my only guess.  The phone is not set to ship out until the 13th.
    JoAnn Ford: MY phone will ship the 13th? even though I ordered it yesterday and not on Friday?
    Brittany: Yes, for pre-orders made online, it will ship out on the 13th overnight and delivered on the 14th.  
    Brittany: No problem at all.
    JoAnn Ford: Great! Thank you for your help.
    JoAnn Ford: No thanks! You have answered all of my questions.
    JoAnn Ford: Can I ask you one more question>?
    JoAnn Ford: My boyfriend call a rep earlier about this and he told me that the representative on the phone informed him that the shipments were pushed back until the 21st. Does this meant that that is not true??
    Brittany: That is for people who places the order on the 14th.  The day that it comes out in stores.  
    Brittany: Wait.  
    Brittany: Do you remember the time you placed your order?  
    JoAnn Ford: OK Great thanks!
    Brittany: Was it after 6pm?
    JoAnn Ford: Let me check when I got my confirmation
    Brittany: Okay.
    JoAnn Ford: At about 3:30 PM yesterday afternoon
    Brittany: Yesterday.  Hang on and let me check the email  I have (it is about shipments made for the phone).  
    JoAnn Ford: Ok thanks
    Brittany: It is showing that it will still ship out on the 13th and orders placed online after the 14th will have the phone delivery on the 21st.  
    JoAnn Ford: Ok! Hope thats true!
    Brittany: It is.  I am looking at the email right now.  So just be on the look out on the 14th.  
    JoAnn Ford: Ok thanks alot
    Brittany: No prob.  Is there anything else I can assist you with today?  
    Brittany: Thank you for visiting Verizon Wireless, I look forward to speaking with you again.  Have a great evening!
    JoAnn Ford: No thanks! You have answered all of my questions.

    joannsford wrote:
    I understand that a lot of you think that the CSR's are not very knowledgeable about the shipment of our phones, and that may be the case, however I thought I would post my conversation that I just had with one. 
    I added more to the bottome as I continued my chat.
    JoAnn Ford: Great! Thank you for your help.
    Please hold for a Verizon Wireless sales representative to assist you with your order. Thank you for your patience.
    You are now chatting with 'Brittany'
    Brittany: Hello. Thank you for visiting our chat service.  May I help you with your order today?
    JoAnn Ford: I pre-ordered an iPhone 4s. Im sure you are getting a million of these questions so I apologize ahead of time....
    JoAnn Ford: But I didn't order mine until yesterday. I received a confirmation email, and a few hours later I received an email stating that my phone had shipped.
    Brittany: I will be glad to help you with your phone concern today.  Was this an upgrade order?  
    JoAnn Ford: But the link to track takes me to the USPS website and the tracking number doesn't work just yet. Do you know why this is?
    JoAnn Ford: I just signed a 2 year contract and ported a number from sprint, then turned on an old VZ phone and ordered it as an upgrade on the website, but technically it is not an upgrade.
    Brittany: The phone has not really shipped out yet could be my only guess.  The phone is not set to ship out until the 13th.
    JoAnn Ford: MY phone will ship the 13th? even though I ordered it yesterday and not on Friday?
    Brittany: Yes, for pre-orders made online, it will ship out on the 13th overnight and delivered on the 14th.  
    Brittany: No problem at all.
    JoAnn Ford: Great! Thank you for your help.
    JoAnn Ford: No thanks! You have answered all of my questions.
    JoAnn Ford: Can I ask you one more question>?
    JoAnn Ford: My boyfriend call a rep earlier about this and he told me that the representative on the phone informed him that the shipments were pushed back until the 21st. Does this meant that that is not true??
    Brittany: That is for people who places the order on the 14th.  The day that it comes out in stores.  
    Brittany: Wait.  
    Brittany: Do you remember the time you placed your order?  
    JoAnn Ford: OK Great thanks!
    Brittany: Was it after 6pm?
    JoAnn Ford: Let me check when I got my confirmation
    Brittany: Okay.
    JoAnn Ford: At about 3:30 PM yesterday afternoon
    Brittany: Yesterday.  Hang on and let me check the email  I have (it is about shipments made for the phone).  
    JoAnn Ford: Ok thanks
    Brittany: It is showing that it will still ship out on the 13th and orders placed online after the 14th will have the phone delivery on the 21st.  
    JoAnn Ford: Ok! Hope thats true!
    Brittany: It is.  I am looking at the email right now.  So just be on the look out on the 14th.  
    JoAnn Ford: Ok thanks alot
    Brittany: No prob.  Is there anything else I can assist you with today?  
    Brittany: Thank you for visiting Verizon Wireless, I look forward to speaking with you again.  Have a great evening!
    JoAnn Ford: No thanks! You have answered all of my questions.
    You just ordered your phone yesterday and they're shipping it on the 13th?!?!  Wow.  Did you just go through the main menu and talk with a customer service rep?

  • Receiver File adapter content conversion using StrictXml2PlainBean

    Hi All,
    For receiver file adapter i am using the module StrictXml2PlainBean, and also i mentioned the module configuration like this
    parameter name                              parameter value
    recordTypes                                  Header,TransactionHeader,TransactionDetail,TransactionTrailer,FileTrailer
    FileTrailer.endSeparator                |\n
    FileTrailer.fieldSeparator               |
    Header.endSeparator                   |\n
    Header.fieldSeparator                  |
    TransactionDetail.endSeparator   |\n
    TransactionDetail.fieldSeparator  |
    TransactionHeader.endSeparator |\n
    TransactionHeader.fieldSeparator |
    TransactionTrailer.endSeparator  |\n
    TransactionTrailer.fieldSeparator |
    But when i send the idoc, The receiver CC is throwing an error
    Message processing failed. Cause: com.sap.aii.af.modules.conversion.xml2plain.ConversionException: Invalid structure name encountered during conversion: Transaction at XML element MT_DeliveryOrder,Transaction
    My actual structure is
    MT_DelvOrder
       Header  0...1
       Transaction 0....Unbounded
          TransactionHeader  1..1
           TransactionDetail     0...unbounded
            TransactionTrailer  1...1
       FileTrailer  0...1
    The module is checking for the Transaction node,but i require the rest 3.
    Same configuration i have done successfully with FCC without using the module....
    So can any one suggest me where i am missing... why the module is pointint towards, the Transaction cant i ignore this node . and continue with the rest???
    Regards,
    Sridhar
    Edited by: sridhar reddy kondam on Aug 10, 2009 12:35 AM

    Hi Rajesh,
    The same FCC configuration was working fine with FCC and when i am using this module configuration i am getting the prob...
    In the file i need the Header,TransactionHeader,TransactionDetail,TransactionTail,Filetrailer
    my sample output file is
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_DeliveryOrder>
    <Header>
    </Header>0...1
    <Transaction>0...Unbounded
        <TransactionHeader> 1..1
         </TransactionHeader>
         <TransactionDetail> 0...Unbounded
         </TransactionDetail>
          <TransactionTrailer>1...1
           </TransactionTrailer>
    </Transaction>
    <FileTrailer> 0...1
    </FileTrailer>
    Any suggestions will be great help...
    I think i need to go with other options without using this module....
    Regards,
    Sridhar
    Edited by: sridhar reddy kondam on Aug 10, 2009 6:03 AM

  • Date to number conversion?

    I want to select a number of rows created within last week.
    To do it I use a select statement with:
    WHERE sysdate-o.created_on <= days;
    (days is a number, created_on is a date)
    Everything works fine, but I get warnings like this one:
    PLW-07204: conversion away from column type may result in sub-optimal query plan
    I suppose I should convert date to number to get rid of them. How can I do it isnide a SELECT query?

    While the comments regarding re-writting the query to allow the possibility of index usage are valid, the warning will still appear even with the re-written query. I am sure that this query would use an index on dt1 if one was available.
    SQL>CREATE TABLE t (id number, dt1 date, dt2 date);
    Table created.
    SQL> CREATE PROCEDURE p1 AS
      2  BEGIN
      3     FOR r IN (SELECT * FROM t
      4               WHERE dt1 = sysdate - 7) LOOP
      5        NULL;
      6     END LOOP;
      7  END;
      8  /
    SQL>/
    SP2-0804: Procedure created with compilation warnings
    SQL>show error
    Errors for PROCEDURE P1:
    LINE/COL ERROR
    3/13     PLW-07204: conversion away from column type may result in
             sub-optimal query planThe warning in this case is clearly spurious, and the reason is, at the level the compiler is looking, they are different data types. dt1 was inserted as sysdate a few minutes before I did the dunp below.
    SQL> SELECT DUMP(dt1) tab_date, DUMP(dt1 - 3) calc_date,
      2         DUMP(sysdate) sys_date
      3  FROM t;
    TAB_DATE                            CALC_DATE                          SYS_DATE
    Typ=12 Len=7: 120,107,2,27,10,45,42 Typ=13 Len=8: 7,215,2,24,9,44,41,0  Typ=13 Len=8: 7,215,2,27,9,49,13,0A date field in a table is a type 12 while sysdate, and any date that has is a result of a calculation is a type 13. Clearly a "different" datatype.
    Practically speaking, in the SQL engine, the type 13 date would be cast to a type 12 date and used in an index probe, but the compiler is likely doing something similar to the DUMP conparision.
    I believe that the type 13 dates are a representation of the C time_t struct that Oracle's kernel would likely use internally.
    John

  • Some probs. after migration from 4.5 to 6i

    Hi,
    I have converted full application
    which was in forms4.5, Reports 2.5 to
    Forms6.0 and Reports 6.0.
    Conversion was cool and my full application
    is working fine.
    but i got some probs.
    1. file size of new fmb, fmx, mmb, mmx, pll and rdf
    are much more bigger then the original. in
    some cases it almost 3 to 4 times.
    2. If i run any report first time its working.
    but if i run report again then its giving me Dr. watson.
    in file RWRBE60.exe but if i close report background engine
    then its working.
    here i dont want to pass oracle_shutdown with value yes.
    in that case it will work.
    anybody has some idea. What could be the reason.
    Thanx
    Mehul
    null

    hello
    i have convert my forms3 into forms 6i and some fix format if you have than i give you
    doc and one fix to convert all forms and you just change some graphics prob.
    if you need then post message

  • Multi-threaded file conversions bug

    Why with 5 PDF Generator User Accounts I get this?
    WARN  [com.adobe.service.ImpersonatedConnectionManager] BMC028: Service PDFMakerSvc: Reducing maximum pool size from 20 to 4 to match number of impersonation credentials.
    Why with 6 PDF Generator User Accounts  I get  this?
    WARN  [com.adobe.service.ImpersonatedConnectionManager] BMC028: Service PDFMakerSvc: Reducing maximum pool size from 20 to 5 to match number of impersonation credentials.
    Why with more than 4 user I randomly get this (in multithread-conversion of one identical document)?
    INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-Conversion failed : ALC-PDG-010-012-PDFMaker reported an error while printing the document.
    INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-Trying to find a fallback route if available
    INFO  [com.adobe.pdfg.GeneratePDFImpl] ALC-PDG-001-000-Couldn't obtain fallback filetype setting. Cannot try fallback route

    Thank you  for your reply Hodmi   I didnt knew about that feature of invokeDDX() function.It help me a lot.
    Hodmi wrote:
           What I understood from your reply is I don't need to do any thing with those user except just add those user to livecycle
               application,and I must ensure that those user must have admin right,is that right?
    That's pretty much correct.  I don't believe they need admin rights, just the rights to launch the native apps.
    May be you are right,but I read it at "Installing and Deploying LiveCycle® ES2 Using JBoss® Turnkey Adobe" pg no 60 at section 6.14.7  that  " Click Add and enter the user name and password of a user who has administrative privileges on theLiveCycle ES2 server
    any way no prob with that......

  • Conversion from double to integer

    Hi,
    I have may be a stupid questio. 
    I have a double array, it is an input of the Mathscript, the first two column's  elements like : 1.0000, 2.000, ...etc. I would like to conversion it from double to integer, because I'll use it to index an other array. When I run the VI, I get a run time error. It seems the explicit conversion is not working. In Matlab I can conversion data types on the same way.
    Error code -90026 matrix index must be real, positive integer
    My code can you see on the picture below.
    Please help! 
    Solved!
    Go to Solution.
    Attachments:
    Mathscript_test.JPG ‏142 KB

    I solved the prob
    I started indexing to 0 and not to 1. that occured the problem.

  • Probe:S:get_scalar: exception 10: ORA-06502: And system is very sloq

    Hi all,
    We r using Oracle 9i (9.2.0.6.0) on AIX 5.2
    I am getting following error on Trace file. And I am unable to locate the accurate package, function or procedure which causes this error.
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error
    ORA-06553: PLS-:
    ORA-06553: PLS-:
    ORA-06553: PLS-103: Encountered the symbol "_" when expecting one of the following:
    begin case declare exit for function goto if loop mod null
    package pragma procedure raise return select separate type
    update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    form table call close current define delete fetch lock insert
    open rollback savepoint set
    ORA-06553: PLS-103: Encoun
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Probe:S:get_scalar: exception 10: ORA-06502: PL/SQL: numeric or value error: character to number conversion error

    just out of interest, what output do you get if you desc user_source?
    I get:
    NAME                                               VARCHAR2(30)               
    TYPE                                               VARCHAR2(12)               
    LINE                                               NUMBER                     
    TEXT                                               VARCHAR2(4000)        

  • Problems with a .csv file in an AP conversion.

    Hi,
    I'm trying to upgrade an Ap1240AG, from stand alone to LWAPP.
    The question is … in the process of upgrading we have to create a .csv file to put some information in the WLC to manually associate the AP (now an LWAPP AP).
    That .csv file has the mac address of the AP, their certification type, and public key hash values.
    Who can I get this .csv file?
    Thanks in advance,
    Rui Capão

    Hi Rui,
    The .csv is generated when running the Upgrade Tool (check the first doc linked below) :)
    Upgrading Autonomous Cisco Aironet Access Points to Lightweight Mode
    http://www.cisco.com/en/US/docs/wireless/access_point/conversion/lwapp/upgrade/guide/lwapnote.html#wp176272
    LWAPP Upgrade Tool Troubleshoot Tips
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_tech_note09186a008072d9a1.shtml#prob
    Hope this helps!
    Rob

  • Conversion of Characteristic Values to SIDs is taking long time

    Hi Experts,
        Cube load is taking more than 7 hrs to complete for 6 million records. Max time is at Conversion of Characteristic Values to SIDs. Cube consists of 500 fields. Load is from DSO to Cube. DSO has 10 fileds with no SID flag check for activation. Remaining fields in the CUBE are pouplated looking in to other DSO's. Start and End routines are executing very fast. How to fasten Conversion of Characteristic Values to SIDs step.  I need to load 15 million records daily as part of delta. any suggestions.
    Thanks
    Sunil

    Hi Sunil,
    Go through the below link, it will be useful
    http://aq33.com/business-warehouse/Articles-05269.html
    Regards,
    Marasa.

Maybe you are looking for

  • CS6 suite crashing in Mountain Lion, the fix

    I had a persistant problem where the CS6 trial of Photoshop crashed on 'Save As' under a new install of Mountain Lion. After 3 days, and many re-installs, I tracked the problem down to 4 installed fonts, two of them Adobe font suitcases. They are...

  • Standby data Gurad 10g switchover problem with application

    Hi! I'm working on oracle 10g and try to make standby datagurad with same dbname eg. if my primary database name is orcl then my standby database should be orcl with same location because one of mine application is accepting only orcl not standbyorcl

  • Video and Audio Stutter

    I am having problems where my shows are stuttering when I am watching them. I thought it was just the recordings but also noticed it happening when watching live. It happens randomly on all different channels. I only watch HD so don't know if this ha

  • Last played from itouch to itunes

    Hi, Ive listened to a lot of songs on my Itouch 2nd gen 16gb and when I connect it to my pc it doesn't update anything (last played, play count etc) in my music library on itunes. Anyone know how to get it to update. Right now on my touch i have song

  • Mixed-family problem

    My husband uses a Windows 7 laptop and a digital projector to do still slideshows on the dive boats we frequent. This would also be the best way to show my HD underwater videos to other divers. His PC will connect (via 400 FW) to my Mac-formatted G-r