Form error depends on SQL ERROR

hi all
please i want to know why this error is generated i try to create a small application with oracle forms i generate the tables in sql and the tables were created without errors but there is three tables that generate a form error when i try to select and deal with it
the error is:
FRM-10095: Assertion failed in iewbdbc_oracle_to_id, at c:\forms\1012\src\ie\iewbdbc.c:724.
any advice will be approtiated,
thanks all.

this is the creation script:
/* Add table "Client" */
CREATE TABLE Client (
CL_ID Number(20) ,
NAME VARCHAR2(40) CONSTRAINT Cl_NN_NAME NOT NULL,
GENDER VARCHAR2(40),
NATIONALITY VARCHAR2(40),
NATIONAL_ID NUMBER(14) ,
ADDRESS VARCHAR2(40),
PHONE NUMBER(13),
MOBILE NUMBER(10),
EMAIL VARCHAR2(40),
OCCUPATION VARCHAR2(40),
CO_ID NUMBER(6),
SA_ID VARCHAR2(20) CONSTRAINT NN_SA_ID NOT NULL,
CONSTRAINT PK_Client PRIMARY KEY (CL_ID)
/* Add table "COMPANY" */
CREATE TABLE COMPANY (
CO_ID NUMBER(6) ,
NAME VARCHAR2(40) CONSTRAINT CO_NN_NAME NOT NULL,
ADDRESS VARCHAR2(40),
PHONE NUMBER,
FAX NUMBER,
EMAIL VARCHAR2(40),
CON_PERSON_NAME VARCHAR2(40) CONSTRAINT NN_CON_PERSON_NAME NOT NULL,
CON_PERSON_PHONE NUMBER CONSTRAINT NN_CON_PERSON_PHONE NOT NULL,
CONSTRAINT PK_COMPANY PRIMARY KEY (CO_ID)
/* Add table "WAITING_CLIENT" */
CREATE TABLE WAITING_CLIENT (
CLASS_REQUEST_DATE DATE ,
FAVORITE_DATE NUMBER(7),
FAVORITE_TIME_FROM TIMESTAMP,
FAVORITE_TIME_TO TIMESTAMP,
COURSE_ID NUMBER(5) ,
CL_ID Number(20) ,
CONSTRAINT PK_WAITING_CLIENT PRIMARY KEY (CLASS_REQUEST_DATE, COURSE_ID, CL_ID)
/* Add table "SALES_REP" */
CREATE TABLE SALES_REP (
SA_ID VARCHAR2(40) ,
NAME VARCHAR2(40) CONSTRAINT SA_NN_NAME NOT NULL,
GENDER VARCHAR2(40),
NATIONAL_ID NUMBER(14) ,
ADDRESS VARCHAR2(40),
PHONE NUMBER(11),
MOBILE NUMBER(10),
EMAIL VARCHAR2(40),
HIRE_DATE DATE,
CONSTRAINT PK_SALES_REP PRIMARY KEY (SA_ID)
/* Add table "COURSE" */
CREATE TABLE COURSE (
COURSE_ID NUMBER(5) ,
NAME VARCHAR2(40) CONSTRAINT COR_NN_NAME NOT NULL,
DESCRIPTION VARCHAR2(40),
DURATION NUMBER(4) CONSTRAINT NN_DURATION NOT NULL,
COST NUMBER(6),
CONSTRAINT PK_COURSE PRIMARY KEY (COURSE_ID)
/* Add table "INSTRUCTOR" */
CREATE TABLE INSTRUCTOR (
INS_ID NUMBER(6) ,
NAME VARCHAR2(40) CONSTRAINT INS_NN_NAME NOT NULL,
GENDER VARCHAR2(40),
NATIONAL_ID NUMBER(14) ,
PHONE NUMBER(10) CONSTRAINT NN_PHONE NOT NULL,
MOBILE NUMBER(11),
EMAIL VARCHAR2(40),
WORK_TYPE VARCHAR2(40),
HIRE_DATE DATE,
CONSTRAINT PK_INSTRUCTOR PRIMARY KEY (INS_ID)
/* Add table "LAB" */
CREATE TABLE LAB (
LAB_ID VARCHAR2(40) ,
NAME VARCHAR2(40),
LOCATION VARCHAR2(40),
TYPE VARCHAR2(40),
CAPACITY NUMBER(3),
STATUS VARCHAR2(40),
CONSTRAINT PK_LAB PRIMARY KEY (LAB_ID)
/* Add table "COURSE_DETAILS" */
CREATE TABLE COURSE_DETAILS (
Eff_Course_id Number(20) ,
START_DATE DATE CONSTRAINT NN_START_DATE NOT NULL,
END_DATE DATE,
DAYS NUMBER(7) CONSTRAINT NN_DAYS NOT NULL,
TIME_FROM TIMESTAMP CONSTRAINT NN_TIME_FROM NOT NULL,
TIME_TO TIMESTAMP,
INS_ID NUMBER(6) CONSTRAINT NN_INS_ID NOT NULL,
LAB_ID VARCHAR2(40) CONSTRAINT NN_LAB_ID NOT NULL,
COURSE_ID NUMBER(5) CONSTRAINT NN_COURSE_ID NOT NULL,
CONSTRAINT PK_COURSE_DETAILS PRIMARY KEY (Eff_Course_id)
/* Add table "participate_client" */
CREATE TABLE participate_client (
CL_ID Number(20) ,
Material VARCHAR2(40),
Meal VARCHAR2(40),
Eff_Course_id Number(20) ,
CONSTRAINT PK_participate_client PRIMARY KEY (CL_ID, Eff_Course_id)
/* Foreign key constraints */
ALTER TABLE Client ADD CONSTRAINT COMPANY_Client
FOREIGN KEY (CO_ID) REFERENCES COMPANY (CO_ID);
ALTER TABLE Client ADD CONSTRAINT SALES_REP_Client
FOREIGN KEY (SA_ID) REFERENCES SALES_REP (SA_ID);
ALTER TABLE WAITING_CLIENT ADD CONSTRAINT COURSE_WAITING_CLIENT
FOREIGN KEY (COURSE_ID) REFERENCES COURSE (COURSE_ID);
ALTER TABLE WAITING_CLIENT ADD CONSTRAINT Client_WAITING_CLIENT
FOREIGN KEY (CL_ID) REFERENCES Client (CL_ID);
ALTER TABLE COURSE_DETAILS ADD CONSTRAINT INSTRUCTOR_COURSE_DETAILS
FOREIGN KEY (INS_ID) REFERENCES INSTRUCTOR (INS_ID);
ALTER TABLE COURSE_DETAILS ADD CONSTRAINT LAB_COURSE_DETAILS
FOREIGN KEY (LAB_ID) REFERENCES LAB (LAB_ID);
ALTER TABLE COURSE_DETAILS ADD CONSTRAINT COURSE_COURSE_DETAILS
FOREIGN KEY (COURSE_ID) REFERENCES COURSE (COURSE_ID);
ALTER TABLE participate_client ADD CONSTRAINT Client_participate_client
FOREIGN KEY (CL_ID) REFERENCES Client (CL_ID);
ALTER TABLE participate_client ADD CONSTRAINT Course_Participants
FOREIGN KEY (Eff_Course_id) REFERENCES COURSE_DETAILS (Eff_Course_id);

Similar Messages

  • Error ODS activation - sql error when accessing a table.

    Hi,
    sometimes occurs an error by activation ODS. I have proces chain and when is loaded second packet an error occurs. In monitor>>
    -RSMPC 128, datapacket 3 is wrong, with status number 9
    -RSMPC 131
    -RSDRO 108 - communcation error (sql error when accessing a table)
    In sm21>
    -sql error when accessing a table
    -The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was  
    either                                                      caught nor passed along using a RAISING clause, in the procedure <b>"UPDATE_ATAB"</b>   "(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:                                             
      The database system recognized that your last operation on the database      
      would have led to a deadlock.                                                
      Therefore, your transaction was rolled back                                  
      to avoid this.                                                                       
      ORACLE always terminates any transaction that would result in deadlock.      
      The other transactions involved in this potential deadlock                   
      are not affected by the termination.
    I have BW 3.5.
    Thank You very much.

    There are a few different scenarios that I can think of where this might come up that all involve what might resulting in parallel (concurrent)processes:
    Loading packets in parallel - that is there are X number of processes loading packets concurrently. This could be set in your IMG settings system wide or in the InfoPackage for just this datasource.   You seem to indicate that you don't have this.
    Database parallel processing - RSAMDIN - ORA_PARALLEL_DEGREE ( there was a different RSADMIN parm for older versions - forget what SP the change came with).
    You have multiple InfoPackages for the datasource, each loading what should be a different range of data, and they run atthe same time.
    You could be loading from two different datasources to the ODS at the same time.
    If any of these are true, I would look at bumping the INITRANS setting up.  Your DBA will probably need to do this for table and its indices.  There is a Note - 831234 that allows you to create a parameter in RSADMIN that will specify a INITRANS value (e.g. 20) rather than using the default. The ODS would need to be activated to pick this new setting up for the table to be altered. 
    You could also look at the Processing settings for the InfoPackage and change to PSA first, then target to see if that helps. 
    Or if you are loading from two different datasources at the same time, you might adjust your schedule so that doesn't happen.
    Pizzaman

  • Update statements encounterd  Errors  OGG-01168 & SQL error 1403 mapping

    Hi Expetrs,
    Update statements throwing below error:
    2012-11-07 10:40:11  WARNING OGG-00869  Oracle GoldenGate Delivery for Oracle, rep1.prm:  No unique key is defined for table AAAA. All viable columns will be used to represent the key, but may not guarantee uniqueness.  KEYCOLS may be used to define the key.
    2012-11-07 10:40:12  WARNING OGG-00869  Oracle GoldenGate Delivery for Oracle, rep1.prm:  No unique key is defined for table AAAA. All viable columns will be used to represent the key, but may not guarantee uniqueness.  KEYCOLS may be used to define the key.
    2012-11-07 10:40:15  WARNING OGG-00869  Oracle GoldenGate Delivery for Oracle, rep1.prm:  No unique key is defined for table BBBB. All viable columns will be used to represent the key, but may not guarantee uniqueness.  KEYCOLS may be used to define the key.
    2012-11-07 10:40:15  WARNING OGG-00869  Oracle GoldenGate Delivery for Oracle, rep1.prm:  No unique key is defined for table BBBB. All viable columns will be used to represent the key, but may not guarantee uniqueness.  KEYCOLS may be used to define the key.
    2012-11-07 10:40:16  WARNING OGG-01004  Oracle GoldenGate Delivery for Oracle, rep1.prm:  Aborted grouped transaction on 'abc.BBBB', Database error 100 (retrieving bind info for query).
    2012-11-07 10:40:16  WARNING OGG-01003  Oracle GoldenGate Delivery for Oracle, rep1.prm:  Repositioning to rba 17466 in seqno 1384.
    2012-11-07 10:40:16  WARNING OGG-01154  Oracle GoldenGate Delivery for Oracle, rep1.prm:  SQL error 1403 mapping abc.BBBB to abc.BBBB.
    2012-11-07 10:40:16  WARNING OGG-01003  Oracle GoldenGate Delivery for Oracle, rep1.prm:  Repositioning to rba 20104 in seqno 1384.
    2012-11-07 10:40:16  ERROR   OGG-01296  Oracle GoldenGate Delivery for Oracle, rep1.prm:  Error mapping from abc.BBBB to abc.BBBB.
    2012-11-07 10:40:16  ERROR   OGG-01668  Oracle GoldenGate Delivery for Oracle, rep1.prm:  PROCESS ABENDING.If I use KEYCOLS:
    --extract file:
    TABLE abc.INDIA , KEYCOLS (ID);--replicat parameter file
    MAP abc.INDIA, TARGET abc.INDIA , KEYCOLS (ID);Encountered below error
    2012-11-09 00:37:54  WARNING OGG-00869  Oracle GoldenGate Delivery for Oracle, rep1.prm:  No unique key is defined for table INDIA. All viable columns will be used to represent the key, but may not guarantee uniqueness.  KEYCOLS may be used to define the key.
    2012-11-09 00:48:34  ERROR   OGG-01168  Oracle GoldenGate Delivery for Oracle, rep1.prm:  Encountered an update for target table abc.INDIA, which has no unique key defined.  KEYCOLS can be used to define a key.  Use ALLOWNOOPUPDATES to process the update without applying it to the target database.  Use APPLYNOOPUPDATES to force the update to be applied using all columns in both the SET and WHERE clause.
    2012-11-09 00:48:34  ERROR   OGG-01668  Oracle GoldenGate Delivery for Oracle, rep1.prm:  PROCESS ABENDING.any clues plz ??
    Regards,
    Edited by: user13403707 on 19 Nov, 2012 10:55 PM

    If you know of any columns that can be used to identify the records you want to replicat changes to at the target table, use them as KEYCOLS.
    Then add supplemental logging using those columns as
    ADD TRANDATA owner.table_name, COLS (col1, col2).
    If you can't think of any such columns, just do
    ADD TRANDATA owner.table_name;
    It will add supplemental logging with the below warning
    2012-11-19 09:59:13 WARNING OGG-00869 No unique key is defined for table table_name. All viable columns will be used to represent the key, but may not guarantee uniqueness. KEYCOLS may be used to define the key.
    Logging of supplemental redo data enabled for table owner.table_name.

  • Install error and PL/SQL error

    Hello,
    I'm new to Oracle. I installed Oracle8iR2 on Redhat Linux 6.2. During installation (more precisely during "Linking Oracle8i Enterprise Edition 8.1.6.1.0") I got this error :
    Oracle: Error in invoking target ioracle of makefile /home/oracle/OraHome/rdbms/lib/ins-rdbms.
    mk
    ORA-124547: TNS: lost contact
    ORA-03114: not connected to Oracle
    I clicked "Ignore" and the installation continued without any other errors.
    After the installation was finished I performed the initial configurations described in the manual as user root and user oracle. After that as user oracle I tried to start plsql like this :
    Enter user-name : system
    Enter password : *******(manager )
    oraclebogdan: error in loading shared libraries libdsbtsh8.so : cannot opeb shared object
    file : No such file or directory
    ERROR : ORA -12547 : TNS : lost contact
    Can you help me to fix the problems?
    Thank you,
    Bogdan Paduraru

    Bidyut Kumar (guest) wrote:
    : Jason Howk (guest) wrote:
    : : Jack Lauman (guest) wrote:
    : : : During the linking process of "./orainst /c", I got the
    : : following
    : : : error on the RDBMS, SQL*PLUS and PL/SQL install:
    : : : /usr/i386-linux/bin/ld: cannot open -lnsl: No such file or
    : : : directory
    : : : make: *** [u01/app/oracle/product/8.0.5/rdbms/lib/oracle]
    : : Error
    : : : 1
    : : : Status: 2
    : : : ((OIERR-SYSTEM: make -f ins_rdbms.mk
    : : : ORACLE_HOME=/u01/app/oracle/product/8.0.5 install))
    : : : --------[ rdbms.ins 2631---------------
    : : : The file in question is nowhere on the disk. Anyone have
    : any
    : : : clues?
    : : : Thanking you in advance for your cooperation,
    : : : Jack Lauman
    : : : nwcascades.com
    : : I get the same error using Slackware 3.6. Anyone have any
    : : clues? FYI, I receive the same error on the standard
    edition
    : as
    : : well.
    : : --Jason
    : Even I have the same problem and unable to find the solution.
    : Why is happening. I have no clue at all.can anybosy anywhere
    : could help?
    : Thanks
    : --Bidyut
    I have a similar problem on Red Hat 5.2. In my case, the
    failing command is:
    Command: make -f ins_plsql.mk install <<!
    The failing portion of that make file is:
    `cat /raid/u01/app/oracle/8.0.5/lib/sysliblist`
    It seems that file (sysliblist) contains the following:
    -lnsl -lm
    So, it appears to be looking for
    /raid/u01/app/oracle/8.0.5/lib/libnsl.a and
    /raid/u01/app/oracle/8.0.5/lib/libm.a
    Neither of those files exist anywhere on my hard disk. This
    appears to be the same problem originally reported, above.
    So far, no clues.....
    ============================================
    By the way, I had an earlier failure during a different make
    where it was trying to compile something and include a header
    file of "sys/types.h" and I fixed it by creating a "sys"
    subdirectory in /usr/include that only had in it a symbolic
    link to the regular "types.h" file.
    null

  • How to troubleshoot SQL error when copying cube

    I was successful in creating Info Package and running it to copy data frin cube  1 to cube2.  However, I get an error when
    Running the package. My source cube has 1.9 million rows. However, Info Package only loaded 30,120 records.  Looking in monitor logs, it shows me following error stack:
    System error in program SAPLRS_EXECPTION and from RS_EXEPTION_TO_MESSAGE
    SQL Error 0
    Unknown error in SQL Interface
    Errors in source system
    When I click on long text button for Unknown error in SQL interface:
    The SQL interface of the application server (DBSL) has reported an unknown error. This error can be caused by:
    - Overflows when aggregated data is read from the database in ABAP.  If this occurs, the definition for the corresponding key figure must be changed.
    - Internal errors
    It seems to be some kind of Overflow error. Is there any way to get  more information on the cause
    Of this erroru2026.
    THANKS A LOT.

    I tried SM50, it shows me all processes, but I still cannot figure how to set developer trace. Following is detailed information on what I am doing in copy of cubes and errors I am getting:
    Subject: Troubleshoot Copy of Cubes
    I have tried to copy several cubes on my BI 7.0 and all of them same error, so I am wondering whether I am doing something fundamentally wrong.
                    System error in program SAPLRS_EXECPTION and from RS_EXEPTION_TO_MESSAGE
                    SQL Error 0
                    Unknown error in SQL Interface
                    Errors in source system
    After error occurs I get following message in mail:
              The error occurred in Extractor.
               Refer to the error message.
                     Procedure
                 How you remove the error depends on the error message.
                     Note
              If the source system is a Client Workstation, then it            is possible that the file that you wanted to load was being edited
    at the time of the data request. Make sure that the file is in
    the specified directory, that it is not being processed at the
    I  looked  in SM21, system logs, whenever error occurs, I see the  u201C
    Database selection with invalid cursor &5&5
    The database interface was called by a cursor (in a FETCH or CLOSE cursor operation) that is not flagged as opened. This can occur if a COMMIT or ROLLBACK was executed within a SELECT loop (which closes all opened cursors), followed by another attempt to access the cursor (for example, the next time the loop is executed).
    I DO NOT UNDERSTAND WHEN I AM COPYING FROM CUBE, WHY SAP BW will  generate u201Cinvalid cursoru201D message. Not sure whether it is normal, i.e., not a real error,
    My cube copying  (from cube 1 to cube 2) is a straightforward procedure:
    a.     Select Copy from Cube 1 and create Cube 2.
    b.     Create Export Data Source from Cube 1 Menu.
    c.     From Cube 2 menu, Create Update rules, In update rules select DataSource as 8Cube1.
    d.     Create an Info Package for 8Cube1 under Infosource/DataSource and then run the package.
    Certain no of records e.g.. 3248 or so get loaded and then the error messages are generated, why?
    Really appreciate any help. I tried SM37, does not give any clue. I also Tried SM50, it shows me the process, but I still cannot figure how to generate developer trace.
    Since behavior is same for several cubes I tried, something else also needs to be done, I do not know what???

  • SQL error forced rollback.

    Dear All,
    We r using Oracle 9.0.1 and Developer 6i in a replicated environment. Our server is dedicated server. We have 6 branch i.e. 6 replicate site and 1 main server. We r facing a problem in a specific module in 3 branches. Problem is : when user trying to use that module then after using some times they get this error ---
    FRM-40655:  SQL error forced rollback: clear form and re-enter transaction. and totally log out from system.
    When user get this error then in alert log we get this message ---
    found dead shared server 'S002', pid = (17, 141).
    My question is : if it's form design problem then why only in 3 branch??? Configuration is almost same. Another question is our server is dedicated server then why oracle found dead shared server??? Is it a refreshing problem to remote server??? Need help as an urgent basis. Plz reply me and give ur valuable advice.
    Mamun

    Thanks...
    I also think that it's a network problem. But my question is if network is the problem then why only in this module make this error? And if this module has some problem then why only in 3 branch create the deadlock? What's the solution to remove the dead shared server? Another issue is this rollback or deadlock error don't happen all time.
    Plz give all of ur valuable suggestion...

  • SQL error number is 5110

    Background: Im creating an ASP .Net app in VS2005. Local machine has SQL express installed and server has developer edition of SQL 2005.
    When it tries to create the database file on a UNC share it comes up with an error "The file "\\server\Visual Studio Projects\Websites\PWSDelete\App_Data\Personal.mdf" is on a network path that is not supported for database files.
    An attempt to attach an auto-named database for file \\server\Visual Studio Projects\Websites\PWSDelete\App_Data\Personal.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share." to you guys the error message
    "The SQL error number is 5110 and the SqlException message is....."
    may mean more in resolving this issue. I read up on http://support.microsoft.com/kb/304261/ although i understand the risks etc i still dont know how to configure the server to allow remote database files to be created. My guess is to create a "Trace" but not sure where to start and how to ensure im doing this correctly. Can anyone please advise?
    Thanks in advance

    Configure Membership Provider:
    1.      
    Follow the link
    http://www.shiningstar.net/ASPNet_Articles/SqlMembershipProvider.aspx
    2.      
    Alternatively Go to D:\WINNT\Microsoft.NET\Framework\v2.0.50727
    3.      
    Double Click on aspnet_regsql.exe
    4.      
    Type Server Name: MYSERVER\SQLExpress
    5.      
    Select Existing Db: MyDatabase
    6.      
    Click Finish to complete.
    7.      
    Open web.config
    8.      
    Open Website in VS2010
    9.      
    Make Changes in web.config:
    A.)
    <connectionStrings>
    <remove name="ApplicationServices"/>
    <add
    name="ApplicationServices"
    connectionString="server=MyServer\SQLExpress;database=MyDatabase;Integrated Security=True;User ID=;Password=;"
    providerName="System.Data.SqlClient"/>
    </connectionStrings>
    B.)
    <authentication mode="Forms">
    <forms loginUrl="Login.aspx" protection="Validation" timeout="300"/>
    </authentication>
    C.)
    <system.web>
    <membership defaultProvider="MembershipProvider">
    <providers>
    <clear />
    <add
    name="MembershipProvider"
    type="System.Web.Security.SqlMembershipProvider"
    connectionStringName="ApplicationServices"
    applicationName="/MyApplication"
    enablePasswordRetrieval="false"
    enablePasswordReset="true"
    maxInvalidPasswordAttempts="3"
    minRequiredNonalphanumericCharacters="0"
    minRequiredPasswordLength="6"
    passwordAttemptWindow="5"
    requiresQuestionAndAnswer="false"
    requiresUniqueEmail="true"
    passwordFormat="Hashed" />
    <add
    name="MembershipProviderReset"
    type="System.Web.Security.SqlMembershipProvider"
    connectionStringName="ApplicationServices"
    applicationName="/MyApplication"
    enablePasswordRetrieval="false"
    enablePasswordReset="true"
    maxInvalidPasswordAttempts="3"
    minRequiredNonalphanumericCharacters="0"
    minRequiredPasswordLength="6"
    requiresQuestionAndAnswer="false"
    requiresUniqueEmail="false"
    passwordFormat="Hashed" />
    </providers>
    </membership>
    </system.web>
    10.  
    Using Visual Studio 2010 Go to “Website” Tab
    11.  
    Click on “ASP.NET Configuration”
    12.  
    Click on Security and make necessary changes as per your requirement

  • SQL error 1691 in qrfc monitor

    Hi,
    I am running a simple file - xi - mail scenario. In SXMB_MONI, the xml messages are showing a green flag, and messages are stuck in inbound queue. The error is SYSFAIL: SQL error 1691 occurred when accessing table SXMSCLUP2. Has anyone faced this issue? Any suggestions?
    Thanks..

    Hi Moorthy,
    I have already tried restarting the queues. They just get stuck again!
    I will take a look at the note and see if that works. In the meantime, do let me know if you can come up with any other solutions..
    Thanks!
    Lasya

  • JBO-27122: SQL error during statement preparation.

    Hi,
    I am trying to develop a VO for validating date. The Vo query is as follows:
    select count(*) startDateValid from dual where (trunc(sysdate)- to_date(:1)) < NVL(fnd_profile.value('SGX: IPP CONTRACT START DATE WINDOW (DAYS)'), 0)
    I initiate the VO through a method in AM and invoke the AM method in CO. The bind variable gets passed from the CO as a string value. The format of the parameter is 'DD-MON-RRRR'. When I go to the front end and execute the logic, I get the error:
    JBO-27122: SQL error during statement preparation. Statement: select count(*) startDateValid from dual where (trunc(sysdate)- to_date(:1)) < NVL(fnd_profile.value('SGX: IPP CONTRACT START DATE WINDOW (DAYS)'), 0)
    When I set the preferences for Date as mm/dd/yyyy I get this error. When the preference is changed to dd-mm-yyyy format or any format that has date first then I do not get this error.
    All code is custom code. The VO query executes fine from SQL*Plus with input as '01-DEC-2009'.
    Any idea on this error?
    TIA.
    Regards,
    Anoop

    Actually I'm jsut the onshore person assigned to fix the problem. What they are doing is overwriting the original query in the view with a setQuery(). I think this is part of the problem. What I've found since my orinal post is that if we change the jdbc drivers to an older version it works for some unknown reason.

  • SQL error while purging configuration

    Hi Gurus,
    We are getting AIP-11016:SQL error while purging the configurations
    Please find the extract of ui.log below.
    2009.07.14 at 09:59:08:656: PURGE_MANAGER_THREAD: Repository - (ERROR) PurgeManager: Purge op failed
    2009.07.14 at 09:59:08:656: PURGE_MANAGER_THREAD: Repository - (ERROR) PurgeManager: PurgeManager failed: Error -: AIP-11016: SQL error: java.sql.SQLException: ORA-02430: cannot enable constraint (TIP_ATTACHMENTSTORAGE_RFK) - no such constraint
    ORA-06512: at "B2B.IP_PURGE", line 47
    ORA-06512: at line 1
    2009.07.14 at 09:59:17:250: AJPRequestHandler-ApplicationServerThread-6: UI - (ERROR) In getVersionOnly()
    2009.07.14 at 10:00:30:343: AJPRequestHandler-ApplicationServerThread-6: UI - (ERROR) Executing Query::SELECT DISTINCT C.ID, C.CLASSTYPE, C.name, C.LifeCycleState, CA.aud_modified FROM TIP_Configuration_t C, TIP_Configuration_t_AUD CA WHERE C.ID = CA.ID AND C.LifeCycleState IN ('Active','Validated','Quiescing','Quiesced') AND CA.aud_modified IN ( SELECT MAX(aud_modified) FROM TIP_Configuration_t_AUD WHERE ID = C.ID GROUP BY ID) ORDER BY CA.aud_modified DESC
    2009.07.14 at 10:00:30:375: AJPRequestHandler-ApplicationServerThread-6: UI - (ERROR) In getVersionOnly()
    2009.07.14 at 10:01:02:343: AJPRequestHandler-ApplicationServerThread-6: UI - (ERROR) Rendering Page::pages/deployment/config_list
    2009.07.14 at 10:01:02:343: AJPRequestHandler-ApplicationServerThread-6: UI - (ERROR) Executing Query::SELECT DISTINCT C.ID, C.CLASSTYPE, C.name, C.LifeCycleState, CA.aud_modified FROM TIP_Configuration_t C, TIP_Configuration_t_AUD CA WHERE C.ID = CA.ID AND C.LifeCycleState IN ('Active','Validated','Quiescing','Quiesced') AND CA.aud_modified IN ( SELECT MAX(aud_modified) FROM TIP_Configuration_t_AUD WHERE ID = C.ID GROUP BY ID) ORDER BY CA.aud_modified DESC
    2009.07.14 at 10:01:02:375: AJPRequestHandler-ApplicationServerThread-6: UI - (ERROR) In getVersionOnly()
    Could you please tell us where could be the problem?
    Thanks in advance,
    Nag

    Hi,
    I had got an error while applying MLR 11 patch set. Please find error stack trace below.
    Failure for task [TCP20SeedTask] : Error -: AIP-16012: Parameter: transport Protocol is unique for object Transport Protocol Parameter: Error -: AIP-11052: Writing following objects: Transport Protocol Parameter failed due to following constraint violation: TRANSPORTPROTOCOLPARAMETER_UK. UNIQUE CONSTRAINT VIOLATION: java.sql.SQLException: ORA-20003: TransportProtocolParameter_UK. Unique constraint violation
    ORA-06512: at "B2B.TRG_PARAMETER_INS", line 104
    ORA-01403: no data found
    ORA-04088: error during execution of trigger 'B2B.TRG_PARAMETER_INS'
         at oracle.tip.repos.core.persistency.BaseObject.createObject(BaseObject.java:988)
         at oracle.tip.model.b2b.protocol.TransportProtocolParameter.create(TransportProtocolParameter.java:200)
         at oracle.tip.seed.GenericTCPSeedTask.createTransportProtocolParameter(GenericTCPSeedTask.java:247)
         at oracle.tip.seed.GenericTCPSeedTask.addParameter(GenericTCPSeedTask.java:162)
         at oracle.tip.seed.GenericTCPSeedTask.createTCPParameterSeed(GenericTCPSeedTask.java:112)
         at oracle.tip.seed.GenericTCPSeedTask.createTCPSeed(GenericTCPSeedTask.java:94)
         at oracle.tip.seed.GenericTCPSeedTask.doWork(GenericTCPSeedTask.java:66)
         at oracle.tip.seed.SeedDriver.processTasks(SeedDriver.java:222)
         at oracle.tip.seed.SeedDriver.go(SeedDriver.java:283)
         at oracle.tip.seed.GenericTCPSeedDriver.main(GenericTCPSeedDriver.java:61)
    Caused by: Error -: AIP-11052: Writing following objects: Transport Protocol Parameter failed due to following constraint violation: TRANSPORTPROTOCOLPARAMETER_UK. UNIQUE CONSTRAINT VIOLATION: java.sql.SQLException: ORA-20003: TransportProtocolParameter_UK. Unique constraint violation
    ORA-06512: at "B2B.TRG_PARAMETER_INS", line 104
    ORA-01403: no data found
    ORA-04088: error during execution of trigger 'B2B.TRG_PARAMETER_INS'
         at oracle.tip.repos.core.driver.CatalogWriteDriver.writeObjectList(CatalogWriteDriver.java:825)
         at oracle.tip.repos.core.driver.CatalogDriver.writeObjectList(CatalogDriver.java:1419)
         at oracle.tip.repos.core.driver.CatalogTransaction.flush(CatalogTransaction.java:477)
         at oracle.tip.repos.core.persistency.BaseObject.createObject(BaseObject.java:955)
         ... 9 more
    Caused by: java.sql.SQLException: ORA-20003: TransportProtocolParameter_UK. Unique constraint violation
    ORA-06512: at "B2B.TRG_PARAMETER_INS", line 104
    ORA-01403: no data found
    ORA-04088: error during execution of trigger 'B2B.TRG_PARAMETER_INS'
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:124)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:315)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:281)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:638)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:184)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:632)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1085)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2983)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3056)
         at oracle.tip.repos.core.driver.CatalogWriteDriver.writeObjectList(CatalogWriteDriver.java:756)
         ... 12 more
    I'm still using the same patch level. Is there any chance that these errors observed are the reason behind the problem I'm facing in purging configs. If so, is there any workarounds for this?
    Thanks in advance.
    Regards,
    Nagasudhan

  • MS Sql error in production server: DBIF_REPO_SQL_ERROR

    Hi experts,
    I am getting this error in my production server.
    Environment : OS - Windows 2008, Database: MSsql 2005 sp2, ECC6.0
    when the job SAP_COLLECTOR_FOR_PERFMONITOR executes the dump occurs with the following error.
    DBIF_REPO_SQL_ERROR, SQL error 0 occurred when accessing program "CX_SY_OPEN_SQL_DB=============CP "
    and also i am not able to open db13 with ends up with abap dump.
    In the sql server log i found this error too.
    Database ID 5, Page (1:4804273) is marked RestorePending, which may indicate disk corruption. To recover from this state, perform a restore.
    Please help me on this.
    Regards
    Shankar PV

    I raised the Message with SAP and they asked to do the H/W audit. My H/W vendor executed the diagnostic reports and given the report as "NO H/W ISSUE".
    That we already get into know when i did the system refresh, (I Mean i moved the database to another machine there also i am getting those same error).
    As per the DBCC checkdb log we found 1 consistency errors in database 'PRD', and we found that the table too 'DB6PMPROT'.
    Since its the table for the the records of DB13, i can lose this table data. So I tried to delete the data from the table, tried to truncate the table
    and also tried deleting using the commands
    1. DELETE FROM [PRD].[prd].[DB6PMPROT]
    2. TRUNCATE TABLE [PRD].[prd].[DB6PMPROT]
    3. USE [PRD]
    GO
    IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID
    (N'[prd].[DB6PMPROT]') AND type in (N'U'))
    DROP TABLE [prd].[DB6PMPROT]
    4. DROP TABLE [PRD].[prd].[DB6PMPROT]
    For all the above mentioned commands the result is below
    Msg 829, Level 21, State 1, Line 3
    Database ID 5, Page (1:4804273) is marked RestorePending, which may
    indicate disk corruption. To recover from this state, perform a restore.
    Since the data in this table is not necessary, we need to drop and
    recreate the table.

  • AIP-11016: SQL error while deploying configuration

    Hi B2B Gurus,
    I am unable to deploy one of agreements due to AIP-11016: SQL error at the final step. May the configuration be corrupted even if it validates at TP and Agreement level?
    Please advise what can be done to solve this issue.
    Many thanks in advance for your help.
    Kind Regards,
    Kamil

    Thank you for your suggestion
    Below is an extract from ui.log:
    2009.01.06 at 14:53:30:112: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) In getLongVersion()
    2009.01.06 at 14:53:30:117: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) Rendering Page::pages/deployment/config_list
    2009.01.06 at 14:53:30:129: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) Executing Query::SELECT DISTINCT C.ID, C.CLASSTYPE, C.name, C.LifeCycleState, CA.aud_modified FROM TIP_Configuration_t C, TIP_Configuration_t_AUD CA WHERE C.ID = CA.ID AND C.LifeCycleState IN ('Active','Validated','Quiescing','Quiesced') AND CA.aud_modified IN ( SELECT MAX(aud_modified) FROM TIP_Configuration_t_AUD WHERE ID = C.ID GROUP BY ID) ORDER BY CA.aud_modified DESC
    2009.01.06 at 14:53:30:191: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) In getVersionOnly()
    2009.01.06 at 14:53:33:299: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) Formatted message
    2009.01.06 at 14:53:33:299: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) Formatted message
    2009.01.06 at 14:53:33:300: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) Rendering Page::pages/deployment/deploy_progress
    2009.01.06 at 14:53:33:314: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) In getVersionOnly()
    2009.01.06 at 14:53:43:564: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) Formatted message
    2009.01.06 at 14:53:43:573: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) Rendering Page::pages/deployment/deployment_approval
    2009.01.06 at 14:53:43:589: AJPRequestHandler-ApplicationServerThread-14: UI - (ERROR) In getVersionOnly()
    2009.01.06 at 14:53:45:816: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) Formatted message
    2009.01.06 at 14:53:45:824: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) Rendering Page::pages/deployment/deploy_progress
    2009.01.06 at 14:53:45:837: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) In getVersionOnly()
    2009.01.06 at 14:53:52:463: DEPLOYMENT_MANAGER_THREAD: Repository - (ERROR) java.sql.SQLException: ORA-20011: Inserting into runtime table TIP_DocumentType_rt failed
    ORA-06512: at "B2B.IP_DEPLOY", line 3942
    ORA-00001: unique constraint (B2B.TIP_DOCUMENTTYPE_RT_RUK) violated
    ORA-06512: at line 1
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:315)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:281)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:638)
         at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:183)
         at oracle.jdbc.driver.T4CCallableStatement.execute_for_rows(T4CCallableStatement.java:872)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1160)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3000)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3073)
         at oracle.jdbc.driver.OracleCallableStatement.executeUpdate(OracleCallableStatement.java:4308)
         at oracle.tip.deploy.DeploymentManager.deployObjectInRuntimeSchema(DeploymentManager.java:1067)
         at oracle.tip.deploy.DeploymentManager.run(DeploymentManager.java:419)
         at java.lang.Thread.run(Thread.java:534)
    2009.01.06 at 14:53:52:466: DEPLOYMENT_MANAGER_THREAD: IP - (ERROR) Error -: AIP-11016: SQL error
         at oracle.tip.deploy.DeploymentManager.createCorrectDeploymentException(DeploymentManager.java:742)
         at oracle.tip.deploy.DeploymentManager.run(DeploymentManager.java:505)
         at java.lang.Thread.run(Thread.java:534)
    2009.01.06 at 14:53:56:151: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) Found Non Validation Errors
    2009.01.06 at 14:53:56:152: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) Formatted message
    2009.01.06 at 14:53:56:152: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) Formatted message
    2009.01.06 at 14:53:56:162: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) Rendering Page::pages/deployment/deploy_error
    2009.01.06 at 14:53:56:175: AJPRequestHandler-ApplicationServerThread-17: UI - (ERROR) In getVersionOnly()
    Best regards,
    Kamil

  • Sql errors

    I am getting errors on my subdomain when trying to access two different files in the root of my site:
    URL file-access is disabled in the server configuration
    [function.include-once]: failed to open stream: no suitable wrapper could be found
    what does this mean?

    That's a PHP error not a SQL error.  The error is telling you that you are not allowed to use "http" in a PHP include path.  Most likely this means you do not have a dedicated server or a VPS.  Most hosts block basic plans from having this access, and it's usually good to leave it off unless absolutely necessary because of the security risk it poses.

  • SQL error in PC

    Hi All
    I am getting the error at Attrib.Change step in Process Chain step.
    Error says like SQL Error 1652,Error When filing the aggregate 100178.
    Can you please tell me why i am getting this error?
    Is this error from BI side or from BASIS side?
    Can we do anything from BI side to avaoid this error in future ?
    Thanks,
    Deepak

    Hi Deepak ,
    SQL error 1652 and 12801
    1.I think this is a problem for Basis .
    2.It is temp table space PSAPTEMP problem, ask basis team to increase temp table size and then try again .Ideally it should be around 5 - 3 % size of database.you can increase existing data file size for that .This is table use to buffer temporary data .
    3.After that Aggregate filling job should run fine .
    4.Also Check note 164925 and 416772
    Hope this will be helpful .
    Regards,
    Jaya

  • SQL error -20003 at location stats_tab_collect-20

    Hello All,
    we are executing ths statistics with the followin command
    brconnect -u / -c -f stats -t all -f collect
    but the proccess report errors like:
    BR0301E SQL error -20003 at location stats_tab_collect-20, SQL statement:
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPSR3"', TABNAME => '"/BEV3/CHCMVWPRO"', ESTIMATE_PERCENT => NULL, METHOD_OPT => 'FOR ALL COLUMNS SIZE 1', DEGREE => NULL, CASCADE => TRUE, NO_INVALIDATE => FALSE); END;'
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14457
    ORA-06512: at "SYS.DBMS_STATS", line 14477
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for table SAPSR3./BEV3/CHCMVWPRO
    BR0301E SQL error -20003 at location stats_tab_collect-20, SQL statement:
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPSR3"', TABNAME => '"/BEV3/CHCTRGI"', ESTIMATE_PERCENT => 1, METHOD_OPT => 'FOR ALL COLUMNS SIZE 1', DEGREE => NULL, CASCADE => TRUE, NO_INVALIDATE => FALSE); END;'
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14457
    ORA-06512: at "SYS.DBMS_STATS", line 14477
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for table SAPSR3./BEV3/CHCTRGI
    How we can fix this error?
    Thanks
    Hernando

    hello, to update, I receive the following recommendation
    The error "ORA-20003: Specified bug number (5099019) does not exist
    seems caused by fix of bug 5099019 is not installed correctly.
    Could you please first check if the merge fix 8299095 has been
    installed successfully? Check lsinventory and check if the post
    installation steps have been performed well.
    Post-install steps:
    startup database
    connect using sqlplus as SYSDBA
    start $ORACLE_HOME/rdbms/admin/dbmsstat.sql
    start $ORACLE_HOME/rdbms/admin/prvtstas.plb
    start $ORACLE_HOME/rdbms/admin/prvtstat.plb
    exit sqlplus
    Once those steps have been performed would you please check the databasefor invalid objects per the instructions in OSS note 648203?
    I followed the steps in recommendation:
    the fix is installed on patch 8599814.
    I started the DB and ran the SQL scripts:
    SQL> start $ORACLE_HOME/rdbms/admin/dbmsstat.sql
    Package created.
    No errors.
    Synonym created.
    Grant succeeded.
    create role gather_system_statistics
    ERROR at line 1:
    ORA-01921: role name 'GATHER_SYSTEM_STATISTICS' conflicts with another
    user or
    role name
    Grant succeeded.
    Grant succeeded.
    Library created.
    SQL> start $ORACLE_HOME/rdbms/admin/prvtstas.plb
    Package created.
    No errors.
    Package body created.
    No errors.
    SQL> start $ORACLE_HOME/rdbms/admin/prvtstat.plb
    Package body created.
    No errors.
    PL/SQL procedure successfully completed.
    According to note 648203 I search for invalid objects
    SQL> SELECT SUBSTR(OWNER, 1, 20) OWNER,SUBSTR(OBJECT_NAME, 1, 35)
    OBJECT_NAME,
    2 SUBSTR(OBJECT_TYPE, 1, 20) OBJECT_TYPE
    3 FROM DBA_OBJECTS
    4 WHERE STATUS = 'INVALID';
    no rows selected
    SQL> SELECT SUBSTR(COMP_ID, 1, 20) COMP_ID,
    2 SUBSTR(COMP_NAME, 1, 40) COMP_NAME,
    3 STATUS
    4 FROM DBA_REGISTRY;
    COMP_ID
    COMP_NAME
    STATUS
    CATALOG
    Oracle Database Catalog Views
    VALID
    CATPROC
    Oracle Database Packages and Types
    VALID
    SQL> SELECT O.NAME FROM OBJ$ O, REGISTRY$ R
    2 WHERE O.STATUS > 1 AND
    3 (O.CTIME BETWEEN R.DATE_LOADING AND R.DATE_LOADED OR
    4 O.MTIME BETWEEN R.DATE_LOADING AND R.DATE_LOADED OR
    5 O.STIME BETWEEN R.DATE_LOADING AND R.DATE_LOADED);
    no rows selected
    According to note 838725 I executed the following script:
    SQL> begin DBMS_STATS.GATHER_DICTIONARY_STATS(
    2 ESTIMATE_PERCENT => NULL,
    3 METHOD_OPT => 'FOR ALL COLUMNS SIZE AUTO',
    4 GRANULARITY => 'ALL',
    5 CASCADE => TRUE,
    6 OPTIONS => 'GATHER',
    7 NO_INVALIDATE => FALSE);
    8 end;
    9 /
    begin DBMS_STATS.GATHER_DICTIONARY_STATS(
    ERROR at line 1:
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14611
    ORA-06512: at "SYS.DBMS_STATS", line 14957
    ORA-06512: at "SYS.DBMS_STATS", line 17261
    ORA-06512: at "SYS.DBMS_STATS", line 17303
    ORA-06512: at line 1
    And, if I run the command from the same note
    volta:oracmd 53% brconnect -u / -c -f stats -t oradict_stats
    BR0801I BRCONNECT 7.00 (43)
    BR0805I Start of BRCONNECT processing: ceblmvwb.sta 2009-09-12 18.08.17
    BR0484I BRCONNECT log file: /oracle/CMD/sapcheck/ceblmvwb.sta
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.18
    BR0807I Name of database instance: CMD
    BR0808I BRCONNECT action ID: ceblmvwb
    BR0809I BRCONNECT function ID: sta
    BR0810I BRCONNECT function: stats
    BR0812I Database objects for processing: ORADICT_STATS
    BR1314I Oracle dictionary statistics will be collected with default
    options
    BR0126I Unattended mode active - no operator confirmation required
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.18
    BR1311I Starting collection of Oracle dictionary statistics...
    BR0285I This function can take several seconds/minutes - be patient...
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.28
    BR0301E SQL error -20003 at location stats_oradict_collect-4, SQL
    statement:
    'BEGIN DBMS_STATS.GATHER_DICTIONARY_STATS (ESTIMATE_PERCENT => NULL,
    METHOD_OPT => 'FOR ALL COLUMNS SIZE AUTO', GRANULARITY => 'ALL',
    CASCADE => TRUE, OPTIONS => 'GATHER', NO_INVALIDATE => FALSE); END;'
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14611
    ORA-06512: at "SYS.DBMS_STATS", line 14957
    ORA-06512: at "SYS.DBMS_STATS", line 17261
    ORA-06512: at "SYS.DBMS_STATS", line 17303
    ORA-06512: at line 1
    BR1313E Collection of Oracle dictionary statistics failed
    BR0806I End of BRCONNECT processing: ceblmvwb.sta 2009-09-12 18.08.28
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.28
    BR0804I BRCONNECT terminated with errors
    I couldn´t run the statistics from my system.
    Hernando

Maybe you are looking for

  • Can I edit open a GoLive site in Dreamweaver?

    I have a site that I put together for a charity..I have done it for a few years and the content, images etc don't change too often. Every month or so there needs to be an update to timetable and information. At the moment I do this with GoLive which

  • F.13 Automatic Clearing for GR/IR

    FI Experts, This is the first time I am using tcode F.13, I am trying to clear our GR/IR account but it does not work. I understand I have to do some config in OB74. When I run F.13 I fill out the following: GENERAL SELECTIONS - Company Code - Fiscal

  • Updating Songs problem

    I just moved my music library from a PC to a mac, and completely restored my ipod. Now when i try to update it the update freezes after 88 songs, and iTunes freezes also. I cannot even eject the ipod. I already tried restoring the ipod, and it did no

  • Problems publishing to iweb

    I just want to thank everyone who post on here as your advice really does help. I had problems publishing to iweb and the following suggestions made by you all helped me overcome the difficulties I was having. I am posting this so that others who may

  • Bold 9700 Charging Pod doesn't Sync

    Hi, On ShopBlackberry.com, I came across this for the Bold 9700: http://www.shopblackberry.com/_blackberryaccessoriescan/cgi-bin/pd.cgi?frompage=category&page=produc... Where, under the features, it says:  Features Combines with any travel or data ca