NWBC:CREATE DATA:Type WDR_APP_PROP_DISP_LOADINGPAGE is no valid data type

HI Experts,
We want to access our servers through NWBC. All setting and configuration related is done also services in SICF are activated.But when we are in to NWBC it shows following error. Kindly help to resolve this
Error when processing your request
What has happened?
The URL https://hpi-dev.domainname.local:44301/sap/bc/webdynpro/sap/powl was not called due to an error.
Note
The following error text was processed in the system ERD : CREATE DATA: The specified type WDR_APP_PROP_DISP_LOADINGPAGE is no valid data type.
The error occurred on the application server HPI-DEV_ERD_01 and in the work process 0 .
The termination type was: RABAX_STATE
The ABAP call stack was:
Method: CONVERT_XML_TO_STRING of program CL_WDR_CONFIGURATION_UTILS====CP
Method: CONVERT_XML_TO_STRING of program CL_WDR_CONFIG_APPL_PARAM======CP
Method: READ_DATA of program CL_WDR_CONFIG_APPL_PARAM======CP
Method: INIT_DATA of program CL_WDR_CONFIG_APPL_PARAM======CP
Method: GET_DATA of program CL_WDR_CONFIG_APPL_PARAM======CP
Method: CONSTRUCTOR of program SAPLWDR_RUNTIME_REPOSITORY
Function: WDR_GET_REPOSITORY of program SAPLWDR_RUNTIME_REPOSITORY
Method: IF_WDR_RUNTIME~GET_RR_APPLICATION of program CL_WDR_MAIN_TASK==============CP
Method: CREATE_APPLICATION of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
What can I do?
If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system ERD in transaction ST22.
If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server HPI-DEV_ERD_01 in transaction SM21.
If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server HPI-DEV_ERD_01 . In some situations, you may also need to analyze the trace files of other work processes.
If you do not yet have a user ID, contact your system administrator.
Error code: ICF-IE-https -c: 100 -u: SRAUT -l: E -s: ERD -i: HPI-DEV_ERD_01 -w: 0 -d: 20111220 -t: 003857 -v: RABAX_STATE -e: CREATE_DATA_UNKNOWN_TYPE
HTTP 500 - Internal Server Error
Your SAP Internet Communication Framework Team

Hi,
Regarding the issue reported by you kinly refer in detail the solution section of the following SAP Note:
  1432358 - Starting application with Loading Animation
It seems that the data element WDR_APP_PROP_DISP_LOADINGPAGE is not created in your system.
This note should help you out.
Regards,
Abhishek

Similar Messages

  • Date Picker Error when not valid date

    I have a field with a date picker. I have an inline validation of type pl/sql error that checks to see that the user actually entered a valid date
    l_date := todate(:P1_MYDATE, '&PICK_DATE_FORMAT_MASK.');
    Works fine, except, next to the field (between the field and the date picker) I get this "junk"
    Unable to cast value "03/35/2004" to date format mask PICK_DATE_USING_FLOW_FORMAT_MASK
    This is pretty ugly, especially as I am already telling them they made a mistake.
    Would you like me to log a bug?
    Also . . . it would be great to have a built in validation for dates. Any thoughts there? Perhaps an enhancement request?
    Thanks,
    a-

    Anton,
    This is definitely pretty ugly and should be handled more gracefully. As it stands now, there is no way to suppress this automatic casting to a date value.
    You can work around it by clearing session state for that item if the validation fails. You could do this in a validation of type Function Returning Boolean with:
    declare
    l_date date;
    begin
    l_date := to_date(:P1_MYDATE,'&PICK_DATE_FORMAT_MASTK.');
    return true;
    exception
    when others then
    :P1_MYDATE := NULL;
    return false;
    end;
    The idea for a built-in validation for dates is a great one. HTML DB has all the information (what type of date picker, any format masks, NLS settings) to determine the validity of a date value.
    Joel

  • Dynamic data source on 10g requires valid data source associated in report

    I'm currently using the dynamic JDBC data source feature of PublicReportService_v11 in BI Publisher 10.1.3.4.1 (March 2011 patch applied) and it seems that the BIP report still requires a valid JDBC data source associated with it before the specified dynamic one can be properly used.
    Using SoapUI, I tried sending a runReport request with a dynamic JDBC data source for a BIP report that is associated to an invalid/dummy JDBC data source and got the following fault string:
    oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReport failed: due to java.sql.SQLException: ORA-01017: invalid username/password; logon deniedAssociating the BIP report to a valid JDBC data source but different from the specified one on the runReport request does make this feature work - data in the BIP report does come from the specified dynamic JDBC data source. I'm just wondering if this is the right behavior for this feature? It seems a little counter intuitive because you already specified a JDBC data source in the request message which I'm assuming will be used by the report you're requesting instead of whatever is the currently associated data source on the report.

    If it is open, then try
    Named range: ConsolLink = Range("Consol File.xlsm'!Source_OpexConsol")
    And if it is not currently open, then try
    Dim W As Workbook
    Set W = Workbooks.Open("R:\Root\Sub1\Sub2\Consol
    File.xlsm")
    Named range: ConsolLink =
    Range("Consol File.xlsm'!Source_OpexConsol")
    W.Close False

  • Create Table/View with Validity Date Control?

    Hi,
    does anyone know the easiest way for me to create a custom view that uses validity dates to control records by time periods, similar to time constraint 1 infotypes in HR?
    For instance, if I define a table to store entries like so
    Client (Key): 100
    PSubArea (Key): C001
    Grouping (Key): 01
    End Date (Key): 99991231
    Begin Date: 18000101
    and I want to ensure that there can only be one record active on any given date, how can I prevent someone from creating a record from 20061107 - 20071107 that overlaps the existing record?
    Is there a setting I missed?
    Add conditions to generated view coding? Is there a good example?
    Thanks

    K, so I found these
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/91/ca9fb3a9d111d1a5690000e82deaaa/content.htm">SAP Help - Time-Dependent Table/View</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/c1/df5c3c3b067331e10000000a114084/content.htm">Generate Time-Dependence</a>
    I'll give it a whirl now.

  • ALE BOM. Updates ALL! items with validity date & change no.

    Hi All,
    We are having problems where ALE-BOM sent with change in validity date (with change no) to a particular item. What happens is that ALE-BOM will instead update ALL! items with the same validity date and change number.
    Next,when we process ALE again for the same BOM with a different validity date(with change no), then only that
    particular item is updated with validity date and change no.
    Would anyone know what could be the problem that when changes are sent for the first time all items are updated?
    [Version: SAP 4.6C/ SAPKH46C48]
    Regards,
    Neeth

    Dear:
                   The error itself telling you the correction. You profit center which is assigned to your cost center has a validity date less than the one you are now assigning.You can check in KE52 against the profit center assigned to your cost center master data. However the best thing is to go to KS01 and create this cost center with desired validity date.
    This will resolve your issue.
    Regards

  • Validity Date at BOM componet

    Dear all,
    I'm strugling on changing the valid-to date for a BOM component.
    Let me explain in detail what the scenario is and what I've done so far.
    I have a BOM header "Z" with 5 different components, Y, X, W, V and U. Validity dates should be as follows:
    - Y --> 02.04.2010 to 31.12.9999
    - X --> 02.04.2010 to 31.12.9999
    - W --> 02.04.2010 to 31.12.9999
    - V --> 02.04.2010 to 20.02.2012
    - U --> 21.02.2012 to 31.12.9999
    I have created a change number with validity date 21.02.2012, but when trying to change BOM components validity dates fields will be grey and won't allow me to do the necessary changes.
    Could you please guide me with the necessary steps that I need to follow or where my issue would be? - I have already been checking the forum and followed some of your tips(checked config and so on, and everything seems to be ok).
    Thanks a lot in advance for your help on this one as it's quite urgent to solve this so we can test it, as we need to provide with some explamples on how material variances report will be affected to client ASAP.
    Kind regards,
    Mario

    Hi Mariete ,
    you just need to create a change number with the valid date you want for component , example if you create a change number valid from 01.01.2010 and if you use it for changing BOM , all the changes you made will have this validity date.
    its not possible to input validity dates, so all the times it will be greyed out , you can control it as discribe above.
    in you case you need to create 2 change numbers , 1 with valid from date in 02.04.2010 and use it for component Y X W and V
    and others with validity date 21.02.2012 and use it for component U.
    another thing please keep in mind if you BOM is created in todays date or date which is greater then 02.04.2010 will be a problem , so suggestion is while creating BOM , use a change number which is valid from 02.04.2010 and cause of it all 4 components will be automitacily hace valid date 02.04.2010.
    and after creating this BOM with 4 component  use a second change number and add component U.
    please check i hope it wil help you.
    Thanks
    Ritesh

  • Validity date

    Dear Experts
      My problem is i need to change the Validity to date in inspection task list which is defaulted as 31.12.9999 and which cannot be edited.
    Surender

    Dear,
    Go to t.code "CC02 or CC01". Just beside effectivity date field , you will see a icon. Click to that icon , you will see a date-lower limit and date-upper limit. Enter the dates you want and do not click the check box "date indicator" then assig it to task list.
    You create a change request ( change no.) For this change number you need to define effective date (10.11.2008) and validity date(10.12.2010). Now if you make changes to task lsit using this change no. should be valid for 10.11.2008 to 10.21.2010.
    Create a Change note number using CC01 define your dates as per your requriment. Then use this no in task list, system will act according to date of change no.
    Pl go throught the link
    http://help.sap.com/saphelp_47x200/helpdata/en/d8/7329d14b7511d1894b0000e8323c4f/frameset.htm
    Regards,
    R..Brahmankar

  • ECN global relase key & valid date

    Dear Guru's,
        I am working in Engineering company as SAP consultant.
    We were followed Discret manufacturing procedure in SAP, now recently we migrated to REM procedure.
    Our R& D dept creating  ECN's , Based on this ECN's creating BOM or updating BOM's.we have only production BOM's usage 1.
    Our general procedure is ECN valid  date will be creating date of  ECN. but using global relase key we released it for production .
    But in REM before releasing the Global release key it will replicate in all BOM's and update in MRP related issues.
    what is relation between Valid date and global release key?
    please provide needful suggestion to resolve this issues.
    Thanks & Regards
    Suresh Babu.S

    Dear Mangalraj,
    Thanks for your kind response,
    I am  giving a live example.Earlier we had only production BOM in Discret Manufacturing Process
    Now we have  changed  to Repitative Manufacturing process in SAP.
    what the ECN's made by R&D are immediately get affected our Production BOM and also our MRP and meterials procurment Procedure.
    Because of this we decided to have Engg BOM and Production BOM to control the ECN and MRP process.
    In our R&D they made some changes and creating ECN numbers, for example  with valid date of  10.08.2007 but they are not released the global release key.
    I would like to know that  ECN creation date 10.08.2007 is valid date for that ECN changes or it will affect after releaseing the global release key while  implementing this ECN number in Production BOM.
    I hope this will help u to understand my problem.If possible give  your personal phone numbers or mailid
    Thanks in advance
    Suresh Babu.S

  • F:convertDateTime - how to define two valid date formats?

    I have an input field that accepts a date. There are two valid date formats allowed: yyyyMMdd & yyyyMMM
    I am currently doing this ...
    <h:inputText ...>
    <f:convertDateTime pattern="yyyyMMdd" />
    <f:convertDateTime pattern="yyyyMMM" />
    </h:inputText>
    ... but only the second date format is being accepted as valid.
    How can I specify two valid date formats for the input?
    Thanks,
    rh
    Edited by: user13328234 on Oct 27, 2010 12:47 PM

    user13328234 wrote:
    Thanks for the suggestion. I was actually using it for validation, so I implemented a custom validator so I'm good now.
    But, for some reason I expected it to work with two converters specified, and I'm a little disappointed it didn't work.
    Thanks again,
    rhExpecting = assuming. Its getting old and annoying now, but it remains a very bad idea.
    The fact of the matter is that you have a very specific need. There is only one way to tailor to specific needs in a generic API: allow to override default behavior. The other option is to create a bloated API that tries to incorporate so many bells and whistles that it becomes unusable. So in my opinion, JSF is designed exactly the way it is supposed to be in this respect.

  • Fm for Validity Dates.

    Hi Gurus,
    I need Discount Condition Start Validity Date and Discount Condition End Validity Date along with condition details.
    I have tried  RV_INVOICE_DOCUMENT_READ &
    FM RV_PRICE_PRINT_HEAD is returning all the pricing conditions in the invoice in TKOMV, but I couldn't find the Validity Dates in TKOMV.
    please help me to sort out my problem.
    I have closed my previous [Thread|http://forums.sdn.sap.com/thread.jspa?threadID=2139454]
    Thanks & regards.

    Hi,
    try use COND_VALIDITY_FOR_SINGLE_DATE, may help u
    Thanks & regards.

  • Convert an integer value that was created with the Excel DATEVALUE formula to a valid date?

    Hello everyone,
    How can I convert an integer value that was created with the Excel DATEVALUE formula to a valid date in SSIS?
    Is this even possible?
    For example:
    =DATEVALUE("8/22/2008") will format the cell to display 39682.
    Reading the column as a string to get the int value (39682) - how can I turn this into a valid date using SSIS and then importing the real date to sql server?
    Thank you!

    You can use Script component for this and convert your integer values to Date. An example here is following:
    CultureInfo provider = CultureInfo.InvariantCulture;
    string dateString = "08082010";
    string format = "MMddyyyy";
    DateTime result = DateTime.ParseExact(dateString, format, provider);
    Source: http://stackoverflow.com/questions/2441405/converting-8-digit-number-to-datetime-type
    Vikash Kumar Singh || www.singhvikash.in

  • IFS-12635: SimpleXmlParser: Value(10/10/99) not valid for type (Date)

    I am trying to uplaod an xml document sample which has an attribute of date datatype.
    My sample is :
    <?xml version="1.0" standalone="yes"?>
    <document>
    <name> test</name>
    <createdate>1999/03/12</createdate>
    </document>
    I am getting this error:
    IFS-12635: SimpleXmlParser: Value(10/10/99) not valid for type (Date).
    If I input just the "name attribute" value, there is no problem. What is the date format, I should use?
    Please suggest.
    Thank you
    null

    Is there any way to specify the format in the custom type document itself. ? I do not want to specify the format in every document sample. Is there any way that it is possible. If I give the format in the document samples, as Matt said, there is no problem.
    Now I tried to give the format in the type document itself.
    I created a custom type document as follows:
    <?xml version="1.0" standalone="yes"?>
    <!--myTestType.xml-->
    <ClassObject>
    <Name>myTestType</Name>
    <Description> myTestType Document </Description>
    <Superclass Reftype ="name">Document</Superclass>
    <Attributes>
    <Attribute>
    <Name> Category </Name>
    <DataType> String </DataType>
    <DataLength> 80 </DataLength>
    </Attribute>
    <Attribute>
    <Name> posted_date </Name>
    <DataType format="mm-dd-yyyy"> date </DataType>
    </Attribute>
    </Attributes>
    </ClassObject>
    I could able to upload this to ifs. No problem at this time. But when I try to load the below sample, I am getting the same parse problem.(IFS-12635 SimpleXmlParser: Value(12-25-1992) not valid for type (Date.).
    sample xml document
    <?xml version="1.0" standalone="yes"?>
    <myTestType>
    <name> testing.myTestType</name>
    <Category>Administration_4</Category>
    <posted_date >12-25-1992</posted_date>
    </myTestType>
    Thank you.

  • Create popup - Makes user to enter a valid date

    I need to create a popup menu and I must make the user enters a valid date in order to continue processing.
    Thanks In-advance!
    JeffG

    use FM 'HELP_START' to display calender popup, with this use will always enter a valid date and in right user format.. see below example
    REPORT zpwtest.
    DATA : i_sel TYPE TABLE OF dselc ,
           i_value TYPE TABLE OF dval .
    DATA : w_help TYPE help_info .
    DATA : value TYPE help_info-fldvalue .
    PARAMETERS p_dat TYPE char10 .
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_dat .
      w_help-call = 'T' .
      w_help-tabname = 'SYST' .
      w_help-fieldname = 'DATUM' .
      w_help-spras = sy-langu .
      w_help-dynprofld = 'P_DAT' .
      w_help-report = sy-repid .
      w_help-dynpprog = sy-repid .
      CALL FUNCTION 'HELP_START'
           EXPORTING
                help_infos   = w_help
           IMPORTING
                select_value = value
           TABLES
                dynpselect   = i_sel
                dynpvaluetab = i_value.
      p_dat = value .

  • Unable to create BOMMAT IDOCs due to validity date issue

    Hello everyone,   (Posted in SAP-PP forum as well)
    I am having a unique issue with our Bills of Materials. After they are created and set to active, they have validity dates that go from 2001 to 9999. When I go to BD30 to distribute the BOM to the external systems I am getting the following error message:
    No bill of material exists on 08/25/2009 for 2557B27H02/FBLR/1/01
    Message no. BOM014
    Diagnosis
    You want to distribute BOM 2557B27H02/FBLR/1/01 via ALE. However, the BOM is invalid on 08/25/2009.
    System Response
    The system does not distribute the BOM.
    Procedure
    Check the BOM's validity.
    If you want to distribute all BOMs with the change status for another key date, enter another valid-from date on the initial screen.
    If you only want to distribute a certain BOM with the change status for another key date, enter another valid-from date or a change number on the selection screen.
    We get this for any BOM in this system.
    This is our QA environment and do not have this problem in our Development system. BD30 finds the BOM we specified but claims it is invalid on that date.
    We are trying to figure out if there is another status or approval step that I am missing here.
    SAP v4.7 level 19
    Thanks and points awarded for helpful answers!
    John

    Hi John
    Check you Material & Bill of Material in Table:  MAST & STKO whether they are valid or not .. Check valid from date in Bill of material
    Ramesh

  • Creating a external content type for Read and Update data from two tables in sqlserver using sharepoint designer

    Hi
    how to create a external content type for  Read and Update data from two tables in  sqlserver using sharepoint designer 2010
    i created a bcs service using centraladministration site
    i have two tables in sqlserver
    1)Employee
    -empno
    -firstname
    -lastname
    2)EmpDepartment
    -empno
    -deptno
    -location
    i want to just create a list to display employee details from two tables
    empid firstname deptno location
    and same time update  in two tables
    adil

    When I try to create an external content type based on a view (AdventureWorks2012.vSalesPerson) - I can display the data in an external list.  When I attempt to edit it, I get an error:
    External List fails when attached to a SQL view        
    Sorry, something went wrong
    Failed to update a list item for this external list based on the Entity (External Content Type) 'SalesForce' in EntityNamespace 'http://xxxxxxxx'. Details: The query against the database caused an error.
    I can edit the view in SQL Manager, so it seems strange that it fails.
    Any advice would be greatly GREATLY appreciated. 
    Thanks,
    Randy

Maybe you are looking for