Date field in a view need to be formatted

I have a view like this
CREATE OR REPLACE VIEW order_view AS
SELECT company_id company_id,
branch_id branch_id,
Branch_API.Get_Description(company_id, branch_id) branch_description,
order_id order_id,
order_date order_date,
comments comments,
currency_code currency_code,
Currency_API.Get_Description(company_id,currency_code) currency_description,
exchange_rate exchange_rate,
emp_id emp_id,
Employee_API.Get_F_Name(company_id, emp_id) first_name,
Employee_API.Get_L_Name(company_id, emp_id) last_name,
voucher_id voucher_id,
substrb(Payment_Type_API.Decode(payment_type),1,200) payment_type,
payment_type payment_type_db,
rowstate state
FROM order_tab
WITH read only;
This view return the order date like this '10/23/2005 4:30:30 PM'. But I want to get it like this 2005-10-23-16.30.30. Aslo is shoud be a date to be return. So I can't use to_char(order_date, 'YYYY-MM-DD-HH24.MI.SS') order date to do this.
Is there anyway to get this correct?
Thanks in advance..

SQL> create or replace view test_data as
  2  select to_char(sysdate, 'yyyy/dd/mm hh:mi:ss')    date_val
  3    from dual
  4  /
View created.
SQL>
SQL> desc test_data
Name                                      Null?    Type
DATE_VAL                                           VARCHAR2(19)
SQL>
SQL> create or replace view test_data as
  2  select to_date(to_char(sysdate, 'yyyy/dd/mm hh:mi:ss'), 'yyyy/dd/mm hh:mi:ss') date_Val
  3    from dual
  4  /
View created.
SQL>
SQL> desc test_data
Name                                      Null?    Type
DATE_VAL                                           DATE
SQL> select date_val from test_data;
DATE_VAL
24-OCT-05
SQL> alter session set nls_Date_Format='yyyy/dd/mm hh:mi:ss';
Session altered.
SQL> select date_val from test_data;
DATE_VAL
2005/24/10 04:53:46i asked you to use TO_DATE becuase you wanted the data type to be DATE instead of varchar.
but the final output how you want to retrive has to be extracted again using the TO_CHAR in your application.
Infact if you don't require a conversion. if the field is date already, it will be date when you create the view. only when you want to select it use TO_CHAR and extract in the desired format.
eg. also show how to see the date in diff,. format in your sql*plus session.

Similar Messages

  • Delivery Date field in PR/PO needs to be blank

    Hi Experts,
    At present  system is showing delivery date as todays date , as default.
    We need this field should be blank , so that user needs to force to enter date in PR/PO creation.
    Plz give ur ideas how can this be achived.
    Also can this be done by any badi/user exit? If yes, which one?
    Thankx for ur kind help.
    Regards:
    Nilesh

    Hi
    Goto -SPROMMPurchasing PO-check Screen field seletion -
    >Delivery date mandetory
    -SPROMMPurchasing PR-Check Screen field seletion -
    >Delivery date mandetory
    Vivek

  • Addition of  Start & end date fields in the View 'My team's open leads' .

    Dear all,
                 I want to add Lead Sart date & Expected  End date in the personalize list of view 'My team's open Leads' in the Overview page of Lead management
      I tried it by changing the field name in PDVField as                                           LEAD_DATE_START/visibility=false ' for start date in the detailed view of I view ' 'My team's open leads'.But it is not reflecting in Personalize list of fields.
    Can any body give solution to this ASAP as it is high priority requirement.
    Maximum points would be rewarded for solution.
    Regards,
    Basavaraj V.Patil

    Hi,
    I have a similar problem.  There appear to be some configurable attributes in the iview such as 'PDVField' and 'Column'. The PDVField attribute contains values such as 'QUAL_LEVEL_MAN_TXT/visibility=true'. When running the iview, this field is visible. However when I change this setting to false, the field is still visible. There is a PDVCachingOn field and this I have set to false however this also seems to make no difference.
    Regarding the 'column' field, I have no idea what can be done here as the initial value is blank.
    The suggestion in the post above requires customising the standard iView. That may be the case, but clearly the purpose of these 'configurable' attributes does not seem to be very clear.
    Mr.T

  • Deriving Time Characteristics from Date fields in ODS View

    Hi,
    I am creating ODS Views using HANA calculation views.
    is there any direct approach to derive time characteristics like cal week, cal quarter, cal month, calmonth 2, fiscal year, cal year etc from date fields?
    work around:
    Deriving them in HANA view in calculated columns and mapping them to IO created with respective time characteristics as reference.
    is there any standard and easy to use approach for this??
    Thanks in advance.

    Hi Ravi,
    Insteod deriving them in the ODS view you can derive them in tha Calculation View in SAP HANA itself using Time Dimention concept.
    Regards
    Jagan

  • Date Field (MON-YYYY)

    Can somebody help me to display and enter in date field like MON-YYYY.So it will save also like that in database.

    User,
    What is your name?
    Dates are not stored like that in the database. Dates in the database store both date and time with accuracy up to seconds. You can "truncate" a date field to fit your needs and then format it when you need to display it. In your example you only need accuracy up to the month so you could store a date as TRUNC(SYSDATE, 'MONTH'). Note that this would be saved as 01-FEB-09 12:00 AM.
    However, TRUNC is not needed if you create a date without that accuracy to begin with as in TO_DATE('FEB-2009','MON-YYYY'), this would be the same as above.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Custom Date field range

    Hi
    I have 3 date fields in my view.
    what i need is
    for example
    My First date field i am selecting 1st January 2008
    Second date field i am selecting 10th January 2008
    in my third date field calendar should enable only in between that 2 dates.remaining dates are disable.
    How to dothis? pls reply ASAP.
    regards,
    Gobinath

    Hi,
    I dont think it is possible, just go through the following link
    [Disabling dates in the past]
    Regards
    Raghu

  • Lowest value from 2 date fields combined

    Morning!
    Need a way to combine two separate date fields to determine the lowest combined value. The idea being finding an empno's overall seniority by looking at seniority date and birthdate, birthdate settles the tie in the event two empno's have the same seniority date.
    Can't find a way to do this using two date fields, only a single date field.
    I also need a way to continue finding the next empno in seniority after that, and so on. Need to increment some value or get the nextval somehow to find the next highest in seniority until the entire table has been reviewed.
    Thanks folks.

    Hey Thanks!!
    Table= Requests
    Fields: Empno, LastNme, FirstNme, Seniority_DT, Birth_DT,ReqDate,ReqTime,ChoiceNum
    Field values: vchar, vchar, vchar, date,date,date,date-time,vchar
    Examples in above order: 36525,smith,bob,08-jun-80,23-sep-60,15-mar-10,14:00,1
    The idea is that we assign (1) single day per month per employee of overtime based on seniority, and in case of a tie the birthdate settles seniority. Employees make more than one request per month so their empno appears in the table multiple times. Also a single empno can ask for one of two start times per requested day. At most, a single employee can make requests for any one of (12) days per month, on days Sun-Thu they can ask for one of (2) start times and on Fri-Sat they can ask for one of 3 start times. The "choice" field lets them indicate start time in order of preference.
    On each day on each start time, (2) different people work together, so for days 1-5 there are (2) shifts of (2) people each, total of (4) people assigned per day 1-5 and (6) people assigned on days 6-7.
    The needed output is that for Sunday-Thursday (2) people start at 14:00 and another (2) start at 18:00.
    On Friday-Saturday (2) people start at 14:00, (2) people start at 18:00 and (2) people start at 20:00.
    The idea for the report would be:
    Saturday, 13 March 2010
    1400 Bob Smith, Seniority Date
    1400 Ted Jones, Seniority Date
    1800 Tom Williams, Seniority Date
    1800 Karen Hu, Seniority Date
    2000 Mike Smith, Seniority Date
    2000 Jim Thomas, Seniority Date
    Sunday, 14 March 2010
    1400 Ed Davis, Seniority Date
    1400 Ron Thomas, Seniority Date
    1800 Tiger Woods, Seniority Date
    1800 Joe Davis, Seniority Date
    Each person may only work one day per month. In the event that there is a hole where no one put a request in, we need to go back over the remaining requests to fill them in. The original idea was to do this by:
    All choice #1 first, then start over looking at choice #2 and so on until all the days in the upcoming month are full.
    That's about the best I can explain it. The only way I can see is to do it by seniority and choice# then go around again if there's a hole. I just can't figure out how to look at both the seniority date and birthdate to ensure seniority nor can I figure the logic necessary to find the person, check if the spot is available and assign him or if not go to his next preference for that day and check if it's available and then continue to the next guy.
    It may have been simpler to explain the need in detail and ask that the structure and code be done from scratch but that's asking way too much so I thought I'd ask how to solve this problem and keep working on it from there.
    Thanks in advance again!
    ps... Haven't started the coding yet.... just need the code to accomplish finding seniority based on two date fields combined, then I'll start coding the entire thing.
    Edited by: user9320509 on Mar 10, 2010 5:33 AM

  • Problem With Crystal Reports Reading Date Fields From CSV File

    I have a date field in a CSV file in the format 06/28/09 17:23:55.523. When I use ODBC the configuartion picks it up a character field. I overright the recommendation type by specifing it is a date field but whne I bring the data into crystal reports the dates are blanks. Any suggestions on how to get around this problem. I need to use the date for selection records.
    Phasor

    The question was answered under another thread. I had to use the split commmand to get rid of the fractions of a second

  • Disable data fields (Updated)

    I want to disable all data fields on my view but leaving some fields enabled. If I disable a view on the highest level then I am not sure how will I make some fields enabled.
    Any idea, please?
    Thanks

    Just bump it up.

  • Help BC Webform custom date Field

    I have a BC webform which I have decided to use a custom field as the date field, because BC Date picker is buggy for users. This is my webform:
    <form name="catwebformform72193" method="post" onsubmit="return checkWholeForm72193(this)" enctype="multipart/form-data" action="https://myastymin.worldsecuresystems.com/FormProcessv2.aspx?WebFormID=104882&OID={module_oid}&OTYPE={module_otype}&EID={module_eid}&CID={module_cid}&CC={module_urlcountryc ode}&Referrer={module_siteurl,true,true}">
      <span class="req">*</span> Required
      <table class="webform" cellspacing="0" cellpadding="2" border="0">
        <tr>
          <td><label for="Title">Title</label>
            <br />
            <select name="Title" id="Title" class="cat_dropdown_smaller">
              <option value="299539">DR</option>
              <option value="299538">MISS</option>
              <option value="299535" selected="selected">MR</option>
              <option value="299536">MRS</option>
              <option value="299537">MS</option>
            </select></td>
        </tr>
        <tr>
          <td><label for="FirstName">First Name <span class="req">*</span></label>
            <br />
            <input type="text" name="FirstName" id="FirstName" class="cat_textbox" maxlength="255" /></td>
        </tr>
        <tr>
          <td><label for="LastName">Last Name <span class="req">*</span></label>
            <br />
            <input type="text" name="LastName" id="LastName" class="cat_textbox" maxlength="255" /></td>
        </tr>
        <tr>
          <td><label for="CAT_Custom_352788">Date of Birth <span class="req">*</span></label>
            <br />
            <input type="text" maxlength="4000" name="CAT_Custom_352788" id="CAT_Custom_352788" class="cat_textbox" /></td>
        </tr>
        <tr>
          <td><label for="EmailAddress">Email Address <span class="req">*</span></label>
            <br />
            <input type="text" name="EmailAddress" id="EmailAddress" class="cat_textbox" maxlength="255" /></td>
        </tr>
        <tr>
          <td>{module_ccsecurity}</td>
        </tr>
        <tr>
          <td><label for="Username">Username <span class="req">*</span></label>
            <br />
            <input type="text" name="Username" id="Username" class="cat_textbox" maxlength="255" /></td>
        </tr>
        <tr>
          <td><label for="Password">Password <span class="req">*</span></label>
            <br />
            <input type="password" name="Password" id="Password" class="cat_textbox" maxlength="255" autocomplete="off" /></td>
        </tr>
        <tr>
          <td><label for="PasswordConfirm">Confirm Password <span class="req">*</span></label>
            <br />
            <input type="password" name="PasswordConfirm" id="PasswordConfirm" class="cat_textbox" maxlength="255" autocomplete="off" /></td>
        </tr>
        <tr>
          <td><input type="checkbox" name="CampaignList_223" />
            Subscribe to: Astymin Postboard</td>
        </tr>
        <tr>
          <td><input type="checkbox" name="CampaignList_224" />
            Subscribe to: Postboard Users Birthday Card</td>
        </tr>
        <tr>
          <td><input class="cat_button" type="submit" value="Submit" id="catwebformbutton" /></td>
        </tr>
      </table>
      <script type="text/javascript" src="http://www.myastymin.com/CatalystScripts/ValidationFunctions.js"></script><script type="text/javascript">
    //<![CDATA[
    var submitcount72193 = 0;function checkWholeForm72193(theForm){var why = "";if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name"); if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (theForm.Username) why += isEmpty(theForm.Username.value, "Username"); if (theForm.Password && theForm.PasswordConfirm) { why += isEmpty(theForm.Password.value, "Password"); why += isEmpty(theForm.PasswordConfirm.value, "Confirm Password"); if (theForm.Password.value != theForm.PasswordConfirm.value) why += appendBreak("- Password and its confirmation do not match."); if (theForm.Password.value.length < 6) why += appendBreak("- Password must be 6 characters or longer."); } if (theForm.CAT_Custom_352788) why += isEmpty(theForm.CAT_Custom_352788.value, "Date of Birth");if(why != ""){alert(why);return false;}if(submitcount72193 == 0){submitcount72193++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>
    But I want the date field (highlighted) to look like this Well formatted date of birth input field - JSFiddle (The Date Format Normal. Not the tab option. I mean the second styling ). Issues like validation and should each date parameter be a separate field, etc is my headache. Please can someone kindly look into this BC webform and kindly help. Kind regards.

    Hi,
    I think only CHAR and NUM data types are allowed in OXK3, not possible to assign dats.
    Thanks,
    Shailaja Ainala.

  • Materialized view fast refresh with date field

    I have a situation where I need to create a materialized view worth of 6 months of data with fast refresh option from the master table. Somehow whenever I have the where clause added with the date field then it craps out with "ORA-12015: cannot create a fast refresh materialized view from a complex query".
    Here is what I am trying to do. Please let me know if there is any other way to accomplish this.
    create table test (id number, date_time DATE);
    CREATE MATERIALIZED VIEW LOG ON test WITH ROWID;
    CREATE MATERIALIZED VIEW cms.scoreboard_statistics_mv
    BUILD IMMEDIATE
    REFRESH FAST
    WITH ROWID
    AS
    SELECT * from test
    WHERE date_time >= sysdate - 180;
    ORA-12015: cannot create a fast refresh materialized view from a complex query
    Thanks,
    Raj

    It's crazy but a new time Metalink help us into the Note:179466.1
    The restrictions that prevent snapshots from being fast refreshed depend on
    the version of Oracle being used, a full list of these by version is included
    in section 3. In all cases the snapshot defining query should:
    - refer to fully qualified table names rather than to partial table names.
    - refer to remote tables only, not to remote master views or synonyms.
    - not generate context sensitive data. For example, do not create a simple
    snapshot with a query that uses the SQL functions :SYSDATE, UID or USER.

  • I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically. Can some one out there help me?

    I am working in Adobe Acrobat 9 Pro and just created a pdf form from a MS Word document. I need to find out how to have a date field in my form which will update automatically.

    Update automatically under which circumstances, exactly?

  • Need to Programmatically Set IRR Filter on Date Field Due to APEX 4.1 Bug

    There may be another work around but, here is the problem that we are encountering...
    We have a huge table that is partitioned on a DATE field and an IRR that reports on this table. By default, we want to show the most recent 3 days of data. There is a built-in filter for "is in the last 3 Days." Sounds Great! Unfortunately APEX generates the code using TIMESTAMP rather than DATE functions. As a result of this, the query does not perform partition pruning and, as a consequence, it is doing a full table scan which takes forever. Note the use of the "LOCALTIMESTAMP" function in the query that is generated by APEX for this filter:
    SELECT   "BUSINESS_DATE",
             COUNT ( * ) OVER () AS apxws_row_cnt
      FROM   (SELECT   *
                FROM   (SELECT   *
                          FROM   position_delta_his p) r
               WHERE   ("BUSINESS_DATE" BETWEEN *LOCALTIMESTAMP*
                                                - NUMTOYMINTERVAL (:APXWS_EXPR_1,
                                                                   'year')
                                            AND  *LOCALTIMESTAMP*)) r
    WHERE   ROWNUM <= TO_NUMBER (:APXWS_MAX_ROW_CNT)If, instead, APEX used the SYSDATE function, as the underlying column is a DATE, this returns instantly, after partition pruning.
    SELECT   "BUSINESS_DATE",
             COUNT ( * ) OVER () AS apxws_row_cnt
      FROM   (SELECT   *
                FROM   (SELECT   *
                          FROM   position_delta_his p) r
               WHERE   ("BUSINESS_DATE" BETWEEN *SYSDATE*
                                                - NUMTOYMINTERVAL (:APXWS_EXPR_1,
                                                                   'year')
                                            AND  *SYSDATE*)) r
    WHERE   ROWNUM <= TO_NUMBER (:APXWS_MAX_ROW_CNT)
    The bug is that APEX should base the underlying function on the data type of the filtered column.
    As a work around, if we create a filter where BUSINESS_DATE >= '4/13/2012' (three business days ago), again, this returns instantaneously. The issue is that we can only set this filter by using the APEX GUI. We need to be able to:
    1. Determine the date for 3 business days ago
    2. Set this as the default filter.
    I tried creating a BEFORE HEADER PL/SQL page process but, it does not appear to be having any effect. Here is that code:
    DECLARE
        ldt_Filter DATE;
        CURSOR lcsr_GetMaxBusinessDate IS
            SELECT Max(BUSINESS_DATE)
            FROM POSITION_DELTA_HIS;
        DAYS_AGO CONSTANT NUMBER := 3;       
    BEGIN
        APEX_UTIL.IR_CLEAR( :APP_PAGE_ID );
        OPEN lcsr_GetMaxBusinessDate;
        FETCH lcsr_GetMaxBusinessDate INTO ldt_Filter;
        CLOSE lcsr_GetMaxBusinessDate;
        ldt_Filter := ( Trunc( ldt_Filter ) - 3 );
        APEX_UTIL.IR_FILTER( p_page_id       => :APP_PAGE_ID,
                             p_report_column => 'BUSINESS_DATE',
                             p_operator_abbr =>'GTE',
                             p_filter_value  => TO_CHAR( ldt_Filter, 'YYYYMMDDHH24MISS' ) );
    END;Can anyone tell me:
    1. How to set this filter programmatically (also needs to be displayed on the page so the user can see the current filter...as if it were created via the GUI) ***OR***
    2. Some other work around for this issue..
    Thanks,
    -Joe

    Actually, now that I look further, I don't think it is going to work to simply set the filter programmatically. The end user can still click the column heading where they are only given the choice of the LOCALTIMESTAMP based filters. If they pick one, the page is going to be out to lunch for them.
    We really need some other fix. We really need a way to actually address the underlying issue.
    -Joe

  • I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    Hi Abdul,
    Sorry for my unprecise answer, but you talk about a tcode, but you're using a BAPI Call. Maybe you want to call the transaction in batch mode?
    http://help.sap.com/saphelp_erp60_sp/helpdata/de/fa/09715a543b11d1898e0000e8322d00/content.htm
    Regards,
    Franz

  • Date fields in the Maintainence View.

    Hello friends,
                   I created a maintanence view which of 2 steps. This view contains a DATE field of data element type 'DATS". Now the problem is -"
    1. In the first screen  of the viewI am not able to see only the DATE field(Over view scr).
    2. But I able to see the same field in the 2nd screen(Maintanence Screen).
    Not only to my View I maintained ' Table Maintanence Generator" to some more tables.There also I am not able to see the date field in the first screen, unless it is a key field.
    Thanks in advance.

    Hi
    Step 1: Create & Maintain Table (SE11)
    Screen 101: ABAP Dictionary: Initial Screen
    Screen 102: Maintain Table -> Delivery and Maintenance
    Screen 103: Maintain Table -> Fields
    [] SE11: Enter Table Name -> Create
    Enter Table Description (Mandatory Field)
    Select Delivery Class
    Set maintenance level
    Enter Fields, Assign Data Elements
    Save Entries
    Check Inconsistencies
    Activate Table
    Go To Technical Settings (SCREEN 104)
    Delivery Class: The delivery class controls the transport of table data when
    installing or upgrading, in a client copy and when transporting between customer
    systems. The delivery class is also used in the extended table
    maintenance.
    There are the following delivery classes:
    A: Application table (master and transaction data).
    C: Customer table, data is maintained by the customer only.
    L: Table for storing temporary data.
    G: Customer table. The customer namespace must be defined in table TRESC. (Use
    Report RDDKOR54 here).
    E: System table with its own namespaces for customer entries.
    S: System table, data changes have the same status as program changes.
    W: System table (e.g. table of the development environment) whose
    data is transported with its own transport objects (e.g. R3TR PROG, R3TR TABL,
    etc.).
    Data Browser/Table View Maint.: This indicator specifies
    whether it is possible to display/maintain a table or view using the maintenance
    tools Data Browser (transaction SE16) and table view maintenance (transactions
    SM30 and SM31).
    MANDT field is mandatory for Client dependant tables
    Technical Settings: The technical settings control, for example, table buffering.
    Indexes: To speed up data selection, you can create secondary indexes for the table
    Append Structure: Append structures are used for enhancements that are not included in the standard.
    Screen 104: Maintain Technical Settings
    Select Data Class (Mandatory) [APPL0]
    Select Size Category (Table size - No. of records - Mandatory) [1 to 6]
    Specify Buffering [allowed / not allowed]
    Save
    Check Inconsistencies
    Activate & Go Back to “Maintain Table Screen”
    Data Class: The data class defines the physical area of the database (for ORACLE
    the TABLESPACE) in which your table is logically stored. If you choose a data
    class correctly, your table will automatically be assigned to the correct area
    when it is created on the database.
    The most important data classes
    are (other than the system data):
    APPL0 Master data
    APPL1 Transaction data
    APPL2 Organizational and customizing data
    Size category: The size category determines the probable space requirement for a table in the database.
    Buffering: The buffering status specifies whether or not a table may be buffered.
    Screen 105: Maintain Table
    Screen 106: Maintain Enhancement Category (ECC 6.0 onwards)
    -> Extras -> Enhancement Category
    Select Enhancement Category
    Enhancement Category: Structures and tables that were defined by SAP in the ABAP
    Dictionary can be enhanced subsequently by customers using Customizing includes
    or append structures. The enhancements do not only refer to structures/ tables
    themselves, but also to dependent structures that adopt the enhancement as an
    include or referenced structure. Append structures that only take effect at the
    end of the original structure can also cause shifts - in the case of dependent
    structures - even within these structures.
    Screen 107: Maintain Table -> Table Maintenance Generator
    Screen 108: Generate Table Maintenance Dialog: Generation Environment
    -> Utilities -> Table Maintenance Generator OR [] SE54
    Specify Authorization Group [&NC&]
    Select Maintenance type [One Step/Two Step]
    Mention Screen Numbers [1/2]
    Save & Go Back
    Single step: Only overview screen is created i.e. the Table Maintenance Program will have only one screen where you can add, delete or edit records.Two step: Two screens namely the overview screen and Single screen are created. The user can see the key fields in the first screen and can further go on to edit further details.

Maybe you are looking for

  • Movies from iTunes don't show up on Apple TV

    Everything else from my library does (music, photos, TV shows), but I can't get the movies from my library to show up on my Apple TV. Here's the kicker...when I go to the movie section in my library (from the Apple TV) all the posters are scrolling o

  • Error while extracting from BI source

    Hi, We are facing a wierd problem: Scenario: Loading data from one DSO to another DSO with the help of transformation The DTP fails at second data package each time. First data package goes successfully but it fails at the second data package) We hav

  • How to find document/content  type i.e. its extension ??

    Hello, I wanted to find the extension of a resource i.e. basically i wanted to find out programatically the document type whether its pdf or xml or word doc etc etc....which is stored in KM in portal. Is there a way to do so using webdynpro Java  ???

  • File Adapter 3.0

    In my scenario File -> XI -> R3 The file is being read and converted to xml <?xml version="1.0" encoding="utf-8" ?> <ns:FileType1 xmlns:ns="http://test.com"> <ns:FileType1 xmlns:ns="http://test.com"> <FileType1>    <type>1</type>    <name>23</name>  

  • T Code for List of all projects

    Hi Friends Please any one knows the Tcode for list of projects Thanks Avadhut