Certification Dates For WebDynpro

Hi All ,
Where & when i can take certification on Webdynpro this Year 2007  (Conducted By SAP ) ?  Where can i find the releated information with Certification ..
Please Provide the Links
Thanks in Advance

Hi,
have a look at:
https://websmp108.sap-ag.de/~sapidp/011000358700002412512003
https://websmp108.sap-ag.de/~sapidp/011000358700002412512003#devc
For WD4J you have:
SAP NetWeaver´04 - Web Application Development Focus Java
For WD4A you have: SAP NetWeaver´04 - Application Development Focus ABAP
https://websmp108.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000163332&
Reward points for helpful answers.
Best regards,
Gianluca Barile

Similar Messages

  • Personalization data for WebDynpro ABAP application ?

    Dear Experts,
    We can personalize WebDYnpro ABAP application via right click , show hide buttons , columns etc.
    Where is this personalization data stored or how can it be retrieved assuming my application is executing outside the  portal ?
    Greetings
    Prashant

    Hi Prashant,
    it is stored in the ABAP system - not the portal, so no issues about running outside the portal.
    This is different to WDJ pagebuilder configuration/personalisation - which is stored in the portal!
    you can see some of the personalisation framework that is used for things like storing POWL user preferences etc in the backend via the IMG path
    Cross-Application Components --> General Application Functions --> Generic SAP Business Suite Functions --> Personalization (sic) .
    Hope this helps you,
    Chris

  • How to access(connect) BI Data in webdynpro for java applications

    Hi ,
    is there any way to access and display the BI data in portal using webdynpro for java applications like we did in Visual composer.
    if not how to integrate the BI data in webdynpro applications ?
    Regards,
    Govindu

    Hi,
    Yes there are ways to do it. But may your scenario and the scenario for which I have done may differ.
    You can use openhub to get the data in a flat file and then read it into weddynpro through a java service OR
    You can use DBlink(which i have done).
    Please refer the link below:
    [Link|Data from BW to Oracle.;
    This I have done in NW04s. Not sure whether a better solution is available in the newer release.
    Hope it helps.
    Regards,
    Manoj

  • Is there a retirement date for the CS6 certification exams?

    Is there a retirement date for the Adobe Photoshop CS6, Indesign CS6 & Illustrator CS6 exams? If so, when will Adobe retire these exams?(Not the recertification exams. I don't have any previous certification with Adobe.)

    Looking to write the exam sometime during the next two years. Yes, I know the subjects are about a month long but will be working and can't study everyday. Most likely will only do two to three chapters a month.(my work is that hectic).
    Hope they won't retire it any time soon! I know updates comes out every year. just have to take my chances.
    If anybody else knows of anything please rely.

  • How to get the complete data from Webdynpro using a RFC

    hi guys,
    A form is created in the webdynpro, when that pdf form is called the user have to provide the key field ie the employee number in the form and then when he press the 'go' button a rfc is called and it gives all the details of the employee in the form. Then the user have to input some fields in the form and he have press the submit button. My problem is here, when the user is going to press the submit button that form will be converted to a stream (binary) of data and it is sent to one of the import parameter used in the RFC.
    I have created a RFC and created a import parameter of data type XSTRING, since i want to see what exactly R3 is receiving from web dynpro i am writing this contant in the sever as a text file. When i saw that text file i cant see the complete data.
    And when i searched in R3 the capacity of xstring is 1024 CHAR, so i dont know how to capture the entire data from webdynpro into my R3.
    I give the code what i worte please tell me am i missing anything in my code, or is there any data type which can hold more than 500kb of data which is coming from webdynpro.
    FUNCTION ZSEND_MAIL_ATTACHMENT.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(OUT_PLACE_LEVEL) TYPE  XSTRING OPTIONAL
    *"     VALUE(BIN_DATA) TYPE  INDX_CLUST OPTIONAL
    *"  TABLES
    *"      IT_MESSAGE STRUCTURE  SOLISTI1
    Data Declaration
      DATA: gd_cnt TYPE i,
          gd_sent_all(1) TYPE c,
          gd_error TYPE sy-subrc,
          tab_lines LIKE sy-tabix.
    Structure Declaration
      DATA : BEGIN OF it_file OCCURS 0,
              row(255),
             END OF it_file.
      DATA : BEGIN OF i_split OCCURS 0,
      row(50),
      END OF i_split.
    Internal Table Declaration
      data : it_receivers like table of SOMLRECI1 with header line."occurs 0.
      DATA : objbin LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE. "sOLIX
      DATA : it_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE.
      data : wa_receiver like table of SOMLRECI1 with header line.
      data : it_receiver like table of SOMLRECI1 with header line.
      data : v_bin_data like SOLISTI1 occurs 0 with header line.
      DATA : gd_doc_data LIKE sodocchgi1 OCCURS 0 WITH HEADER LINE.
    *data bin_data1 like table of solix with header line.
      REFRESH : objbin, it_packing_list, it_receivers, wa_receiver.
      CLEAR   : objbin, it_packing_list, wa_receiver, it_receivers.
      DATA V_SUBJECT(255) VALUE 'HI'.
      gd_doc_data-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( it_message ).
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name = 'SENDFILE'.
      gd_doc_data-obj_descr = v_subject.
      gd_doc_data-sensitivty = 'O'.
      APPEND GD_DOC_DATA.
    Appending The Internal Table it_packing_list
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      it_packing_list-doc_type = 'RAW'.
      it_packing_list-body_num = tab_lines.
      APPEND it_packing_list.
    *CALL FUNCTION 'GUI_UPLOAD'
    *EXPORTING
    *filename = V_FILE_PATH
    *filetype = 'BIN'
    *TABLES
    *data_tab = BIN_DATA.
      move bin_data to v_bin_data.
      append v_bin_data.
    *move soli to bin_data.
      LOOP AT V_BIN_DATA into objbin.
    MOVE v_bin_data TO objbin-line.
        APPEND objbin.
      ENDLOOP.
      CLEAR it_packing_list.
      DESCRIBE TABLE objbin LINES tab_lines.
      it_packing_list-transf_bin = 'X'.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 1.
      it_packing_list-body_start = 1.
      it_packing_list-doc_type = 'PDF'.
      it_packing_list-body_num = tab_lines.
      it_packing_list-doc_size = tab_lines * 255.
      APPEND it_packing_list.
    data file(255) value '/tmp/bali.txt'.
    *Appending The Internal Table it_receivers
    close dataset '/tmp/bali.txt'.
    open dataset '/tmp/bali.txt' for output in text mode encoding default.
    if sy-subrc = 0.
    loop at objbin.
    transfer objbin to '/tmp/bali.txt'.
    endloop.
    else.
    write 'hi'.
    close dataset '/tmp/bali.txt'.
    endif.
      it_receiver-receiver = '[email protected]'.
      it_receiver-rec_type = 'U'.
      it_receiver-com_type = 'INT'.
    APPEND wa_receiver.
    move wa_receiver[] to it_receiver[].
      append it_receiver.
    *Move wa_receiver[] to it_receivers[].
    Clear it_receivers.
    if i_OUT_PLACE_LEVEL NE 0.
    loop at it_receivers into wa_receiver.
       loop at it_receivers into wa_receiver.
    **Function Module To Post The Message To Externa Mail
         CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
             document_data              = gd_doc_data
             put_in_outbox              = 'X'
             commit_work                = 'X'
           TABLES
             packing_list               = it_packing_list
             CONTENTS_TXT               = objbin
             receivers                  = it_receivers
           EXCEPTIONS
             too_many_receivers         = 1
             document_not_sent          = 2
             document_type_not_exist    = 3
             operation_no_authorization = 4
             parameter_error            = 5
             x_error                    = 6
             enqueue_error              = 7
             OTHERS                     = 8.
         clear wa_receiver.
    ENDFUNCTION.

    You have to convert your long string to a table of shorter strings.
    There may be other ways, but one possibility is to use a loop to process you string.
    while (there is something left)
       put the next e.g. 1024 characters in a new row of your table
    endwhile
    If you need to reconstruct your string from the table, don't use simple concatenation since it will remove blanks at the end of lines. Believe me (from experience) sooner or later this will happen.
    Instead you need to either set the subsections of your long string, or insert from the end of your table and keep shifting the contents (probably less efficient) right

  • Transfert data from Webdynpro to SAP R/3

    Hi all,
    Here is my need and my problem :
    - I have retrieved from R/3 some data from an InfoType
    - Those data are retrieved in Webdynpro and displayed in a table.
    - I' like to allow the user to modify a data in the portal then click on a "Change data" button
    - All data modified should be stored in the same infotype than  the data I retrieved.
    I have replace the cells I want modify in my table with an "Input field". Their are well bind and the data incoming are well displayed.
    I have some part of coding but in an example I found but the data are stored in a table and not in an Infotype so that's not exactly the same.
    Does anyone has an idea? A documentation link?
    Thank you in advance.
    Regards
    Matthieu

    Matthieu,
    I believe, you maintained a context node (table node say Vn_Table) and attributes within to bind to the display table on the screen and not bound the display table direcly to the Model Node(say Mn_<YourModelName>.
    If you want to retain both the new date and the old date for every entry in the table so that you later apply the comparision between them and then display the appropriate on the screen on click of Change Button, then better maintain two atributes say Va_AttrOld and Va_AttrDsp of same datatype date under the table node(Vn_Table) bound to the display table on the screen.
    Bind the input field for date in the table with the Va_AttrDsp attribute only under Table Node. So, what so ever changes you make on the screen will be retained in this Va_AttrDsp. Now, when you execute the Bapi to get the table populated for the first time set both the attributes of the table with the value of date coming from the Model Node. So, the first time input field will display the old date.
    On Action of Change button, apply comparision and if Old Value need not to be updated then overwrite the Va_AttrNew with Va_AttrOld value else do not change.
    This way you will never lose the old date.
    All the best.
    Regards,
    Tushar Sinha

  • How can I set an validity date for a given vendor?

    Hello,
    we are currently trying to set a "validity date" for vendors.
    Basically, our vendors need to be audited, and are "accepted" for a period of time, beyond which we'd need to re-audit them.
    What we'd like the system to do is block use of the vendor if this date was exceeded.
    Anyone has an idea on the way to achieve this?
    PS: We know that there is a way to do this at the material level, we instead wish to manage it centrally for the vendor
    Tx

    Hello Nisha,
    before doing business with a new vendor for services, our QA group needs to go thru a serie of verifications. We check various things such as insurance, certification,...
    Once "approved", the vendor can be utilised by the plant for a certain period of time, after which a "re-audit" is necessary.
    What I'd like to implement is a field where the QA group would enter this date, after which the vendor would be automatically blocked for usage.
    This would then trigger the "re-audit" followed by the release from QA (who'd re-modify the date with the new one), and so on.
    The vendor is not necessarily used for supply chain. Sometimes, it could be for services , maintenance, or other.
    Tx for the ideas.

  • Error: can't fetch data for this host - too few bytes supplied by RPC

    Hi,
    In our internal Lab we have:
    One Admin, Media,Client Server (we can make backups for himself) - Solaris 10 with DDS4 tape drive (lab)
    One Windows Client (we can make backups) - Windows XP
    One Linux Client - CentOS 5.1
    When we add the linux client with the command:
    mkhost -a ob --inservice -r client -k 1024 linux
    We receive this message in the linux (host) /usr/tmp/observiced.log
    Error: can't fetch data for this host - too few bytes supplied by RPC partner (OB cached object manager)
    And in the obtool we receive (forever looping)
    Info: waiting for host to update certification status...
    Can you help us with this linux client error ? (iptables and selinux disabled!!)
    Thanks in Advance
    Serpins

    [SOLVED]
    Selinux not well removed....
    Thanks in Advance
    Serpins

  • Why do we go for Webdynpro ABAP?

    Hi All,
             Why do we go for Webdynpro ABAP and How is it beneficial comparing with other technologies in SAP?
    Thanks
    Gopi.

    hi ,
    u may wish to like to go thru this WIKI
    http://wiki.sdn.sap.com/wiki/display/WDABAP/General+Issues#GeneralIssues-1.95
    in whch WD ABAP is compared with WD JAVA , BSP , JSP and HTMLB and mobile infrastrucutre .
    u may wish to go thru these WD ABAP tutorials :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/03/0048413e466e24e10000000a155106/content.htm
    Main Topic Page:
    http://sdn.sap.com/irj/sdn/nw-wdabap#section2
    Tutorials for Beginners:
    Web Dynpro for ABAP: Tutorials for Beginners [original link is broken]
    eLearning Videos:
    /people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
    go thru this quote by thomas
    The designers of WDA didn't want to lock developers into having to create an extra model layer. One of the values of WDA is that it sits closely with the underlying business logic and data. Therefore it can easily reuse existing function modules or classes (or even contain SQL directly - although this isn't recommended).
    There are different options for playing the role of model. You could create a faceless web dynpro component. This is sometimes used in large complex Floorplan Manager applications. However the cross-component context binding can represent a performance problem.
    More often a class is used as a simple model. These are called feeder classes in POWL. But really any ABAP class can be used to separate out the logic for the model. Data from this class can be accessed and then bound to the local context. Sometimes people use the Assistance Class as a model. It is possible to share a single instance of an assistance class between a hierarchy of components - making it an efficient way to share data.
    Of course there are the service call wizards. These aren't really models like in WDJ. Instead they are just shortcuts to generate context structures and code generators. However everything they generate can also be created by hand or altered after generation.
    rgds,
    amit

  • Does anyone know the USA release date for West of Memphis movie?

    Does anyone know the USA release date for West of Memphis movie?

    There's no general answer, it depends on the platform. On Metalink this information can be found under Certification & Availability.

  • What is used for WebDynpro for ABAP?

    hi all friends,,
    what is used for WebDynpro for ABAP?
    Thanks,
    S.Suresh.
    Title was edited by:
            Alvaro Tejada Galindo

    Hi
    Web Dynpro for ABAP - Getting Started
    Web Dynpro for ABAP is SAP’s new standard UI technology for developing user interfaces in the ABAP environment. In the long term Web Dynpro for ABAP will be the successor of the traditional screen (“Dynpro”) based user interface technology which is based on the SAP GUI. Available with NetWeaver 7.0 (2004s) Web Dynpro for ABAP provides the same declarative UI development paradigm as Web Dynpro for Java directly out of the NetWeaver ABAP Application Server. Web Dynpro for ABAP allows the development of user interfaces directly within the ABAP Workbench (SE80) and the Web Dynpro runtime environment is a central part of the ABAP server and can be used in any SAP solution based on NetWeaver 7.0 (2004s) without the need of an additional server installation.
    Web Dynpro for ABAP allows the development of user interfaces in a declarative way by providing a mighty framework which abstracts the rendering technology from the core UI definition tasks. The Web Dynpro developer declares the layout and behavior of the UI without caring about HTML, JavaScript, browser specifics or the HTTP protocol. Instead the focus lies on designing graphically Web Dynpro components based on the Model View Controller model, which enforces a clear separation between the UI layer and the underlying business logic.
    This declarative Web Dynpro programming model enforces the developer to focus on the tasks of
    Designing the layout of the visible views (where should the table be placed, do I need tabs, how should the button look?)
    Declaring the flow and behavior of the application (flow between views, which event is triggered by which button click, etc)
    Defining the data binding (which internal table is displayed in a specific table, etc)
    Implementing the event handlers and controller methods.
    Without making any assumption about the used rendering technology, like which browser should be supported or if the Web Dynpro application will be later displayed in a web browser via HTML at all or in another kind of client with completely different rendering capabilities.
    The Web Dynpro Frameworks provides all important UI features directly out of the box:
    All elements (tables, buttons, trees, dropdown list boxes, etc) necessary for state of the art user interfaces are provided by the Web Dynpro Framework in the form of predefined UI element libraries.
    Complex features and behavior of UI elements.
    Internationalization of the UI. All visible strings in a Web Dynpro ABAP UI are handled by the translation system and are translated in the same translation environment like other ABAP language dependent resources. All texts are displayed automatically at runtime, dependent of the user’s credentials.
    Accessibility features are directly built into the framework and UI elements.
    A unified rendering engine generates at runtime the data which is sent to the specific client application, which is not limited to browsers but includes the NetWeaver Business Client.
    All this is available in the established environment of the ABAP application server and well known capabilities like the transportation and change management system, security environment, test and performance analysis tools or remote debugging can be used like in common ABAP development.
    Learn about the Web Dynpro for ABAP technology with the resources below, and post your related questions and answers to the Web Dynpro forum.
    Web Dynpro for ABAP: Sneak Preview  
    Download, License Key Documentation, and Installation Guide available here.
    Web Dynpro for ABAP: Tutorials for Beginners  
    SAP NetWeaver Product Management provides this set of tutorials for getting started with Web Dynpro for ABAP technology.
    SAP Help Portal: Web Dynpro for ABAP  
    This online SAP documentation goes into detail about Web Dynpro architecture and programming, Web Dynpro for ABAP administration and security, and more.
    Web Dynpro - Not Just for Java Developers Anymore   (PDF 3.8 MB)
    In this SAP Insider article, SAP Product Manager Karl Kessler describes the tools of Web Dynpro for ABAP and uses a simple flight report example to highlight new and updated tools in the familiar ABAP environment.
    Community Contribution: WDA Tutorial I - Getting Started with Web Dynpro for ABAP   (PDF 2.5 MB)
    Software Engineer Rich Heilman provides this step-by-step guide for developing a Web Dynpro for ABAP application.
    Going into Details
    Basic Concepts - Selection vs. LeadSelection  
    In this blog, Thomas Szuecs of the Web Dynpro for ABAP development team shows how selection and LeadSelection works in Web Dynpro for ABAP.
    Web Dynpro for ABAP: Recreate the SE16 Data Browser   (PDF 386 KB)
    In this tutorial, Thomas Jung of SAP NetWeaver Product Management shows how to create a data browser simulator using Web Dynpro for ABAP.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/80aef577-543f-2a10-d19c-d83a565efe37 [original link is broken]
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

  • TEST DATA for *PurchaseOrderCreateRequestConfirmation_In*

    BPM Experts ,
    We are consuming the service " PurchaseOrderCreateRequestConfirmation_In" from the HU2 system in one of my BPM process . But when I am testing it in the WS Navigator I am not able to fill the right input parameters . Please provide me with the TEST DATA for this service or let me know where to locate it if available in the ES Workplace.
    I
    Service Name : PurchaseOrderCreateRequestConfirmation_In
    System : HU2
    WS Navigator on SAP Systems : http://sr.esworkplace.sap.com/webdynpro/dispatcher/sap.com/tcesiespwsnavui/WSNavigator
    Regards,
    Srikanth

    Thanks for your support Martin...
    But  in BPM process I am not able create PO .Please check the below link what could be the reason??
    2.0 #2008 10 27 17:50:16:437#+0530#Error#com.sap.glx.core.kernel.execution.LeaderWorkerPool#
    #BC-BMT-BPM-SRV#com.sap.glx.core.svc#001D92DB3D06056900000000000005E8#2008650000000853##com.sap.glx.core.kernel.execution.LeaderWorkerPool.Follower.run()#SAP_BPM_Service#0##5092B801A40411DD8A05001D92DB3D06#5092b801a40411dd8a05001d92db3d06#5092b801a40411dd8a05001d92db3d06#0#Galaxy 595 / Follower Worker#Java##
    An error occurred while executing transition: #5## #AUTOMATED_ACTIVITY_CreatePo(Token_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false),2), Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false), Context_0_DO_InvestmentApprovalProcess_fc11fbbc4c0a8693cda10b7b69df1d65(Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false),Scope_1_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(null,null,null,false)),2,true))#com.sap.glx.core.kernel.api.TransitionException: An exception occurred while executing the script "_Purchase_Order_Approval_Process:AUTOMATED_ACTIVITY_CreatePo(
          com.sap.glx.adapter.BPMNAdapter:Token_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65 token,
          com.sap.glx.adapter.BPMNAdapter:Instance_0_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65 parent,
          com.sap.glx.adapter.internal.ContainerAdapter:Context_0_DO_InvestmentApprovalProcess_fc11fbbc4c0a8693cda10b7b69df1d65 context_0){
      exit=new com.sap.glx.adapter.BPMNAdapter:Exit();
      exit:addParameter(token);
      exit:addParameter(parent);
      exit:addParameter(context_0);
      exit:onActivation("4A141FDCD30A03D0455111DEC347001D92DB3D39", parent, token);
      delete exit;
      controller=new com.sap.glx.adapter.internal.ExceptionAdapter:ExceptionController();
      controller:setContext(token);
      delete controller;
      callscope=new com.sap.glx.adapter.internal.TypeRegistry:Scope_6_Purchase_Order_Approval_Process_fc11fbbc4c0a8693cda10b7b69df1d65(parent);
      call=new com.sap.glx.adapter.UnifiedConnectivityAdapter:Call_0_CreatePo_fc11fbbc4c0a8693cda10b7b69df1d65(callscope);
      request=callscope:instantiate("http://sap.com/xi/APPL/SE/Global", "\#PurchaseOrderCreateRequestMessage_sync");
      mapper=new com.sap.glx.adapter.internal.Transformer:DataMapper();
      yves_in=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_out=new com.sap.glx.adapter.internal.Transformer:Data();
      data=context_0:getData();
      yves_in:setData("sap.com/glx/", "$sap.com/glx/:DO_InvestmentApprovalProcess", data, "DA49727FF1D4D9500E2210F8618BADAC");
      yves_out:setData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateRequest_sync", request, "C092C3F81CCAD6856EF323EBD1588DA3");
      mapper:map("4A141FDCD30A03D3455111DEB4DC001D92DB3D39_fc11fbbc4c0a8693cda10b7b69df1d65", yves_in, yves_out);
      request=yves_out:getData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateRequest_sync", "C092C3F81CCAD6856EF323EBD1588DA3");
      delete yves_in;
      delete yves_out;
      delete mapper;
      call:setInputData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateRequest_sync", request);
      response=callscope:instantiate("http://sap.com/xi/APPL/SE/Global", "\#PurchaseOrderCreateConfirmationMessage_sync");
      call:setOutputData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateConfirmation_sync", response);
      call:invoke();
      response=call:getOutputData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateConfirmation_sync");
      mapper=new com.sap.glx.adapter.internal.Transformer:DataMapper();
      yves_in=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_out=new com.sap.glx.adapter.internal.Transformer:Data();
      yves_in:setData("http://sap.com/xi/SAPGlobal20/Global", "$http://sap.com/xi/SAPGlobal20/Global:PurchaseOrderCreateConfirmation_sync", response, "C092C3F81CCAD6856EF323EBD1588DA3");
      mapper:map("4A141FDCD30A03D5455111DE84B3001D92DB3D39_fc11fbbc4c0a8693cda10b7b69df1d65", yves_in, yves_out);
      delete yves_in;
      delete yves_out;
      delete mapper;
      delete call;
      delete callscope;
      token:state=3;
    at com.sap.glx.core.kernel.execution.transition.ScriptTransition.execute(ScriptTransition.java:69)
    at com.sap.glx.core.kernel.execution.transition.Transition.commence(Transition.java:241)
    at com.sap.glx.core.kernel.execution.LeaderWorkerPool$Follower.run(LeaderWorkerPool.java:118)
    at com.sap.glx.core.resource.impl.common.WorkWrapper.run(WorkWrapper.java:58)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator$1.run(ServiceUserManager.java:116)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:337)
    at com.sap.glx.core.resource.impl.j2ee.ServiceUserManager$ServiceUserImpersonator.run(ServiceUserManager.java:114)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:169)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:266)
    Caused by: com.sap.glx.core.kernel.api.TransitionException: An exception occurred while executing the script command "mapper:map("4A141FDCD30A03D3455111DEB4DC001D92DB3D39_fc11fbbc4c0a8693cda10b7b69df1d65", yves_in, yves_out)"
    at com.sap.glx.core.kernel.trigger.config.Script.execute(Script.java:675)
    at com.sap.glx.core.kernel.execution.transition.ScriptTransition.execute(ScriptTransition.java:64)
    ... 11 more
    Caused by: java.lang.IllegalArgumentException: Value '2008-10-27T17:50:16.437+05:30' of type http://sap.com/xi/APPL/SE/Global\#\#Date fails validation check: pattern=[[0-9]-[0-9]-[0-9]]
    at com.sap.sdo.impl.types.builtin.TypeLogic$FacetCheck.check(TypeLogic.java:358)
    at com.sap.sdo.impl.types.builtin.TypeLogic.checkFacets(TypeLogic.java:528)
    at com.sap.sdo.impl.types.builtin.TypeLogic.convertFromJavaClass(TypeLogic.java:296)
    at com.sap.sdo.impl.objects.strategy.AbstractDataStrategy.convert(AbstractDataStrategy.java:687)
    at com.sap.sdo.impl.objects.strategy.PropertyChangeContext.convertObject(PropertyChangeContext.java:308)
    at com.sap.sdo.impl.objects.strategy.PropertyChangeContext.checkAndNormalizeDataTypeObject(PropertyChangeContext.java:302)
    at com.sap.sdo.impl.objects.strategy.PropertyChangeContext.checkAndNormalizeValue(PropertyChangeContext.java:211)
    at com.sap.sdo.impl.objects.strategy.AbstractPropSingleValue.setValue(AbstractPropSingleValue.java:48)
    at com.sap.sdo.impl.objects.GenericDataObject.set(GenericDataObject.java:620)
    at com.sap.glx.mapping.execution.implementation.node.SdoNode$PrimitiveItemContainer.appendNode(SdoNode.java:375)
    at com.sap.glx.mapping.execution.implementation.assignment.SetAssignment.assign(SetAssignment.java:23)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:145)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:151)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapPart(Interpreter.java:151)
    at com.sap.glx.mapping.execution.implementation.Interpreter.mapMapping(Interpreter.java:140)
    at com.sap.glx.mapping.execution.implementation.Interpreter.map(Interpreter.java:135)
    at com.sap.glx.core.internaladapter.Transformer$ClassRegistry$MapperClassManager$MapperClassHandler$MapperInvocationHandler.invoke(Transformer.java:1797)
    at com.sap.glx.core.internaladapter.Transformer$TransformerInvocationHandler.invoke(Transformer.java:399)
    at com.sap.glx.core.dock.impl.DockObjectImpl.invokeMethod(DockObjectImpl.java:459)
    at com.sap.glx.core.kernel.trigger.config.Script$MethodInvocation.execute(Script.java:247)
    at com.sap.glx.core.kernel.trigger.config.Script.execute(Script.java:670)
    ... 12 more
    #2.0 #2008 10 27 17:50:23:953#+0530#Error#com.sap.jms.client#
    #BC-JAS-JMS#jms#001D92DB3D06056C00000000000005E8#2008650000000025##com.sap.jms.client.com.sap.jms.client.session.JMSTopicSession#Guest#0##9E68D790A42111DD8FAC001D92DB3D06#9e68d790a42111dd8fac001d92db3d06#9e68d790a42111dd8fac001d92db3d06#0#JMS Session 5 (95)#Plain##
    java.lang.NullPointerException
    at com.sap.netweaver.rtmf.serverimpl.services.UserManagerService.doLogout(UserManagerService.java:622)
    at com.sap.netweaver.rtmf.serverimpl.services.UserManagerService.activeActionMethod(UserManagerService.java:99)
    at com.sap.netweaver.rtmf.serverimpl.services.UserManagerService.onClusterMessageArrived(UserManagerService.java:79)
    at com.sap.netweaver.rtmf.messagingimpl.services.RTMFService$RTMFClusterListener.onMessage(RTMFService.java:257)
    at com.sap.jms.client.session.JMSSession.deliverMessage(JMSSession.java:805)
    at com.sap.jms.client.session.JMSSession.run(JMSSession.java:728)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:169)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:266)
    Edited by: srikanth d on May 21, 2009 3:03 PM

  • What is the supported version of Oracle Enterprise Quality Data for WebLogic 12c

    Hi All,
    The recent release of Oracle Enterprise Data Quality is 11.1.1.6.1 for which supported weblogic server is WebLogic 10.3.6
    Can anyone tell me that if WebLogic 12c also is a supported version for Oracle Enterprise Data Quality 11.1.1.6.1 and if no, then which version of Oracle Enterprise Data Quality is supported on WebLogic 12c (12.1.2)
    Its really urgent.Please guide!
    Thanks in Advance!

    Hi,
    Thanks But I already followed this link and I forgot to mention that I am looking for the supported version of Oracle Enterprise Data Quality for Product Data for Oracle WebLogic 12.1.2. In the certification matrix of Oracle Enterprise Data Quality for Product Data 11g it is listed that the supported weblogic version is 10.3.6. So I wanted to know which version of Oracle Enterprise Data Quality for Product Data would support weblogic 12.1.2 or if Oracle Enterprise Data Quality for Product Data 11g is supported on weblogic 12.1.2 also.
    I checked the certfication matrix for Oracle Enterprise Data Quality for Product Data 11g from Oracle Fusion Middleware Supported System Configurations link only.
    Please suggest!

  • Test Data for PurchaseOrderCreateRequestConfirmation_In in HU2

    SOA Experts ,
    We are consuming the service " PurchaseOrderCreateRequestConfirmation_In" from the HU2 system in one of my BPM process . But when I am testing it in the WS Navigator I am not able to fill the right input parameters . Please provide me with the TEST DATA for this service or let me know where to locate it if available in the ES Workplace.
    I
    Service Name : PurchaseOrderCreateRequestConfirmation_In
    System : HU2
    WS Navigator on SAP Systems : http://sr.esworkplace.sap.com/webdynpro/dispatcher/sap.com/tcesiespwsnavui/WSNavigator
    Regards,
    Srikanth

    Hi Srikanth,
    Maybe you could share your findings with us? This is a community forum after all and it works both ways
    Many thanks in advance,
    Michael

  • Regarding saving data in Webdynpro

    Hi,
    While saving data in WebDynpro for Java why we use save all metadata instead of only saving it .
    Thanks.

    Hi
    If we save with SaveAllMetadata it generates internal Java classes for Models as well as other classes.Better practice is always save with SaveAllMetadata.
    Rgds
    -SS

Maybe you are looking for

  • Search for G/L account in shopping cart

    Hi Experts, I have a question regarding default data in the search function in shopping cart. When I create a shopping cart, I don't have any data defaulted into the field for G/L account. We would like the user to open the 'area' cost assignment and

  • How to look for business partner number in GTS

    Hi Experts, How to look for the business partner number in GTS when we have the Customer Id number in r/3? Please let me know the path in GTS. Edited by: Anurag87 on Dec 9, 2010 2:17 PM

  • Discoverer and 9I OLAP

    Has anyone successfully used Discoverer to access a 9I OLAP cube? If so how? Amy info would be greatly appreciated. Thanks, Carl Petersen

  • Error -110 whilst initialising SD card

    When I enter my 8GB Class 6 Samsung MicroSD card into the cardreader (mmc), 4 times out of 5 it does not mount. dmesg gives this: error -110 whilst initialising SD card I am not sure, but it appears to be timeout issue (the system does not wait long

  • Prevent use of blocked vendors in Funds Reservation Doc (FMX1)

    How can I make the system give a hard error for a blocked vendor for a funds reservation document? Currently the system will allow the use of a vendor that has been blocked when creating a funds reservation document. A hard error is received when att