Trouble with Call Tranformation id_indent

Hello Guru,
Can anyone tell me why I'm having trouble with this.
" Convert xstring back into XML
  CALL TRANSFORMATION id_indent
    SOURCE XML gd_xstring
    RESULT itab = <gt_itab>.
Exception : XSLT_BAD_SOURCE_CONTEXT
Regards,
Kais

Sorry buddy, I have been along way from home.
Can't remember how I solve it
Can you?
Probably, your string does contain some missleading characters.

Similar Messages

  • Trouble with calls/texts

    Earlier today my iPhone 4 stopped letting me make calls, receive calls, send or receive text messages.  What do I need to do?

        Hi maggiechester,
    Let's find out what's going on! When did the problem begin? Current zip code? Do you have Post-Pay or Pre-Paid service? Are you having trouble with standard messages or iMessage? I look forward to hearing from you soon.
    Thanks for your contribution to our community forums,
    AyaniB_VZW
    Follow us on Twitter  @VZWSupport

  • Have any of you had trouble with calls since updating to iOS 4.3.3?

    Hi there everyone,
    I recently updated my iPhone 4 (from ATT) to iOS 4.3.3 and suddenly I am having trouble making and receiving calls--I am not receiving a great majority of my calls and apparently it goes straight to voicemail. When I try to make a phone call, there is terrible reception and the call eventually drops --but the screen continues as if I am still talking to the person. I know it really isnt a problem with the network becuase a) I have full bars whereever I go, and b) Ive been using this phone for the past 9 months in the same area with no problem!!
    Are any of you having this problem, and if so what is your remedy (if you have found one). Should I just take it to the apple store and see what they have to say?
    Thanks!

    Did you get this resolved? I am having the same problem.

  • Trouble with calling a stored procedure with VARCHAR parameter from trigger

    Hi everybody,
    today I ran across a problem with stored procedures and triggers that try to call them. Background info: I want to log changes in certain tables to another table in a trigger, so I can replicate the changes to another (non-Oracle) database in an asynchronous way. As an example I have the first data table "bak_s3_berufliste" and the table to store the changes in is "bak_s3_change_request".
    DROP TABLE BAK_S3_BERUFLISTE;
    CREATE TABLE bak_s3_berufliste (
    id_bl NUMBER(27,0) NOT NULL,
    berufsbez VARCHAR2(255),
    CONSTRAINT PK_BAK_S3_BERUFLISTE PRIMARY KEY (id_bl) ENABLE);
    DROP TABLE bak_s3_change_request;
    CREATE TABLE bak_s3_change_request (
    ID_CR NUMBER(27,0) NOT NULL,
    TABELLE_NAME VARCHAR2(50) NOT NULL,
    TABELLE_ID_ALT NUMBER(27,0),
    TABELLE_ID_NEU NUMBER(27,0),
    CONSTRAINT PK_BAK_S3_CHANGE_REQUEST PRIMARY KEY (ID_CR) ENABLE);
    DROP SEQUENCE seq_bak_s3_change_request;
    CREATE SEQUENCE seq_bak_s3_change_request;
    For testing purposes I created the following stored procedure and trigger:
    CREATE OR REPLACE PROCEDURE schreibe_cr (t_id_alt IN NUMBER, t_id_neu IN NUMBER) IS
    BEGIN
    INSERT INTO bak_s3_change_request(ID_CR, TABELLE_NAME, TABELLE_ID_ALT, TABELLE_ID_NEU)
    VALUES (seq_bak_s3_change_request.NEXTVAL, t_name, t_id_alt, t_id_neu);
    END;
    CREATE OR REPLACE TRIGGER trg_bak_s3_berufliste
    BEFORE INSERT OR UPDATE OR DELETE ON bak_s3_berufliste
    FOR EACH ROW
    call schreibe_cr(:old.id_bl,:new.id_bl)
    *... and everything worked perfectly - except from the fact that I need to know which table had changed of course. So I added another parameter to the stored procedure:*
    CREATE OR REPLACE PROCEDURE schreibe_cr (t_name IN VARCHAR2, t_id_alt IN NUMBER, t_id_neu IN NUMBER) IS
    BEGIN
    INSERT INTO bak_s3_change_request(ID_CR, TABELLE_NAME, TABELLE_ID_ALT, TABELLE_ID_NEU)
    VALUES (seq_bak_s3_change_request.NEXTVAL, t_name, t_id_alt, t_id_neu);
    END;
    and tested it:
    CALL schreibe_cr('Test',1,2);
    *... successfully. So I also added the parameter to the trigger:*
    CREATE OR REPLACE TRIGGER trg_bak_s3_berufliste
    BEFORE INSERT OR UPDATE OR DELETE ON bak_s3_berufliste
    FOR EACH ROW
    call schreibe_cr('Tabellenname',1,2)
    and what i get is:
    Error starting at line 31 in command:
    CREATE OR REPLACE TRIGGER trg_bak_s3_berufliste
    BEFORE INSERT OR UPDATE OR DELETE ON bak_s3_berufliste
    FOR EACH ROW
    call schreibe_cr('Tabellenname',1,2)
    When I try to insert something into that table I get the following error:
    insert into bak_s3_berufliste (id_bl, berufsbez) values (seq_bak_s3_change_request.NEXTVAL, 'tueduelue');
    Error report:
    ORA-00911: Ungültiges Zeichen
    00911. 00000 - "invalid character"
    Cause: identifiers may not start with any ASCII character other than
    letters and numbers. $#_ are also allowed after the first
    character. Identifiers enclosed by doublequotes may contain
    any character other than a doublequote. Alternative quotes
    (q'#...#') cannot use spaces, tabs, or carriage returns as
    delimiters. For all other contexts, consult the SQL Language
    Reference Manual.
    Action:
    I tried everything that came to my mind, like using double-quotes (") instead of quotes (') in the trigger code or escaping the quotes (\'), but nothing worked. Can anybody help my and tell me what's wrong? After googling for hours I'm outta ideas :-(
    Any ideas appreciated!
    Thanks in advance,
    Jens

    Why?
    Are you looking for this?
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:01.61
    satyaki>
    satyaki>
    satyaki>create table aud_dup_emp
      2     as
      3       select empno, ename
      4       from dup_emp
      5       where 1=2;
    Table created.
    Elapsed: 00:00:01.86
    satyaki>
    satyaki>select * from dup_emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455         10
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       4450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       7000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455         10
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
    18 rows selected.
    Elapsed: 00:00:00.10
    satyaki>
    satyaki>
    satyaki>create or replace procedure ins_aud_dup(eno in number, enm in varchar2)
      2     is
      3     begin
      4       insert into aud_dup_emp(empno,ename) values(eno,enm);
      5     end;
      6  /
    Procedure created.
    Elapsed: 00:00:03.36
    satyaki>
    satyaki>
    satyaki>
    satyaki>ed
    Wrote file afiedt.buf
      1  create or replace trigger trg_aud_dup
      2  before insert on dup_emp
      3     for each row
      4     begin
      5       ins_aud_dup(:old.empno,:new.ename);
      6*    end;
    satyaki>/
    Trigger created.
    Elapsed: 00:00:01.47
    satyaki>
    satyaki>
    satyaki>select * from aud_dup_emp;
    no rows selected
    Elapsed: 00:00:00.10
    satyaki>
    satyaki>
    satyaki>insert into dup_emp(empno,ename,deptno) values(8855,'BILLY',40);
    1 row created.
    Elapsed: 00:00:00.19
    satyaki>
    satyaki>commit;
    Commit complete.
    Elapsed: 00:00:00.03
    satyaki>
    satyaki>
    satyaki>select * from dup_emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455         10
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       4450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       7000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455         10
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          8855 BILLY                                                                   40
    19 rows selected.
    Elapsed: 00:00:00.20
    satyaki>
    satyaki>select * from aud_dup_emp;
         EMPNO ENAME
               BILLY
    Elapsed: 00:00:00.09
    satyaki>Regards.
    Satyaki De.

  • Trouble with call status remains 'In Process'

    Why status remains ‘In Process’ ?
    What is TermCallFor event ?
    Any reason why DestUnallocated event trigger even though agents are available at desired extension.

    Hello, Nilesh!
    As I understand you are using an external agent to handle calls from the queue.Is that true?
    If so, check your settings in the SC as in the attached screenshot. Section external agent.
    Best regards,
    Dmitry

  • Trouble with call screen wallpaper

    Greetings,
    I just got an iPhone 5 and once I had sync'd the info from my old iPhone, I decided to change the wallpapers (both home and lock).  This seemed to go fine until I noticed that when I received a call from a contact without an assigned photo, the call screen shows my old wallpaper.  Is there a way to fix this?  Thanks.

    Reset all settings.
    Settings>General>Reset>Reset all settings

  • Trouble with RFC table input

    Greetings Experts,
    I'm having trouble with calling an RFC with table input.
    Here is my code so far:
      public void executeZps_Fm_War_Mat_Update_Input( )
        //@@begin executeZps_Fm_War_Mat_Update_Input()
              //$$begin Service Controller(344531631)
              IWDMessageManager manager = wdComponentAPI.getMessageManager();
              try {
                   int size =
                        wdContext
                             .nodeZps_Fm_War_Mat_Prefill_Input()
                             .nodeWarOut()
                             .nodeEx_Warout()
                             .size();
                   for (int i = 0; i < size; i++) {
                        IPublicWARComp.IEx_WaroutElement srcElement =
                             wdContext
                                  .nodeZps_Fm_War_Mat_Prefill_Input()
                                  .nodeWarOut()
                                  .nodeEx_Warout()
                                  .getEx_WaroutElementAt(i);
                        IPublicWARComp.IIm_WarmatinElement trgElement =
                             wdContext.createIm_WarmatinElement(
                                  new com.kaisa.mwci.models.updatezpsmur.Zps_War());
                        WDCopyService.copyCorresponding(srcElement, trgElement);
                        wdContext
                             .nodeZps_Fm_War_Mat_Update_Input()
                             .nodeIm_Warmatin()
                             .addElement(
                             trgElement);
                   wdContext
                        .currentZps_Fm_War_Mat_Update_InputElement()
                        .modelObject()
                        .execute();
                   wdContext.nodeOutWarMatIn().invalidate();
              } catch (WDDynamicRFCExecuteException e) {
                   manager.reportException(e.getMessage(), false);
              //$$end
        //@@end
    I can call the RFC, it actually returns a value, but not one that I expect. I think the table data is not being passed at all?
    Ideas will be greatly appreciated. Thanks!
    Cheers,
    Alfonso

    HI
          try for external debugging of you RFC , and whether you are able to pass you data to the RFC ,
           public void executeZps_Fm_War_Mat_Update_Input( )
        //@@begin executeZps_Fm_War_Mat_Update_Input()
              //$$begin Service Controller(344531631)
              IWDMessageManager manager = wdComponentAPI.getMessageManager();
              try {
                   int size =
                        wdContext
                             .nodeZps_Fm_War_Mat_Prefill_Input()
                             .nodeWarOut()
                             .nodeEx_Warout()
                             .size();
                   for (int i = 0; i < size; i++) {
                        IPublicWARComp.IEx_WaroutElement srcElement =
                             wdContext
                                  .nodeZps_Fm_War_Mat_Prefill_Input()
                                  .nodeWarOut()
                                  .nodeEx_Warout()
                                  .getEx_WaroutElementAt(i);
                        IPublicWARComp.IIm_WarmatinElement trgElement =
                             wdContext.createIm_WarmatinElement(
                                  new com.kaisa.mwci.models.updatezpsmur.Zps_War());
                                              // here instead of creating a element ,  there would be some Class
    created for IIm_Warmatin  , so you can create a instance for this class and set the 
    source data element to the target .
                   ZIIm_Warmatin   target = new IIm_WarmatinElement();
                      target.set(...);
                     wdcontext.nodeIIm_Warmatin.bind(target);
       try this .          or  you can set the source data to the element created for the target .
           hopefully should work
                   wdContext
                        .currentZps_Fm_War_Mat_Update_InputElement()
                        .modelObject()
                        .execute();
                   wdContext.nodeOutWarMatIn().invalidate();
              } catch (WDDynamicRFCExecuteException e) {
                   manager.reportException(e.getMessage(), false);
              //$$end
        //@@end

  • I'm having trouble with something that redirects Google search results when I use Firefox on my PC. It's called the 'going on earth' virus. Do you have a fix that could rectify the vulnerability in your software?

    I'm having trouble with a virus or something which affects Google search results when I use Firefox on my PC ...
    When I search a topic gives me pages of links as normal, but when I click on a link, the page is hijacked to a site called 'www.goingonearth.com' ...
    I've done a separate search and found that other users are affected, but there doesn't seem to be a clear-cut solution ... (Norton, McAfee and Kaspersky don't seem to be able to detect/fix it).
    I'd like to continue using the Firefox/Google combination (nb: the hijack virus also affects IE but not Safari) - do you have a patch/fix that could rectify the vulnerability in your software?
    thanks

    ''' "... vulnerability in your software?" ''' <br />
    And it affects IE, too? Ya probably picked up some malware and you blame it on Firefox.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • TS1646 I am having a lot of trouble with trying to use my debit card to purchase on itunes it always tells me that my card number is invalid. But i know it isn't because i just got the account the only thing i havent done yet is called my bank to see if i

    I am having a lot of trouble with trying to use my debit card on purchase of itune apps or music. Whenever i put my card information in it tells me that this card is invalid. But there is no way that my card is invalid because i just got it last week. So the only thing i haven't done yet is call my bank to check and see if all my bank statements match but if they do then have no idea what to do to get this to work with my computer, ipad mini, or ipod    HELP! PLEASE!

    I am having this same problem and I have even contacted my bank. The address they have is EXACTLY the way I am typing it.  It does match.  I do not understand.

  • Trouble with Skype. can't hear caller but I can see caller.

    Trouble with Skype.  Caller cannot hear me but I can hear caller.  Cannot hear voice on test call.  Can see caller.  MIcrophone is on  and volume turned up.

    Michele,
    I do not have Mavericks running on my older MacBook Pro. During the call, do you have the microphone icon on the Skype window enabled or disabled? Have done that before.
    My Skype preferences:
    Microphone: Built-in Microphone (Internal microphone)
        * Automatically adjust microphone settings is set
    Ringing and Speakers: Built-in Output (Internal Speakers)
    Camera: Built-in iSight.
    System Preferences > Sound
    Input tab: Internal Microphone
    Output tab: Internal Speakers

  • Is anyone else having trouble with Siri calling someone from your Contacts on the Iphone 5?

    Has anyone had trouble with Siri on the Iphone 5 in dealing with your Contacts.  She gives all of the correct information on scores for the NFL but not if I ask her to call somebody in my contacts. She has no trouble with which movies are playing tonight at my local theaters.
    If I ask her to call someone from my Contacts, she takes a very long time and then says something like this, "Uh oh, there's a problem. Can you try again?" or something of this nature.  Any help appreciated.  BTW I download my information from Itunes and also had to change my sim card in order for Verizon to keep my same telephone number.

    I have not had this problem. I am new to Siri (with an iPhone 5 upgrade from an i4) and Siri has made a number of calls from my contacts. She asks, which John Doe (if I have more than one), which number (if I have more than one) and off we go.
    Maybe, you have some setting wrong.

  • Trouble with popup not initialized until addPopUp is called

    I am having troubles with initialization.  I have a class given below.  I new() it at the start and use PopUpManager.addPopUp to display it.
    My problem is that the line query:QueryWIthOption id="filterComp" is a class with a lot of variables.  However, if I try to set any of them before I call addPopUp, it doesn't work because filterComp is null.
    I therefore either need to initialize filterComp earlier, store the data until AddToPopup is called, or change the way I am implementing this.  If I store the data in variables, I have to add a whole bunch either to the class below or to the calling class.
    Doing this once is managable, but I have other similar examples with a similar problem. This code was flex 3 before where filterComp was always initialized.
    Is there any good way to do this?  I guess I am interested in both the way to do this in a minimal way, and what is the best way to code to avoid this issue (if I am adding something new in the future).
    Jay
    QueryWithOptionWrapper class:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:mx="library://ns.adobe.com/flex/mx"
                    xmlns:query="com.niksun.dashboard.components.query.*">
        <fx:Script>
            <![CDATA[
                import com.niksun.common.managers.ResourceManager;           
            ]]>
        </fx:Script>
        <mx:VBox horizontalAlign="center" width="100%" height="100%" paddingTop="5">
            <query:QueryWithOption id="filterComp" showFilter="true"/>
            <mx:HBox width="100%" horizontalAlign="center" horizontalGap="10">
                <!-- enabled="{!ModelLocator.getInstance().progress}" -->
                <mx:Button id="update" label="{ResourceManager.getString('Update')}"
                           horizontalCenter="0"/>
                <mx:Button id="reset" label="{ResourceManager.getString('Reset')}"/>
                <mx:Button id="cancel" label="{ResourceManager.getString('Cancel')}"/>
            </mx:HBox>
        </mx:VBox>
    </mx:TitleWindow>

    I was thinking about what I would want and came up with the following suggested enhancement for Flex 4.
    Add a preinitialize="true/false" type flag for UI type Components that indicates whether to initialize everything like was done in Flex 3, or whether to hold off initialization until used like is currently done.  It would default to false.
    Is there a way I can ask for/suggest this enhancement for a later version of Flex 4? 
    This change would greatly reduce the time needed to convert from flex 3 to flex 4.

  • I having trouble with my i phone 4 ...when i make a call the other person cant hear me

    im having trouble with my i phone 4 ...when i make a call the other person can not hear me

    Kayla, check the grill that covers the microphone (bottom left next to charging port) and make certain there isn't any dirt, makeup, spilled soda clogging the grill causing it to fail. My sister had a similar issue with her earphone and while I was in the process of replacing it for the third time I decided to check the grill under a very bright light and it was totally clogged up causing her not to be able to hear her phone calls. Use a Q-Tip dipped in hot water and gently wipe the grill. Just barely moisten it, no need to go crazy with the water. Might as well clean the earphone and speaker on the bottom right too. Anyhow, that could be what your issue is and if so it's a really simple fix. If that doesn't help just replace the microphone. It'd cost maybe $5 and ten minutes of your time to do. Good luck, John

  • Has anyone had trouble with the LG 3 Cosmos when a call comes in; I am not able to hear from the caller, but, they can hear me?  The volumn is turned up but I can't seem to resolve the issue?  Thanks

    Has anyone had trouble with the LG 3 Cosmos when a call comes in; I am not able to hear from the caller, but, they can hear me?  The volumn is turned up but I can't seem to resolve the issue?  Thanks

    Oh no, Robinbird18! This is not what we like to hear about your cell phone. It makes it pretty hard to have a conversation with someone when you can't hear them. If you make a phone call out are you able to have a conversation with someone without any issues? How long has this been going on? Have you tried to use the phone on speaker phone to see if that works at all? Please keep us posted.   KevinR_VZW Follow us on Twitter @VZWSupport If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Has anyone had trouble with dropped calls after downloading the IOS 7

    has anyone had trouble with dropped calls after downloading the IOS 7

    I downloaded mountain lion and then iPhoto '11 in order to tap into iCloud capabilities with all of my devices. (My Mac was outdated in regards to operating platform to do this). After installing iPhoto 11, I had to repair and rebuild my library of photos.  However, after doing this, all of my albums were jumbled and, while I can see the image thumbnail, when I click on the thumbnail, and error that looks like a black triangle and gray exclamation pops up as opposed to the larger hi def image I want to view.

Maybe you are looking for