Error "TK287" when releasing a request - Special character "_" is invalid.

I have some tables in Solution Manager and having some warnings:
Table: CRM_SVY_DB_ST
Field value:CRM_SVY_GENERATE_BSP_TEMPLATE.XSLT
Field: TRANSFORMATIONID
It doesn´t accept the special character "_"
Below the error when releasing and the explanation of the error in the sequence.
Key messages: TABU CRM_SVY_DB_ST 300DSWPCI_ISSUE_FDBCK 0000000000DCRM_               
Special character "_" in generic key                                                                               
Key messages: TABU CRM_SVY_DB_ST 300DSWPCI_ISSUE_FDBCK 0000000000DCRM_               
Special character "_" in generic key                                                                               
Key messages: TABU CRM_SVY_DB_ST 300DSWPCI_ISSUE_FDBCK 0000000000DCRM_               
Special character "_" in generic key                                                                               
Key messages: TABU CRM_SVY_DB_ST 300DSWPCI_SERVICE_FDBCK 0000000000DCRM_             
Special character "_" in generic key                                                                               
Key messages: TABU CRM_SVY_DB_ST 300DSWPCI_SERVICE_FDBCK 0000000000DCRM_             
Special character "_" in generic key                                                 
Explanation of the error:
Special character "_" in generic key
Message no. TK287
Diagnosis
The generic key 300DSWPCI_ISSUE_FDBCK 0000000000DCRM_ was entered for the object CRM_SVY_DB_ST. All keys that match up to the asterisk are to be transported.
The key cannot have any special characters before the asterisk, since they are interpreted in different ways by different database systems.
The key contains the special character _.
System Response
The entry is rejected.
Procedure
Extend the generic entry, or specify all keys individually.

Hi,
Go through SAP note 711103 & 688363.
Regards,
Sachin Rane.
Edited by: Sachin Rane on Mar 12, 2009 2:48 PM

Similar Messages

  • Error while releasing transport request -  Special character "_" in generic

    Hi all,
    we're receiving the error  Special character "_" in generic key  when releasing a best practice transport.
    Note 1304725 describes my error, but the solution cannot be implemented. The reason for this is that we do not have an individual entry for eacht yb_PS,..,
    but we have only one entry where field BWERT has a wildcard '*' as entry.
    Does anyone has  some idea how to solve this ?
    kind regards !

    Hello Bjorn,
    How did you get this solved?
    I'm having nearly the same issue:
    A custom-table with a total key lenght of about 365 characters. As soon as I enter a special character (_) in the key field just before the position 120, the message tk287 rejects the entry. Entering the special character in a key field at about key position
    60, there's no message rejecting the entry.
    Regards

  • Error ME006 when releasing Service entry Sheet in ML81N

    Dear Gurus,
    There is a Pop up error message, when service entry sheet is release and saved (Error ME006 when releasing Service entry Sheet in ML81N ). BUt after ingnoring, the service entry sheet is released. Please advice what is the issue with this error ME006 Message
    One more confiq - in SM31 >> T100 (Table) >> ME (message class) >>> Message number 006 - Self explantatory is ticked.
    Thanks
    RS
    Edited by: Ramapuram Saravanan on Jan 20, 2009 10:39 AM

    Please check the lock entries in the Transaction code SM12,there must be one lock entry for this.
    Please delete it.
    Regards,
    Manish

  • Error: Could not complete your request because of missing or invalid personal information

    I'm using photoshop 7.0 with windows Vista and I keep getting that error message when I try to launch the program. I lost my cd. Is there a work around to fix this issue beside reinstalling application?

    Your best bet would be going to Control Panel > Programs > Programs and Features and double-clicking Adobe Photoshop. It has a "Repair" and an "Uninstall" button, so maybe you can try clicking "Repair" and it won't ask for a CD? Make sure you have backups of your settings and extensions if possible!
    Other than uninstalling the program altogether, I can't think of any other way to fix Photoshop without it starting up first. Good luck!
    -Monica

  • ORA-00911 Error code in JDBC where no special character is used - Oracle 10

    Hi,
    I am using Oracle 10G and Tomcat 5.5. I am trying to update a the CONFIRMED column of a table called LISTSERV_WAITING_LIST_TABLE. Please see my code below.
    public void doPost(HttpServletRequest request, HttpServletResponse response){
         String resRef = getServletContext().getInitParameter("java.comp.env");
         String jdbcDbRef = getServletContext().getInitParameter("jdbc.database");
         Context dbInitContext = null;
         Context dbEnvContext = null;
         DataSource dbSource = null;
         Connection conn = null;
    PreparedStatement prepStatement = null;
    String uemail = request.getParameter("email").toUpperCase();
         String userId = request.getParameter("userId");
         String waitingListTable = getServletContext().getInitParameter("db.waiting.list.table.name");
         try{ 
              dbInitContext = new InitialContext();
              dbEnvContext = (Context)dbInitContext.lookup(resRef);
              dbSource = (DataSource)dbEnvContext.lookup(jdbcDbRef);
              conn = dbSource.getConnection();
    String sqlcmd = "update " + waitingListTable + " SET CONFIRMED = 'YES' WHERE UEMAIL = '" + uemail + "' and USERID = '" + userId + "';";
    prepStatement = conn.prepareStatement(sqlcmd);
    prepStatement.executeUpdate();
         }catch(NamingException e){
              log("Area 4A: NamingException occured");
         }catch( SQLException e){
         log("Area 4B: Exception occured", e);
    When I run the code, I receive the following error message:
    SEVERE: FinalSubscriber: Area 4B: Exception occured
    java.sql.SQLException: ORA-00911: invalid character
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:743)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:213)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:952)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1160)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3285)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3368)
         at org.apache.tomcat.dbcp.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:101)
         at com.sainc.nsb.FinalSubscriber.doPost(FinalSubscriber.java:40)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:831)
         at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:639)
         at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1203)
         at java.lang.Thread.run(Unknown Source)
    However, when I type the value of the string sqlcmd (used in the PreparedStatement) directly into Oracle, the update works. An example of that string is:
    update listserv_waiting_list SET CONFIRMED = 'YES' WHERE UEMAIL = '[email protected]' and USERID = '1142369642862';
    It contains no stange character and rows are inserted successfully in another class of the program that uses the same mechanism. The problem comes when I update the table.
    Any idea as to what is wrong? Your help will be appreciated.
    Thanks,
    Nguessan

    buddy, why don't you use a stored procedure and make your update, i hate that upkeeping.
    callablestatement and the power of Plsql are ur saviours.
    regards, djoudi.

  • Error message when releasing a rework order

    Dear Experts
    I try to create a Rework production order  using co07 but I am unable becase when I click on the Release button, I get this error message " order type pp07, no checking rule maintained for operation. Release of order not possible". what steps do I take to solve thisproblem?

    Dear Vincent,
    1) Go to OPJK, here for ur plant & Order type do settings for Business function 1 & 2
    2) or else Copy any Std Rework order in OPJK & Give ur plant & order type & save
    Then check the result
    Regards
    Madhu Kumar

  • Error 12 when releasing a transport

    I am trying to release a transport, but get an error 12 "The request's target VBQ.500 is client dependant but the target system cannot handle that". VBQ.500 is a virtual system. Anyone have any suggestions for me to check out? I'm at a loss.
    Thanks,
    -- Jackie

    Hello Jackie
    I cannot tell you the reason for the error code. Somehow the CTS "believes" that the target system cannot handle clients and client-dependent objects.
    For the moment I think your main problem is to release your customizing request (or is it a workbench request containing client-dependent repository objects?). Try to change the target of your request. Perhaps the CTS can handle that. It might be necessary to adjust transport routes (transaction STMS) in order to get a "decent" target.
    Is your virtual system VBQ.500 a <b>consolidation system</b>? If not then try to change this (Note: this is a critical SAP basis activity).
    As soon as the request is released you can try to import it into your VBQ.500 system.
    Regards
      Uwe

  • Error occured when opening a request

    Hi All,
    My application has got ESS/MSS. One user has tried creating a leave request , it got rejected by his manager and again it came to his inbox for his next action. So when he tried to open that he gets,
    *Application error occured during request processing
    com.sap.tc.webdynpro.services.sal.core.dispatcherException: Wrong webdynpro-URL: No appl *
    Any help?
    Thanks!
    Swarnaprakash

    Hi Swarnaprakash
    Looks like some installation error. Check below links -
    Re: Web Dynpro Exception: Dispatcher Exception
    ESS IVIEW not working
    Regards,
    Sen

  • Error ME006 when releasing multiple POs in ME28

    Hi guys
    Hoping someone can assist with this query.
    When users attempt to release multiple POs at once via ME28, they get error message ME006 - 'User *** already processing purchase order ***'. The first PO is released but no others.
    I've checked SM12 for lock entries but there is nothing there. The PO on the error message is definitely not open in another session. Has anyone ever come across this before, and if so, what's the solution?
    We are using ECC6.0, but this issue first arose in 4.6C.
    Many thanks
    James

    Hi Friend,
    Please let me know the solution, i also got the same problem
    thanks RS

  • Get error 3313 when try to request drm license in client

    Hi
    When I try to get license from Flash Access License server, DRMEvent.DRM_STATE_CHANGE event gives me an error with error id 3313. The server side returns the license successfully, it seems the clent has some trouble to handle the license. By checking the runtime error document, 3313 refes to "Write to the file system failed." Does that mean client has problem with saving the license locally? How can I fix this issue?

    Hi Eric
    This issue becomes more and more serious to me b/c only 2 of my 10 test PCs can playback a video without get 3313 error. I did some tests these days and hope the information could be useful for you to help me out.
    Error 3313 only happens on WIN7 system. I tried Win7 Ultimate 32 & 64 bit on 10 PCs only 2 surviced from 3313 issue.
    When I test, I format the hard disk, install the system (with default setting), install all windows updates, udpate flashPlayer to 10.3.x (download from adobe.com).
    3313 happens only in IE (I tested 8 & 9), Firefox and Chrome on the same PC work well.
    My account belongs to Administrator group.
    If I login as Administrator, 3313 won't happen.
    If I run IE as Administrator, 3313 won't happen.
    All storage related settings in FlashPlayer setting panel are set to "allow".
    My system language and location are all English (US).
    Error code is 3313 and subID is 99.
    Since there is no workaround for client app, I really need your help on this. Why this happens, and how to solve it. If you need FlashPlay's log, please let me know where I can find them.
    Thanks.

  • Error  wirh release of the requets Special character "_" in generic key

    Hello
    I am trying to release  the request, this reques was generated to installation the baseline  for Peru  but  I got this message:
    Key messages: TABU TFAWC 200SAPLCATS 2100TCA
    Special character "_" in generic key
    Special character "_" in generic key
    Message no. TK287
    Diagnosis
    The generic key 200SAPLCATS 2100TCA was entered for the object TFAWC. All keys that match up to the asterisk are to be transported.
    The key cannot have any special characters before the asterisk, since they are interpreted in different ways by different database systems.
    The key contains the special character _.
    System Response
    The entry is rejected.
    Procedure
    Extend the generic entry, or specify all keys individually
    Any sugstion for this message?
    thanks
    Danny

    Hi Danny,
    Could you resolve issue Message no. TK078, I'm config SD and when i assign division and dis.channel to sales org those action does not show error but when i check request consistensy in se03 i have below error.
    =====================================================
    Object TDAT OVXA has object function "K", but no key                                                                               
    Message no. TK078                                                                               
    Diagnosis                                                                               
    The request/task cannot be saved because an object entry with function K
        does not have a key.                                                                               
    System Response                                                                               
    The system did not save the entry.                                                                               
    The cursor appears on the incorrect entry in the editor.                                                                               
    Procedure                                                                               
    Press Enter once. This branches to the object list in the editor and    
        positions the cursor on the incorrect object entry.                                                                               
    Correct the object function or enter keys for the object entry.         
    ============================================
    I had follow procedure but it do nothing.
    Anybody can help Pls !
    Thanks and Best regards.

  • Special Character error in IDOC

    All,
    I am trying to upload PO data using IDOC type "PORDCR1" from LSMW. All is well till I convert data. We have some speical characters in short text field at item level and even when I convert the data and display it from LSMW it looks fine, but when I processing idoc it's erroring out meaning if I have special character "Á" in IDOC during processing it's getting converted to "Á#" and it's screwing up the positions.
    What I am not able to understand is when I am displaying the converted data in segment mode in LSMW it's getting displayed perfectly without extra "#", but when I am checking errored idoc from WE05 it has this new #. Did anyone come across this issue?
    Your help will be greatly appreciated. Thanks for your time.

    Ok, the issue was with LSMW port (which was not marked as UNICODE) and because of which it's not translating special characters....

  • Exception caught when special character sent to lookup

    Hi Experts,
    When I sent a special character in the name field via "Address-Look-up (Java-Look-up)" an exception caught - (The exception is not visible - so used a value which get populated to all the target field where the loop-up is used). Receiver URL correctly maintained for the look-up channel.
    please suggest how to resolve this special character issue.
    regards
    Pankaj Rajak

    Pankaj,
    Can you explain your end to end scenario so that we identify where the problem is ?
    Also, this sometimes happens when the one of the two systems which are communicating are not Unicode Compliant. Please check if this is the issue is due to this.
    Regards,
    Amit

  • How to allow the special character in folder or filename

    when i add the special character "&" in folder or file name it gives following error
    "The file or folder name "P&A" contains invalid characters. Please use a different name. Invalid characters include the following: ~ " # % & * : < > ? / \ { | }. The name cannot begin or end with dot and cannot contains consecutive dots."
    how can i allow these character in folder or file name.
    waiting

    Hello to everybody
    It's ok for the ~ " # % & * : < > ? / \ { | } characters, they cannot be allowed,
    but in a lot of languages there are letters like  è é à ù ò that are accepted for path and/or filename;
    how to allow these characters? Moss indexes them but when doing some searches and clicking on these files, in the new internet explorer windows the file cannot be opened abd examining the url the è é à ù ò are replaced with other character.
    Thanks in advance to everybody
    Regards to all
    Roberto GerlandoGerly

  • Error message when compiling invalid packages and procedures

    Hi.
    I have a routine for copying certain data from a production database to a test database. To do this I disable constraints and triggers, truncate tables, copy tables and enable triggers and constraints again.
    Now several of my functions, procedures and packages are made invalid and marked with a red cross. In SQL Developer I can compile invalid functions, procedures and packages. When I compile functions it works fine, but when compiling procedures and packages I get the following error message:
    An error was encountered performing the requested operation:
    ORA-00904: "ATTRIBUTE": Invalid identifier
    Vendor code 904
    When I click OK on this message I get a confirmation saying:
    Packages have been compiled with #0.CNT# errors.
    I had this error in both the previous and the new version. Is this a bug or is there a way to come around it? When I copy and modify the SQL generated to perform this task and run it in SQL Plus it works fine.
    I use Windows 2000 5.00.2195 Service Pack 4, SQL Developer version 1.2.1, Oracle 9.2.0.8.0 and Java version 1.5.0_11
    Message was edited by:
    SvSig

    i have now upgraded to Java 1.6 update 2. I still get basically the same error, but it is presented a little bit differently:
    An error was encountered performing the requested operation:
    ORA-00904: "ATTRIBUTE": invalid identifier
    00904. 00000 - "%s: invalid identifier"
    *Cause:
    *Action:
    Vendor code 904
    Are there other possible error causes than the operating system version and the database version?
    We are going to install an Oracle 10 test database in a couple of weeks, so then I will find out whether the database version is the problem.

Maybe you are looking for

  • App crashes when trying to open window

    Hi guys. At the moment, my Cocoa Mac application is set to terminate when the last window is closed. I want to run a confirmation alert when the app is about to quit using the following code; - (NSApplicationTerminateReply)applicationShouldTerminate:

  • What´s wrong in my HTML code

    What´s wrong in my HTML code? I've developed a site that doesn't show up properly when using Safari. Could some expert tell med what errors we've made. Have a look at www.scandinaviandesigncenter.com We promise to send the person who helps us to fix

  • Automated Realignment for DP

    I have a process chain that loads my Shipping History and Inventory monthly.  One of the steps of this process is to realign my products from old to new (and obsoleted).  This works fine but each time I run the process chain the records in the realig

  • KDe 4.9 and pacman problems

    because my messages to the ML seems to disappearI will ask here. Hello, Today I upgraded my KDe 4.8.4 to KDE 4.9. I did all the steps according to the manual. Everything went without any problems. But when I start up KDE with startx I see the splashs

  • Sorting the iPod

    I would like to be able to scroll through long lists of songs on my iPod in alphabetical order. Is there any way to do that? I have not found a way yet. Does it require syncing?