Encountered problem when converting from development to runtime environment

1. I ran apxdevrm.sql switch my environment to runtime. Although it seemed to finish successfully, this error was in the log and according to registry, my installation was invalidated(still works though).
drop package wwv_flow_create_flow_api (doesn't seem to exist)
ERROR at line 1:
ORA-04043: object WWV_FLOW_CREATE_FLOW_API does not exist
Entry in dba_registry:
COMP_NAME--Oracle Application ExpressSTATUS
STATUS--INVALID
2. Next, not sure if it had made the switch, I then ran apxdvins,sql to revert back because of problem #1. (later found out that it was still devl environment)
This time, this message appeared in log...
FAILED CHECK FOR TRIGGER BIN$UH58A027El3gRAADutXi8w==$0
(Installation still invalid)
Any ideas?

1. Commented "drop package" stmt out on apexdevrm.sql to get rid of non-existent package problem. (probably holdover from v3.0)
2. purged dba_recyclebin to get rid of problem #2.
Dba_registry entry still shows as INVALID... Has anyone else encountered these problems when switching from dev to runtime? (or vice-versa)

Similar Messages

  • Problems when converting from pdf to word

    I am a translator and I get most of my work in pdf files. So I convert the pdfs into words to be able to change the text and edit. However, when dcuments are converted from pdf to word I have found they become very unstable and difficult to work with to the point I usually end up not using the coverted file. Is there any place I can go for training about what to do with those documents? Can anyone relate to this problem?
    thanks

    Hi patryba,
    You can access ExportPDF here: Adobe Acrobat.com.
    Please let us know how it goes!
    Best,
    Sara

  • Query Problem when converting from access to Mysql

    I am trying to get a small application to work with a mysql
    db. The original
    db is access, for some reason I am getting an error now that
    the db has been
    converted over to mysql. Any gurus out there spot the
    problem. Here is the
    query:
    <cfquery name="getprevmonth"
    username="#request.myDBUserName#"
    password="#request.myDBPassword#"
    datasource="#request.myDSN#">
    SELECT cal_date,(day(cal_date)) AS theprevmonth
    FROM jot_eventcal
    WHERE (cal_date >=
    #CreateDate(Year(prev_date),Month(prev_date),1)#) and
    (cal_date <=
    #CreateDate(Year(prev_date),Month(prev_date),DaysInMonth(prev_date))#)
    </cfquery>
    This query works fine when I test the application Locally, it
    only messes up
    when I test online. The error code is:
    Syntax error or access violation: You have an error in your
    SQL syntax.
    Thanks for any assistance in advance...........and a happy
    new year to you
    all.

    I don't know the answer but, it might be that using
    createdate is not sufficient. Try wrapping that date into either a
    cfqueryparam or createodbcdate.
    Something else to bear in mind when switching db's is that
    they don't all have the same functions. I don't use mySql so I
    don't actually know, but I'd be checking the manual to make sure it
    has a day function.
    Not a syntax, but a potential logic error is that you are
    using a function called day to create an alias called theprevmonth.
    At the very least, it's misleading and might confuse you later
    on.

  • Problem when converting from spool to XLS file

    Hey.
    I need to get table data from the spool and send it by mail in an xls file.
    so this is what i have done:
    I have used the FM 'RSPO_RETURN_ABAP_SPOOLJOB' to get the data table from the spool.
    then i am sending the data table in an xls file via the FM 'SO_DOCUMENT_SEND_API1'.
    the problem is that the xls file that i am getting through the mail is defected.
    All the contents of the spool is located in the first row, first column.
    How can i fix it?
    Thanks, Barak.

    After geting the data in a internal table.from spool......refer this report.....
    data: p_email   type somlreci1-receiver
                                   value 'MAIL ID'.
    data: begin of it001 occurs 0,
          bukrs type t001-bukrs,
          butxt type t001-butxt,
          end of it001.
    data:   imessage type standard table of solisti1 with header line,
            iattach type standard table of solisti1 with header line,
            ipacking_list like sopcklsti1 occurs 0 with header line,
            ireceivers like somlreci1 occurs 0 with header line,
            iattachment like solisti1 occurs 0 with header line.
    start-of-selection.
      select bukrs butxt into table it001 from t001.
      Populate table with detaisl to be entered into .xls file
      perform build_xls_data .
    Populate message body text
      clear imessage.   refresh imessage.
      imessage = 'Please find attached excel file'.
      append imessage.
    Send file by email as .xls speadsheet
      perform send_email_with_xls tables imessage
                                          iattach
                                    using p_email
                                          'Example Excel Attachment'
                                          'XLS'
                                          'TestFileName'
                                          'CompanyCodes'.
         Form  BUILD_XLS_DATA
    form build_xls_data .
    constants: con_cret type x value '0D',  "OK for non Unicode
                con_tab type x value '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    constants:
        con_tab  type c value cl_abap_char_utilities=>horizontal_tab,
        con_cret type c value cl_abap_char_utilities=>cr_lf.
      concatenate 'BUKRS' 'BUTXT'
             into iattach separated by con_tab.
      concatenate con_cret iattach into iattach.
      append  iattach.
      loop at it001 .
        concatenate it001-bukrs it001-butxt
               into iattach separated by con_tab.
        concatenate con_cret iattach  into iattach.
        append  iattach.
      endloop .
    endform.
         Form  SEND_EMAIL_WITH_XLS
    form send_email_with_xls tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription.
      data: xdocdata like sodocchgi1,
            xcnt type i.
    Fill the document data.
      xdocdata-doc_size = 1.
    Populate the subject/generic message attributes
      xdocdata-obj_langu = sy-langu .
      xdocdata-obj_name  = 'SAPRPT' .
      xdocdata-obj_descr = p_mtitle .
    Fill the document data and get size of attachment
      clear xdocdata.
      read table iattach index xcnt.
      xdocdata-doc_size =
         ( xcnt - 1 ) * 255 + strlen( iattach ).
      xdocdata-obj_langu  = sy-langu.
      xdocdata-obj_name   = 'SAPRPT'.
      xdocdata-obj_descr  = p_mtitle.
      clear iattachment.  refresh iattachment.
      iattachment[] = pit_attach[].
    Describe the body of the message
      clear ipacking_list.  refresh ipacking_list.
      ipacking_list-transf_bin = space.
      ipacking_list-head_start = 1.
      ipacking_list-head_num = 0.
      ipacking_list-body_start = 1.
      describe table imessage lines ipacking_list-body_num.
      ipacking_list-doc_type = 'RAW'.
      append ipacking_list.
    Create attachment notification
      ipacking_list-transf_bin = 'X'.
      ipacking_list-head_start = 1.
      ipacking_list-head_num   = 1.
      ipacking_list-body_start = 1.
      describe table iattachment lines ipacking_list-body_num.
      ipacking_list-doc_type   =  p_format.
      ipacking_list-obj_descr  =  p_attdescription.
      ipacking_list-obj_name   =  p_filename.
      ipacking_list-doc_size   =  ipacking_list-body_num * 255.
      append ipacking_list.
    Add the recipients email address
      clear ireceivers.  refresh ireceivers.
      ireceivers-receiver = p_email.
      ireceivers-rec_type = 'U'.
      ireceivers-com_type = 'INT'.
      ireceivers-notif_del = 'X'.
      ireceivers-notif_ndel = 'X'.
      append ireceivers.
      call function 'SO_DOCUMENT_SEND_API1'
           exporting
                document_data              = xdocdata
                put_in_outbox              = 'X'
                commit_work                = 'X'
           tables
                packing_list               = ipacking_list
                contents_bin               = iattachment
                contents_txt               = imessage
                receivers                  = ireceivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    endform.
    Reward IF.........
    Regards
    Anbu

  • EVDRE error "encountered problem when retrieving data from webserver"

    Hi,
    in a EVDRE we always get the error "encountered problem when retrieving data from webserver"
    When analysing this further we noticed this is always generated when a base member is selected in the CV and the expansion on the row for this dimension is has one of the following expansion settings:
    DEP
    ALL
    NOEXPAND
    if we select SELF, the error disappears again and the EVDRE works fine again ... is this normal behavior?
    there is no problem with application nor dimension.
    D
    solved it

    Note that the keyword "ALL" does not include the member itself. This may cause some confusion, but as Harish implies, when you select a base member it finds no matches if your memberset is "ALL".
    If you want to design a report to handle the user moving back and forth between base and non-base members in their CV, you either need to include SELF,ALL or SELF,DEP, or something similar....
    OR you need to get a little fancier, and use EVPRO to look and see if the CV member is base -- evpro(app,member,"CALC") -- and then use some conditional logic in Excel to choose the correct expansion options. If Calc=N, use Self, otherwise use SELF,DEP or whatever you choose. This can be a bit tricky if you then want the user to be able to drill down in the report (especially if you want the workbook option to insert add'l rows on the expansion, rather than replace), but it's all possible.

  • Overflow when converting from "3.60001e+11"

    Hi Guys,
    I'm Working with my PO using MIRO, I don't know why the error occurs. I've used the SAP Version 620 but end up with an error, then used Version 710 and successfuly created the transaction, but I'm stacked with version 620. I'm not allowed to transact it using the Version 710 that's why im looking for a patch or upgrade within 620 that i can use so that it can be solve.
    I'm in need of your help guys. I know there someone out there that can help me.
    THE ERROR
    Runtime Errors         CONVT_OVERFLOW                                              
    Exception              CX_SY_CONVERSION_OVERFLOW                                   
           Occurred on     03/28/2011 at 01:00:47                                                                               
    Overflow when converting from "3.60001e+11"                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLEINS" had to be terminated because one of the        
    statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    Error analysis                                                                               
    An exception occurred. This exception is dealt with in more detail below     
    . The exception, which is assigned to the class 'CX_SY_CONVERSION_OVERFLOW', 
    was neither                                                                 
    caught nor passed along using a RAISING clause, in the procedure             
    "DISTRIBUTE_ACC_ASSIGN_RE" "(FORM)"                                         
    Since the caller of the procedure could not have expected this exception     
    to occur, the running program was terminated.                               
    The reason for the exception is:                                             
    When attempting to convert the value "3.60001e+11",                          
    an overflow occurred.                                                        
    How to correct the error                                                                               
    The exception must either be prevented, caught within the procedure   
    "DISTRIBUTE_ACC_ASSIGN_RE"                                           
    "(FORM)", or declared in the procedure's RAISING clause.              
    To prevent the exception, note the following:                         
    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.                                                                               
    You may able to find an interim solution to the problem               
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:

    I won't post here if i already got the answer in SAP notes. I've spent 3 days searching for the answer. The only answer i got is the upgrade but can't be consider. OSS notes didn't provide me any answer. Hope u can help me
    Edited by: docgon on Mar 30, 2011 2:38 AM

  • Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?

    Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?
    Depending on the system version, and Office Word version:
    - a pure URL link starting with http or even www sometimes works in PDF, either produced by Aperçu or Adobe, sometimes does not work;
    - other kind of links where the text under display is not a URL, never work!
    I like everything with Apple computers and software, except PDF generation. Output files are usually bigger in size, and no better quality, than under Windows. Furthermore, it is weird that something as common as hyperlinks does not work correctly!
    I related this question with Mac OS X Snow Leopard, but the problem is still there with Mac OS Lion.
    This problem seems to have been around for years, without any proper solution from Apple and/or Adobe! To me, this is very embarrassing!

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • Problems when waking from long sleep periods

    Suddenly this morning my iMac developed a problem when recovering from a long period of sleep. I'm having trouble finding a solution.
    I have my iMac set to ask for password when it recovers from sleep or screen saver. When I woke my iMac this morning the password dialog box appeared at the top of the screen as a garbled mess. If I put my iMac back to sleep and then wake it again it usually solves the problem.
    I don't want to turn password verification off. Has anyone seen this problem before? Any suggestions on what might be cause?

    funkyblue:
    I usually leave my Pismo on and allow it to sleep. I find that waking from sleep and general functioning of the computer works a lot better if from time to time (I do it at least weekly) I shut down the computer, start up in Safe Mode, log in, empty Trash and reboot normally. The emptying Trash part clears the font caches.
    You should consider doing other maintenance procedures, if you don't already. Gulliver's Mac OS X System Maintenance has good ideas with linked resources.
    Please do not hesitate to post back with further questions or comments.
    Good luck.
    cornelius

  • Overflow when converting from "1.64174e+11"

    Hi ,
    I am working on PS module and facing the above mentioned error.Whenever I am attching any material haveing value more than Rs 100000 the system gives "Overflow when converting from "1.64174e+11""
    The detailed error description is given below,
    Runtime Errors         CONVT_OVERFLOW
    Except.                CX_SY_CONVERSION_OVERFLOW
    Date and Time          24.11.2008 11:19:23
    Short dump has not been completely stored (too big)
    Short text
         Overflow when converting from "1.64174e+11"
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPFV45P" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
          caught in
         procedure "KALKULATIONSWERT_UEBERNEHMEN" "(FORM)", nor was it propagated by a
          RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         When attempting to convert the value "1.64174e+11", an overflow occurred.
    Missing RAISING Clause in Interface
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     8
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Trigger Location of Exception
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     140
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Source Code Extract
    Line  SourceCde
      110       MTCOM-MATNR = VBAP-MATNR.
      111       MTCOM-BWTAR = VBAP-BWTAR.
      112       CALL FUNCTION 'MATERIAL_READ'
      113            EXPORTING
      114                 SCHLUESSEL    = MTCOM
      115            IMPORTING
      116                 MATDATEN      = MBEW
      117            EXCEPTIONS
      118                 ERROR_MESSAGE = 04
      119                 OTHERS        = 04.
      120       MOVE SY-SUBRC TO SAV_SUBRC.
      121     ENDIF.
      122
      123     IF T685A-KRECH = 'C'.
      124       IF SAV_SUBRC = 0 AND MBEW-PEINH NE 0.
      125         KOMV-KPEIN = MBEW-PEINH.
      126       ELSE.
      127         KOMV-KPEIN = 1.
      128       ENDIF.
      129 * Falls keine ET da, Zielmenge nehmen (Gut-/Lastschrift, Kontrakt ...)
      130       DATA: DA_MENGE LIKE VBAP-KWMENG.
      131       IF TVAP-ETERL EQ SPACE AND VBAP-KWMENG = 0.
      132         DA_MENGE               = VBAP-ZMENG.
      133       ELSE.
      134         DA_MENGE               = VBAP-KWMENG.
      135       ENDIF.
      136       IF DA_MENGE > 0.
      137         DA_WERT         =  DA_WERT  * KOMV-KPEIN * 1000
      138                          / DA_MENGE * VBAP-UMVKN / VBAP-UMVKZ.
      139       ENDIF.
    >>>>>       KOMV-KBETR      = DA_WERT.
      141     ELSEIF T685A-KRECH = 'B'.
      142       KOMV-KBETR      = DA_WERT.
      143     ELSE.
      144       KOMV-KWERT      = DA_WERT.
      145     ENDIF.
      146
      147     KOMV-WAERS         = DA_KALKO-FWAER.
      148     RV45A-KOEIN        = DA_KALKO-FWAER.
      149     KOMV-KMEIN         = VBAP-MEINS.
      150     PERFORM KOMV_PRUEFEN USING SPACE
      151                          CHANGING SY-SUBRC.
      152 * Nur für den ersten Lauf prüfen, ob Status gesetzt werden muß
      153     IF SAV_INDEX = 1.
      154       DA_SUBRC = SY-SUBRC.
      155     ENDIF.
    156     IF SY-SUBRC = 0.
    157       PERFORM KOMV_BEARBEITEN.
    158     ENDIF.
    159   ENDDO.
    Pl suggest.
    Rgds

    Hi,
    Try to declare your variable using Packed Number:
    DATA: va_num TYPE P DECIMALS 3.
    Hope this helps.
    Patrick

  • Print issues when going from develope to print

    In LR5 when going from Develope to Print, I loose the picture and the print tab is greyed out.  Never had this problem before, did I do something wrong

    Make sure the source remains the same - check the filmstrip.
    The only suggestion is to place the batch for editing and printing into a collection or (temporary) quick collection and access the images from there in both modules.

  • Windows 8.1 account limit problem when downloading from store

    windows 8.1 account limit problem when downloading from store        
    I have 250 windows 8.1 tablets.
    I figured since you can use the same account on 81 devices id create 4 accounts.
    I need to download more than 25 free apps from the store
    on each tablet. Putting the same account don't work. (comes up with an error after putting on to many devices that you cant use this account now).
    Whats the best way to do this ? and what if I need to download a paid app ?
    Thank You.

    Hi,
    As far as I know, One Microsoft Account may bound at most five Trusted computers. There is no way to break this limitation.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from l

    Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from lightroom?

    In the printer driver (accessed through the Page Setup button) set the Advanced tab to borderless. Then in the right hand panel under Layout set all the margins to zero.

  • Hyperlink problem when converting Word to PDF

    Hi everyone.
    I am using Adobe Acrobat 7.0 Standard version 7.1.4 on a Windows 2000 environment.
    I am using Word XP/2002 SP3.
    I have a couple of problems when converting Word to PDF.
    When converting a long link which is in 2 lines, PDF just takes one line into account, not considering the whole link
    When I have hyperlinks that links to a web page, the link works fine in Word but in pdf, it gets the few words after the url address making the link not work.  For example.  I have a hyperlink that http://www.google.com/ and after this I have the words: "This is a sample text".  The hyperlink in pdf would then become http://www.google.comThisisasampletext
    Do you have any ideas how I can correct this?
    Thanks.

    To get the cross references, you have to use Convert to PDF (PDF Maker part of the Acrobat product). However, you first need to go to the print menu and set the printer to the Adobe PDF printer. Close the print menu and then do a reflow and link update of the document (ctrl-A, then F9 I think). This is needed to get the links correct since WORD reflows the document based on the printer (problem with them going to the wrong place).
    Printing to the Adobe PDF printer (the step of print to file is not needed, just print to the printer and the rest is automatic) does not include the links. PDF Maker is a PreProcessor for the Adobe PDF printer that adds PDF Marks to the PS file before it is sent to Distiller (OK, the printer when used normally creates a PS file and then invokes Distiller to complete the process - your steps did with the Adobe PDF printer is the same process done manually).
    Summary:
    1. Fix document after setting the printer to Adobe PDF.
    2. Use PDF Maker (create PDF button)

  • I have a problem when installing the Developer Suite

    Hello,
    I'm new to Oracle and I'm having a problem when installing the Developer Suite 10g. I have the Oracle Database 11g installed, but when I try to istall the developer, it gives me this error: "Oracle Developer Suite 10g cannot be installed into an existing Oracle9i 9.2.0.1.0 oe higher Oracle Home", Although I have installed the same thing twice before and it was working.
    Please help me with this :(

    Hi user;
    I'm new to Oracle and I'm having a problem when installing the Developer Suite 10g. I have the Oracle Database 11g installed, but when I try to istall the developer, it gives me this error: "Oracle Developer Suite 10g cannot be installed into an existing Oracle9i 9.2.0.1.0 oe higher Oracle Home", Although I have installed the same thing twice before and it was working.What is your OS? If you are linux-unix level you are making installation wiht same user of Oracle Db11g? Did you try to create new Oracle_home and set it before start installation?
    Regard
    Helios

  • How do I maintain column formatting when converting from PDF to Excel?

    How do I maintain column formatting when converting from PDF to Excel? All info is no longer on the lines or in the columns they started out being in? Any help would be appreciated.

    Sara,
    Perhaps I am expecting too much from Adobe ExportPDF. The reason I subscribed to this service, for which I pay a yearly fee, was that I need a way to  convert scanned and digital documents to Word &/or Excel. I read the link you included but to be candid the more I tried to understand what was written the more confused I got. The process should not be this difficult. Currently I am using a NEAT scanner to create PDF documents of whatever I scan. After I changed the OCR setting on Adobe ExportPDF the output was much better but not to the point it was usable as it was. Information that appears to be lines and columns are sometimes not recognizing two columns and just putting them together in one. Obviously not usable. The other thing it does is bunch numbers that appear in a column that are just a bunch of numbers that I have no way of fixing. 
    Please let me speak to someone who can help me. Right now I not getting anything of value in my paid subscription.

Maybe you are looking for

  • HOWTO: Using a BC4J Application Module in an Stateless EJB Session Bean

    HOWTO: Using a BC4J Application Module in an Stateless EJB Session Bean by Steve Muench Overview BC4J provides automatic facilities for deploying any application module as a stateful EJB session bean. If you want to leverage the features of your BC4J

  • FORCED DATA PACKAGE WITH PHONE UPGRADE

    I have been a verizon customer since cell phones were cool.  I started with a bag phone in my car.   I have 5 verizon phones.   Four on a family plan and one through a work plan.   My son wanted to upgrade his phone today which is eligible for early

  • IMac trouble login - need help badly

    I need real big help here. My wife iMac decided to act up this morning, out of no reason. She didn't download and anything from website or new apps. This is what happening now. As usual, we type in the password and click login. It started as normal a

  • Where is the Analysis menu in PSCS6?

    I concretely need the tool included in the Menu Analisys of Photoshop Extended CS3. Now I have upgrade to Photoshop CS6 into Creative Cloud but I don't find the way to download and install Extended from Creative Cloud. Thank for your help Message tit

  • Radio interface need to be disabled when antenna is not present?

    I have been informed within a training class that the radio interface of an access point should be disabled when an antenna is not present. The reason given was that it would protect the radio from being adversely affected (potetnial for irreparable