Conversion of user date to system format

i have a problem in conversion of user date.
i use a function module in which the user have to give the date as input. he can give the date in any format like MM/DD/YYYY or DD.MM.YYYY etc . how to convert the given date into the system date.

hi,
use FM CONVERT_DATE_TO_INTERNAL
cheers,
sasi

Similar Messages

  • Acct assignment cat. of item not in user data; Inform system admin

    Hi all,
    We are on a SRM EBP 5.0 project and we are getting the following error when we try to create a purchase order from the purchasers login.
    "Acct assignment cat. of item not in user data; Inform system admin"
    The complete details of the screen shot are as follows:
    The following error text was processed in the system DS1 : Acct assignment cat. of item not in user data; Inform system admin.
    The error occurred on the application server lndnysap1_DS1_01 and in the work process 0 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Form: ABORT_PO of program SAPLBBP_PO_UI_ITS
    Form: ADD_TO_MSG_LOG of program SAPLBBP_PO_UI_ITS
    Form: ADD_TO_MSG_LOG_MULTI of program SAPLBBP_PO_UI_ITS
    Form: SET_PRICING of program SAPLBBP_PO_UI_ITS
    Form: DETERMINE_EXTERNAL_SCREEN of program SAPLBBP_PO_UI_ITS
    Module: DETERMINE_EXTERNAL_SCREEN of program SAPLBBP_PO_UI_ITS
    We did the following steps :
    Created shopping cart- employer and WF triggered apprd. by manager.
    Purchaser did "Carry Out Sourcing ", and if we say "Create Purchase Order", the PO gets created with a information message that "Incomplete purchase order 11/1 is created "
    When we go to  "Process Purchase Order" for the completion of the same. If we see Follow-on documents "Purchase Order Held" occurs.
    In the tab Item Data details Pricing tab we get this error.
    Do any of the SRM gurus can suggest us what to do?
    In our admin logon it shows
    "Server for pricing is not running. Start Server"  occurs after every run of this process purchase order from the purchasers login, though our IPC is working fine.
    Will be of great help if somebody replies soon.
    Sincerely,
    Sridhar.

    Hi,
    IPC has to be configured.
    Please check the following threads :
    https://forums.sdn.sap.com/click.jspa?searchID=211089&messageID=2714527
    https://forums.sdn.sap.com/click.jspa?searchID=211089&messageID=2715019
    Kind regards,
    Yann

  • How to convert date to system format

    Is there any function module for converting the date in YYYYMMDD format to our own system format. eg. 21.07.2006

    Hi Abinaya,
    Use this func module <b>CONVERSION_EXIT_PDATE_OUTPUT</b>
    Please award points if u find it useful
    Regards,
    Viven

  • CUA restore user data after system refresh

    We recently copied our PRD ECC6 system to DEV.  In the new DEV, a client (client 301) was created by way of a client copy to replicate the environment prior to the refresh.  This new client has only one user - the CUA user for the CUA RFC.
    Our CUA resides in an independent system.  The user and authorisation data for client 301 exists in the CUA.  How do I, or even can I push the user and authorisation data from CUA to client 301 on DEV?

    Report RSCCUSND in the CUA system will allow you to push out data to the child system.  You may need to manually re-create user groups in the child system for this to work.

  • Problem while Migrating user data from 10g to 11gR2

    Hi experts,
    I am trying to Migrate users data(including password and security questions) from 10g to 11gR2 what approach i have followed is..
    From 10g using API i retrieved users data including password and security questions and i stored all information into hashmap. This is one java program.
    And then i am trying to create that user in 11gR2 using API which i retrieved from 10g . From this 11g program i am creating object of 10g and i am using that hash map to retrieve user information.But i am not getting connection to 10g , it is throwing exception like unknown application server.Both sides i used API only as it is recommended to use API instead of JDBC connection.
    Help me in this regard ASAP and suggest if there is any other approach to Migrate users data.
    Thanks in Advance

    By using Trusted Recon, you won't be able to Fetch Password as it is.
    Since your goal is to fetch passwords too, please follow another approach.
    You won't be able to get connection to both 10g and 11g simultaneously in the same program.
    So, break this task in 2 phases. First connect with 10g, fetch user data in CSV format and then connect with 11G and read this CSV to create users.
    Once users are created properly, use APIs for creating challenge questions and answers.
    I think, you are getting exception like unknown application server because you are trying to connect to both 10g and 11g environments simultaneously.
    Follow the following steps:-
    (1) By using 10G APIsyou can't obtain password of user profile in decrypted form. So, Fetch password by using tcDataProvider. It will give you plain text password.
    (2) In a custom scheduler written in 10g, retrieve this data in CSV. After all you can't store this info in
    String query = "SELECT USR_LOGIN, USR_PASSWORD, USR_FIRST_NAME, USR_LAST_NAME FROM USR";//Add all fields which you want to retrieve from your 10G
    (3) Use this query, tcDataProvider, tcDataSet and Java I/O (or any other CSV Third Party tool like the ones obtained in csv.jar in XL_HOME/ext folder) fetch this info in a CSV.
    (4) Once CSV is generated, 10g machine is no more needed. Connect with 11g using 11g APIs. Write your custom 11G scheduler in order to read this CSV and use 11g APIs and create users for each record.
    (5) Once user records are created in 11g, the difficult part is done. Transfer the Security questions too by using this CSV technique.
    Please share results with us.

  • I just updated my MAC operating system and when I went to open a recent document in numbers, the document that opened had none of my data and was formatted differently.  Can I get my document with all my information back?

    I just updated my MAC operating system and when I went to open a recent document in numbers, the document that opened had none of my data and was formatted differently.  Can I get my document with all my information back?

    I suggest the easy stuff first:
    1) quite Numbers and restart Numbers
    2) reboot the computer
    After that try opening the same document in another user space

  • How to convert internal date to the format of user default setting

    In the BDC program, I need to convert the date, such as the sy-datum 20070427, to the format of user default that is defined in T-code SU01, such as YYYY-MM-DD or YYYY.MM.DD, and so on.
    The user format has 6 six kinds, and it is not good idea to write the code to process. So I look for the functions or CLASS method to process. I can use the function 'ITS_GET_USER_DEFAULTS' to get the user default setting of the Date format and Decimal notation.The problem is that I can not find the function or CLASS method to convert the internal date to user's date format.
    The function: CONVERT_DATE_TO_INTERNAL can not do it.
    The CLASS method: cl_abap_datfm=>conv_date_int_to_ext may be do it. But I do know how exchange the parameters, and fail to make it work finely.
    Is there the functions or CLASS method to process it?
    Thanks a lot!

    Hi John,
    create a veriable :
    data: v_date type char10.
    then after getting the date in YYYYMMDD format, write the following statement.
    WRITE SY-DATUM TO V_DATE.
    this might solve your problem.
    Regards,
    Hemant.

  • System.Data.SqlClient.SqlException: Cannot open database "MSCRM_CONFIG" requested by the login. The login failed. Login failed for user 'NT AUTHORITY\SYSTEM

    Dear ALL 
    After successfully shifting the CRM from 2011 to 2013 i found a problem in Reporting section none of the report is working after some finding i conclude that MSCRM_FetchDataSource is not able to connect successfully 
    Through my report manager i tried to test the connection of MSCRM_FetchDataSource but i got the following error 
    System.Data.SqlClient.SqlException: Cannot open database "MSCRM_CONFIG" requested by the login. The login failed. Login failed for
    user 'NT AUTHORITY\SYSTEM'. 
    I already add the NT Authority \ System as a db_owner under my database user of MSCRM_CONFIG
    But still no success any one have any idea why it's happaning 
    Regards 
    RB

    I found a solution I hope my post will help other
    I gave the  db_owner to 'NT AUTHORITY\SYSTEM' and 'NT AUTHORITY\NETWORK' and assigned with both CRM and Config database
    It resolved my issue
    RB

  • Getting SAP user Date format

    Hi All,
    I have a webdynpro java application which i am using in ISA B2B. I need to show a date format of the backend user. Is there any way where i can fetch the SAP backend user date format in webdynpro java application using API. Kindly suggest me an idea on this?
    Thanks and Regards,
    Saravanan

    Hi Saravanan,
    You need to fetch data through RFC function module in webdynpro. You need costom build functiona module for user information.
    Refer to Linking [Remote Function Call to Web Dynpro - Model|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/761eba66-0401-0010-b982-d5f5bd9e8f90]
    Regards
    Arun Jaiswal

  • Expire date for user in the system

    HI ,
    There is a place when we can defined expire date for user in the system ,
    something that similar to role that provided to user from 24/02/2010 - 25/02/2010 .
    i search in su01 and not found anything .
    any idea?
    Regards
    James

    hi james,
    i thin k you can do it in su01 logon data tab--->valid through (in validity period).
    Hope this will help you.
    Thanks,
    Tanmaya

  • What is this offer ?? Firefox User: Critical Software May Be Out Of Date Install System Updates immediatley fix potential system faults. Updating takes a few se

    Firefox User: Critical Software May Be Out Of Date
    Install System Updates immediatley fix potential system faults.
    Updating takes a few seconds and no restart needed.
    Avoid Vulnerabilities.
    Reduce crashes and ensure optimal browsing experience.
    Automatically Updates.
    Save
    Install
    Supported Browser
    [Update] [Update]
    Firefox
    Manufacturer: Mozilla
    Last checked: 04/03/2015

    If you get a pop-up message asking to update Firefox or plugins or scanning for malware then such a message is likely a scam and you should never respond to such an alert to avoid getting infected with malware.
    *Only update Firefox via "Help > About" or by downloading and installing Firefox from the Mozilla server and never via a pop-up or link on a web page.
    *Plugins should only be updated via the plugin itself or by visiting the home page of the plugin.

  • Can you get User Data from a XI/PI System ?

    Hello All
    Can you with GRC 5.3 use PI as a User Data Source?
    How?
    Thank you

    Hi Kristian,
    for the AC 5.3 system user store itself or for the user details / user search you could use SAP ABAP, SAP UME, LDAP, etc.
    Short: yes, you could use the ABAP user store of PI.
    Best,
    Frank

  • System on USB SSD, user data on internal drive?

    I have an iMac with a 1TB internal spinning disk at home, and the same system at work except it has an internal SSD. The SSD system is unsurprisingly much more responsive and it's increasingly painful to use the machine with the spinning disk.  I looked into replacing the internal drive with an SSD but it is cost prohibitive, both to buy the drive and have it installed (I considered doing it myself but the how to video is beyond my skill level). So I started to see if there are other options. I have between 500 GB and 700 GB or user data, much of which is my iPhoto and iTunes libraries.
    One idea I had was to either (a) buy a small external solid-state drive and hook it up via USB or Thunderbolt, and install the system on that, but have my user folder (or possibly even just my iTunes and iPhoto libraries) on the internal drive.
    Another idea is to buy a giant USB key (128 GB?) and install the system on that, and just leave it mounted all the time.
    Other than the fact that I'd have my data spread across two disks, are there reasons why this is a bad idea?  And does anyone have any insight into whether or not it would improve performance noticeably?

    Stick to Thunderbolt. It is faster than USB 3.0 in actual use. Seagate sells a small Thunderbolt adaptor - Seagate STAE133 Ext.
    I can recommend the OCZ Vertex 3 series or the OWC Mercury 6G series. The former can be purchased from many different vendors like Newegg.com. For best performance you want to enable TRIM using Trim Enabler 3.2.2.

  • How can I copy text from a table in a format that's readable when I paste it into an internet based data recording system?

    I have to fill in forms regarding foster children every week, then export the text to an on-line data recording system for each child. The old pages let me copy (cmdA ) the whole document and past it into where it needs to go.
    The new version includes inverted commas and I have to copy the document headers separately from the information contained in the table. It's a bit of a pain!

    I have to fill in forms regarding foster children every week, then export the text to an on-line data recording system for each child. The old pages let me copy (cmdA ) the whole document and past it into where it needs to go.
    The new version includes inverted commas and I have to copy the document headers separately from the information contained in the table. It's a bit of a pain!

  • Conversion from raw data tiff format

    Hi,
    I am working on badi "EBPP_INVOICEDETAIL" ,there are two implementation available.
    FM "APAR_EBPP_GET_SDINVOICE_DETAIL"  is called inside the method "GET_INVOICE_DETAIL" ,
    This FM is providing a PDF file for billing document,
    I have a reqd for a new implementation and using a copy of the FM to get a TIF file for billing instead of the PDF.
    Could some one please provide me the logic for doing so, OR
    The FM to convert from raw data to tiff format.
    Regards
    Bidyut

    SQL> select utl_raw.cast_to_number(hextoraw('C20221')), to_number(rawtohex(hextoraw('C20221')), 'xxxxxxxxx') from dual;
    UTL_RAW.CAST_TO_NUMBER(HEXTORAW('C20221')) TO_NUMBER(RAWTOHEX(HEXTORAW('C20221')),'XXXXXXXXX')
                                           132                                            12714529

Maybe you are looking for

  • How can I jump to a named destination?

    I have separate Framemaker files for sections for which I specified a named destination at title. These sections are imported by reference into chapters of a number of books. Within the book I want to jump for example from chapter 2 to a section in c

  • Up Grading to Iphoto and accessing a Iphoto 6 library

    Hello all I recently upgraded to Leopard Since I was also upgrading my hard drive in my g4 PB I did the upgrade by installing a new HD in the PB , installing Leopard and then using migrate to bring the data from the old hard drive that I had installe

  • Requisition status was not updated

    Hello people, we have a requisition with only one item. We are asking quantity = 4. For this requisition were opened 4 RFQ. So the requisition Processing Status is "RFQ created". After this, it was created an order with 4 lines (each one with PO Quan

  • Java and SQL #2

    Hi all, Please could someone give a sample code of how to connect java to SQL. Thanks in advance for your help. Best regards. Saadi Monla

  • ASO LOADING ISSUE

    Hi, Essbase 9.3.1 When trying to load a small amount of data using a load rule to an ASO cube the load is taking a huge amount of time. When I check session it says it is performing a "LoadTermBuffer". After checking the LOG file it appears that the