OWS-00102 Reason for not creating a custom Java type: simple or mixed conte

Hi ,
I am generating the java proxies from a WSDL file in Jdeveloper and I am getting the below warning.
WARNING: OWS-00102 Mapped {http://xmlns.fmr.com/systems/dev/aar/requests}ViewRequestStatusResult to javax.xml.soap.SOAPElement ViewRequestStatusResult. Reason for not creating a custom Java type: simple or mixed content is not supported.
I have tried using Jpub as well, but it does not work as well.
I am very new to JAVA and It seems some java code needs to be created. can any one please help me how to resolve this issue.
Thanks and Regards,
Vineet

var cResponse = app.response({
cQuestion: "Enter the section number to appear in the stamp.",
cTitle: "Section Number",
cLabel: "Section Number:"
if (cResponse == null) {
event.value = '*INVALID*";
else
event.value = cResponse;
You can only remove the 'Warning JavaScirpt" is by creating a special application folder script for the 'app.response' method that uses the 'trustedFuncton' to suppress this security warning. Then in you form, you will need to test for this function and either issue a warning about the missing function or run the 'app.response' code and live with the warning. Each system will need the special application folder script installed on it.

Similar Messages

  • Reasons for not creating a DME file in the payment program (F110)?

    Hi,
    I am using the payment program F110 for customer payments.
    A payment run was carried out:
    Parameters have been entered. Payment proposal has been created. Payment run has been carried out. Posting orders: 17 generated, 17 completed.
    However, the DME file was not created.
    What could be the reason?
    Thank you.
    Kind regards,
    Linda

    Solved. 
    Someone has changed the variant of the payment program.
    The DME file name had disappeared.

  • Creating a custom java module for excel to xml conversion.

    Hi Gurus,
    I am creating a custom java module in sap nwds 7.3 for Excel to XML Conversion. But I am getting following error
    Classpath dependency validator message.
    Classpath entry  will not be exported or published. Runtime ClassNotFoundExceptions may result. 
    I imported the Jars from a different PI system and i am using NWDS in local PC with creating a separate folder with all JARs and also imported them using build path option.
    This issue is occuring for all the jars imported.
    I am using following code.
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Map;
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.AbstractTrace;
    import java.util.HashMap;
    import jxl.Cell;
    import jxl.Workbook;
    public class JavaMappingExcelToXML implements StreamTransformation{
    private Map map = null;
    private AbstractTrace trace = null;
    public void setParameter(Map arg0) {
    map = arg0; // Store reference to the mapping parameters
    if (map == null) {
    this.map = new HashMap();
    public static void main(String args[]) { //FOR EXTERNAL STANDALONE TESTING
    try {
    FileInputStream fin = new FileInputStream ("c:/ashu.xls"); //INPUT FILE (PAYLOAD)
    FileOutputStream fout = new FileOutputStream ("C:/Users/ashutosh.a.upadhyay/My Documents/ashuXML2.xml"); //OUTPUT FILE (PAYLOAD)
    JavaMappingXLStoXML mapping = new JavaMappingXLStoXML ();
    mapping.execute(fin, fout);
    catch (Exception e1) {
    e1.printStackTrace();
    public void execute(InputStream inputstream, OutputStream outputstream) {
    String msgType = "Message Type name will come here";
    String nameSpace = "Namespace Name will come here";
    String xmldata = "";
    try {
    Workbook wb = Workbook.getWorkbook(inputstream);
    xmldata ="<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"+ "<ns0:"+msgType+" "+"xmlns:ns0=\""+nameSpace+"\n">";
    Cell[] cells ;
    Cell[] cellNames ;
    cellNames = wb.getSheet(0).getRow(0);
    for(int j=1;j<wb.getSheet(0).getRows();j++){
    xmldata = xmldata+"\n<Record>\n";
    cells = wb.getSheet(0).getRow(j);
    for(int i=0;i<wb.getSheet(0).getColumns();i++){
    xmldata = xmldata+"\t<"+cellNames[i].getContents()+">"+cells[i].getContents()+"</"+cellNames[i].getContents()+">\n";
    xmldata = xmldata+"</Record>";
    xmldata = xmldata+"\n</ns0:"+msgType+">";
    System.out.print(xmldata);
    xmldata.getBytes();
    wb.close();
    byte by[] = xmldata.getBytes();
    outputstream.write(by);
    inputstream.close();
    outputstream.close();
    System.out.println("\n"+"File processed");
    catch (Exception e) {
    e.printStackTrace();
    Request you to guide how to resolve this issue.
    Thanks  in advance

    Hi Gurus,
    I am creating a custom java module in sap nwds 7.3 for Excel to XML Conversion. But I am getting following error
    Classpath dependency validator message.
    Classpath entry  will not be exported or published. Runtime ClassNotFoundExceptions may result. 
    I imported the Jars from a different PI system and i am using NWDS in local PC with creating a separate folder with all JARs and also imported them using build path option.
    This issue is occuring for all the jars imported.
    I am using following code.
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Map;
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.AbstractTrace;
    import java.util.HashMap;
    import jxl.Cell;
    import jxl.Workbook;
    public class JavaMappingExcelToXML implements StreamTransformation{
    private Map map = null;
    private AbstractTrace trace = null;
    public void setParameter(Map arg0) {
    map = arg0; // Store reference to the mapping parameters
    if (map == null) {
    this.map = new HashMap();
    public static void main(String args[]) { //FOR EXTERNAL STANDALONE TESTING
    try {
    FileInputStream fin = new FileInputStream ("c:/ashu.xls"); //INPUT FILE (PAYLOAD)
    FileOutputStream fout = new FileOutputStream ("C:/Users/ashutosh.a.upadhyay/My Documents/ashuXML2.xml"); //OUTPUT FILE (PAYLOAD)
    JavaMappingXLStoXML mapping = new JavaMappingXLStoXML ();
    mapping.execute(fin, fout);
    catch (Exception e1) {
    e1.printStackTrace();
    public void execute(InputStream inputstream, OutputStream outputstream) {
    String msgType = "Message Type name will come here";
    String nameSpace = "Namespace Name will come here";
    String xmldata = "";
    try {
    Workbook wb = Workbook.getWorkbook(inputstream);
    xmldata ="<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"+ "<ns0:"+msgType+" "+"xmlns:ns0=\""+nameSpace+"\n">";
    Cell[] cells ;
    Cell[] cellNames ;
    cellNames = wb.getSheet(0).getRow(0);
    for(int j=1;j<wb.getSheet(0).getRows();j++){
    xmldata = xmldata+"\n<Record>\n";
    cells = wb.getSheet(0).getRow(j);
    for(int i=0;i<wb.getSheet(0).getColumns();i++){
    xmldata = xmldata+"\t<"+cellNames[i].getContents()+">"+cells[i].getContents()+"</"+cellNames[i].getContents()+">\n";
    xmldata = xmldata+"</Record>";
    xmldata = xmldata+"\n</ns0:"+msgType+">";
    System.out.print(xmldata);
    xmldata.getBytes();
    wb.close();
    byte by[] = xmldata.getBytes();
    outputstream.write(by);
    inputstream.close();
    outputstream.close();
    System.out.println("\n"+"File processed");
    catch (Exception e) {
    e.printStackTrace();
    Request you to guide how to resolve this issue.
    Thanks  in advance

  • I have problem sending a email ..spool not created using custom FM

    Hi experts,
    i have problem sending a email ..spool not created using custom FM...this the custom FM
    * Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
    Source code
    this is the source code for this FM
    IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
        PERFORM convert_spool_to_pdf.
        IF sy-subrc IS NOT INITIAL.
          MESSAGE e040(zhrcd) RAISING spool_not_created.
        ENDIF.
        PERFORM process_email USING email1
                                    email2
                                    email3
                                    subject
                                    attachment_name.
        WAIT UP TO 5 SECONDS.
        SUBMIT rsconn01 WITH mode   = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.....
    Please let me know
    Edited by: Thomas Zloch on Nov 16, 2010 5:53 PM - please use code tags

    Hi srinivas ,
    Could you please Check
    FORM summary_report .
      DATA: lv_success TYPE i,
              lv_error TYPE i,
              lv_total TYPE i.
      DESCRIBE TABLE gt_data LINES lv_success.
    DESCRIBE TABLE gt_error LINES lv_error.
      DESCRIBE TABLE gt_message LINES lv_error.
    lv_total = lv_success + lv_error.
      lv_total = lv_success.
      gwa_summary-record = text-008."Number of Successful records.
      gwa_summary-number = lv_success.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-009."Number of error records'.
      gwa_summary-number = lv_error.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-010."Total number of records processed.
      gwa_summary-number =  lv_total.
      APPEND gwa_summary TO gt_summary.
    CLEAR gt_fieldcat.
      gwa_fieldcat_summ-col_pos = 1 .
      gwa_fieldcat_summ-fieldname  = 'RECORD'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-011."Records
      gwa_fieldcat_summ-outputlen = '70'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
      gwa_fieldcat_summ-col_pos = 2 .
      gwa_fieldcat_summ-fieldname  = 'NUMBER'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-012."Number
      gwa_fieldcat_summ-outputlen = '10'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
    ENDFORM.                    " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
    FORM error_report .
    gt_fieldcat_err[] = gt_fieldcat[].
      gv_fieldcat_err-col_pos = 1.
      gv_fieldcat_err-fieldname  = 'PERNR'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-070."Employee Number
      gv_fieldcat_err-outputlen = '20'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
      gv_fieldcat_err-col_pos = 2.
      gv_fieldcat_err-fieldname  = 'MESSAGE'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-071."Error Message
      gv_fieldcat_err-outputlen = '80'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
    ENDFORM.                    " ERROR_REPORT
    *&      Form  FINAL_REPORT
    FORM final_report .
      DATA:lv_layout TYPE slis_layout_alv,
             lt_events_summ TYPE slis_t_event,
             lv_events_summ LIKE LINE OF lt_events_summ,
             lt_events_det TYPE slis_t_event,
             lv_events_det LIKE LINE OF lt_events_det,
             lt_events_err TYPE slis_t_event,
             lv_events_err LIKE LINE OF lt_events_det,
             lt_events_msg TYPE slis_t_event,
             lv_events_msg LIKE LINE OF lt_events_det.
      lv_events_summ-name = 'TOP_OF_PAGE'.
      lv_events_summ-form = 'TOP_OF_PAGE1'.
      APPEND lv_events_summ TO lt_events_summ.
      lv_events_det-name = 'TOP_OF_PAGE'.
      lv_events_det-form = 'TOP_OF_PAGE2'.
      APPEND lv_events_det TO lt_events_det.
      lv_events_err-name = 'TOP_OF_PAGE'.
      lv_events_err-form = 'TOP_OF_PAGE3'.
      APPEND lv_events_err TO lt_events_err.
      lv_events_msg-name = 'TOP_OF_PAGE'.
      lv_events_msg-form = 'TOP_OF_PAGE4'.
      APPEND lv_events_msg TO lt_events_msg.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat_summ
          i_tabname                        = 'IT_SUMMARY'
          it_events                        = lt_events_summ
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_summary
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    IF CHK_DTL IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat
          i_tabname                        = 'gt_data'
          it_events                        = lt_events_det
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_data
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_err
         i_tabname   = 'gt_error'
         it_events   = lt_events_err
       TABLES
         t_outtab    = gt_error.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_msg
         i_tabname   = 'gt_message'
         it_events   = lt_events_msg
       TABLES
         t_outtab    = gt_error.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_err
          i_tabname   = 'gt_message'
          it_events   = lt_events_err
        TABLES
          t_outtab    = gt_message.
    IF GT_MESSAGE[] IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_msg
          i_tabname   = 'gt_message'
          it_events   = lt_events_msg
        TABLES
          t_outtab    = gt_message.
    ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
       i_interface_check             = ' '
      IS_PRINT                      =
       i_screen_start_column         = 0
       i_screen_start_line           = 0
       i_screen_end_column           = 0
       i_screen_end_line             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
    ENDFORM.                    " FINAL_REPORT
    *&      Form  top_of_page
          text
    FORM top_of_page1.                                          "#EC CALLED
      WRITE text-013."SUMMARY REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page2
          text
    FORM top_of_page2.                                          "#EC CALLED
      WRITE text-014."DETAIL REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page3
          text
    FORM top_of_page3.                                          "#EC CALLED
      WRITE text-015."ERROR REPORT
    ENDFORM.                    "top_of_page
    *&      Form  EMAIL_NOTIFICATION
    FORM email_notification .
      DATA: lv_email1  TYPE somlreci1-receiver,
           lv_email2  TYPE somlreci1-receiver,
           lv_email3  TYPE somlreci1-receiver,
           lv_subject TYPE char200,
           c_flag     TYPE c           VALUE 'X',
           lv_attachment TYPE char50.
      CLEAR: lv_email1,
             lv_email2,
             lv_email3,
             lv_subject,
             lv_attachment.
      SELECT SINGLE email1
                    email2
                    email3
        FROM zhr_interface_pr
        INTO (lv_email1,lv_email2,lv_email3)
        WHERE zinterfaceid EQ gc_objectid.
      IF sy-subrc EQ 0.
        IF sy-batch EQ 'X'.
    Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    "
    Edited by: katewinslate@SAP on Nov 17, 2010 12:50 PM

  • Frustrated with HP lame reason for not repairing a keyboard issue

    I recently called HP about a keyboard issue, where a the backspace key popped up and became detactched from the keyboard because the small latch broke under normal use. HP asked me to send the notebook back to them for replacement of the entire keyboard. When it got there, the case manager called back to tell me that they would not fix the keyboard because there was evidence of something being spilled on it. Although I don't recall any major spill on the keyboard I didn't deny that coffee drops may have reached the keyboard, nontheless that is not their concern and does not relate in anyway to the problem I resported to them. Yet HP refused to replace the keyboard and sent back as is. I must mention that the machine is functional and the spill has no effect on the operation of the machine. My frustration is with the broken key which affected my use of the keyboard.
    In spite of my appeal to the case manager and customer support, they insisted that it's against their policy to fix the keyboard because of the spill evidence on the keyboard.
    I am wondering if anyone else had a similar experience with HP service and particulary how they handled my service call. I am not accepting HP's lame reason for not fixing my keyboard and I was not happy I could nothing about it. I however use several HP products in my SOHO environment and this support incident left me with a bad experience.

    Hello andanderson,
    Sorry to hear about the troubles you have had with your laptop and with support. I am going to forward this to the appropriate team for review. Someone should be in contact with you shortly.
    Since this is a forum and we have no contact information for you, just your user id initial communication will be made through the forums private message feature. Please be on the lookout for a private message in regards to this issue.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • Reason for not allowing static declarations inside an inner class

    Is the reason for not allowing static declarations inside an inner class is due to the fact that it can never be accessed at a class level as the outer class has to create an instance of the inner class and any attributes/methods of the inner class has to be accessed through that.
    Typically, an instance (non-static) variable can never be accessed in a statement or expression inside a static context but the class variable can be accessed inside a non-static context. Given this, shouldnt the static declarations be allowed inside an inner class?
    Correct me if my understanding is wrong.
    Thanks

    I still couldnt get it clearly. Why i cant i have a static value ( variable ) for all the instances of the inner class irrespective of its enclosing instances of it ( i.e outer class instances). Say in this example below,
    class Outer
    static int i = 0;
    public Inner inner = new Inner();
    class Inner // inner class ( non-static nested class )
    int j = 0;
    static final int k = 2; // compile time constants are allowed
    // ininner class
    public void m1()
    j++;
    System.out.println("j is " + j);
    i++
    System.out.println("i is " + i);
    public static void main(String[] arg)
    Outer outer1 = new Outer();
    outer1.inner.m1(); // j will be 1 & i will be 1
    Outer outer2 = new Outer();
    outer2.inner.m1() // j will be 1 again & i will be 2. But I would
    // want j to be 2. Why is this not allowed?
    Looks like something missing..

  • CAD "Select reason for not ready" not appearing for some agents? Please help!

    Hi all,
    I have some users who when they click on 'Not Ready' in CAD (Cisco Agent Desktop) - they are not presented with the 'Select Reason for Not Ready' dialog box - it just goes straight to Not Ready.
    I have searched high and low but have not found any suitable results (maybe I'm doing it all wrong?).
    Anyway - we use CUCM
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin-top:0cm;
    mso-para-margin-right:0cm;
    mso-para-margin-bottom:10.0pt;
    mso-para-margin-left:0cm;
    line-height:115%;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;
    mso-fareast-language:EN-US;}
    8.0.2.40000-1 and UCCX
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin-top:0cm;
    mso-para-margin-right:0cm;
    mso-para-margin-bottom:10.0pt;
    mso-para-margin-left:0cm;
    line-height:115%;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;
    mso-fareast-language:EN-US;}
    8.0.2.10000-41.
    Version 8.0(2) of CAD.
    Works for some agents and not others. All the same Windows operating system.
    Is there an individual setting which needs to be set on each user in CUCM or UCCX in order for this to be triggered?
    I would've thought it was universal?
    Cheers,
    Brett

    Ahhhh, spot on.
    Can't believe I missed it...
    Cisco Desktop Administrator (go) > Personnel > Agents > Set appropriate 'Work Flow Group'
    Agent logs out of and closes CAD, opens and logs back into CAD, tested, solved.
    Many thanks again

  • Reasons  for  not  up dating the  planned revenue in internal order

    Dear   CO experts
    What  are the probable reasons  for not up dating the  the  planned revenue in  internal order . Eg  :  The order   value in CRM order  is not  flowing  to the  planned  revenue  in   internal order . The  GL  has  been  defined  for the  same in ECC and  CRM .
    What are  the points to be  checked if  the  planned  revenue  does not update  the  internal order.
    Where can i  find the documentation for  the  settings  of  CRM    to  ECC controlling.
    Regards   
    Raj

    Hi,
    Check in KOT2_OPA corresponding to your order type whether 'Revenue posting' is flagged.
    With regards,
    Mrinal

  • Creating local custom calendar type .

    Hi all,
    How to create a custom calendar type .I need to start a job according with local calendar (local holidays)which was not present in SM36.Also Some holiday is not preset in this calendar(cant be predicted in which day it falls ) .I dont want to run the job on thses days as well.

    Hi ,
    Can anybody suggest me a solution as i need a help quickly .?

  • Restriction of Selecting Reason for movement based on the movement type

    HI,
    Defined Reason for movements for the movement types and made the field as " mandatory" in the control reason for the movement type.
    So, during the Goods movement transaction it becomes mandatory to enter the reason for movement code.
    But during the Goods movement transaction, it is possible to enter any reason for movement for any movement type. It needs to restricted with subject to the movement type.
    Example:
    Defined the Reason for movements 0001 & 0002 for the movement type 561.
    Defined the Reason for movements 0003 & 0004 for the movement type 563.
    During MB1C, now it is possible to select 0003 or 0004 for 561 as well as , it is possible to select 0001 or 0002 for 563.
    it needs to be controlled w.r.to the movement type.
    that is, if the movement type 561 is entered, then system should only allow the reason for movement either 0003 or 0004.
    Is it possible to control, the selection of "reason for movement" based on the movement type ?
    thanks in advance for your help.

    Hi Sundar,
    Check the transaction OMBS.Here you can make the entry of reason for movement mandatory check:controls and in reasons for movements you can maintain the allowed reasons for movement for the perticulatr movement type.
    Hope this help.
    Regards
    Ankush

  • How can I create a custom data type that is a 2D array of string by using TestStand API?

    Hi all,
    I'm new in TestStand:
    I'm able to create a custom data type that is a 1D array of string but I cannot find the way to create a 2D array of string.
    Can anyone help me?
    Thank you in advance.
    Federico

    I made it!!
    Indeed my 2D array is an item of a container:
    /*  Create a new container */
    RunState.Engine.NewPropertyObject(Locals.NewDataType,PropValType_Container,False,"",0)
    /*  Create an array of strings as item of the container */
    Locals.NewDataType.NewSubProperty("Array_2D",PropValType_String,True,"",0)
    /*  Reshape the array as an empty 2D array */
    Locals.NewDataType.GetPropertyObject("Array_2D",0).Type.ArrayDimensions.SetBoundsByStrings("[0][0]","[][]")
    being:
    NewDataType a local property (type Object)
    Attachments:
    AddCustomTypeAndCreateFileGlobals.seq ‏11 KB

  • Error in custom Java Type ESS job

    Hi,
    I am trying to create a custom java ess job in fusion accounting hub a sper note id:1367527.1.
    When i run the job i get following error - "Request processing resulted in error with the below message.
    ERROR:PREPROCESS_SYSTEM_ERROR"
    The jar file is present in the lib folder and job metadata has been created with a custom path /subledgerAccounting/interface/programs/ . Please note that custom PLSQL jobs which use this path are working.
    Any inputs will be appreciated.
    Thanks,
    Rahul

    I think this would be better answered on the [url https://forums.oracle.com/forums/forum.jspa?forumID=374&start=0]Data Integrator forum; also please use distinct threads for different questions such that threads are kept short and concise. That said here are few links that might be useful:
    <li>[url http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/odi_11g/setup_odi_agent/setup_odi_agent.htm]ODI11g: Setting Up an ODI Agent
    <li>[url http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/odi_11g/setup_jee_agent/setup_jee_agent.htm]ODI11g: Deploying and Configuring the ODI Agent as a Java EE Application
    <li>[url  http://docs.oracle.com/cd/E17904_01/core.1111/e16453/toc.htm]Oracle® Fusion Middleware Installation Guide for Oracle Data Integrator
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Custom Java Type persistence with JDO

    Hello,
    I have a question regarding KodoJDO.
    We have a class called "CBOCountry", CBOCountry is a type that has some
    behaviors.
    Each CBOCountry has only one field, an integer.
    We have a class called Person, this class must be persisted in the DB !
    Also, Person has a file of type CBOCountry, so, we need to persist in the
    DB the integer field of the CBOCountry.
    It is possible with JDO ?
    You can call me at +352 295665 280
    (Can you also send me a list of prices for KodoJDO ?)
    Thanks
    Demez Christophe

    Christophe,
    Ah! It seems to be that I recall some discussion of serialization on
    this list and if I recall right, it is possible to serialize an object
    as a field, but then you would lose the ability to query on those
    fields, I'm pretty sure. What you want is CBOCountryValue to be a
    second class object stored in PERSONX table.
    So let's see what the others have to say.
    David
    -------- Original Message --------
    Subject: Re: Custom Java Type persistence with JDO
    Date: Tue, 14 Aug 2001 14:00:28 +0200
    From: [email protected]
    To: [email protected]
    Thanks David, but ...
    I have 2 tables and only one table is usefull.
    In fact, what I need is a table PERSONX with a field CBOCOUNTRYVALUE !
    In our object model, every field is a specific class ( a CBO), and we do
    not want to create a table by field or even by kind of field.
    Thanks , I appreciate your answer
    Christophe
    David
    Ezzio
    <dezzio@ysoft To:
    [email protected]
    .com>
    cc:
    Subject: Re: Custom Java
    Type persistence with JDO
    08/14/01
    02:01
    PM
    Christophe,
    The short answer is yes. Both Person and CBOCountry would be
    enhanced to PersistenceCapable objects with entries in the XML metadata
    (package.jdo) and either entries in the database or in system.prefs.
    When the schematool is run you end up with a PERSONX table in the DB and
    a CBOCOUNTRYX table in the database. The names can be tweaked if
    necessary. Each table will have a column for each persistent field in
    the corresponding object. Which fields are persistent and which are not
    are identified by defaults and by the XML metadata.
    David

  • How to trace reason for failure to synchronize customer in OPM Financials

    Sirs,
    I created a customer in Order Management and process Synchronize Customer in OPM Financials. The result is "Failed"
    How to trace the reason for the reason to synchronize?

    Sirs,
    I created a customer in Order Management and process Synchronize Customer in OPM Financials. The result is "Failed"
    How to trace the reason for the failure to synchronize?
    thanks!

  • Reasons for not enabling radio on some Lumia modle...

    Do anyone know actual reason behind not enabling Radio on some of the Lumia models (I am using 620)
    It is great if I can have radio on my phone. But with Amber update it is not happening.. 
    As I heard from other sources in 620 radio antenna is not connected to the head phone but otherwise phone is fully support for the radio. Is it true? 
    If so this may be one of a silly mistake by Nokia and Microsoft. 

    Hi Guys,
    What I am telling is no recalling of products, what I am telling is proper planing .... 
    As we know 620 has a partial hardware support for FM radio, to enable FM radio fully will it take anouther reasonable cost (not now in the designed time)? Do you think so, I don't think so
    Also it may be still posible to charge additional cost from customers and do hardware link for customers who really want it. I am not sure.
    The 620 was designed and released before the 520 and 720. 
    Yes agree but when designing they should know that that can support FM radio in the future. I guess 920 desinged pararally to the 620 and 920 has FM radio. 
    So what basically I want to emphasize is the planing of future products. I think Nokia/MS shoud do this carefully in the future. 
    Regards,
    -Lasith

Maybe you are looking for

  • How to fetch data from Mysql with SSL.

    I am using jdk1.5 and mysql 5.0. How to fetch data from Mysql with SSL I am using url = jdbc:mysql://localhost/database?useSSL=true&requireSSL=true. It shows error. how to fetch

  • HT2404 I need to upgrade my software from Mac OS X 10.5.8 to 10.6.8.

    When I search for updates it says that my mac is updated. How do I upgrade to the newer version of Mac OS X? I need this in order to install the newest version of itunes and upgrade my phone.

  • How to get the installation path or ms word using forms 6i

    dear all i want to know the client side full path with exe file name of ms word or acrobat reader e.t.c. from forms 6i actually i want to run word file on button click. according to the type of file extension. if the file is related to .doc then open

  • Some questions on Zen Visio

    Hi I'm considering to buy Creative's Zen Vision:M. Before that however, I've some questions. Power Adapter . Does it come bundled with the power adapter? If not, how much does it cost. The website doesn't seem to state this. Battery Life 2. It's rate

  • Install Java-Add in ECC 5 ABAP system

    Hi all, FYI. I was requested to installed java stack (WEB AS JAVA) in same server but separate instance. As my current system is pure ABAP environment. as DB instance, central instance was in single hosts* Separate installation of the Java Stack & Co