Invalid characters error while ODS activation

I have 2 queries regarding Invalid characters
1) I got following error while activating ODS.
Value 'HYDERABAD - IV  COMMISSIONERATE ' (hex. '48594445524142414420<b>2D</b>204956A020434F4D4D495353494F') of characteristic ZEXCRG contains     invalid characters
   I added space (ALT+255) in RSKC as suggested in other threads and activated the ODS.('-' is already there in RSKC).
Above record did not give any error but got the same error for another record.
Value 'SURAT – II ' (hex. '535552415420<b>96</b>204949 ') of characteristic ZEXCRG contains invalid characters     
   Can anybody tell me why there is difference between in representation(HEX) of same char and which char should I add to RSKC to solve the error?
2) RSKC_ALLOWED_CHAR_GET lists the space as default allowed char, so why do I need to add the same again?

Hi Vikram:
go to RSKC: do a ALL_CAPITAL. then do the permitted charcters in BW(do a F1 and copy all and paste). also, please be advised that add <b>~</b> (tilda) and take a closer look at the error you got and insert that there.
hope it should fix the issue.
assign points if helpful
kalyan

Similar Messages

  • SID Error while ODS activation

    Hi,
    I am getting the Invalid charcterisitc error while Activating ODS. This ODS consists 0vendor as attribute of 0material.
    Now I have checked the entires for this 0vendor with respective 0material and there is no entires found for Vendor. Then where should I change invalid char for vendor.
    regards,
    Venkat

    Hi Harish,
    I am getting the following error while activating the DSO (we are using BI 7.0).
    Value 're1090' (hex. '007200650031003000390030') of characteristic 0VENDOR contains invalid characters
    I could not find Invalid char in PSA  as 0Vendor is an attribute for 0material.
    My concerns are:
    1) If 0vendor is having Invalid Char the load should fail when we are loading data for 0Material.
    2) As per the error message I could not find any Invalid char to find out.
    3) Where should I change this Invalid char (0Vendor / 0materail).
    Regards,
    Venkat

  • ABAP/4 processor: RAISE_EXCEPTION error while ODS Activation

    Hi all,
    We are facing the problem with ODS Activation.
    While ODS activation, we are getting error - "ABAP/4 processor: RAISE_EXCEPTION" very frequently .
    Could anybody please guide me why this error happened and how we can recover this error and is there any precautions to avoid this error.
    Thanks & Regards,
    Sudharsan

    Hi Sunil,
    Thanks for your reply.
    I dont have much knowledge on ABAP and how can you please let me know how this error resolved by your ADMIN team.
    Since we are facing this problem frequently, anybody tell me atleast, why this error happened?
    Regards & Thanks
    Sudharsan

  • Error while ODS activation

    Hi Every body,
              I got this error while activation of data in an ODS. The data is avaliable in the New dta atable , but while activation it is giving the errors of Invalid characters and error when assigning SID. Can anyone help.
    Thnaks in advance,
    Raj.

    I am facing similar problem in the 0FIAP_O03 ODS.
    One particular value 'CC ·µÐ¼þ' for field 0REF_DOC_NO gives error in Activation.0REF_DOC_NUM does not have any masterdata but the SID table is exists. We have ALL_CAPITAL in RSKC.
    One strage observation was when I tried loading this value[value copied from the error message in a PSA] in Developement Box it was successfull.
    I Do not understand if I am missing some setting in Production.
    The Errors are
    BRAIN 60  Value 'CC ·µÐ¼þ' (hex. '434320B7B5D0ADBCFE') of characteristic 0REF_DOC_NO contains invalid charact
    RSDRO 303 Error when assigning SID (details in long text) 
    The SID did not get created in Prod but was created in Dev. ODS is available for reporting and it has to remain such.
    If you have any Insights please help me as well.

  • Recieving ORA-01722 invalid number error while creating a materialized view

    Hi,
    I am receiving a ORA-01722 invalid number error while creating a materialized view. when run the select statement of the view i don't get any error, but when i use the same select statement to create a materialized view i receive this error. Could any please help in resolving this error. Here is the code i am using to create a materialized view.
    CREATE MATERIALIZED VIEW MV_EBS_CH_CLOSED
    REFRESH FORCE ON DEMAND
    AS
    SELECT DISTINCT kr.request_id, org.org_unit_name,
    ebs_ch_ticket_type (kr.request_id) ticket_type,
    DECODE
    (kr.status_code,
    'CLOSED_SUCCESS', kr.last_update_date,
    'IN_PROGRESS', (SELECT MAX (start_time)
    FROM ebs_ch_datastore ecd1
    WHERE kr.request_id = ecd1.request_id
    AND workflow_step_name =
    'Final BA Review and Deployment Exit Criteria')
    ) closed_date,
    substr(krhd.visible_parameter12,1,10) siebel_start_date,
    kr.creation_date itg_start_date
    FROM kcrt_requests kr,
    kcrt_request_types krt,
    kcrt_req_header_details krhd, kcrt_request_details krd1,
    (SELECT koum.user_id user_id,
    DECODE (koup.org_unit_name,
    'IT Implementations', 'CHS - Service Management BA',
    koup.org_unit_name
    ) org_unit_name
    FROM krsc_org_unit_members koum, krsc_org_units koup
    WHERE 1 = 1
    AND 'Y' = koup.enabled_flag
    AND koum.org_unit_id = koup.org_unit_id
    AND EXISTS (
    SELECT 'X'
    FROM krsc_org_units kouc
    WHERE koup.org_unit_id = kouc.org_unit_id
    START WITH kouc.parent_org_unit_id =
    ANY (SELECT org_unit_id
    FROM krsc_org_units krsc_org_units1
    WHERE 'Clearinghouse' =
    org_unit_name)
    CONNECT BY kouc.parent_org_unit_id =
    PRIOR kouc.org_unit_id)
    UNION
    SELECT kou.manager_id user_id,
    DECODE
    (kou.org_unit_name,
    'IT Implementations', 'CHS - Service Management BA',
    kou.org_unit_name
    ) org_unit_name
    FROM krsc_org_units kou
    WHERE 'Y' = kou.enabled_flag
    START WITH kou.parent_org_unit_id =
    (SELECT org_unit_id
    FROM krsc_org_units krsc_org_units2
    WHERE 'Clearinghouse' = org_unit_name)
    CONNECT BY kou.parent_org_unit_id = PRIOR kou.org_unit_id) org
    WHERE krt.request_type_id = kr.request_type_id
    AND krt.request_type_name IN ('Bug Fix', 'IT Enhancement')
    and kr.REQUEST_ID = krd1.request_id
    and krd1.batch_number = 1
    AND kr.request_id = krhd.request_id
    AND org.user_id in (krd1.parameter4, krd1.parameter5, krd1.parameter7)
    AND ( 'CLOSED_SUCCESS' = kr.status_code
    OR 'IN_PROGRESS' = kr.status_code
    AND kr.request_id IN (
    SELECT request_id
    FROM (SELECT DISTINCT request_id,
    MAX
    (start_time)
    closed_date
    FROM ebs_ch_datastore
    WHERE 'Final BA Review and Deployment Exit Criteria' =
    workflow_step_name
    GROUP BY request_id))
    Thanks,
    Shaik Mohiuddin

    This error occurs when you try to create a materialized view , but if you run the sql the results are perfectly fine. Well it happend to me also and to fix this I made sure all the coulmns have the same data type which are used in joins or in where clause.
    use
    where
    to_number(col1)=to_number(col2) and to_number(col3)=to_number(col4)
    hope this helps..

  • Invalid rowid error while running the snapshot agent in transactional replication

    Hi All,
    I am getting an Invalid rowid error while replicating an large tables i.e around 30 millions rows from oracle(publisher) to sql server(Subscriber) while running the snapshot agent in transactional replication.
    Its taking around 18 hours and its then its throwing this error.
    Is there any faster way that i can replicate the initial snapshot this large table as 18 hours is very high on time.
    Kindly suggest.i am always got quick and accurate response always..hope the same in this case also.
    Thanks,

    Hi,
    Could you please create a replication with some small tables for a test?
    You can disable the firewall on both sides and rerun snapshot. Enable verbose logging to level 4 for snapshot agent and check the results if it fails.
    http://support.microsoft.com/kb/312292
    Here is a document says for the error: ORA-10632: Invalid rowid Cause: Segment Highwatermark was overwritten due to shrink and space reused Action: Reissue this command.
    I also suggest you contact the Oracle support team for further help.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Invalid character error while activating data in DSO.

    Hi Experts,
    We are facing an issue with presence of invalid characters in data from source. This throws SID generation error while activating data in DSO. Long text of error shows like this:
    "Value " ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ" (HEX 000D0120012001200120012001200120012001200120012001) of characteristic  contains an error at position 1"
    Also we've tried adding the character " Ġ " in TCode RSKC, but it then shows as a rectangle box which I'm not able to copy manually(looks like a blank space or something of that sort).
    We've tried implementing routine to remove special characters while loading data, but still it fails. Due to huge amounts of data, its practically unfeasible to check each record manually.
    Any useful suggestions will be acknowledged.
    regards,
    anoop

    Hi,
      We are using following code for the same purpose. U can use it at infoobject level mapping. This code will check value of each character in the data coming, whether it is in RSKC, if it is a allowed one then it will be passed as it is. Otherwise it will replace that character by space.
        data: l_d_length like sy-index,
                 l_d_char type c,
                 l_d_index type sy-index,
              l  oopx like sy-tabix.
        data : xinfobj(30) type c value 'RABC'.    -> this is ur infoobject name
        clear : result.
        call function 'CONVERSION_EXIT_ALPHA_INPUT'
          exporting
            input  = tran_strucutre-XYZ     -> object name in ur structure
          importing
            output = result.
        l_d_length = strlen( result ).
        do l_d_length times.
          l_d_index = sy-index - 1.
          l_d_char = result+l_d_index(1).
          call function 'RSKC_CHAVL_OF_IOBJ_CHECK'
            exporting
              i_chavl                 = l_d_char
              i_iobjnm                = xinfobj
        I_S_COB_PRO             =
        I_T_COB_PRO_CMP         =
           exceptions
             chavl_not_allowed       = 1
             others                  = 2
          if sy-subrc <> 0.
            result+l_d_index(1) = ' '.
          endif.
        enddo.
    Regards;
    Jitendra

  • Error During ODS activation

    Hi Experts:
                    I am loading data to ODS. From R/3 to Data Source (PSA) data gets loaded without any problem at all. But during activation in ODS, it fails.
    I am getting the following error:
    Error when assigning SID: Action VAL_SID_CONVERT table 0POSTXT  Message no. RSDRO302
    Value '#' (hex. '23') of characteristic 0POSTXT contains invalid characters Message no. BRAIN059
    Process 000046 returned with errors Message no. RSODSO_PROCESSING006
    Now I checked in PSA, I did not see any # sign any where. Plz help me with this.

    Hi,
    Try writing following code in the udpate routine of 0postxt.
    replace all occurence of '#' in 0postxt with '-'.
    Also , some logic like following can be built for entries which have blank line item text .
       if 0postxt = space .
                  0postxt = ' -' .
               endif.
    Check out and let us know .
    Hope that helps.
    Regards
    Mr Kapadia

  • Error in ODS Activation

    Hi Friends,
    I got error when the ODS activating in Process Chain.
    The Error Messages are
    1. Inconsistent aggregation behavior - activation will be terminated.
    2 Activation of M records from DataStore object 0PUR_DS03 terminated
    in the data target (ODS) the request are in Red but activated as it is showing Request For Reporting Available flag having Query symbol..means the requests are available for reporting.
    What should be the possible reason
    How should i rectify it.
    Thanks&Regards
    Anand

    hi,
    I have activated ODS manually yesterday. the chain ran today.
    But today i got the below error while data is loading into ODS.
    Error Message Below.
    Runtime Errors         RAISE_EXCEPTION
    Date and Time          07.04.2009 03:43:06
    Short text
         Exception condition "NOT_EXIST" raised.
    What happened?
         The current ABAP/4 program encountered an unexpected
         situation.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
         keep them for a long time.
    Error analysis
         A RAISE statement in the program "SAPLRSSM" raised the exception
         condition "NOT_EXIST".
         Since the exception was not intercepted by a superior
         program, processing was terminated.
         Short description of exception condition:
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    Please sugeest to resolve the problem
    Regards
    Anand

  • Error while creating activity by using BAPI

    Hi,
    While creating activity by using BAPI Im getting error as follows,
    Start processing of refference object handle generated.
    Integrity rule a d0008 broken
    business partner with function from vbkakom not vbpakom
    Integrity rule a d0008 broken
    edit all incomplete field .
    Please help me for solving this issue.
    Regards,
    Suresh

    Not received any proper reply Closing the issue.

  • Error while DDIC ACTIVATION while installation SP stack

    Hi Gurus
    I face an error while I was installation one SP stack via SPAM in DDIC ACTIVATION phase. When I check log file ULOG09_2 I found 2 more systems are sending requests to my system in question. Here is the scenario My system in trouble DV2 other systems attached as per STMS : SUP & DV1
    Please suggest regards Jaswant
    Error from the SLOG.DV2
    ERROR SAPKGPRD10           DV2 A 0008 20090616155152 SAPUSER      JPURBA       dcecdv0                    
    WARNING: System DV2. Warning.        20090616155159 :
    WARNING:       Background job RDDIMPDP could not be started or terminated abnormally.
          Please check that the R/3 system is running.
          Please check the system. Use transactions SM21, SM37, SM50.
    WARNING:       (This warning is harmless if no further warnings follow.)
    LOG FROM THE FILE ULOG09_2
    dv1adm       20090616153006 RFC: tp IMPORT ALL DV1 proj=SOME U26 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL FEEDBACK ASYNCIMP -Dimpmon_mode=DETAILED -Dtransdir=/usr/sap/trans
    supadm       20090616153039 RFC: tp IMPORT ALL SUP proj=SOME U26 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL FEEDBACK ASYNCIMP -Dimpmon_mode=DETAILED -Dtransdir=/usr/sap/trans
    dv1adm       20090616153506 RFC: tp IMPORT ALL DV1 proj=SOME U26 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL FEEDBACK ASYNCIMP -Dimpmon_mode=DETAILED -Dtransdir=/usr/sap/trans
    dv1adm       20090616154506 RFC: tp IMPORT ALL DV1 proj=SOME U26 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL FEEDBACK ASYNCIMP -Dimpmon_mode=DETAILED -Dtransdir=/usr/sap/trans
    supadm       20090616154540 RFC: tp IMPORT ALL SUP proj=SOME U26 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL FEEDBACK ASYNCIMP -Dimpmon_mode=DETAILED -Dtransdir=/usr/sap/trans
    dv1adm       20090616155006 RFC: tp IMPORT ALL DV1 proj=SOME U26 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL FEEDBACK ASYNCIMP -Dimpmon_mode=DETAILED -Dtransdir=/usr/sap/trans
    dv2adm       20090616155135 RFC: tp SHOWPARAMS DV2 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL -Dtransdir=/usr/sap/trans  (pid=8066)
    dv2adm       20090616155135 RFC: tp CONNECT DV2 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL -Dtransdir=/usr/sap/trans  (pid=8066)
    dv2adm       20090616155141 RFC: tp SHOWPARAMS DV2 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL -Dtransdir=/usr/sap/trans  (pid=8066)
    dv2adm       20090616155141 RFC: tp CONNECT DV2 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL -Dtransdir=/usr/sap/trans  (pid=8066)
    dv2adm       20090616155141 RFC: tp ACT ALL DV2 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL -Dclientcascade=yes -Dstoponerror=8 -Drepeatonerror=8 -Dsourcesystems= -Dbuffreset=yes -Dbatch_proc=1 -Dstopimmediately=1 -Dactivatemerged=yes tag=spam -Dtransdir=/usr/sap/trans  (pid=8066)
    Edited by: jaswant purba on Jun 17, 2009 12:48 AM

    Hi
    Here are tail entries from log file SLOG0925.DV2
    regards
    Jaswant
    WARNING: System DV2. Warning.        20090617083739 :
    WARNING:       Background job RDDIMPDP could not be started or terminated abnormally.
          Please check that the R/3 system is running.
          Please check the system. Use transactions SM21, SM37, SM50.
    WARNING:       (This warning is harmless if no further warnings follow.)
    ERROR SAPKNA7010           DV2 A 0008 20090617083732 SAPAPUSER    JPURBA       dcecdv0                    
    ERROR SAPKNA7011           DV2 A 0008 20090617083732 SAPAPUSER    JPURBA       dcecdv0                    
    ERROR SAPKNA7012           DV2 A 0008 20090617083732 SAPAPUSER    JPURBA       dcecdv0                    
    ERROR SAPKNA7013           DV2 A 0008 20090617083732 SAPAPUSER    JPURBA       dcecdv0                    
    ERROR SAPKNA7014           DV2 A 0008 20090617083732 SAPAPUSER    JPURBA       dcecdv0                    
    ERROR SAPKNA7015           DV2 A 0008 20090617083732 SAPAPUSER    JPURBA       dcecdv0                    
    ERROR SAPKW70015           DV2 A 0008 20090617083732 SAPUSER      JPURBA       dcecdv0                    
    ERROR SAPKW70016           DV2 A 0008 20090617083732 SAPUSER      JPURBA       dcecdv0                    
    ERROR SAPKW70017           DV2 A 0008 20090617083732 SAPUSER      JPURBA       dcecdv0                    
    ERROR SAPKW70018           DV2 A 0008 20090617083732 SAPUSER      JPURBA       dcecdv0                    
    ERROR SAPKW70019           DV2 A 0008 20090617083732 SAPUSER      JPURBA       dcecdv0                    
    ERROR SAPKW70020           DV2 A 0008 20090617083732 SAPUSER      JPURBA       dcecdv0                    
    STOP  tp_getprots          DV2 J      20090617083739              JPURBA       dcecdv0                    
    STOP  DD ACTIVATION        DV2 A      20090617083739              JPURBA       dcecdv0 

  • Error while validating/activating views in SAP HANA

    Hi,
    I are getting below error while activating/activating view in HANA
    "exception 40109:nrepository/base/activation/activator.cpp:176nRepository: Encountered an internal error in the repository code, this is most likely a bug in the implementation;Activator failed to retrieve/lock NRIV entry for domain activation_idnexception 71000139:nptime/query/plan_executor/trex_wrapper/trex_wrapper_body/trex_update.cc:2123n[2458] current operation cancelled by request and transaction rolled backn "
    Please suggest why this error is coming & how can we rectify it.
    Regards
    Divyank Mehta

    Hi Krishna,
    I am getting  same error while activating the View.HANA Studio version is 85.
    Thanks

  • Error while Enabling Active Data Cache Clustering Services: error 1753

    I have installed the Oracle BAM with Enterprise link.All the installation was successful.But while Enabling Active Data Cache Clustering Services using the following command:
    cluster.exe restype "Oracle Business Activity Monitoring Active Data Cache" /create /dll:"C:\OracleBAM\ADCClusterResourceType.dll"
    i am getting the folllowing error:
    System error 1753 has occurred.
    There are no more endpoints available from the endpoint mapper.
    Although i stopped the Active Data Cache Service..?
    I am unable to resolve it
    Kindly help me out
    Ramesh Nambala

    Hi.
    I encountered the same problem. In my case, the reason was that I created a new user for BAM (to be provided when installing BAM) but ran the installation under another user account. It seems like these users must be the same to make it work.
    Greetings,
    cor

  • Error during ODS activation- request deletion

    Hello Gurus,
    We had a problem during ODS activation, could you please help?
    We are on BW 3.1
    Activation of an ODS failed with the message, "Fiscal year variant MC is not maintained for calendar year 2009u201D, u201CError getting SID for ODS object ZODS_O02u201D and u201CError when assigning SID: Action VAL_SID_CONVERT table 0FISCPER."
    The expected data for 2009 didn't arrive, so the activation step in the proces chain has failed.
    What I've done is, just deleted the request from the ODS.
    But while this job was running, there was a short dump, and the same job was shown as cancalled under SM37. Though the request was successfully deleted from the ODS, it is showing as cancelled in SM37.
    I've given below the log details of the job.
    Job started
    Step 001 started (program RSDELPART1, variant &0000000003334, user ID ABCD)
    Delete running: ODS object ZODS_O02, from 310,818 to 310,818
    Delete is scheduled; Selection conditions were substituted
    Request REQU_4AZBURUGR09EXTAS8A9IRZUI4 successfully deleted from ODS object ZODS_O02
    ABAP/4 processor: MESSAGE_TYPE_X
    Job cancelled.
    Could you please clarify the reason for the short dump and for the job getting cancelled?
    thanks in advance,
    Raj

    Hi,
    As an help i suggest you can first check the corresponding message for the "Message type X" in transaction se91.
    Follow the below procedure for the same :
    1.Execute ST22 > Double click on any entries
    2.Go to Source Code Extract
    3.Locate u201C>>>>u201D and you will see Message
    i.e Message X041 (XX) in this example.
    - XX is the message class
    - 041 is the message class no. in the example above.
    4.Now open SE91.Enter the details we found from Source
    Code extract in ST22.Click Display
    5.Find the corresponding message.
    May be the message could much more elaborate your problem so it could be handeled properly.
    Thax & Regards
    Vaibhave Sharma

  • BEX Reporting while ODS Activation

    Hi,
    I have an ODS with BEX reporting enabled. While doing ODS activation users are able to execute query on this ODS.  Which giving partial report as activation is going on (it is really misleading).  Is there any way to restrict users from accessing the ODS data while activation going on? Or set the reporting flag after completion of ODS activation (Currently reporting flag is getting set while activation going on)?
    We are in BW 3.5, Patch Level - 0012
    Thanks in advance
    Vinod

    Hi Vinod,
    Its better to make Bex Reporting flag enabled after ODS activation.
    If they are executing queries while activation of ODS is going on they were able to get data only from the requests which are loaded in ODS and r ready for reporting(activated requests).
    Regards,
    Rajkandula

Maybe you are looking for

  • Flash Builder 4.7 Unit Tests for Mobile Devices

    I am trying to setup a simple unit test using Flash Builder 4.7. I created a Test Suite and a Test Case class. Using the menu, I select Run > Run. I see options to select which Test Case / Methods I'd like to run. But the strange thing is, next I hav

  • Trying to upload video to you tube through Premiere Elements

    I'm trying to upload a video to YouTube through Premiere Elements.  The program asks for permission and I grant it but nothing else happens?  Help.

  • Creating form element from within a component

    Hi all, I am trying to create a form element within a component function which is then called from a .cfm page which has the cfform tags. I keep getting a context validation error for the form element tag. Here is some sample code: <cfcomponent name=

  • Finding changing data

    Hi, i wanna ask that how could i find the changing data, for example, in 1st november i have 1 table student that contain 5 rows ID NAME 1 student_one 3 student_three 6 student_six 7 student_seven 2 student_two next few days, i add some rows. and in

  • PR Account assingment category

    Dear All, Can i limit account assignment category selection for the purchasing document type while doing the PR? I am having a document type CAPITAL in PR, Where i want to limit account assignment category only project and asset for selection. Regard