HELP! date pass to script not display in date format

hi all,
i want to include final approver date into Puchase Order, and i call up a form, getting the date from CDHDR. however, when i return the date back to the script, the date display in PO are out of date format.
original : 16.07.2007
but it shows as : 20070716
how am i going to change it to the actual proper format in script?
very thanks for the help first.

hi,
but i have other date ( such as create date) which are showing correctly. the create date gets directly from table.
i tried to use the SET DATE, but there is no charge on it. my actual code is as below:
/:           PERFORM GET_TEST IN PROGRAM Z_TESTING6
/:           USING &EKKO-EBELN&
/:           CHANGING &UDATE&
/:           ENDPERFORM
PO            Release Date,,&UDATE&
can only one help me. thanks

Similar Messages

  • HELP! Ovi suite does not display Photos only thumb...

    Hi, please help. Ovi Suite does not display Photos saved in my computer. Just getting Default grey image for everything on the thumbnails. OS XP home (Service ack 3). Run the repair and nothing. I uninstalled the application deleted everything to do with Nokia. Downloaded the application again and still the same problem. Nokia Ovi version 3.1.0.84. The only problem is that, Just shows grey thumbnails and no thumbnail photos. See screenshot attatched
    I followed this troubleshooting steps and it still the same issue!..
    Step 1
    - Go to Add/Remove in Control Panel
    - Click Ovi Suite
    - Click Repair.
    Once repair is completed then please restart computer and check.
    If Step 1 didnt work, then try the below step
    Step2
    -Go to Add/Remove in Control Panel
    - Click Ovi Suite
    - Click Uninstall
    Also uninstall the following f
    - Nokia Connectivity Cable Driver
    - PC connectivity Solution
    Then right click my computer, click manage.
    - Device Manager-Ports- If you find anything by name Nokia please unistall ( Dont remove anything else)
    Then reinstall windows Installer from the link provided below
    http://www.microsoft.com/downloads/en/details.aspx​?FamilyID=5a58b56f-60b6-4412-95b9-54d056d6f9f4&di...
    - Then restart computer.
    - Download and install Ovi Suite
    - Restart Computer again
    - Connect the device, dont open Ovi Suite and wait for all the driver to be loaded by windows.
    - Once done then lauch Ovi Suite.
    - Check for the issue
    Attachments:
    Dibujo.JPG ‏83 KB

    I guess sometimes this happens when the direct x is missing or corrupted in the system. Please download and install from the link provided below.
    http://www.microsoft.com/downloads/en/details.aspx?familyid=2da43d38-db71-4c1b-bc6a-9b6652cd92a3
    Make sure you restart the computer when the installation is complete..
    Hopefully this helps
    Show appreciation by clicking the kudos star :-), or gesture by typing thanks

  • Script not displayed threw driver program

    script is not displayed threw driver program i have only one window n one main window n only text in tahat still its not displayed n gives error " Form zasi_sript4 language EN is not active a
    no errors". code is below
    *& Report  ZASI_SRIPT4P
    REPORT  ZASI_SRIPT4P.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
       FORM                              = 'zasi_sript4'.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'START_FORM'
    EXPORTING
       FORM                   = 'zasi_sript4'.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'E1 '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
       WINDOW                         = 'MAIN'
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'E2'
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
       WINDOW                         = 'window1'
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF.
    CALL FUNCTION 'END_FORM'
    IMPORTING
      RESULT                         = zasi_sript4p.
    EXCEPTIONS
       UNOPENED                       = 1
       BAD_PAGEFORMAT_FOR_PRINT       = 2
       SPOOL_ERROR                    = 3
       CODEPAGE                       = 4
       OTHERS                         = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      CODEPAGE                       = 5
      OTHERS                         = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    Hi,
    here you no need to write start form and end form
    REPORT ZASI_SRIPT4P.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    FORM = 'zasi_sript4'. " change here
    IF SY-SUBRC 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'E1 '
    * FUNCTION = 'SET'
    * TYPE = 'BODY'
    WINDOW = 'MAIN'
    IF SY-SUBRC 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT = 'E2'
    * FUNCTION = 'SET'
    * TYPE = 'BODY'
    WINDOW = 'window1'  "is this same window or different window? if same window ,give name as 'MAIN'
    IF SY-SUBRC 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF.
    CALL FUNCTION 'CLOSE_FORM'
    * IMPORTING
    * RESULT =
    * RDI_RESULT =
    ** TABLES
    ** OTFDATA =
    ** EXCEPTIONS
    * UNOPENED = 1
    * BAD_PAGEFORMAT_FOR_PRINT = 2
    * SEND_ERROR = 3
    * SPOOL_ERROR = 4
    * CODEPAGE = 5
    * OTHERS = 6
    IF SY-SUBRC 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    with regards
    Naresh

  • Pls Help! My content does not display!!

    Hi
    The customised content i have cretaed does not display.
    I created an URL iview. I created a page and added the iview to the pager. I then cretaed a role, within the role editor i created a folder(Test) and then added the page to the role. I assigned myself the role.
    Opened up a new session, Test does not exists in the navigation bar.
    How do i get it to display ?

    Hi,
    You must make either the role, or the folder that you've created inside of it, an entry point.
    When you are looking at your role in the editor (where you add pages, iviews etc to your role) you will see on the right hand side of the page some propeties. Select 'Show All' and then change 'Entry Point = No' to 'Entry Point = Yes'. Or you can select your folder, press the 'Properties' button, now the properties on the right hand side are for the folder inside the role, not the role. Here you can make the folder the entry point if you like.
    Everything inside an entry point is visible, whether or not it's own 'Entry Point' property is selected as 'Yes'. This means that if you make the role and 'Entry Point' everything that you add to the role will be visible.
    I hope it helps,
    Patrick.

  • Formula variable not displayed in proper format

    Hai,
         I used a keyfigure formula variable, that gets current date, in a query (In columns, key figure structure to calculate no. of days). The no. of days are calculated peoperly and everything is just perfect.
    But after executing the query, when I display text element=> variables, the system is displaying the variable as 20,060,803 as opposed to date format like 8/3/2006.
    Question: Is it how the date formula variable is displayed or there is a system error?
    I remember seeing it in date format.
    Can somebody comment on this or suggest a solution.
    I couldn't find notes on this too!

    In the restricted key figure formula definition, use the Data function "Process Value as Date DATE" and enclose your restricted key figure calculation inside the date parenthesis.
    I have another related problem.  I am trying to use dates to calculate 30 days before a (date formula variable), 60 days after, etc.  Some of the dates are calculating correctly, but some are just returning an X.  All appear to be extracting with the same format.
    Anyone have a similar problem?

  • Need help - Date format in es Tag / LoadedData

    hi,
    I have one Date attribute called 'EXPIRATION_DATE' in DOCUMENT table.
    I mapped this column entry in 'application-config.xml' as jdbc.column.EXPIRATION_DATE=ExpirationDate;
    And when I am trying to get this value in JSP,within '<es:forEachInArray>' tag
    scope, using the syntax below
    <%
    String strDate = (String)doc.getProperty("LodedDate","ExpirationDate");
    %>
    I am getting different formatted results in different environments
    Like , when I executed this in windows ,
    I got the resulted string as "Mon Jul 07 00:00:00 EDT 2003" , which can be converted
    to 'Date' type
    using <% Date exp_date = new Date(strDate); %> which solves my problem.
    But , when I executed same code to UNIX ,
    I got the resulted string as "2009-02-01 00:00:00.0" , which is not convertible
    to 'Date' format.
    I got the following exception , when I try to convert this resulted String to
    date format like.
    <% Date exp_date = new Date(strDate); %>
    java.lang.IllegalArgumentException
    at java.util.Date.parse(Date.java:585)
    at java.util.Date.<init>(Date.java:267)
    Finally , I need to convert the resulted string to "MMM dd, yyyy" (Feb 22, 2000)format.
    If not above method , what is the best way to get the resulted value in this "MMM
    dd, yyyy" format.
    /***** My Sample code ********/
    <es:forEachInArray array="<%=BankerMsgs%>" id="doc" type="Content" >
    <%String strDate = "";
         strDate = (String)doc.getProperty("LodedDate","ExpirationDate");     //strDate =
    "Mon Jul 07 00:00:00 EDT 2003"; // Windows
         //strDate = "2003-07-07 00:00:00.0"; // UNIX
         out.println("Original Date is :" + strDate); // In windows env I got this formatted
    result 'Mon Jul 07 00:00:00 EDT 2003' and In UNIX I got the string as '2003-07-07
    00:00:00.0'
         SimpleDateFormat formatter = new SimpleDateFormat ("MMM dd, yyyy");
         Date strDate12 = new Date(strDate);
         String strExpDate = "";
         try
              strExpDate = formatter.format(strDate12);
              out.println("Formatted Date is :" + strExpDate); // in windows I got correct
    result as 'Jul 07, 2003' and in UNIX java.lang.IllegalArgumentException
         catch(Exception e) {}
    %>     
    </es:forEachInArray>
    Any help will be much appreciated.
    thanks
    -Amar Purumandla

    hi,
    I have one Date attribute called 'EXPIRATION_DATE' in DOCUMENT table.
    I mapped this column entry in 'application-config.xml' as jdbc.column.EXPIRATION_DATE=ExpirationDate;
    And when I am trying to get this value in JSP,within '<es:forEachInArray>' tag
    scope, using the syntax below
    <%
    String strDate = (String)doc.getProperty("LodedDate","ExpirationDate");
    %>
    I am getting different formatted results in different environments
    Like , when I executed this in windows ,
    I got the resulted string as "Mon Jul 07 00:00:00 EDT 2003" , which can be converted
    to 'Date' type
    using <% Date exp_date = new Date(strDate); %> which solves my problem.
    But , when I executed same code to UNIX ,
    I got the resulted string as "2009-02-01 00:00:00.0" , which is not convertible
    to 'Date' format.
    I got the following exception , when I try to convert this resulted String to
    date format like.
    <% Date exp_date = new Date(strDate); %>
    java.lang.IllegalArgumentException
    at java.util.Date.parse(Date.java:585)
    at java.util.Date.<init>(Date.java:267)
    Finally , I need to convert the resulted string to "MMM dd, yyyy" (Feb 22, 2000)format.
    If not above method , what is the best way to get the resulted value in this "MMM
    dd, yyyy" format.
    /***** My Sample code ********/
    <es:forEachInArray array="<%=BankerMsgs%>" id="doc" type="Content" >
    <%String strDate = "";
         strDate = (String)doc.getProperty("LodedDate","ExpirationDate");     //strDate =
    "Mon Jul 07 00:00:00 EDT 2003"; // Windows
         //strDate = "2003-07-07 00:00:00.0"; // UNIX
         out.println("Original Date is :" + strDate); // In windows env I got this formatted
    result 'Mon Jul 07 00:00:00 EDT 2003' and In UNIX I got the string as '2003-07-07
    00:00:00.0'
         SimpleDateFormat formatter = new SimpleDateFormat ("MMM dd, yyyy");
         Date strDate12 = new Date(strDate);
         String strExpDate = "";
         try
              strExpDate = formatter.format(strDate12);
              out.println("Formatted Date is :" + strExpDate); // in windows I got correct
    result as 'Jul 07, 2003' and in UNIX java.lang.IllegalArgumentException
         catch(Exception e) {}
    %>     
    </es:forEachInArray>
    Any help will be much appreciated.
    thanks
    -Amar Purumandla

  • Cfgrid not displaying in flash format

    <cfform format="flash" width="1000"
    action="editContact.cfm">
    <cfgrid name="contact" query="contact_details"
    selectmode="edit" insert="yes" delete="yes" height="200"
    width="1000" align="middle">
    <cfgridcolumn name="ID" display="no">
    <cfgridcolumn name="FIRST_NAME">
    <cfgridcolumn name="LAST_NAME" >
    <cfgridcolumn name="JOB_TITLE">
    <cfgridcolumn name="EMAIL" >
    <cfgridcolumn name="PHONE">
    </cfgrid>
    <br>
    <cfinput type="submit" value="submit" name="submit">
    </cfform>
    Hi, the code above using cfgrid in flash format used to
    display perfectly. But after some time, without changing the code,
    cfgrid is not displaying anymore. Any reasons why this is
    happening? Thanks.

    What error do you see? Anything?
    Try tracing the page request by using coldfusion/jrun's
    sniffer.exe,
    Charles, or some other
    tool. See what is going on. If the applet is starting to load,
    enable the java console and review the errors there.
    Does this issue happen on multiple client machines or just
    one? What version of CFMX7 are you using (run sysinfo from
    cfadmin).

  • Help: Date Format Mask Issue year 0004 instead of 2004

    Hi,
    I set Date Format Mask as MM/DD/YYYY for a date field. However, when user enter
    12/31/04 the result turned out as 12/31/0004
    Of course, I'd like user put 12/31/2004, but 12/31/04 leads to 12/31/0004 has to be stopped.
    Any suggestions?
    Thank you in advance.
    Jimmy

    Thank you very much Francois and it works for me.
    Jimmy

  • Help Pls -- Simple Validation Script not working

    -- yet another form I am working on --
    I have a numeric field and the entry number can't be no larger than 7 -- I have tried different variations of the script, and I don't know why it isn't working. I know it's something simple..just can't see it!
    Please help!
    ----- topmostSubform.Page1.NumericField12[0]::exit: - (JavaScript, client) -------------------------
    if topmostSubform.Page1.NumericField12[0].rawValue >= 8
    xfa.host.messageBox("Invalid Number Must be 7 or smaller");

    Thanks..you helped me before.....thanks a million...
    I got it to work with the validation feature also...
    I'm gonna take this opportunity to solve another problem -- a real one this time..
    Fields A and B - read only numeric fields (calculated)
    new field C - requires Field A divided by Field B and then check to see if correct radio button is checked and if not then put an asterick beside number in Field C! Hope this makes sense...
    Field C - a/b I get an arithmetic overflow/underflow message...
    Please help again!

  • Please help. my images/web page not displaying ( just outlines) when checking in my browser

    Hi. I am using an old dreamweaver. thats not the problem. I
    view my web site in browser to check all ok. When i click my link
    to next page, it will open it in new window as it should do, but
    displays no images (apart from my email link) just outlines.
    Is it my folder location?? it is c:/mywebsites/mywebfolder
    If i open each page directly to view they are all fine just
    when i go from my links..
    Helpppppp please

    Did you define your local site?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "janeie" <[email protected]> wrote in
    message
    news:es3v7h$mo9$[email protected]..
    > Hi. I am using an old dreamweaver. thats not the
    problem. I view my web
    > site in
    > browser to check all ok. When i click my link to next
    page, it will open
    > it in
    > new window as it should do, but displays no images
    (apart from my email
    > link)
    > just outlines.
    > Is it my folder location?? it is
    c:/mywebsites/mywebfolder
    > If i open each page directly to view they are all fine
    just when i go from
    > my
    > links..
    > Helpppppp please
    >

  • Urgent Help Needed! N85 Does Not Display All SIM C...

    Just updated my N85 (RM-334) to softwaer version 30.019 and installed some apps (such as Opera Mobile 10beta2, skyfire, youtube) and used my SIM card on other phones for 4 days. When I switched back to N85, I found only 98 SIM card contacts were displayed. But actually it has 248 contacts in SIM card.
    I took out the SIM card and tried it on other phones like NOKIA 5300, blackberry, and all 248 contacts can be displayed on those phones. I tried adjusting contacts setting but nothing changed. Could anybody give a suggestion or hint how can I get back those contacts?
    Thanks

    /t5/Nseries-Devices-and-S60/N85-not-recognizing-contact-numbers/m-p/670931/highlight/false#M204946

  • HELP CHANGE PASS IN FORMS NOT ORACLE PASSWORD

    HELP MAM/SIR newbie me
    I created table
    password and username
    password="emp"
    username="enter"
    iwant to put change password.. put two text item.." oldpassword" and "newpassword" then 1 button
    what would be the code for this change item plz help newbie me in oracle.. .
    HELP ME PLZZ SIR/MAM .........................

    try this code.. whats the result?
    declare
    vc_pwd varchar2(50);
    begin
    select passname
    into vc_pwd
    from logg
    where username = 'd';
    if vc_pwd = :block2.oldpassword then
    update logg
    set passname = :block2.newpassword
    where username ='d';
    else
    message('Wrong password orvided');
    message('Wrong password orvided');
    end if;
    commit;
    end;
    --block2 is ctrl block..,no?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • HT5544 I want to re-arrange my ibooks collection, on the help menu organize button is not displayed

    I looked for some answers about this issue, on the mac forum i found a forum that states that on the help menu, there is an organize books or something button, well, that doesnt appear on my mac, i need some help please.

    You can organise books into collections. To create a new collection select File > New Collection (rename it if you wish). Select Books in the Sidebar and select a book Control Click > Add to collection.
    I hope this makes sense and that it relates in some way to what you are trying to achieve.

  • Report is not displayed in xml format.

    Hi,
    We have a test station based in teststand 4.1 and labview 8.6 code modules.
    From one day to another, the xml report is blank, no character is displayed. That in Operator interface or sequence file execution in teststand editor.If the report format is changed to ASCII or HTML, then runs OK.
    The first step taken was to reload the directories "Cfg\*.ini" and "teststandmodels\Stylesheets\*.xls" from another test station that runs ok. Not solved.
    The second option was to uninstall and reinstall teststand. Also not solved the problem. Then I suposse that this problem is caused for a file or parameter that is not dependent of Teststand, but I don't really know.
    Any suggestions would be appreciated.
    Regards,
    Bergidum.

    Thanks for your help Sendia,
    Yes, I have already tried Computer mother test and all type of reporting options. Only ASCII and and HTML report formats generate visible results.
    Also on-the-fly-reporting is my option by default.
    Before format and reinstall the operating system (windows XP) and reinstall the NI package, I would like to know the origin of the malfunction because there are other five test stations working properly, but if the same problem appears in a new station, then to know the solution.
    Thanks for your attention,
    Bierzo.

  • Graphic/Image not displayed with conditional formatting in Report Designer

    We are facing problems with displaying an image in a conditional formatting in the Report Designer. The image itself is in the mime repository and can be displayed in the report if no conditional formatting is used. But if it is used the image doesn't appear in the report.
    Backend setup: SP 8
    Frontend setup: Patch 8, hotfix 2, Revision 95
    Any help is highly appreciated.
    Sven

    Hi,
    I could not reproduce your problem in internal SP8 system. Also images in rows with conditional formatting are displayed.
    Do you get any errors after the execution in the portal?
    Try to use exactly the same image in both rows (drag-and-drop with CTRL key pressed).
    If then your problem still occurs, open a customer message. Describe your problem in detail and write technical name of the report you used.
    Regards, Karol

Maybe you are looking for