I need an urgent help to set manually the context value of es ProxyService.

I have a proxyservice that has this context structucture:
xmlns:ns20="http://skat.dk/etil/2011/02/11/">
<ns:Kontekst>
<!--You may enter ANY elements at this point-->
<AnyElement/>
</ns:Kontekst>
waht have to do is that when the proxyservice that has this context is called I want to create the following
xmlns:ns20="http://skat.dk/etil/2011/02/11/">
<ns:Kontekst>
<TransaktionsID>2008-00-00_00000000</TransaktionsID>
<TransaktionsTid>2008-01-01T00:00:00.000+00:00</TransaktionsTid>
</ns:Kontekst>
where the date and transaction id is randomly generated on the esb.
is there a way to do this for example xquery if so an example will be very welcomed.
or if in java way example will be welcomed

This one does not have any validation error, but I don't get any data in my response
<ns:Kontekst xmlns:ns20="http://skat.dk/etil/2011/02/11/">
<TransaktionsID>fn-bea: uuid()</TransaktionsID>
<TransaktionsTid>fn:current-dateTime()</TransaktionsTid>
</ns:Kontekst>
The response from proxyservice call.
Message Context Changes
added $resp
     <ns:Kontekst      xmlns:ns20="http://skat.dk/etil/2011/02/11/" xmlns:ns="http://rep.oio.dk/cpr.dk/xml/schemas/core/2005/03/18/">
     <TransaktionsID>fn-bea: uuid()</TransaktionsID>
     <TransaktionsTid>fn:current-dateTime()</TransaktionsTid>
     </ns:Kontekst>

Similar Messages

  • Kindly advice me, I have iphone 5s and I forgot the log-in password (passcode), I tried to open it but my phone give 60 min. to let me try after I fail for first one. I dont sync. with icloud or itunes. Please I NEED YOUR URGENT HELP!!

    Kindly advice me, I have iphone 5s and I forgot the log-in password (passcode), I tried to open it but my phone give 60 min. to let me try after I fail for the first one. I dont sync. with icloud or itunes. Please I NEED YOUR URGENT HELP!! MY IPHONE IS STILL STUCK.

    I can't, look at this image

  • How to convert PO sapscript layout to pdf - need VERY URGENT Help

    Dear All,
    Requirement: PO sapscript layout after some modifications (say, ZMEDRUCK) has to be converted to pdf. Through me9f user will be able to give ranges of PO numbers and can view the print preview for the po. After that on clicking the print button we get the printout of the pos one after another based on the user input of PO numbers.
    Our requirement is that when the user will click on the "Print Preview" of po (rather than pressing the print button) it i.e. PO sapscript layout has to get converted to pdf.
    If you have already encountered this scenario, could you please send me the source code regarding this at the earliest. If you want to email it to my personal id, please let me know so that I can give it to you. Thank you.
    It will be very beneficial for mine if you can send me some source code in this regard. (FYI. We want only “Print output” of PO sapscript. So, Print Program /SMB40/FM06P [after copying it to our ZSMB40/FM06P program] need to be modified for downloading the PO into PDF where there is no FMs like OPEN_FORM, WRITE_FORM, CLOSE_FORM. So already available source code in SAP forums can not help me.)). Kindly help me at the earliest. It’s VERY URGENT…
    Thank you.
    Thanks & Regards
    Sudipta

    Hi Chaith,
    Could you please provide me the source code regarding this at the earliest.
    We want only “Print output” of PO sapscript. So we need to modify only the Print Program SAPFM06P after copying it to ZSAPFM06P for downloading of modified PO (ZMEDRUCK) sapscript layout into PDF.
    I am already having some source code from sdn portral. I am attaching it herewith. But it's not working as some constants and variable values need to be given. We want to take download of PO into PDF from ME9F transaction itself.
    Could you please provide necessary values in the missing constants and variables and kindly resend the corrected modified Source code to me so that I can run the same code to  download the modified PO ZMEDRUCK into PDF . Need YOUR URGENT HELP...
    DATA: l_druvo LIKE t166k-druvo,
            l_nast  LIKE nast,
            aux_nast LIKE nast,
            l_from_memory,
            l_doc   TYPE meein_purchase_doc_print,
            ent_screen TYPE c,
            ent_retco TYPE i,
            toa_dara TYPE toa_dara,
            arc_params LIKE arc_params,
            aux_form LIKE tnapr-fonam.
      DATA: otf LIKE itcoo OCCURS 0 WITH HEADER LINE,
            lt_docs      TYPE TABLE OF docs,
            pdf_bytecount TYPE i,
            nom_archivo TYPE string.
      aux_form = 'ZMEDRUCK'.
      l_from_memory = c_true.
      SELECT *
        FROM nast
        INTO aux_nast
        UP TO 1 ROWS
        WHERE kappl = c_po     " Purchase Order
        AND   objky = t_datos-ebeln
        AND   aktiv = space
        ORDER BY erdat DESCENDING eruhr DESCENDING.
      ENDSELECT.
      aux_nast-sort1 = c_swp.
      CLEAR ent_screen.
      CLEAR ent_retco.
      IF aux_nast-aende EQ space.
        l_druvo = c_1.
      ELSE.
        l_druvo = c_2.
      ENDIF.
    l_druvo = '2'.
      CALL FUNCTION 'ME_READ_PO_FOR_PRINTING'
        EXPORTING
          ix_nast        = aux_nast
          ix_screen      = ent_screen
        IMPORTING
          ex_retco       = ent_retco
          ex_nast        = l_nast
          doc            = l_doc
        CHANGING
          cx_druvo       = l_druvo
          cx_from_memory = l_from_memory.
      CHECK ent_retco EQ 0.
      CALL FUNCTION 'ECP_PRINT_PO'
        EXPORTING
          ix_nast        = l_nast
          ix_druvo       = l_druvo
          doc            = l_doc
          ix_screen      = ent_screen
          ix_from_memory = l_from_memory
          ix_toa_dara    = toa_dara
          ix_arc_params  = arc_params
          ix_fonam       = aux_form                            
        IMPORTING
          ex_retco       = ent_retco.
      CLEAR otf.
      CALL FUNCTION 'READ_OTF_FROM_MEMORY'
        EXPORTING
          memory_key   = l_nast-objky  " PO Number
        TABLES
          otf          = otf
        EXCEPTIONS
          memory_empty = 1
          OTHERS       = 2.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
        IMPORTING
          bin_filesize           = pdf_bytecount
        TABLES
          otf                    = otf
          doctab_archive         = lt_docs
          lines                  = pdfout
        EXCEPTIONS
          err_conv_not_possible  = 1
          err_otf_mc_noendmarker = 2
          OTHERS                 = 3.
      CONCATENATE c_dest t_datos-ebeln c_ext INTO nom_archivo.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize = pdf_bytecount
          filename     = nom_archivo
          filetype     = c_bin
        IMPORTING
          filelength   = pdf_bytecount
        TABLES
          data_tab     = pdfout.

  • Activating an iPad and getting a message that the iPad is currently linked to another apple id, need to sign in to set up the iPad.  I have done a restore following the Ht1808, and tried to do a DFU mode restore but still get the activation message

    Activating an iPad and getting a message that the iPad is currently linked to another apple id, need to sign in to set up the iPad.  I have put the Ipad into recovery mode and done a restore following the Ht1808 support instructions and tried to do a DFU mode restore but still get the activation message after the restore. 

    Activation Lock
    http://support.apple.com/kb/PH13695

  • [svn:fx-trunk] 8732: Do not need to invalidateDisplay list when setting either the horizontalScrollPosition or verticalScrollPostion since the

    Revision: 8732
    Author:   [email protected]
    Date:     2009-07-22 08:00:53 -0700 (Wed, 22 Jul 2009)
    Log Message:
    Do not need to invalidateDisplay list when setting either the horizontalScrollPosition or verticalScrollPostion since the
    ContainerController's setters call updateForScroll(), if scrolling needs to happen, which updates the container.
    Also do not need to invalidate the display list when the scroller calls clipAndEnableScrolling install or uninstall the RET as a viewport.  The scroller should do it if necessary.
    QE notes:
    Doc notes:
    Bugs: SDK-22293
    Reviewer: will be Gordon and Corey
    Tests run: performance tests mentioned in the bug
    Is noteworthy for integration:
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22293
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/RichEditableText.as

    The same id shows at the top of the Settings > iCloud screen on both your iPad and iPhone - if they are different then they are not being synced. And for contacts and calendars you need Settings > iCloud > Contacts and Settings > iCloud > Calendars 'on' on both devices

  • Dynamic setting of the dimension values.

    Summary:
    How can I programmatically control the dimension values displayed in ‘Selected’ window of ‘Edit worksheet’ wizard. of Oracle BI Discoverer plus for OLAP 10.12.48
    My objective is to dynamically set the dimension values for a particular dimension based on some criteria.
    Requirement:
    1.The user should be able to select one of the pre-defined options.
    2.Based on the option selected by the user, the necessary business logics need to be applied and then resets the dimension values. The ‘Selected’ window of ‘Edit Worksheet’ should be refreshed.
    3.Based on the option the short description & long description should be changed
    Existing Application Implementation:
    We already implemented this logic in oracle express 6.3.4 as follows.
    1.Radio buttons are provided to select the display option
    2.Whenever the option is changed, a program is executed in the Express objects. This program evaluates the option, applies the necessary business logics and displays the dimension values based on the option chosen. View is then refreshed to reflect the new dimension values. Note that this process does not affect the total “available dimension” values. The total number of “available dimension” values remains the same. It just manipulates the values in the ‘Selection’ object.
    3.The formula of the short description and long description is modified. This formula checks the option and based on it changes the description
    Issues I faced to Implement this logic in Oracle BI Discoverer plus for OLAP 10.1.2.48
    1. No provision to add radio buttons, hence were trying to implement the functionality with a dimension.
    2. No options available for applying business rule and setting the desired dimension values.
    3. No ‘event’ available to refresh the views
    How can I achieve this in Oracle 10g discoverer plus for olap 10.1.2.48
    Thanks,
    Natarajan

    I think this is not possible.
    When you give this settings while creating the SMARTForm, SMARTForm will generate a FM based on that settings. And it is not possible to change those settings at runtime.
    We have some constriants like this for dynamic paradigm in SMARTForm. Like, we can provide shading or Box color for the cell.
    Regards,
    Naimesh Patel

  • Setting up Flexfield Context Value programmatically in Custom.pll

    I need to default the context value of my DFF based on user profile/responsibility, How do I assign a value to context value field in custom.pll?
    Thanks,
    AJ

    Hi John,
    I got the same issue. Is yours being resolve yet?
    Can you share the solution.
    Thanks.

  • How to make the LV front panel controls the current value through the program is set as the default value when the next time you open?

    How to make the LV front panel controls the current value through the programis set as the default value when the next time you open?
    1110340051 

    Try this: Re: How to make a VI remember the latest control value?
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • I need in Formula Node to assign to the variable value 4000000000!!! What kind of variable it should be???

    i've just tryed to write unsigned in32, but it does not understand 'unsogned'... But i need variable to be unsigned, because the max value = 4000000000... So, how can i solve this probleme???

    Hi,
    I don't see exactly what you're trying to do here.
    Where do you want to assign the variable 4000000000 to? If you want it as an
    input, just use a dbl, with only zeros behind the coma.
    Note that an integer is a number without any decimals. An integer in LabVIEW
    is this, but with an extra limitation that it can only be 32 bits... So a
    dbl can be an integer.
    If the input dbl is not an integer, use round, round to -inf or round to
    +inf to make it one. This can also be done if the output needs to be an
    integer.Inside the formula node floor(x), int(x), intrz(x) or ceil(x) can be
    used to make integers.
    I hope this is what you mean... I can't see any problems doing this.
    Regards,
    Wiebe.
    "DrON" wrote in message
    news:506500000008000000E
    [email protected]..
    > I need in Formula Node to assign to the variable value 4000000000!!!
    > What kind of variable it should be???
    >
    > i've just tryed to write unsigned in32, but it does not understand
    > 'unsogned'... But i need variable to be unsigned, because the max
    > value = 4000000000... So, how can i solve this probleme???

  • How to set up VPN using MAC OSX 10.4.11, Please help I need someone to help me set up VPN using regular DSL connection on my home so someone can help me troubleshoot my XSAN system remotely. THANKS

    Hello,
    I'm having trouble setting up a VPN using MAC OSX 10.4.11 Server. I have and XSAN system and one of my volumes has been down for quite a while now. There is a very kind MAC IT professional that is willing to help be troubleshoot my system but he needs to be able to access my system remotely. I am able to connect the MDC to DSL but I haven't been able to set up the VPN. Please help, this is an emergency. Thanks!
    Marco

    have you forwared the ports on your router? Why not let him in via teamviewer? its free and mac compatable

  • Urgent Help Please - Setting up Flex 14

    Hi,
    I am looking for some urgent help. I bought a friend a new Lenovo Flex 14d but having issues straightaway. Turned it on, got to a screen asking for name of pc, then to a page about wlan connection. He does not have a wlan connection but cannot move on from this screen. What can we do to get the pc set up?
    Thanks !

    Colette,
    This sounds like you are going through the standard Windows setup for a new system.
    Does your friend have any internet connection at all?  Ethernet perhaps?  
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Hi I need one urgent help from anyone

    Hi,
    I am looking some SAP HR ABAP objects its very urgent i need to give resume to one of the employer. The object may some what related to this requirement .Or send any HR ABAP Object its very urgent guys.....
    Rewards will sure..........
    (automate an interface between one of client’s telecommunications providers and R/3, parsing incoming data in a UNIX format to create FI/CO postings and reports out of R/3.)
    Thanks and Regards
    Ramesh

    Hi Rohit,
    CUCM releasing the call because it's unable to find the called number received i.e. called number does not exist in dial-plan.
    Check below points:-
    1). Check the CSS on the SIP trunk in CUCM (may be called number is not accessible due to incorrect CSS).
    2). Check the translation pattern and it's CSS.
    3). If you are not using translation pattern then check for the translation profile in router config. In this case you can check and share your running-config and debug voice dial-peer or debug voice ccapi inout.
    Regards,
    Nishant Savalia

  • Need Some Urgent Help.

    Hi All,
    ASO Cube is being built in ESSBASE STUDIO. I have got 7 tables and 6 dimensions to be built. I have chosen to built outline in the first place. It is taking a lot of time (more than 8 to 9 hours) and I am not sure what it is doing ?
    I can see the records being processed with the message deploying cube. Now why is it taking so much time. The mini schema is properly linked and built.
    Below is the log file
    Also can anyone give me all the required settings (config files etc) for ESSBASE STUDIO to work fine.
    Can anyone help me here ?
    Thanks in advance
    BK>
    =============================================
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Info(1070013)
    Index cache size ==> [1048576] bytes, [128] index pages.
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Info(1070014)
    Index page size ==> [8192] bytes.
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Info(1070081)
    Using buffered I/O for the index and data files.
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Info(1070083)
    Using waited I/O for the index and data files.
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Info(1024033)
    Missing Database Config File [E:\Oracle\Middleware\user_projects\epmsystem1\EssbaseServer\essbaseserver1\APP\PRAXPOC\PRAXPOC\PRAXPOC.cfg], Query logging disabled
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Info(1203135)
    Starting the Data Mining Framework
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Warning(1203134)
    Data Mining Framework failed to initialize with status [-1203109]. Data Mining functionality disabled.
    [Fri Jul 13 05:44:34 2012]Local/PRAXPOC///Info(1200551)
    Allocated TRIGMAXMEMSIZE: [4096] Bytes.
    [Fri Jul 13 05:44:37 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090047)
    Building Dimensions, Available Memory: 30208448 Kilobytes
    [Fri Jul 13 05:44:47 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Warning(1090061)
    DIMBUILDERRORLIMIT reached [20000]. Rejected records will no longer be logged
    [Fri Jul 13 05:44:47 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    20000 Records Processed
    [Fri Jul 13 05:44:56 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    40000 Records Processed
    [Fri Jul 13 05:45:06 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    60000 Records Processed
    [Fri Jul 13 05:45:16 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    80000 Records Processed
    [Fri Jul 13 05:45:26 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    100000 Records Processed
    [Fri Jul 13 05:45:37 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    120000 Records Processed
    [Fri Jul 13 05:45:47 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    140000 Records Processed
    [Fri Jul 13 05:45:58 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    160000 Records Processed
    [Fri Jul 13 05:46:09 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    180000 Records Processed
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090048)
    Building Dimensions Finished, Available Memory: 30040912 Kilobytes
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1007132)
    Building Dimensions Elapsed Time : [100.669] seconds
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1019018)
    Writing Parameters For Database [PRAXPOC]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [FindMemberEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberInfoEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberUniqueNameEdit ] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberAliasEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetUserAttributesEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberFormulaEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberLastFormulaEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetNonUniqueFlag] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberAliasEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetOriginalMemberEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [Get Aggregate Level Usage ] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [SetMemberCommentExEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [BuildDimension] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090047)
    Building Dimensions, Available Memory: 30040972 Kilobytes
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090048)
    Building Dimensions Finished, Available Memory: 30040932 Kilobytes
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1007132)
    Building Dimensions Elapsed Time : [0.031] seconds
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1019018)
    Writing Parameters For Database [PRAXPOC]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [FindMemberEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberInfoEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberUniqueNameEdit ] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberAliasEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetUserAttributesEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberFormulaEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberLastFormulaEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetNonUniqueFlag] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberAliasEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetOriginalMemberEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [Get Aggregate Level Usage ] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [SetMemberCommentExEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [BuildDimension] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090047)
    Building Dimensions, Available Memory: 30040764 Kilobytes
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090048)
    Building Dimensions Finished, Available Memory: 30040732 Kilobytes
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1007132)
    Building Dimensions Elapsed Time : [0.25] seconds
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1019018)
    Writing Parameters For Database [PRAXPOC]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [FindMemberEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberInfoEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberUniqueNameEdit ] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberAliasEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetUserAttributesEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberFormulaEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberLastFormulaEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetNonUniqueFlag] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetMemberAliasEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [GetOriginalMemberEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [Get Aggregate Level Usage ] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [SetMemberCommentExEdit] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:19 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1013091)
    Received Command [BuildDimension] from user [USABKL2@NA Praxair]
    [Fri Jul 13 05:46:19 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090047)
    Building Dimensions, Available Memory: 30040704 Kilobytes
    [Fri Jul 13 05:46:24 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Warning(1090061)
    DIMBUILDERRORLIMIT reached [20000]. Rejected records will no longer be logged
    [Fri Jul 13 05:46:24 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    20000 Records Processed
    [Fri Jul 13 05:46:29 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    40000 Records Processed
    [Fri Jul 13 05:46:34 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    60000 Records Processed
    [Fri Jul 13 05:46:39 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    80000 Records Processed
    [Fri Jul 13 05:46:44 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    100000 Records Processed
    [Fri Jul 13 05:46:48 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    120000 Records Processed
    [Fri Jul 13 05:46:53 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    140000 Records Processed
    [Fri Jul 13 05:46:58 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    160000 Records Processed
    [Fri Jul 13 05:47:03 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    180000 Records Processed
    [Fri Jul 13 05:47:08 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    200000 Records Processed
    [Fri Jul 13 05:47:12 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    220000 Records Processed
    [Fri Jul 13 05:47:18 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    240000 Records Processed
    [Fri Jul 13 05:47:23 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    260000 Records Processed
    [Fri Jul 13 05:47:28 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    280000 Records Processed
    [Fri Jul 13 05:47:33 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    300000 Records Processed
    [Fri Jul 13 05:47:38 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    320000 Records Processed
    [Fri Jul 13 05:47:43 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    340000 Records Processed
    [Fri Jul 13 05:47:48 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    360000 Records Processed
    [Fri Jul 13 05:47:53 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    380000 Records Processed
    [Fri Jul 13 05:47:58 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    400000 Records Processed
    [Fri Jul 13 05:48:03 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    420000 Records Processed
    [Fri Jul 13 05:49:21 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    440000 Records Processed
    [Fri Jul 13 05:52:14 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    460000 Records Processed
    [Fri Jul 13 05:55:38 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    480000 Records Processed
    [Fri Jul 13 05:58:52 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    500000 Records Processed
    [Fri Jul 13 06:02:50 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    520000 Records Processed
    [Fri Jul 13 06:08:05 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    540000 Records Processed
    [Fri Jul 13 06:11:13 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    560000 Records Processed
    [Fri Jul 13 06:14:51 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    580000 Records Processed
    [Fri Jul 13 06:18:45 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    600000 Records Processed
    [Fri Jul 13 06:23:03 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    620000 Records Processed
    [Fri Jul 13 06:26:50 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    640000 Records Processed
    [Fri Jul 13 06:30:49 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    660000 Records Processed
    [Fri Jul 13 06:33:24 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    680000 Records Processed
    [Fri Jul 13 06:36:53 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    700000 Records Processed
    [Fri Jul 13 06:40:49 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    720000 Records Processed
    [Fri Jul 13 06:43:24 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    740000 Records Processed
    [Fri Jul 13 06:48:11 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    760000 Records Processed
    [Fri Jul 13 06:50:28 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    780000 Records Processed
    [Fri Jul 13 06:52:19 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    800000 Records Processed
    [Fri Jul 13 06:55:39 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    820000 Records Processed
    [Fri Jul 13 06:58:25 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    840000 Records Processed
    [Fri Jul 13 07:00:21 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    860000 Records Processed
    [Fri Jul 13 07:06:20 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    880000 Records Processed
    [Fri Jul 13 07:10:12 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    900000 Records Processed
    [Fri Jul 13 07:15:02 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    920000 Records Processed
    [Fri Jul 13 07:22:05 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    940000 Records Processed
    [Fri Jul 13 07:29:16 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    960000 Records Processed
    [Fri Jul 13 07:36:45 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    980000 Records Processed
    [Fri Jul 13 07:41:58 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1000000 Records Processed
    [Fri Jul 13 07:48:00 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1020000 Records Processed
    [Fri Jul 13 07:51:57 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1040000 Records Processed
    [Fri Jul 13 07:57:53 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1060000 Records Processed
    [Fri Jul 13 08:01:37 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1080000 Records Processed
    [Fri Jul 13 08:09:26 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1100000 Records Processed
    [Fri Jul 13 08:13:26 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1120000 Records Processed
    [Fri Jul 13 08:20:00 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1140000 Records Processed
    [Fri Jul 13 08:31:27 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1160000 Records Processed
    [Fri Jul 13 08:41:36 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1180000 Records Processed
    [Fri Jul 13 08:52:15 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1200000 Records Processed
    [Fri Jul 13 09:02:15 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1220000 Records Processed
    [Fri Jul 13 09:10:17 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1240000 Records Processed
    [Fri Jul 13 09:18:49 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1260000 Records Processed
    [Fri Jul 13 09:27:42 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1280000 Records Processed
    [Fri Jul 13 09:34:32 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1300000 Records Processed
    [Fri Jul 13 09:41:49 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1320000 Records Processed
    [Fri Jul 13 09:51:03 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1340000 Records Processed
    [Fri Jul 13 10:00:15 2012]Local/PRAXPOC/PRAXPOC/USABKL2@NA Praxair/Info(1090051)
    1360000 Records Processed
    Edited by: user11091956 on Jul 13, 2012 7:38 AM

    Thise two are Essbase warnings.
    the first one is more information than anything else. By default Query logging is not turned on. It is just letting you know so. Query logging is used in BSO cubes to let an Admin know what intersections of the cube users are hitting. I really never turn it on.
    The second one is a setting in the essbase.cfg file that defines how many error records are logged before stopping the logging. Defailt is 1000 so someone has increased it on your system. As a note for your load problem it takes longer to build if there are a lot of erros are the writing of the errors to disk is slow. If you have 20000 errors from a dimension build, you have a major problem with your build logic

  • Urgent HELP required on forming the Matrix of data using PL/SQL

    Hi All,
    I'm new to this thread and require your urgent help in this regard.
    I've got a requirement for building a 5000 X 5000 matrix using PL/SQL. My original data tables have 5000 rows each and I need to do a correlation analysis using this data and need to store in a physical table and not in-memory. Is this feat achievable using mere PL/SQL? I understand that Oracle DB has a limitation of 1000 columns(but not sure) and hence I'd like to know whether there is any work-around for such scenarios. If not, what are the other alternative method(s) to achieve this feat? Do I need to use any 3rd party tools to get this done? An early reply from the experts is highly appreciated.
    Thanking you all Gurus in advance.
    Rgds
    Sai

    Welcome to OTN!
    I'll get to your quesiton in a moment, but first some welcome information. Many OTN posters consider it impolite to mark threads as "urgent". We are volunteers and have jobs of our own to do without people we don't know making demands. You are brand new and deserve some patience but please understand this. It is very likely before I finish this post someone will complain about the word "urgent" in your subject.
    On to more interesting things :)
    You can do the matrix, but are out of luck with a 5000 x 5000 table because Oracle only allows 1000 columns per table. There are ways to work around this.
    How do do the matrix depends on what you want to do. You can do this different ways. You can create a table beforehand and use PL/SQL or simple SQL to populate it, or use the CREATE TABLE AS syntax to create and populate it in one step if you can get the underlying SQL to work the way you want, something like
    create table my_table as
      select a.*, b.*
        from table1 a, table2 bcan populate a matrix from 2 tables with an intentional cartesian join (the WHERE clause was left out intentionally, provided your data is already in the data base.
    If not you can use a PL/SQL routine to populate the data.
    There are a couple of ways to solve the 1000 column limit. The easiest way might be to have 5 collections of 1000 columns each. A more complicated but more elegant soltion would be to have nested collections, allowing 2 colliections that you can loop through - a collection of collections. Nested collections can be hard to work with. A third way would be to use nested tables in the database but I personally do not like them and the insert, update, and delete statements for nested tables are hard to use.
    I'm not going to give a code example because I am not sure which solution is best for you. If you have further questions post them.

  • Urgent Help required! - Storing the XML as String instead as a file

    Hi,
    I need urgent help on this.
    I have an XML file. I have used org.w3c.dom to build dom and manipulate the XML file.
    I have updated the values for some of the nodes and I have deleted some of the unwanted nodes.
    I am able to save the output of the DOM as another XML file using
    either transform class or XMLSerializer with OutputFormatter class.
    But my requirement is to save the output of the DOM into a String instead of a file.
    When I save it in String, I need to have the following XML decalration and DOCTYPE declration also with it.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE Test SYSTEM "Test.dtd">
    Can anyone pls help me in this??
    Thanks in Advance. Expecting some inpputs pls....!
    Regards,
    Gayathri.

    hi,
    i think this is what u want
        public static String getXmlString(Document d) {
          StringWriter strResponse = null;
          try {
             OutputFormat format  = new OutputFormat(d);
             strResponse = new StringWriter();
             XMLSerializer serial = new XMLSerializer( strResponse, format );
             serial.asDOMSerializer();
             serial.serialize(d.getDocumentElement());
          catch (Exception e) {
            System.out.println(e.toString());
          return strResponse.toString();
    }HTH
    vasanth-ct

Maybe you are looking for

  • Acrobat 9 Pro Extended or Acrobat 3D?

    I have CATIA  v5 r19 and NX 7.0 3d models and I want to put them into Adobe so they can be shared by other downstream users for viewing, however my issue is that I am not sure what software to do this with? I have 9 Pro Extended which does not suppor

  • Unable to create server cursor

    Hello all I have a cube with 5 dimensions. One dimension have about 12000 values and 2 levels. Top level include all dimension values. I open query builder in crosstab, select top level of this dimension. When i try open all values in "Selected:" win

  • Express card, Datacard 3G HSDPA

    Hi I just got my Macbook pro and I'm a bit dissapointed. I wanted to fit a 3 G data card and I cannot find a way to do it. Can anybody please advise what I shoudl do now? Regards Mike

  • Amaya 8.3-1 won't start, still. :)

    I already posted this to the bug reports, but wanted to bring it up here to see if there was anyone else experiencing this problem, or if anyone had a fix: http://bugs.archlinux.org/index.php?do=details&id=680 On trying to run amaya from xfce termina

  • Problem in page break of smart forms

    Hi Gurus, I am using smart forms for printing on cheque.  What is the problem i am facing is i have three entries in my internal table which i am passing to the smart forms from my driver program. But In the output i am getting four print outs last o