CFINPUT with datefield type issue

I have a personal information form that has a hire date entry
field. I would like to make the field optional, yet I have to enter
a hire date as I get an error if I dont. The database autofills the
hire date field with the word "null" so if I submit the form
without entering a date, I get an error message saying: "Error
"null" is an invalud date or time string."
Also, in my database, I have Hire Date as a type DATE, null
is selected, and default is 0000-00-00. On a side note, even though
I have 0000-00-00 entered as the default, the word "null" still
populates the hire date field on the page.
Here is my code:
<cfformgroup type="horizontal" visible="yes" enabled="yes"
style="marginLeft:-74;" >
<cfinput type="Datefield" name="HireDate" label="Hire
Date:" width="80" bind="{contactList.selectedItem.HireDate}"
onchange="UpdateSelect(HireDate, selectYear1);"/>
<cfselect name="selectYear1" width="80" label=""
onchange="setStartYear(HireDate, selectYear1);">
<cfoutput>
<option value="">Pick Year</option>
<cfloop index="i" from="1935" to="#thisyear#">
<option value="#i#">#i#</option>
</cfloop>
</cfoutput>
</cfselect>
</cfformgroup>
Any help with this problem would be much appreciated.
Thanks,
Nick Butler

Hi Nick,
I am not sure which insert method you are using for inserting
your form information into the database. I prefer to insert
my
form information via a <cfquery>.
Below is the code I use in my forms and have not encountered
any issues with blank date fields being inserted into a DB.
<cfquery name="qry_name" datasource="yourdatasource">
Insert Into tbl_name (
db_field,
hiredate,
db_field)
Values(
nullif(<cfqueryparam cfsqltype="CF_SQL_VARCHAR"
value="#form.form_field#">,''),
nullif(<cfqueryparam cfsqltype="CF_SQL_DATE"
value="#form.hiredate#">,''),
nullif(<cfqueryparam cfsqltype="CF_SQL_VARCHAR"
value="#form.form_field#">,'')
</cfquery>
With the above code, should the person leave the hire date
field blank, it will
insert a null value into the db field. If the person enters a
date, it will insert the
date into the db field formatted as yyyy-mm-dd.
Leonard B

Similar Messages

  • Dump while doing goods issue against order with movement type 261

    Hi Team,
    We are integrating Asset management process along with the goods issue against the order which is created with a business partner for movement type 261.
    when we try to complete the process the system gives us a dump as described below.
    please look through the dump and advice for the same.
    Short text
        The current application triggered a termination with a short dump.
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    Error analysis
        Short text of error message:
        System error in the FI/CO interface
        Long text of error message:
         Diagnosis
             Updating of the FI/CO interface was called with object type "MKPF"
             yet the checks were run for object type "AMBU".
         System Response
             Checking and updating must be for the same object type.
         Procedure
             It has to do with a system error from the calling applications.
        Technical information about the message:
        Message class....... "RW"
        Number.............. 103
        Variable 1.......... "MKPF"
        Variable 2.......... "AMBU"
       Variable 3.......... " "
       Variable 4.......... " "
    rigger Location of Runtime Error
       Program                                 SAPLMBWL
       Include                                 LMBWLU21
       Row                                     62
       Module type                             (FUNCTION)
       Module Name                             MB_POST_GOODS_MOVEMENT
    46    IF xmkpf-xabln IS INITIAL.                               "note 434093
    47        CALL FUNCTION 'MB_XAB_NUMBER_GET'.                   "note 434093
    48    ENDIF.                                                   "note 434093
    49
    50 ENHANCEMENT-POINT MB_POST_GOODS_MOVEMENTS_01 SPOTS ES_SAPLMBWL STATIC.
    51
    52 ENHANCEMENT-POINT MB_POST_GOODS_MOVEMENTS_02 SPOTS ES_SAPLMBWL.
    53    CALL FUNCTION 'MB_CREATE_MATERIAL_DOCUMENT_UT'
    54         EXCEPTIONS
    55           error_message = 4.
    56 *  As soon as we have started to put things into UPDATE TASK, we must
    57 *  ensure that errors definitely terminate the transaction.
    58 *  MESSAGE A is not sufficient because it can be catched from
    59 *  external callers which COMMIT WORK afterwards, resulting in
    60 *  incomplete updates. Read note 385830 for the full story.
    61    IF NOT sy-subrc IS INITIAL.
    >>>       MESSAGE ID sy-msgid TYPE x NUMBER sy-msgno WITH            "385830
    63                  sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    64 *     MESSAGE A263.
    65    ENDIF.
    66 * Optische Archivierung
    67 * Spaete Erfassung mit Barcode
    68 * Redesign of barcode handling -> note 780365
    69   PERFORM barcode_update(sapmm07m) USING xmkpf-mblnr
    70                                          xmkpf-mjahr
    71                                          barcode.
    72
    73   MOVE-CORRESPONDING xmkpf TO emkpf.
    74   CALL FUNCTION 'MB_MOVEMENTS_REFRESH'
    75     EXCEPTIONS
    76       error_message = 4.
    77    MOVE-CORRESPONDING xmkpf TO emkpf.
    ource Code Extract
    ine  SourceCde
      32 *    BKPF as well. There is no other way to forward XBLNR to FI as not
      33 *    every document is posted by MB_CREATE -> a new function module in
      34 *    MBWL for transferring the information, called by FI, meant to load
      35 *    the complete function group for all MBxx postings when this isn't
      36 *    required (Performance). Would be the better way to transport the
      37 *    information after switching off MBxx in later release.
      38 *    corresponding IMPORT ... FROM MEMORY ... can be found in
      39 *    AC_DOCUMENT_POST (FORM FI_DOCUMENT_PREPARE (LFACIF5D))
      40      l_mem_id = 'MKPF-XBLNR'.                                   " 641365
      41      EXPORT xblnr = xblnr_sd TO MEMORY ID l_mem_id.             " 641365
      42    ELSE.                                                        "1245374
      43      l_mem_id = 'MKPF-XBLNR'.                                   "1245374
      44      FREE MEMORY ID l_mem_id.                                   "1245374
      45    ENDIF.

    Couple of notes are mentioned (385830, 780365 etc) and check whether these notes are applied.  If so, check with the ABAPer and go through the source code corrections explained in the respective notes.
    You may also go through the following notes
    1)  Note 386656 - FBV4: RW103 'System error in the FI/CO interface'
    2)  Note 388316 - RW103 "System error in the FI/CO interface"
    3) Note 543463 - Inconsistent Posting in budgetary ledger and/or RW102/RW103
    thanks
    G. Lakshmipathi

  • Posting Data Issue with IDOC Type : COND_A03

    Friends,
    I'm posting the data from Middleware(Message Broker) to SAP using the IDOC Type : COND_A03 with Message Type : COND_A.
    For this IDOC,I'm populating the below Segment's data.
    Segement :E1KOMG:
    Fields:
    KVEWE,KOTABNR,KAPPL ,KSCHL,VAKEY ,KONDA,MATNR .
    Segement :E1KONH:
    Fields:
    KNUMH,DATAB,DATBI
    Segement :E1KONP:
    Fields:
    KSCHL,STFKZ,KSTBM,KSTBW,KRECH ,KBETR,KONWA,KPEIN,KUMZA,KUMNE,MXWRT,GKWRT,ZAEHK_IND ,KBRUE,VALTG,
    VALDT,ANZAUF,MIKBAS,MXKBAS,KOMXWRT,KLF_STG,KLF_KAL
    Problem:  In SAP, IDOC's are processing successfully with status 53 and updating the tables : KONH,KONP  successfully.
    But Table A957 which is passing against KOTABNR field is not pupulating with the Materials passing.
    Can anyone please guide me why the Materials are not populating in the table : A957.
    Regards,
    Sreeram

    Hi,
    I guess there might be some issue with VAKEY population.
    All the key fields in A957 should be concated properly while populating VAKEY. (Leading zeros must be prefixed to the material)
    Regards,
    Ganga

  • Issue: "No Authorization to send Idocs with message type Orders" - IDX5

    Hi All,
       I am working on a File to IDoc(Orders.Orders05) scenario. The sender is PI Server and the receiver is the SAP ISR system. A technical system has been created in PI SLD for the ISR system and a Business system is added to that. The logical system created in ISR system using Tcode BD54 is added to the business system in PI. A new RFC destination is created in PI system to connect to the ISR system.
      On the ISR system Partner profile is created using TCode we20 with the same logical system name already created using Tcode BD54.
    When sxi_monitor is executed on the PI system, It shows checked flag on the Inbound side and Red flag on the Outbound side. And when idx5 is executed, it shows the new Idoc number and when it is double clicked, it shows the Status Text as
    "No Authorization to send IDocs with message type Orders".
    All authorizations have been provided on the Sender side.
    Please let me know if any authorization need to be provided on the ISR system or Is this an error on any settings.
    Thanks in Advance.
    Stalin S.

    Hi,
    Check this Thread which deals with the Authorization Issue
    RFC Adapter
    And also check this how to check whether u have sufficient authorization to send the Idocs or not
    To test the Authorization check
    Double click the RFC Destination that u have created in XI towards R/3 in SM59
    Select UtilitiesTestAuthorization test
    By this you can come to know whether your user is having the propper authorization or not
    REgards
    Seshagiri

  • Error in Goods issue with movement type 541

    Dear Users,
    I have created a Sub contracting PO. After that when i m issuing the goods to vendor with movement type 541, its giving the following error: Movement type 541 is not planned for this operation.
    Please help me out

    You can provide material to vendor either using Transaction codes :
    1.  MIGO - Transfer Posting - Other - Movement type 541
    2.  MB1B - Movement type 541  or
    3.  ME2O - Mention the vendor & execute
    S. Kumar

  • Printing issue in smartform with output type

    Hi ,
    I am facing issue while I am taking print from zebra printer.
    I am trying to take a print from MB90 but its not coming but its giving status 'processed' and same from the spool, in spool its showing status complete but not giving any printout.
    if I m attaching  my smartform with another output type which already working for another label(smartform), then its giving print.
    So, what I want to know..
    Its can be a problem with output type config or from basis side.
    Please help.
    Thanks,
    Sandeep

    well i have seen setting are correct but having one issue it doesnt trigger automatically I do it manually from MB90 and rest of the things are correct becaoz i have seen while debug its going correct form from driver program, when i am runniing from MB90 manually .
    Thanks,
    Sandeep

  • Does SAP or Oracle have an issue with these type of processors?

    Does SAP or Oracle have an issue with these type of processors?
    Intel Xeon X5260 & E5450    vs    Intel Itanium       PROCESSORS
    I want a Sales / Marketing URL link or white papers that talks about processor recommendations.
    SAP GUI  7.20

    > Does SAP or Oracle have an issue with these type of processors?
    >
    > Intel Xeon X5260 & E5450    vs    Intel Itanium       PROCESSORS
    >
    > I want a Sales / Marketing URL link or white papers that talks about processor recommendations.
    SAP does neither "recommend" nor "deny" any processors.
    If you check http://service.sap.com/benchmarks then you get a lot of machines with different CPUs/operating ssytems and database combinations.
    Choose the one that suits best for you.
    Markus

  • Issue with Movement type

    Dear Experts,
    I am facing issue and in understanding with movement type 103,105 and 106.
    Purchase order has been created with 100 pcs
    1) Movement type 103 made for block stock.
    2) Movement type 105 to remove stock from block stock.
    3) Movement type 106 to reverse 105?
    When I try to check EKBE table it shows me different entry
    Purchase document EBELN compare with Reference document LFBNR
    Movement type 103     Reference document is same document number
    Movement type 105     Give reference document number as 103
    Movement type 106     Give reference document number as 103.
    Question - Why Movement type 106 show reference document number of 103.              
    Thanks
    AB

    hi,
    Please check the table MSEG. for 106, it will have reference for material document of 105
    field SMBLN instead of LFBNR
    With this field, you can go for the logic.
    select all docs from EKBE
    Moreover, you can use field MKPF-XBLNR for getting the delivery note field which will be same for cancelation docs. for ex 105 and 106 wil have this same value
    this field will make it easy for you to group the GR and their reversals for calculations.
    Regards
    Vivek Singh

  • Problem in Material issue to WBS with movement type 261 Q

    Dear Experts,
                        I have sceario where i have to make delivery from project.But when i am issuing goods to WBS with movement type 261 Q its showing following errors.Can anyone put some light on it.
    Special stock 0001 Q  AS0111 000000000000000015 of this material does not exist
    Message no. M7076
    Diagnosis
    No special stock Q of the material (batch ) exists in storage location 0001 for AS0111 000000000000000015.
    Regards

    Hello,
    This is simple scenario. System is using 281 Q in CNS0. As you have procured through Q indicator WBS is mandatory in PO.
    So when you will take GRN , it will be consider as project stock if quality check is not there else will go in quality first. Check MBBS report for this.
    Now do CNS0 with reference to project number. So materials from project stock will get consumed when you will do PGI for CNS0 material document.
    Your scenario is failing in this stage becasue system didnt find stock against particular WBS element.
    Check this and revert.
    Keshav

  • Issue with Message Type Triggering during Inbound Delivery Creation

    Hi Experts,
    Hi Experts, 
    Currently we are facing issue with message type triggering during inbound delivery creation:
    In NACE transaction for Inbound delivery we have 3 custom output types:
    Pricing Procedure Used is standard one -> E10001
    Z140  Inbound Delivery Create  (This should get triggered when IB delivery is created)
    Z141  Inbound Delivery Change (This should get triggered when IB Delivery is changed)
    Z142  Inbound Delivery Delete(This should get triggered when IB Delivery is deleted).
    At present if i check delivery in  VL33 -> Extras -> Delivery Output
    Both  Z140 and Z141 are being triggered during IB delivery creation. While it should be only Z140.
    Could you please suggest that are we missing any configuration in SPRO or we need to create any custom routine (requirement) to handle this?
    Thanks

    Hi,
    There is no fine-tuned control for inbound delivery messages as for Purchase order. Hence I guess to meet your above requirement, you have to go for a custom solution similar to the PO fine tune control settings.
    Thanks,

  • Issue with Data type 'Date' in Hyperion Planning V11.1.2.2

    Hi,
    I have created members with data type date. However when I save the date, it either disappears or comes up with a random date? Has any one come across this kind of problem before?
    If so can you share the fix.
    Thanks in advance for your help.
    Cheers,
    XXX

    Hi
    This problem is linked to you not having a consistent setting for your date input type.
    So, go to application administration and set the date format to MM/DD/YYYY in application settings and display options, under current application defaults. Then after you have done this as a user go to User Preferences and display options and on the date format select the same. Or remove the Automatically detect.
    I have seen this behaviour if you have Automatically Detect on the user preferences
    Thanks
    Anthony

  • Overprint issue with white type.

    We have been creating Digital PDF successfully for over 10 years. This is a problem that comes along once in a great blue moon.
    Please read complete text before forming an opinion or answering the questions. The focus of these questions are on Digital AD's from outside vendors/customers.
    We create our publications using Quark 6.5 on Windows XP
    (We are locked into this version because of some other proprietary software tied into Quark, so upgrading Quark is not an option for us).
    We compose a page of some type, some MAC EPS Illustrator 5.1  files and at least one Digital AD (PDF's which are  from our advertisers/customer that we pre-flight) on to the page.
    Print the page to a postscript file, distill postscript file with Acrobat Distiller Ver. 7 on PC's into a PDF file with Crops and Registration Marks.
    We got a PDF (Digital AD) from a customer that was created in InDesign CS6 on a Mac. There is some white type in the AD ( See Photo Below)
    The Last "E" in Engineered is selected in each screen shot.
    The Top one is the AD untouched before Pre-flighting it. The White Type "E" letter is set to knock out and is still type (not converted to outlines).
    (Pitstop is showing this in the dialog box on the right)
    In the Bottom screen shot the type has been converted to outlines and is set to overprint.
    First problem is white type should never overprint. Unless you specifically set it to in the original program.
    This type was originally set to knockout and then when it was distilled from a Postscript file from Quark into a PDF with "Preserve Overprint Settings" check in (Distiller Settings) the type is converted to outlines and the type was set to overprint.
    (If I turn off "Preserve Overprint Settings" and re-distill the postscript file the type doesn't convert to outlines or change to overprint.... it remains a knockout.)
    Second Problem is catching this while using preflight tools. I have Pitstop tools to show Overprinting and Acrobat has a Output Preview/Color Warnings/Show Overprinting feature too.
    Using Pitstops Overprint does show it in the inspector window, but not a Pitstop report.
    Acrobat's Show Overprinting does NOT show that the type has been set to overprint.
    So our workflow now is to flag any white type and check it throughout the whole pre-press process to make sure the type holds the knockout function.
    Below is a scan of how the type ran when it was printed on sheet feed printing press paper.
    Talk about overprinting... this is not what it looked like in the above pictures.
    I am aware of this problem from Illustrator. It's an order of operations when dealing with white type.
    If you set type, change the color  to something other than 100% black and then convert it to outlines... it will knockout.
    If you set type, convert to outlines and THEN change the color from black to white, it will hold the overprint from being black type.
    It doesn't always do this every time, but it does happen enough that I have to double and triple check my white type.
    Questions:
    Does anyone have this problem in their workflow (White Type Overprinting) and do you have a solution to better catch this when you have to process 50+ AD's each week?
    Obviously anything with white type will be looked at much closer now that this AD got through. It would be nice if these settings would hold through the whole preflight to printed piece process.
    Any Words of Wisdom would be appreciated too.

    You can set Pitstop up to catch this and even fix it.
    In the preflight profile, under 'Text', select 'White Text' and add it to the list of checks, you can also enable the fix as well so it's just resolved.
    I'm using PitStop 11 update 2, but it's in earlier versions as well.
    If you need futher information you can always drop me a mail. I am the Product Manager for PitStop, [email protected]

  • Unicode and non-unicode string data types Issue with 2008 SSIS Package

    Hi All,
    I am converting a 2005 SSIS Package to 2008. I have a task which has SQL Server as the source and Oracle as the destination. I copy the data from a SQL server view with a field nvarchar(10) to a field of a oracle table varchar(10). The package executes fine
    on my local when i use the data transformation task to convert to DT_STR. But when I deploy the dtsx file on the server and try to run from an SQL Job Agent it gives me the unicode and non-unicode string data types error for the field. I have checked the registry
    settings and its the same in my local and the server. Tried both the data conversion task and Derived Column task but with no luck. Pls suggest me what changes are required in my package to run it from the SQL Agent Job.
    Thanks.

    What is Unicode and non Unicode data formats
    Unicode : 
    A Unicode character takes more bytes to store the data in the database. As we all know, many global industries wants to increase their business worldwide and grow at the same time, they would want to widen their business by providing
    services to the customers worldwide by supporting different languages like Chinese, Japanese, Korean and Arabic. Many websites these days are supporting international languages to do their business and to attract more and more customers and that makes life
    easier for both the parties.
    To store the customer data into the database the database must support a mechanism to store the international characters, storing these characters is not easy, and many database vendors have to revised their strategies and come
    up with new mechanisms to support or to store these international characters in the database. Some of the big vendors like Oracle, Microsoft, IBM and other database vendors started providing the international character support so that the data can be stored
    and retrieved accordingly to avoid any hiccups while doing business with the international customers.
    The difference in storing character data between Unicode and non-Unicode depends on whether non-Unicode data is stored by using double-byte character sets. All non-East Asian languages and the Thai language store non-Unicode characters
    in single bytes. Therefore, storing these languages as Unicode uses two times the space that is used specifying a non-Unicode code page. On the other hand, the non-Unicode code pages of many other Asian languages specify character storage in double-byte character
    sets (DBCS). Therefore, for these languages, there is almost no difference in storage between non-Unicode and Unicode.
    Encoding Formats: 
    Some of the common encoding formats for Unicode are UCS-2, UTF-8, UTF-16, UTF-32 have been made available by database vendors to their customers. For SQL Server 7.0 and higher versions Microsoft uses the encoding format UCS-2 to store the UTF-8 data. Under
    this mechanism, all Unicode characters are stored by using 2 bytes.
    Unicode data can be encoded in many different ways. UCS-2 and UTF-8 are two common ways to store bit patterns that represent Unicode characters. Microsoft Windows NT, SQL Server, Java, COM, and the SQL Server ODBC driver and OLEDB
    provider all internally represent Unicode data as UCS-2.
    The options for using SQL Server 7.0 or SQL Server 2000 as a backend server for an application that sends and receives Unicode data that is encoded as UTF-8 include:
    For example, if your business is using a website supporting ASP pages, then this is what happens:
    If your application uses Active Server Pages (ASP) and you are using Internet Information Server (IIS) 5.0 and Microsoft Windows 2000, you can add "<% Session.Codepage=65001 %>" to your server-side ASP script.
    This instructs IIS to convert all dynamically generated strings (example: Response.Write) from UCS-2 to UTF-8 automatically before sending them to the client.
    If you do not want to enable sessions, you can alternatively use the server-side directive "<%@ CodePage=65001 %>".
    Any UTF-8 data sent from the client to the server via GET or POST is also converted to UCS-2 automatically. The Session.Codepage property is the recommended method to handle UTF-8 data within a web application. This Codepage
    setting is not available on IIS 4.0 and Windows NT 4.0.
    Sorting and other operations :
    The effect of Unicode data on performance is complicated by a variety of factors that include the following:
    1. The difference between Unicode sorting rules and non-Unicode sorting rules 
    2. The difference between sorting double-byte and single-byte characters 
    3. Code page conversion between client and server
    Performing operations like >, <, ORDER BY are resource intensive and will be difficult to get correct results if the codepage conversion between client and server is not available.
    Sorting lots of Unicode data can be slower than non-Unicode data, because the data is stored in double bytes. On the other hand, sorting Asian characters in Unicode is faster than sorting Asian DBCS data in a specific code page,
    because DBCS data is actually a mixture of single-byte and double-byte widths, while Unicode characters are fixed-width.
    Non-Unicode :
    Non Unicode is exactly opposite to Unicode. Using non Unicode it is easy to store languages like ‘English’ but not other Asian languages that need more bits to store correctly otherwise truncation will occur.
    Now, let’s see some of the advantages of not storing the data in Unicode format:
    1. It takes less space to store the data in the database hence we will save lot of hard disk space. 
    2. Moving of database files from one server to other takes less time. 
    3. Backup and restore of the database makes huge impact and it is good for DBA’s that it takes less time
    Non-Unicode vs. Unicode Data Types: Comparison Chart
    The primary difference between unicode and non-Unicode data types is the ability of Unicode to easily handle the storage of foreign language characters which also requires more storage space.
    Non-Unicode
    Unicode
    (char, varchar, text)
    (nchar, nvarchar, ntext)
    Stores data in fixed or variable length
    Same as non-Unicode
    char: data is padded with blanks to fill the field size. For example, if a char(10) field contains 5 characters the system will pad it with 5 blanks
    nchar: same as char
    varchar: stores actual value and does not pad with blanks
    nvarchar: same as varchar
    requires 1 byte of storage
    requires 2 bytes of storage
    char and varchar: can store up to 8000 characters
    nchar and nvarchar: can store up to 4000 characters
    Best suited for US English: "One problem with data types that use 1 byte to encode each character is that the data type can only represent 256 different characters. This forces multiple
    encoding specifications (or code pages) for different alphabets such as European alphabets, which are relatively small. It is also impossible to handle systems such as the Japanese Kanji or Korean Hangul alphabets that have thousands of characters."<sup>1</sup>
    Best suited for systems that need to support at least one foreign language: "The Unicode specification defines a single encoding scheme for most characters widely used in businesses around the world.
    All computers consistently translate the bit patterns in Unicode data into characters using the single Unicode specification. This ensures that the same bit pattern is always converted to the same character on all computers. Data can be freely transferred
    from one database or computer to another without concern that the receiving system will translate the bit patterns into characters incorrectly.
    https://irfansworld.wordpress.com/2011/01/25/what-is-unicode-and-non-unicode-data-formats/
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • With display type native event is not working in my wd application

    Dear Friends,
    I have few interactive forms created webdynpro components.
    in SFP: formtype: ZCI and inserted the webdynpro script in the layout and interface type is DDIC.
    in Webdynpro: taken IF form UI element and with Enable check box checked(ON) and display type is Native.
    when i run my wd application interactive forms is opening but when i click on button on webdynpro or on enter of input field event is not getting trigger. cursor is showing wait icon and in busymode only.
    if i try with display type as activex it is working fine.
    But i don't want to use type as Activex.
    One more thing initially i have created 2 interative forms with those forms with displya type native is working fine, for new forms only the poblem is coming.
    please let me know how to get rid of this.
    Thanks,
    Mahesh.Gattu

    Hi ganesh,
    i hope you have already followed the process what i mentioned in my question.
    above that some times we are facing this busy mode issues, might be.. there coudl be some problem when we insert the webdynpro script.
    on sfp layout from utilities insert the webdynpro script.
    then sheck the script editor by selecting the data node in hierarchy tab.
    make sur the both event *presave and *formload are filled with some in built script and the language is Java script and Client side.
    then save activate the form and try.
    all the best.
    Thanks,
    mahesh.gattu

  • Purchase Order is generated after MRP for Material with MRP Type ND

    Hi Everyone,
    Material type := HAWA
    My material procurement type = F i.e. External Procurement.
    MRP Type = ND in Production server , and VB in Quality
    Lot Size = EX
    Material Status :- 15 Pre-release both for Quality and production server
    The Material is bulk material and bulk material indicator is set.
    Purchasing View is also maintained for the same.
    Planning Strat = Z5 Company specific
    Special procurement key:- Z7 Company specific
    I am running MD02 with following parameters.
    Create Pur Req =1, PR
    Create MRP List = 1, MRP List
    Delivery Schedule = 3, Schedule Lines
    Planning Mode = 2 Re- Explode BOM & Routing
    Scheduling = 1
    Issue:
    After MRP run, system is  generating PR, Though with MRP type ND purchase requisition should not be generated.
    Observation:- Looks like there is inconsistency of material date in Quality and production server.
    When I tried to run the planning , The Error message was generated"Material status is set to pre- release.
    After changing the material status to 20 (Active ) , when we run the MRP , The error message is generated "Material is not planned automatically "
    We havent been able to locate the root cause so far
    Please guide us
    Thanks in Advance,
    Ayaz
    Edited by: Ayaz Alam Khan on Feb 16, 2011 2:41 PM

    IF the material is ND, system won't Run MRP for the material
    Observation:- Looks like there is inconsistency of material date in Quality and production server.
    There is no link
    When I tried to run the planning , The Error message was generated"Material status is set to pre- release.After changing the material status to 20 (Active ) , when we run the MRP , The error message is generated "Material is not planned automatically "
    system will read the X plant  material status or plant specific material status first and then only system will read MRP type

Maybe you are looking for

  • Receiver Mail Adapter: Formatting the mail content

    Dear All, I'm using a receiver mail adapter. I would like to format the content of the mail using the contents of the XML message. For example: XML Message <Order>   <OrderID>1234</OrderID>   <CustomerName>Sandeep Joseph</CustomerName>   <NetValue>74

  • Business Area Not visible at document display

    Dear All, I have confi. document spllitting.  Posted documents with busines area and profit centre. But at document display business area filed is not appearing. Only Profit Centre is appearing Please let me know wht is the problem. Regards Partha

  • Alerts for Decentralized AE (not related to alertcatdef or RWB configs)

    HI Experts How do u configure alerts for Decentralized (not the central engine i.e not related to ALRCATDEF or RWB configs) engine? is there any other ways for conferring alerts other than ALERTCATDEF? Thanks in Adv, Munna.

  • BIT MAP & BTREE INDEX

    Hi Friends, How to create the bitmap index? Pls given the syntax When should we create the Btree index? Given one example btree index regs renga

  • I-movie thumbnail images won't display only a gray box is present

    I was working with my i-movie when every thumbnail image in both panes became gray as opposed to having images from the clip. The movies still play fine, but it is impossible to do any editing when you can't see what is in each frame. Any help would