Bdc_open_group invalid user name error

hai ,
the given below is my bdc programming. while am executing(F8) these program it depicts the message in one dilaog box like as bdc_open_group , user name is invalid. or say this program is correct or not.
if any error .recover it
plz resolve this problem.
REPORT  YSUSBDC5.
DATA: BDC_TAB LIKE BDCDATA OCCURS 6 WITH HEADER LINE.
START-OF-SELECTION.
CALL FUNCTION 'BDC_OPEN_GROUP'
EXPORTING
   CLIENT                    = SY-MANDT
  DEST                      = FILLER8
   GROUP                     =  'SURENDER'
  HOLDDATE                  = FILLER8
  KEEP                      = FILLER1
  USER                      = FILLER12
  RECORD                    = FILLER1
   PROG                      = SY-CPROG.
IMPORTING
  QID                       =
EXCEPTIONS
  CLIENT_INVALID            = 1
  DESTINATION_INVALID       = 2
  GROUP_INVALID             = 3
  GROUP_IS_LOCKED           = 4
  HOLDDATE_INVALID          = 5
  INTERNAL_ERROR            = 6
  QUEUE_ERROR               = 7
  RUNNING                   = 8
  SYSTEM_LOCK_ERROR         = 9
  USER_INVALID              = 10
  OTHERS                    = 11
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
PERFORM FILL_BDC_TAB.
CALL FUNCTION 'BDC_INSERT'
EXPORTING
  TCODE                  =  'FK02'
  POST_LOCAL             = NOVBLOCAL
  PRINTING               = NOPRINT
  SIMUBATCH              = ' '
  CTUPARAMS              = ' '
  TABLES
    DYNPROTAB              = BDC_TAB.
EXCEPTIONS
  INTERNAL_ERROR         = 1
  NOT_OPEN               = 2
  QUEUE_ERROR            = 3
  TCODE_INVALID          = 4
  PRINTING_INVALID       = 5
  POSTING_INVALID        = 6
  OTHERS                 = 7
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'BDC_CLOSE_GROUP'
EXCEPTIONS
  NOT_OPEN          = 1
  QUEUE_ERROR       = 2
  OTHERS            = 3
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
FORM FILL_BDC_TAB.
REFRESH BDC_TAB.
PERFORM POPULATE_BDC_TAB USING:
'1' 'SAPMF02K' '0106',
' ' 'RF02K-LIFNR' 'SUREN',
' ' 'RF02K_D0110' 'X',
'1' 'SAPMF02K' '0111',
' ' 'LFA1-NAME1' 'SURENDER',
' ' 'LFA1-STRAS' '69 abass ali',
' ' 'SZA1_D0100-SMTP_ADDR' '[email protected]'.
ENDFORM.
FORM POPULATE_BDC_TAB USING FLAG VAR1 VAR2.
CLEAR BDC_TAB.
IF FLAG = '1'.
BDC_TAB-PROGRAM = VAR1.
BDC_TAB-DYNPRO = VAR2.
BDC_TAB-DYNBEGIN = 'X'.
ELSE.
BDC_TAB-FNAM = VAR1.
BDC_TAB-FVAL = VAR2.
ENDIF.
APPEND BDC_TAB.
ENDFORM.
regards
SURENDER

Hallo,
I want to share what happend to me with my bdc Program.
I was able to create Sessions of Batch input (SM35)  through the Creation Program ZRSFFL0A (writen below) from 29.04.2008 to 21.05.2008. On May 21 I changed a parameter to play an error, since than the proper original programme has never worked.
Now while I am executing(F8) it shows the message in one dialog box 'BDC_OPEN_GROUP user name is invalid'. I don't know why.
**During Debugging the program stopped Function SAPLLANG:
FUNCTION CONVERSION_EXIT_ISOLA_OUTPUT.
""Lokale Schnittstelle:
*"       IMPORTING
*"             VALUE(INPUT)
*"       EXPORTING
*"             VALUE(OUTPUT)
  OUTPUT = SAVE_INPUT(1) = INPUT.
  CHECK SAVE_INPUT(1) NA ' *'.
  SELECT SINGLE * FROM T002 WHERE SPRAS = INPUT.
  CHECK SY-SUBRC = 0.
  OUTPUT = T002-LAISO.
ENDFUNCTION.
Original programme
REPORT zrsffl0a.
TABLES: apqi, sflight.
DATA: BEGIN OF BDC_TAB OCCURS 50.
  INCLUDE STRUCTURE BDCDATA.
  DATA END OF BDC_TAB.
  PARAMETERS:
    name LIKE apqi-groupid DEFAULT SY-UNAME,
    carrid LIKE sflight-carrid DEFAULT 'AA',
    connid LIKE sflight-connid DEFAULT '0064',
    plane LIKE sflight-planetype DEFAULT 'A310-200'.
  START-OF-SELECTION.
  WRITE: / 'Top creation of a session BDC',
  sy-mandt, name, sy-uzeit.
  CALL FUNCTION 'BDC_OPEN_GROUP'
EXPORTING: CLIENT = sy-mandt,
           GROUP = name,
           USER = sy-uname,
           KEEP = 'X'.
  PERFORM GENERATE_BDC_DATA.
  CALL FUNCTION 'BDC_INSERT'
  EXPORTING TCODE = 'ZTCF2'
    TABLES DYNPROTAB = BDC_TAB.
  CALL FUNCTION 'BDC_CLOSE_GROUP'.
  WRITE: / 'End  creation of a session BDC',
  sy-mandt, name, sy-uzeit.
*&      Form  GENERATE_BDC_DATA
      text
-->  p1        text
<--  p2        text
form GENERATE_BDC_DATA .
REFRESH BDC_TAB.
CLEAR BDC_TAB.
MOVE: 'ZRSFFL03A' TO BDC_TAB-PROGRAM,
      100 TO BDC_TAB-DYNPRO,
      'X' TO BDC_TAB-DYNBEGIN.
APPEND BDC_TAB.
CLEAR BDC_TAB.
MOVE: NAME TO BDC_TAB-FNAM,
      SY-UNAME TO BDC_TAB-FVAL.
APPEND BDC_TAB.
CLEAR BDC_TAB.
MOVE: carrid TO BDC_TAB-FNAM,
      'AA' TO BDC_TAB-FVAL.
APPEND BDC_TAB.
CLEAR BDC_TAB.
MOVE: connid TO BDC_TAB-FNAM,
      '0064' TO BDC_TAB-FVAL.
APPEND BDC_TAB.
CLEAR BDC_TAB.
MOVE: plane TO BDC_TAB-FNAM,
      'A310-200' TO BDC_TAB-FVAL.
APPEND BDC_TAB.
CLEAR BDC_TAB.
endform.                    " GENERATE_BDC_DATA
I thank those who will give me suggestions and / or explanations.
Best regards
Claudia

Similar Messages

  • Background job in APO does not start because of invalid user name

    Hello,
    I have a macro in a planning book and the /sapapo/cons_check program which a triggered via a background job. Now, I have problems with the start of the job:
    At the time the job was created inside SAP, an error occured. The job contains invalid values.
    The user name within the job does not exist any more.
    Now, I try to change the user name of the job (via step in sm37), but the error occured again.
    I have the possibility to create the invalid user name once again in su01.
    But I want to change the user name of the job - does somebody know how to do it?
    Thanks for your help!
    Kind regards
    Heinz

    Hello Heinz, this looks surprising.
    It's quite easy to change the user name in the SM37 job step, and we haven't faced issues with this.
    Could you check how many jobs are in either "scheduled" or in "released" status, and change steps for all of them? May be you changed the scheduled job, but the released job wasn't changed.
    Use your job name and give a search date as 1-2 years in the past, and around 1 month in the future. With this time horizon, you should most likely be able to capture all the relevant jobs having the same name that you are using.
    Now change the user name in step for all the jobs received above to be fully sure.
    One more trial could be to copy the current scheduled job to another job, modify the user name in this newly created job and then delete the old one.
    One of the above trials might possibly help you in some way, else its very tough to understand/explain your situation.
    Thanks - Pawan

  • "Invalid User ID" error while running OSoft Application in browser

    Hi,
    I have installed BPC 7.5 SP04 in Multi Server environment where SQL Server, OLAP Server, Reporting Server on one machine and Application Server and Web Server on other machine, After installing I tried to run Osoft application via url "http://Application Server name/OSoft" as suggested in Install guide but receiving "Invalid User ID" error
    Error Information
    Server Error in '/OSoft' Application.
    Invalid UserID
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Exception: Invalid UserID
    Please guide me on this as what can be the cause of this error and how to fix it.
    I have used Windows Server 2008 with IIS 7.
    Thanks,
    Rohit
    Edited by: Khatak Rohit on Mar 18, 2011 10:57 AM

    First login must be done with Installation user.
    In your case you tried to login from your PC where you were conected with your user.
    This user  is used to connect to BPC and this user has no rights into BPC.
    It was used this user because BPC allow Windows authentication.
    So you have to go into IE - Tools - Internet Options
    Select Security Tab - Select Intranet
    Push Custom Level
    Go to section - User Authentication - select "Prompt always user and pwd"
    Close IE
    Open again and try http://nameofserver/osoft you will receive now a prompt for user and pwd.
    Input an user and pwd with access to BPC and you will see this time the page will be load correct.
    Regards
    Sorin Radulescu

  • Invalid subreport name Error code:-2147483086

    The setup used in this particular environment is to run reports via Crystal reports server 2008. We call the servers via the rassdk_java_dg_12_en and the setup works just fine BUT in one particular case.
    The report that fails have a main report with a datasource to SQL. The report does have about 20 - 25 subreports mostly based on the same datasource. There are however 6 subreports that uses ttx files as datasources.
    The report works fine when there is no data for the ttx subreports, but whenever a "change datasource" is tried to the ttx subreports the error "Invalid subreport name Error code:-2147483086" pops up.
    We have done noumerous tests on the pojo approach in other reports so the technic and code works just fine - it most be some special case in the report.
    Before we start to try to rebuild the report we will give you a chance to help us out. The report sucker is big and complex so a rebuild is not wanted...
    Here is the particular code involved
    private static void passPOJO(ReportClientDocument clientDoc,
                ReportPojoHolder pojoHolder, String reportName)
                    throws ReportSDKException,ClassNotFoundException {
            //Its a pojo data source, but it's nothing in it
            if (pojoHolder.getPojos().size() == 0) {
                return;
            String reportTable = pojoHolder.getTableName();
            Object pojo = pojoHolder.getPojos().iterator().next();
            POJOResultSetFactory factory = new POJOResultSetFactory(pojo.getClass());
            POJOResultSet resultSet = (POJOResultSet)factory.createResultSet(pojoHolder.getPojos());
            if(reportName == null || reportName.equals("")) {
                clientDoc.getDatabaseController().setDataSource(resultSet, reportTable, reportTable);
            else {
                System.err.println("Setting data in " + reportName );
    //Here comes the error
                clientDoc.getSubreportController().getSubreport(reportName).
                    getDatabaseController().setDataSource(resultSet, reportTable, reportTable);
    Here is the stacktrace:
    table: srptMainCustomerList;1, subrapport: AddressField
    table: srptusrinf;1, subrapport: AdvisorName
    table: srptusrinf;1, pojo: Beta
    table: srptusrinf;1, pojo: JensensAlpha
    table: srptusrinf;1, pojo: PerformanceChart
    Setting data in PerformanceChart
    2009-02-06 09:05:31,720 ERROR (CrystalReportServlet:doGet()) - [Username=Patrik Andrén, UserID=n249060, CustId=005563741684, Cstid=37385] - (Creation of report: customer_report.rpt failed on: [ReportAppServer: CCA1CS0569. Datasource: cca1cd0046qa1|omega] com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException:
    Fel i filen customer_report {CDCDCEC2-050C-4405-865C-6031D4BFF2DE}.rpt:
    Ogiltigt underrapportnamn.---- Error code:-2147483086 Error code name:failed, ) - [applicationId=omega, omegaUserId=omega.userid, credentials=IT, groupName=IT, sessionId=yLkhJLtYpLlDQ5Jf5S2GkzhPfSZJBg2zZkT4LfQ0L1bJg2v20pz2!-2033571304!1233906968432, requestId=06968853:167:000], exception-stack=
    com.nordea.omega.report.exceptions.ReportGenerationFailedException: Creation of report: customer_report.rpt failed on: [ReportAppServer: CCA1CS0569. Datasource: cca1cd0046qa1|omega] com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException:
    Fel i filen customer_report {CDCDCEC2-050C-4405-865C-6031D4BFF2DE}.rpt:
    Ogiltigt underrapportnamn.---- Error code:-2147483086 Error code name:failed,
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.s.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.if(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.bl.do(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.do(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.verifyDatabase(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.bl.byte(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ao.onDataSourceChanged(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.DatabaseController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.DatabaseController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.DatabaseController.setDataSource(Unknown Source)
         at com.nordea.crystalreports.ReportHelper.passPOJO(ReportHelper.java:814)
         at com.nordea.crystalreports.ReportHelper.changeDataSource(ReportHelper.java:124)
         at com.nordea.crystalreports.ReportGenerator.generate(ReportGenerator.java:115)
         at com.nordea.crystalreports.ReportGenerator.generate(ReportGenerator.java:62)
         at com.nordea.omega.report.servlet.CrystalReportServlet.doGet(CrystalReportServlet.java:116)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServi

    I have been able to wrestle this down after a lot of frustrating work. The error had nothing to do with pojos at all. The error was simple a store procedure that did not reply nothing.
    In the preparation of the subreport that did consist of the pojo data source. The report(server?) did send a "pre call" to the store procedure with NULL as parameters. The reply was unfortunately an "empty" reply. When we changed the reply to an empty result set it went pass the data sources.
    The error message given on this was "Invalid subreport name"! Not very helpful at all.
    I have used this new version for about 3 weeks now in a "proof of concept" work controlling if we would be able to upgrade from crystal 9/Harmoni to Crystal 2008/Crystal Report Server 2008. The answer will be yes. It will work. And with a minimum of report changes which is very nice.
    What have struck me the most during this work is a few proposals to improvements.
    1. Put the versions on jars and sdk's so it's obvious what's used. I spent a few days with an old version of a sdk believing that it was a newer than I already had. It should not be neccessary to go through a manifest file inside a jar in order to find out what the version is. Put it on the file names!
    2. Give proper error messages back when something goes wrong. If a parameter value is missing. Send back the parameter that's missed/misses a value for Gods sake. The programmer catching the error most know what's missed hence the message. Would save the user's of the API very much time.
    I spent about 5 - 10 days trying to find out what was wrong with my sub report name (This thread). It had nothing to do with the subreport name. It had to do with missing data from a called store procedure!
    3. The documentation can be a bit tricky to find. I saw that you have given away a eclipse plugin in order to gather the documentation inside the IDE. That's a good approach.
    If the error messages will be enhanced and more accurate it's a pretty handy api to work with. And the handling of unmanaged reports is a wet dream compared to usage of the Harmoni API. That's a real nightmare. The server seems to be very stable and just runs.
    I like this forum, fast replies when one is stuck is extremely helpful!
    /Patrik

  • Oracle Invalid Column Name Error in JSP

    I was wondering if anyone could provide some help. I am new to JSP, Beans and Oracle and I am getting a java.sql.SQLException: ORA-00904: invalid column name error when I run the JSP below. The Java Bean's code it is referencing is also included and this bean is just storing information from the server from a previous login page.
    Eventually I need to display more columns from the database using this JSP, but since I can even get this one working, I am at a loss!
    PLEASE HELP!!!!
    I have even tried to replace the beans reference in the sql with just a login and password I know exists in the database! Same error... Help!
    I am running Tomcat and Oracle 9i!
    <!--
    Assign-->
    <html>
    <head>
    <title>Student Signon on page</title>
    </head>
    <body bgcolor="#FDF5E6">
    <h1 align="center">>Student Signon on page</h1>
    <%@ page import="java.sql.*" %>
    <%@ page import="BeanAs2.Bean5b" %>
    <%
    String driverClassString = "oracle.jdbc.driver.OracleDriver";
    String driverConnectString;
    driverConnectString = "jdbc:oracle:thin:@midas2:1521:globaldb";
    String user = "system";
    String passwd = "manager";
    %>
    <jsp:useBean id="Bean5b" class="BeanAs2.Bean5b" />
    <jsp getProperty id = "Bean5b" property = "login" />
    <jsp getProperty id = "Bean5b" property = "pswd" />
    <%
    Connection connection = null;
    try {
    Class.forName(driverClassString);
    connection = DriverManager.getConnection(driverConnectString, user, passwd);
    catch (Exception e) {
    out.println("Cannot close connect to database!"+e);
    if (connection != null) {
    String login =Bean5b.getpassword();
    String pswd =Bean5b.getStudentlogin();
    String sql = "SELECT studentinfo.familyname FROM STUDENTINFO WHERE studentinfo.username='login' AND studentinfo.password='pswd';";
    try { // execute the query
    //SELECT studentinfo.familyname FROM STUDENTINFO WHERE studentinfo.username='s40079703' AND studentinfo.password='p4007swd'
    Statement stmt = connection.createStatement();
    ResultSet rst;
    rst = stmt.executeQuery(sql);
    // Fetch the query result, and dispaly them in a table
    while (rst.next()) {
    %>
    <tr>
    <td> <%= rst.getString("system.teaching.code") %> </td>
    </tr>
    <%
    stmt.close();
    connection.close();
    } catch(Exception e) {
         out.println("Cannot fetch data from database!"+e);
    %>
    </body></html>
    package BeanAs2;
    import java.util.*;
    public class Bean5b {
         // all variables must not be public in a bean
    private String Studentlogin;
    private String password;
    public String getStudentlogin() {
    return this.Studentlogin;
    public String getpassword() {
    return this.password;
         public void setStudentlogin(String login) {
              this.Studentlogin = login;
         public void setpassword(String pswd) {
              this.password = pswd;

    Hi
    Thanks for your reply, I should of looked at my code before I copied over. The field should of been "studentinfo.familyname" which I was calling, I have just been changing so much code in this to try and see what the problem is, I didnt fix this before I copied this over.... trust me, I have tried everything........ Hence when I correctly called the "concatination the login name and password to the query properly" as you pointed out, I got rid of the error, BUT now it returning NO DATA????? (the table is populated - I have checked this!!!!)
    The table I am trying to get information from sits under a schema called system. It has the following columns;
    STUDENTID NUMBER 8
    FAMILYNAME VARHCAR 60
    GIVENNAME VARCHAR 60
    USERNAME VARCHAR 9
    PASSWORD VHARCHAR 60
    The database is called globaldb. My computer is called Midas2
    Whats more, the query works in Oracle sql*plus!!! Returning the relevent data!!!
    Actually here is the code for the JSP, with all the changes and none of the mistakes of my previous post...........,
    Pleaes help!!!
    <html>
    <head>
    <title>Student Signon on page</title>
    </head>
    <body bgcolor="#FDF5E6">
    <h1 align="center">>Student Signon on page</h1>
    <%@ page import="java.sql.*" %>
    <%@ page import="BeanAs2.Bean5b" %>
    <%
    String driverClassString = "oracle.jdbc.driver.OracleDriver";
    String driverConnectString;
    driverConnectString = "jdbc:oracle:thin:@midas2:1521:globaldb";
    String user = "system";
    String passwd = "manager";
    %>
    <jsp:useBean id="Bean5b" class="BeanAs2.Bean5b" />
    <jsp getProperty id = "Bean5b" property = "login" />
    <jsp getProperty id = "Bean5b" property = "pswd" />
    <%
    Connection connection = null;
    try {
    Class.forName(driverClassString);
    connection = DriverManager.getConnection(driverConnectString, user, passwd);
    catch (Exception e) {
    out.println("Cannot close connect to database!"+e);
    if (connection != null) {
    String login =Bean5b.getpassword();
    String pswd =Bean5b.getStudentlogin();
    String sqlQuery;
    sqlQuery = ("SELECT studentinfo.familyname FROM STUDENTINFO WHERE studentinfo.username='" + login + "' AND studentinfo.password='" + pswd + "'"); %>
    <% try { // execute the query
    Statement stmt = connection.createStatement();
    ResultSet rst;
    rst = stmt.executeQuery(sqlQuery);
    // Fetch the query result, and dispaly them in a table
    while (rst.next()) {
    %>
    <tr>
    <td> <%= rst.getString("studentinfo.familyname") %> </td>
    </tr>
    <%
    stmt.close();
    connection.close();
    } catch(Exception e) {
         out.println("Cannot fetch data from database!"+e);
    %>
    </body></html>

  • Auto-update: invalid user name / password

    Hello,
    I have changed out the CCO username and password for an IPS configured for auto-update but cannot get the IPS to correctly update its signature any longer.  I have verified that the CCO login is correct and that it can download a signature file directly using a web browser interface. However, every attempt to get the IPS to update automatically results in the following error:
    Auto Update Statistics
       lastDirectoryReadAttempt = 15:05:29 UTC Mon Sep 29 2014
        =   Read directory: https://72.163.4.161//cgi-bin/front.x/ida/locator/locator.pl
        =   Error: invalid user name/password combination
    (Note: I have the URL set to 'www.cisco.com')
    Thanks,

    FYI - just to close my own issue.
    The issue was resolved by using the cli to set the values and perform a one-time update. Once that was successful, all future signature updates have worked fine through the gui.

  • XAI invalid user name and password

    Hello,
    I am getting the following error when i submit the SOAP request to CC&B, i have changed the all username's and password's fields on XAI Option page to SYSUSER and its corresponding password. still getting the below error, looks like i am doing something wrong , please let me know how to fix it.
    this error i am seeing on the tocat
    - 2012-10-26 10:55:38,908 [http-6500-2] ERROR (xai.servlet.XAIWSServlet) Invalid user name or password
    java.lang.Exception: Invalid user name or password
    at com.splwg.xai.servlet.XAIWSServlet.doPost(XAIWSServlet.java:82)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    Thnaks.

    Hi Banerjee,
    SOA 11g is not certified or supported with DB 10.2.0.1 so request you to either upgrade the DB to 10.2.0.4 or use 11g DB.
    Regards,
    Prakash.

  • I receive an invalid user name message in Creative Suite 2

    Jeff,
    I own CS2 and have had it on my Windows 7 computer until the computer crashed last week.  I bought a new computer and it has Windows 8.  I went to install my CS2 cds and it doesn't work.  I read this thread and installed the software via the install links through my Adobe username, but Photoshop and InDesign are not working. 
    When I open Photoshop, I get the same "Your Photoshop username, organization, or serial number is missing or invalid. The application cannot continue and must now exit."  I went to the link you gave on 3/28/14 above, but it refers to VCOM Fix-It Utilities 6 or SystemSuite 6.  I have neither installed on my machine.
    When I open InDesign it asks me for my serial number.  I entered the number given with the CS2 download, but it doesn't work.  It says "The serial number you provided is not valid. Please check your serial number and re-enter it."
    I have tried to remove and reinstall several times.  Please HELP!
    Thank you,
    Kim

    Branching this to a separate discussion.
    Kim you are welcome to try the steps listed in Invalid user name, organization, or serial number error | Production Studio applications (Windows).

  • "Invalid user name and password" when synchronizin...

    I am getting an "Invalid user name or password" error on E71 after changing password on both Ovi.com web site and in sync profile on E71. Yes, I did make sure to enter the correct password into my ovi.com sync profile on the E71.
    E71 Aficionado

    I agree.  I'm in the same region of the U.S. as you (McLean VA), and I bought the E71 unlocked so I could use my T-Mobile SIM and number with it.  Another plus is it works just about anywhere in the world.
    As regards software, a lot of it just doesn't work (a la Ovi sync). There are some very nice third party apps, such as Joikuspot (WLAN anywhere) and Goosync (when it works, it's a good Google services sync tool). I am addicted to Comedy 104 on its internet radio application, and Mobbler is a pretty good way to get a last.fm-like experience on the phone.
    Shame on Nokia for releasing a not-ready for prime time service, then not supporting it.  Very Microsoft-like!
    E71 Aficionado

  • Jpub invalid column name error

    I try to create a Wrapper for a PL/SQL Package in a Oracle8i database with jpublisher.
    I created Packages and Object Types with the SQl script Rational.sql. \oracle\ora81\sqlj\demo\jpub\Rational.sql
    jpub failed to produce any sqlj or java files, but produces a "invalid column name" error. This happened with all packages I have tested. Object Types are wrapped without problems.
    jpub -sql=RationalP -user=scott/tiger -url=jdbc:oracle:oci8:@xx
    SCOTT.RATIONALP
    ORA-00904: invalid column name
    JPub: Java Object Type Publisher, version 8.1.7.0.0 Production
    Thanks for Help, Konrad

    The database that your are running against is 8.1.6 or earlier.
    You are seeing an issue where JPublisher is not backwards compatible. It looks up system tables to determine the signatures of SQL types and of PL/SQL packages. A change happened with the 8.1.7 release in the representation for packages, but JPublisher did not keep backward compatibility. You can do one of the following:
    (1) Use the JPublisher version that came with your database. (Use the runtime.zip/translator.zip libraries under [Oracle Home]/sqlj/lib.)
    (2) Use the JPublisher from Oracle 9.0.1 or later. It also provides backward compatibility to 8i databases.
    Let us know if you have any further questions.

  • DRM-61026: Unable to create user session for the following reason: Login failed. Invalid user name or password.

    All Im very new to Oracle DRM and Im trying to get the app setup on Windows server running SQL Server 2008.  When I try to login to the Web Client I keep getting this error.
    DRM-61026: Unable to create user session for the following reason: Login failed. Invalid user name or password.
    Can you please help

    This might be due to The 'Oracle Instance' path may not have been set to a path relative to the 'CSS Bridge Host' (i.e. the Foundation Services machine) on the Configuration > Host Machines > CSS > General tab of the DRM Configuration Utility.
    if this is the case then
    1. Open the DRM Configuration Console.
    2. Go to the Configuration > Host Machines > CSS > General tab of the DRM Configuration Utility.
    3. Ensure that the path in 'Oracle Instance' has been set relative to the 'CSS Bridge Host' (i.e. the Foundation Services machine defined in 'CSS Bridge Host').
    4. If corrections are made to 'Oracle Instance' then restart the DRM services to pick up the change.
    Thanks,
    ~KKT~

  • Signing up for fon Fails (invalid user name or pas...

    Hello, We've been trying to sign up for fon and it keeps giving us the same error message! Invalid user name or password. The user name is the one on our contract also our email address. [email protected] this is working ok for emails etc. The password is likely the problem!! We've tried the original password provided on the contract (a bunch of letters and numbers) We've have changed our password to something specific to us! This does not work! Whilst having problems with email online support suggested we change our password again, so we did change password about a month ago! This also fails to work? So our email address and current working password for email access does not work! Can anyone tell s which password we should use or how we can get to sign up for fon! Chris

    Crizdee wrote:
    Hi, Thanks for the replies. The password provided when we signed I have tried many times and nada! I've read the FAQs and they say you can change your password so think this is the confusion? The fact we have changed passwords a few times! I'll see what support comes up with. Chris
    If you cannot opt in using the FON page, then there must be an issue somewhere.
    You have to use your full [email protected], which I expect that you are doing.
    You will have to try the BT Openzone/FON helpdesk, and see if they can see what the issue is.
    This is the signup page
    https://www.bt.com/wifi/secure/optin.do
    Just to confirm, this is the page you should be using to login.
    https://www.bt.com/wifi/secure/status.do?s_cid=con_FURL_btfon/status
    All new users are opted in by default, so you may find that that is the case for you, and the reason it is failing.
    Have you tried the normal login page ?
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Invalid File Name Errors when syncing to Ipod

    Ever since an update last fall I have been getting Invalid file name errors when I try to sync my ipod. A window would pop up saying "Windows could not copy 'SONGNAME' to the iPod 'IPODNAME' because an unkown error occurred (-37)." I would press OK and another window would immediately pop up that would say, "Attempting to copy to the disk 'IPODNAME' failed. the file name is invalid or too long."
    The windows would keep popping up countless times until the sync would just seem to time out and stop.
    The problem songs would have no problem playing in iTunes.
    Prior to the update this did not happen. No new songs were added around this time and nothing was changed to my file directory structure. I was too busy to troubleshoot this problem at the time and hoped that another update would fix it. Well, here I am many months and updates later and still no fix. After fiddling with iTunes and resetting my Ipod multiple times (goodbye saved angry bird games)I have found out that:
    1. By writing down the file name when the error windows pop up I can get a partial list of the problem file names. I could not get a complete list of the problem files because the sync would time out before a full list could be compiled (the list appears to be in the hundreds).
    2. If I changed the name of the file by adding OR deleting one character, remapping the song in itunes, the song would then sync properly.
    3. If I changed the name of the file, remapped the location of the file within iTunes, changed the name of the file BACK to the original name that iTunes supposedly had a problem with, and then remapped the location of the song within iTunes, the song would then sync properly
    4. If I moved the song to a different directory without changing the file name, remapped the song within iTunes, the song would sync properly.
    5. If I moved the song to a different directory without changing the file name, remapped the song within iTunes, moved the file BACK to the original directory, remapped the song again, the song would sync properly.
    6. If I renamed the file and then named it back to the original file name WITHOUT remapping the file location in iTunes, the song would still not sync properly
    7. If I moved the file into a different directory and then back again without remapping the file location, the song would still not sync properly.
    8. Changing or deleting the tags has no effect at all.
    9. File name lengths are already under 200 characters and there are no special characters used.
    So, to sum up, I have found out a way to fix the issue. The problem is, that there are hundreds of songs that appear to be affected and renaming or moving every single one individually and then remapping is extremely inefficient and ignores the cause of the problem. I also did not want to delete the itunes library and then add all of the songs back in because I have many custom playlists that I have spent hours creating and I do not want to delete them.
    Is there a better way to fix the problem? Especially if someone knows the root cause?

    I got a procmon log file and examined it. I have the file and I could also provide you with that or screenshots of it.
    There is nothing unusual about it. I can see entires in which CR has successfully opened the report and has cached in a c:\windows\temp.
    However there is one or two non-successful entries that may be related, especially that examining the stack trace brings us to a call to get_ProductLocaleID():
    - A call to read reg entry HKU\S-1-5-20\Software\Business Objects\Suite 12.0\Crystal Reports\Locale fails with NAME NOT FOUND.
    - immediately after that and from the same process (w3wp.ex) there is a call to open directory "c:\" which is logged as ACCESS DENIED.
    Any subsequent unsuccessful calls seem to be results of exception handling in the debug code.
    Does this point to any setup issues with CR? We always run the redistributable x86 runtime when installing it.

  • Invalid table name error ....

    Hi,
    I have written a function which takes table name dynamically and if column emp_id is null for more than 0 records then 1 is returned else 0 .
    My problem is when i compile iam getting invalid table name error .
    Below is my function :
    create or replace
    FUNCTION f_table ( tab_name in varchar2 ) return number is
    l_count number;
    begin
    select count(*) into l_count from tab_name where emp_id is null;
    if l_count >0 then
    return 1;
    else
    return 0;
    end if;
    end;
    Please help ...
    Thanks in advance ..

    Looks fine to me, you could use sign() for the last part:
    CREATE OR REPLACE FUNCTION f_table (tab_name IN VARCHAR2)
    RETURN NUMBER
    IS
      l_count NUMBER;
      v_sql VARCHAR2 (2000);
    BEGIN
      v_sql := 'SELECT COUNT (*) FROM ' || tab_name || ' WHERE emp_id IS NULL';
      EXECUTE IMMEDIATE v_sql
      INTO l_count;
      RETURN sign(l_count);
    END;And if you have large tables, you could consider not counting it all, and do something like this:
    CREATE OR REPLACE FUNCTION f_table (tab_name IN VARCHAR2)
    RETURN NUMBER
    IS
      l_count NUMBER;
      v_sql VARCHAR2 (2000);
    BEGIN
      v_sql := 'SELECT COUNT (*) FROM ' || tab_name || ' WHERE emp_id IS NULL AND rownum = 1';
      EXECUTE IMMEDIATE v_sql
      INTO l_count;
      RETURN l_count;
    END;Regards
    Peter

  • Sybase JDBC driver & Invalid column name error

    I submitted a note a year ago concerning JDBC-ODBC bridge and SQL Server db. Same Invalid column name error. The resolution was a bug in the XSU code.
    This time the error is with a jconnect5 JDBC driver from Sybase to a Sybase ASA db. ASA is Adaptive Server Anywhere.
    <ERROR xsql-timing="140">oracle.xml.sql.OracleXMLSQLException: S0022: Invalid column name 'name'.</ERROR>
    However if I use a Sybase JDBC driver from INet Software of Germany, I get the desired result of my query.
    Below are sample XSQLConfig.xml definitions.
    INet Software Sybase JDBC driver definition:
    - <connection name="deasa">
    <username>dba</username>
    <password>sql</password>
    <dburl>jdbc:inetsyb:LEMKAU:2638?database=asademo</dburl>
    <driver>com.inet.syb.SybDriver</driver>
    <autocommit>true</autocommit>
    </connection>
    Sybase jconnect5 Sybase JDBC driver definition:
    - <connection name="asa">
    <username>dba</username>
    <password>sql</password>
    <dburl>jdbc:sybase:Tds:lemkau:2638?ServiceName=asademo</dburl>
    <driver>com.sybase.jdbc.SybDriver</driver>
    <autocommit>true</autocommit>
    </connection>
    I believe the bug has to do with the numeric codes that the drivers use to determine data types are not properly interpreted.
    See XML General note title "insert-request, xsu 2.1.0 beta & SQL Server" for reference.
    Steve.

    Thanks for the notification. We will look into this issue...

Maybe you are looking for

  • TI4600 Stability

    Hi, I have a MSI GF4 TI 4600 in my PC and I have just recently upgraded my processors to use the full capabilities of the card. Current Setup:  - Gigabyte - GA6VTXD - Motherboard Running Dual PIII 1.4's  - MSI 8872  - 756Mb Ram (PC150)  - Seagate Bar

  • Satellite A210 1AP - The display is not turning on

    I had a problem about a mounth ago with my Toshiba Satellite A210-1AP, just once the display did not turn on. Computer was working, all lights were on. That light that shows reading from HDD was blinking, working as normal, but with display still tur

  • Bing stole my home page. How can I get it back

    I have used ( msn.com ) as my home page for a number of years now. And suddenly a few days ago i lost it somehow. When I try to go to msn I end up with a total white page with ( www.msn.com) in the address or location bar and (http://www.msn.com/) pr

  • Oracle 9i HP 9000 download problem

    Firstly, the files linked to from http://otn.oracle.com/software/products/oracle9i/htdocs/hpsoft.html download with a different size to that listed. I am certain that I haven't downloaded them incorrectly because I have checked the HTTP responses for

  • How to call an Oracle Report from a Self Service HR page.

    Hi, I am trying to call an Oracle Report from a Self Service HR page. I personalized the page to add a button and link the report's URL to that button; but I am having issues passing/manipulating parameters to this report. Is there a better approach