ITS URGENT : chek box in out put list

Hi all ,
  my requirement is i have provided Reject Button in application tool bar  of out put list in  report . when pressing reject button, what r the records selected that can be saved as Reject status . (Table zvendors having field status.)                                                                                Here i am populating check box for each record in the out put list .
PLS SEND ME THE CODE .
HERE I AM USING THE CODE ......
DATA: BEGIN OF I_SUMMARY OCCURS 0,
      SELECT(1),
      SUB_DATE LIKE ZZKIOSKACT-REQDT,
      TYPE     LIKE ZZSVENDOR-VTYPE,
      APPNO LIKE ZZSVENDOR-APPNO,
      NAME1 LIKE ZZSVENDOR-NAME1,
      NAME2 LIKE ZZSVENDOR-NAME2,
      VENDOR(50),
      STATUS LIKE ZZSVENDOR-VMCREAT,
      STAT_DATE LIKE ZZKIOSKACT-REQDT,
      VENDORID LIKE ZZSVENDOR-VENDOR,
      EPROCURENUM LIKE ZZSVENDOR-EPROCURENUM,
      CRM_ORDER_NUM LIKE ZZSVENDOR-CRM_ORDER_NUM,           " added by nagendra
      VENDOR_UPD_DAT(10) , "LIKE ZZKIOSKACT-REQDT,
      VENDOR_UPD_TIM(10),
      END OF I_SUMMARY.
DATA: BEGIN OF C_POS1,
     VLIN_START   TYPE I     VALUE 1,    " vertical line
     STPOS_SEL    TYPE I     VALUE 2,  "starting position
     LEN_SEL      TYPE I     VALUE 3,    "length of field
     VLIN_TYPE    TYPE I     VALUE 6,
     STPOS_TYPE   TYPE I     VALUE 7,
     LEN_TYPE     TYPE I     VALUE 20,
     VLIN_ESV     TYPE I     VALUE 22,
     STPOS_ESV    TYPE I     VALUE 23,
     LEN_ESV      TYPE I     VALUE 10,
     VLIN_APP     TYPE I     VALUE 42,
     STPOS_APP    TYPE I     VALUE 43,
     LEN_APP      TYPE I     VALUE 16,
     VLIN_SUBDATE TYPE I     VALUE 59,
     STPOS_SUBDATE TYPE I    VALUE 60,
     LEN_SUBDATE  TYPE I     VALUE 12,
     VLIN_VENDOR  TYPE I     VALUE 71,
     STPOS_VENDOR TYPE I     VALUE 72,
     LEN_VENDOR   TYPE I     VALUE 50,
     VLIN_STAT    TYPE I     VALUE 130,
     STPOS_STAT   TYPE I     VALUE 131,
     LEN_STAT     TYPE I     VALUE 20,
     VLIN_STATDATE TYPE I    VALUE 156,
     STPOS_STATDATE TYPE I   VALUE 157,
     LEN_STATDATE TYPE I     VALUE 10,
     VLIN_VENUPDAT TYPE I    VALUE 169,
     STPOS_VENUPDAT TYPE I   VALUE 170,
     LEN_VENUPDAT TYPE I     VALUE 12,
     VLIN_VENUPTIM TYPE I    VALUE 185,
     STPOS_VENUPTIM TYPE I   VALUE 186,
     LEN_VENUPTIM TYPE I     VALUE 12,
     VLIN_END     TYPE I     VALUE 199,
    END OF C_POS1,
write statement
  LOOP AT I_SUMMARY.
    LINECOUNT = SY-TABIX MOD 2.
    IF LINECOUNT = 1.
      FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    ELSE.
      FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    ENDIF.
    WRITE AT: /C_POS1-VLIN_START  SY-VLINE.
    WRITE AT C_POS1-STPOS_SEL     SELECT     AS CHECKBOX.                "I_SUMMARY-SELECT
    WRITE AT:  C_POS1-VLIN_TYPE SY-VLINE.
    WRITE AT C_POS1-STPOS_TYPE(C_POS1-LEN_TYPE) I_SUMMARY-VENDORID
                                         CENTERED.
    WRITE AT:  C_POS1-VLIN_ESV SY-VLINE.
    WRITE AT C_POS1-STPOS_ESV(C_POS1-LEN_ESV) I_SUMMARY-CRM_ORDER_NUM
                                NO-ZERO CENTERED.
    WRITE AT:  C_POS1-VLIN_APP SY-VLINE.
    WRITE AT   C_POS1-STPOS_APP(C_POS1-LEN_APP) I_SUMMARY-APPNO
                             NO-ZERO USING NO EDIT MASK CENTERED.
    WRITE AT:  C_POS1-VLIN_SUBDATE SY-VLINE.
    WRITE AT   C_POS1-STPOS_SUBDATE(C_POS1-LEN_SUBDATE)
                                                    I_SUMMARY-SUB_DATE.
    WRITE AT:  C_POS1-VLIN_VENDOR SY-VLINE.
    WRITE AT   C_POS1-STPOS_VENDOR(C_POS1-LEN_VENDOR)
                                                    I_SUMMARY-VENDOR.
   WRITE AT: C_POS1-VLIN_STATDATE SY-VLINE.
    WRITE AT C_POS1-STPOS_STATDATE(C_POS1-LEN_STATDATE)
                                            I_SUMMARY-STAT_DATE.
    WRITE AT:  C_POS1-VLIN_VENUPDAT  SY-VLINE.
    IF NOT I_SUMMARY-VENDOR_UPD_DAT IS INITIAL.
      DATA : V_DATS(10).
      CLEAR V_DATS.
      CONCATENATE
           I_SUMMARY-VENDOR_UPD_DAT+4(2)
           I_SUMMARY-VENDOR_UPD_DAT+6(2)
           I_SUMMARY-VENDOR_UPD_DAT+0(4)
           INTO V_DATS SEPARATED BY '/'.
      WRITE AT   C_POS1-STPOS_VENUPDAT(C_POS1-LEN_VENUPDAT)
                 V_DATS .
    ELSE.
      I_SUMMARY-VENDOR_UPD_DAT = ' '.
      WRITE AT   C_POS1-STPOS_VENUPDAT(C_POS1-LEN_VENUPDAT)
                 I_SUMMARY-VENDOR_UPD_DAT USING NO EDIT MASK .
    ENDIF.
    WRITE AT: C_POS1-VLIN_VENUPTIM SY-VLINE.
    WRITE AT C_POS1-STPOS_VENUPTIM(C_POS1-LEN_VENUPTIM)
                                            I_SUMMARY-VENDOR_UPD_TIM.
    WRITE AT: C_POS1-VLIN_END SY-VLINE.
  ENDLOOP.
Edited by: nagendra k on Feb 24, 2008 5:27 AM
Edited by: nagendra k on Feb 25, 2008 5:13 AM

CASE sy-ucomm.
    WHEN 'REJECT'.
      gv_chk = space.
      DO gv_lines TIMES.
        READ LINE sy-index FIELD VALUE gv_chk.  
         IF gv_chk = 'X'.
           Statements to Save the Record.
         ENDIF.
      ENDDO.
  ENDCASE.
Here gv_chk is a character variable to hold the status of check box for each line.
gv_lines hold the number of records.
awrd points if useful
Bhupal

Similar Messages

  • VA05 transaction to add some other fields in out put list

    Hi guys,
    i have requirement that i have to add some fields which are in custom table to that output list('List of Sales Orders' screen)
    plz help me out regarding this.
    thanks.

    thanks for responce da,
    but i want to add my custom table fields in alv out put list,
    where i can write query to get the data, and how to insert my fields in that list output.
    plz help da.

  • Hi gurus in ALV how to edit the fields on out put list

    hi gurus in ALV how to edit the fields on out put list

    hi
    REPORT ZSB_ALV_EDITABLE_SAMPLE.
    TABLES: SFLIGHT.
    DATA: gc_container TYPE scrfname VALUE 'LIST_AREA',
    gc_custom_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
    gc_grid TYPE REF TO CL_GUI_ALV_GRID,
    gs_layout TYPE LVC_S_LAYO,
    gt_fieldcat TYPE LVC_T_FCAT.
    DATA: ok_code TYPE SY-UCOMM.
    DATA: gt_outtab TYPE TABLE OF SFLIGHT.
    *DYNPRO
    CALL SCREEN 100.
    *& Module STATUS_0100 OUTPUT
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS '100'.
    CREATE OBJECT gc_custom_container
    EXPORTING
    container_name = gc_container
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    OTHERS = 6.
    CREATE OBJECT gc_grid
    EXPORTING
    i_parent = gc_custom_container
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    OTHERS = 5 .
    PERFORM prepare_field_catalog CHANGING gt_fieldcat .
    PERFORM prepare_layout CHANGING gs_layout .
    PERFORM get_alv_display.
    ENDMODULE.
    *& Module USER_COMMAND_0100 INPUT
    MODULE USER_COMMAND_0100 INPUT.
    OK_CODE = SY-UCOMM.
    IF OK_CODE = 'BACK'.
    SET SCREEN 0.
    LEAVE SCREEN.
    CLEAR OK_CODE.
    ENDIF.
    ENDMODULE.
    FORM prepare_field_catalog CHANGING gt_fieldcat TYPE LVC_T_FCAT.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    I_BUFFER_ACTIVE =
    I_STRUCTURE_NAME = 'SFLIGHT'
    I_CLIENT_NEVER_DISPLAY = 'X'
    I_BYPASSING_BUFFER =
    I_INTERNAL_TABNAME =
    CHANGING
    ct_fieldcat = gt_fieldcat[].
    ENDFORM.
    FORM prepare_layout changing p_gs_layout TYPE lvc_s_layo.
    p_gs_layout-zebra = 'X'.
    p_gs_layout-edit = 'X'.
    ENDFORM. " prepare_layout
    FORM get_alv_display .
    SELECT * FROM sflight INTO TABLE gt_outtab UP TO 10 ROWS.
    CALL METHOD gc_grid->set_table_for_first_display
    EXPORTING
    I_STRUCTURE_NAME = 'SFLIGHT'
    IS_LAYOUT = gs_layout
    CHANGING
    it_outtab = gt_outtab
    IT_FIELDCATALOG = gt_fieldcat
    ENDFORM. " get_alv_display

  • Its urgent please help me( Drop Down list box)

    Hi i am writing th eBDC for VA32 t-code in that screen it is having the dropdown box for the line items i want to select the drop down list in that screen through BDC how we can do this?
    Thanks in advance

    yes but when we are transfering that value it is not accepting
    0     Assigned by the System (Internal)
    1              Delivery date too late
    2     Poor quality
    3              Too expensive
    4     Competitor better
    5     Guarantee
    10            Unreasonable request
    11     Cust.to receive replacement
    50     Transaction is being checked
    the thing is in the drop downbox these text values are coming
    but how can i?

  • Adding fields to the out put list of a standard program

    Hi All,
    I have a problem , i need to add two fields to the output list which we get by executing the transaction CJ74( actual cost line item). The final table is a field symbol(<gt_pos_data>).
    can i implement this way will it works out.
    I want to create an internal table with all fields of  the final internal table(field symbol) and the new 2 fields.My problem is how can i include the fields of the field symbol to my table.
    can anyone do the needful ASAP.
    Regards and Thanks in advance,
    Priya.

    Hi Priya,
    Guess my last suggestion didn't work.
    I was checking the program and found that just before the ALV function an exit is provided and there are about 6-7 exits however I am not sure if it will solve the purpose for two reasons.
    1. these exits either talk about authorization which is of no use to us OR about layout of ALV which can be used to enhance the layout .
    however this will only enhance the layout and to add data to the table i am not sure nor could i check because of the second reason.
    2.Tried all possible data available in IDES to produce an output of the report however was not sucessful.
    if you know any stadard selection screen data which i can provide and produce an output do let me know to help you further.
    Otherwise here by checking the code I found some ASSIGN statement assigninng data to out field symbol. And all these assign statements are actually assigning either tables or work area to the FS. So I would suggest to put a break-point on the ALV function being called and check the format in the FS <gt_pos_data> and accordingly assgn the two fields which you need i.e first name last name , in your z program and also update the layout. For standard i am not sure for the reasons above that wether the same can be enhanced.
    <b>Always reward points to useful suggestions.</b>
    regards,
    Vikas

  • Add check box in ALV output  List.

    Hi
    I want to add check box in alv out put list . i m trying but not getting succsses .
    please tell me the process .
    thanks
    chandra

    Hi Chandra,
    Types: begin of ty_output,
          u201C Included these two types in your output structure.
       celltab     TYPE lvc_t_styl,   
       checkbox    TYPE c,
           end of ty_output.     
    Data: it_output type standard table of ty_output,
          wa_output type ty_output.
    Loop at it_output into wa_output.
    * Initially, set all checkbox cells editable.
       ls_celltab-fieldname = 'CHECKBOX'.
       ls_celltab-style = cl_gui_alv_grid=>mc_style_enabled.
       INSERT ls_celltab INTO TABLE lt_celltab.
       INSERT LINES OF lt_celltab INTO TABLE wa_coupon-celltab.
    MODIFY it_coupon FROM wa_coupon TRANSPORTING celltab.
    Endloop.
    Form build_field_catalog.
      wa_fieldcat-fieldname = 'CHECKBOX'.
      ADD 1 TO wf_pos.
      wa_fieldcat-col_pos  = wf_pos.
      wa_fieldcat-datatype = 'C'.
      wa_fieldcat-outputlen  = '6'.
      wa_fieldcat-reptext   = 'Select'.
      wa_fieldcat-coltext  = 'Select'.
      wa_fieldcat-seltext  = 'Select'.
      wa_fieldcat-tooltip  = 'Select'.
      wa_fieldcat-checkbox = 'X'.
      wa_fieldcat-edit     = 'X'.
      wa_fieldcat-key      = ''.
      wa_fieldcat-icon      = ''.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat.
    Endform.
    Form display_alv.
    ls_variant-report = sy-cprog..
      gs_layout-stylefname = 'CELLTAB'.  u201C Please  do not forget to include this statement
    gs_layout-zebra = 'X'.
      CALL METHOD alv_grid->set_table_for_first_display
        EXPORTING
          is_layout                     = gs_layout
          it_toolbar_excluding          = lt_exclude
        CHANGING
          it_outtab       = it_output
          it_fieldcatalog = it_fieldcat.
      CLEAR gt_fieldcat.
    Endform.
    Code Formatted by: Alvaro Tejada Galindo on Jan 4, 2010 4:31 PM

  • Alv and excel sheet out put.

    hi friends,
    now i am working on sales and purchase order report. For this i have created three radio button on selection screen one for sales 2nd for purchase and 3rd for both. when i click sales radio button it is going to display only sales data in ALV out put list as well as in EXCEL sheet.
    problem:-
    Some layout fileds (out put fields) i am storing in VARIENT and when i have passed this VARIANT in a SELECTION-SCREEN so here the output is ok for me, and i am unable to display these same fields in EXCEL sheet for this Please could u tell that how we do this. please send the logic for this.
    thands and regards.
    sagi.

    Hi Amol,
    you are not getting me ...
    see your itab will have all the fields irrespective of variant used. so you can directly use itab to download.
    i guess you are using alv tool bar option to download.
    but i am telling to use your own button to download the report using your own button with GUI_DOWNLOAD Fm.
    for this you pass your ITAB and and then give the file name then this will save all the fields to excel file.
    Regards
    vijay

  • Royalty out put

    now my client is implemention in sap. ihave one problem  ex: purchase order raised to vendor in same thing in sap po raise to vendor out put comes to purchase order display,  in same way the company raise to debit note royalty to customer but its not affected in accounts  out put comes royalty debit note  like ( PO Type )  how its possible in sap

    Hello
    Check this link and coordinate with ABAper.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/27d457f17b11d287d0080009b98822/frameset.htm
    Reg
    *assign points if useful

  • Out put its not coming in PL/SQL

    Hi
    i have one PL/SQL coding i excuted sucessfully but i'm not getting out put.i created one table and insert the values also.but still .output its not coming.my question is
    (i)i want to display all the employee name and salary of all the employees
    SQL> create table empdet
    2 (ename varchar2(15),
    3 salary number(8,3),
    4 dept varchar2(14));
    Table created.
    SQL> insert into values('vijay',10000,'manager');
    insert into values('vijay',10000,'manager')
    ERROR at line 1:
    ORA-00903: invalid table name
    SQL> ed
    Wrote file afiedt.buf
    1* insert into empdet values('vijay',10000,'manager')
    SQL> /
    1 row created.
    SQL> begin
    2 for empdet in (select ename,salary from employee)
    3 loop
    4 dbms_output.put_line(empdet.ename||''||empdet.salary);
    5 end loop;
    6 end;
    7 /
    PL/SQL procedure successfully completed.
    Note:
    1.i creat the table
    2.insert the values
    3.i exectuted PL/SQL query but output its not coming.

    i did but agine same problem out put its not coming.if u don't mine can u exectue this query in ur system
    SQL> SET SERVEROUTPUT ON
    SQL> begin
    2 2 for empdet in (select ename,salary from employee)
    3 3 loop
    4 4 dbms_output.put_line(empdet.ename||''||empdet.salary);
    5 5 end loop;
    6 6 end;
    7 /
    2 for empdet in (select ename,salary from employee)
    ERROR at line 2:
    ORA-06550: line 2, column 1:
    PLS-00103: Encountered the symbol "2" when expecting one of the following:
    begin case declare exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge
    <a single-quoted SQL string> pipe
    The symbol "2" was ignored.
    ORA-06550: line 3, column 1:
    PLS-00103: Encountered the symbol "3" when expecting one of the following:
    loop

  • I wish to generate reports from the database an out put it but i need to enter a date from and to ina  html input box

    i wish to generate reports from the database an out put it
    but i need to enter a date from and to ina html input box
    in the input box a data of range will be input from a start
    to latest
    latest being the default as today's date.
    any help tips snipplets, concepts , turot=rails.
    thanks

    easycfm.com has tutorials for people who are brand new.
    If you don't know much about sql, I have heard good things
    about the book, Teach Yourself SQL in 10 Minutes by Ben
    Forta.

  • In put variable to have default from date as current date..its urgent

    query has input data as an interval it could be replaced with a single start end date parameters.only the start date needs a default value...
    plz its urgent..
    i will assign points...

    Hi,
    Steps to follow,
    1) In bex, Create a new variable of 0Calday characteristic.
    Set the following attributes:
    Type of Variable: Characteristic Value
    Variable name: ZCEMONT
    Variable Description: Caldate
    Processing by: Customer Exit (Drop down combo box)
    Characteristic: Calendar date
    Press Next
    Variable Represents: Range Value
    Variable Entry is: Mandatory
    Check Ready for Input
    And Press Next
    Press Finish.
    2) Transaction CMOD
    Create a new project, maintain the short text, and assign a development class.
    (It’s better to ask somebody senior in our project about this, because every project have one main project and development class)
    If you have project say Zproject. Choose option components. Click Change.
    Double-click on EXIT_SAPLRRS0_001.Then double-click on ZXRSRU01.
    Enter the coding .Save and activate the coding.
    INCLUDE ZXRSRU01 *
    DATA: L_S_RANGE TYPE RSR_S_RANGESID. 'In global area
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT. 'In global area
    DATA: zdate like sy-datum.
    CASE I_VNAM.
    WHEN 'ZCEMONT'.
    IF i_step = 1.
    zdate = 'your default value'.
    l_s_range-low = zdate.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'BT'.
    APPEND l_s_range TO e_t_range.
    ENDIF.
    ENDCASE.
    Activate the project. This is very important.
    3) TO test now, use that variable ZCEMONT in query some where by going to BEx designer.save the query.Don;t run it.
    4) First run it in RSRT(Tran code).
    Hope i m clear.
    Now your report
    1)Place your Priority infoobject in rows
    2)In column area in Bex, Right Click and New Structure.
    3) Right click the New Structure->New Selection"DOWNTIME"->Drag your KF ZDOWNTIME
    4) Now Create a New Formula and drag  DOWNTIME->
    ='DOWNTIME'<4
    5) same for other two.
    Regards,
    San!
    Message was edited by: San!
    Message was edited by: San!

  • Sharepoint online multiline list colomn not rendering HTML out put

    Hi 
    I have list with multi line column with having multimedia options. my problem is i have created view and edited XSL  to format it. also i have added "escape out put =yes" for the column but no luck still column is rendering as HTML Tags witch
    is not rendering HTML formats in UI
    Following is my code for List view any help greatly appreciate.. 
    regards
    Radika
    <%@ Page language="C#" MasterPageFile="~masterurl/default.master"    Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage,Microsoft.SharePoint,Version=16.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" meta:progid="SharePoint.WebPartPage.Document"
    meta:webpartpageexpansion="full"  %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities"
    Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI,
    Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral,
    PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="ApplicationPages" Namespace="Microsoft.SharePoint.ApplicationPages.WebControls" Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageTitle" runat="server">
    <SharePoint:ListProperty Property="TitleOrFolder" runat="server"/> - 
    <SharePoint:ListProperty Property="CurrentViewTitle" runat="server"/></asp:Content>
    <asp:content contentplaceholderid="PlaceHolderAdditionalPageHead" runat="server">
    <SharePoint:RssLink runat="server"/>
    </asp:content>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageImage" runat="server">
    <SharePoint:ViewIcon Width="145" Height="54" runat="server"/></asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderLeftActions" runat="server">
    <SharePoint:RecentChangesMenu runat="server" id="RecentChanges"/>
    <SharePoint:ModifySettingsLink runat="server"/>
    </asp:Content>
    <asp:Content ContentPlaceHolderId ="PlaceHolderBodyLeftBorder" runat="server">
    <div height="100%" class="ms-pagemargin"><img src="/_layouts/15/images/blank.gif?rev=37" width='6' height='1' alt="" data-accessibility-nocheck="true"/></div>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
    <WebPartPages:WebPartZone runat="server" FrameType="None" ID="Main" Title="loc:Main"><ZoneTemplate>
    <WebPartPages:XsltListViewWebPart runat="server" ViewFlag="" ViewSelectorFetchAsync="False" InplaceSearchEnabled="True" ServerRender="False" ClientRender="False"
    InitialAsyncDataFetch="False" WebId="00000000-0000-0000-0000-000000000000" IsClientRender="False" GhostedXslLink="main.xsl" ViewGuid="{D63D68ED-17D1-4CC9-BCF6-20DFED0FB269}" EnableOriginalValue="False"
    DisplayName="NewsDisplay" ViewContentTypeId="0x" ListName="{17179938-EFC8-4DFE-92E9-CDE296D46919}" ListId="17179938-efc8-4dfe-92e9-cde296d46919" PageSize="-1" UseSQLDataSourcePaging="True" DataSourceID=""
    ShowWithSampleData="False" AsyncRefresh="False" ManualRefresh="False" AutoRefresh="False" AutoRefreshInterval="60" Title="CT_RSSFeeds" FrameType="Default" SuppressWebPartChrome="False"
    Description="" IsIncluded="True" PartOrder="2" FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True" AllowConnect="True" AllowEdit="True"
    AllowHide="True" IsVisible="True" TitleUrl="/sites/EFLDEV/Lists/CT_RSSFeeds" DetailLink="/sites/EFLDEV/Lists/CT_RSSFeeds" HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall=""
    MissingAssembly="Cannot import this Web Part." PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="False" ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_d63d68ed_17d1_4cc9_bcf6_20dfed0fb269"
    ExportMode="NonSensitiveData" __MarkupType="vsattributemarkup" __WebPartId="{D63D68ED-17D1-4CC9-BCF6-20DFED0FB269}" __AllowXSLTEditing="true" __designer:CustomXsl="Fldtypes_mswhTitle.xsl;fldtypes_Ratings.xsl"
    WebPart="true" Height="" Width=""><ParameterBindings>
    <ParameterBinding Name="dvt_sortdir" Location="Postback;Connection"/>
    <ParameterBinding Name="dvt_sortfield" Location="Postback;Connection"/>
    <ParameterBinding Name="dvt_startposition" Location="Postback" DefaultValue=""/>
    <ParameterBinding Name="dvt_firstrow" Location="Postback;Connection"/>
    <ParameterBinding Name="OpenMenuKeyAccessible" Location="Resource(wss,OpenMenuKeyAccessible)" />
    <ParameterBinding Name="open_menu" Location="Resource(wss,open_menu)" />
    <ParameterBinding Name="select_deselect_all" Location="Resource(wss,select_deselect_all)" />
    <ParameterBinding Name="idPresEnabled" Location="Resource(wss,idPresEnabled)" />
    <ParameterBinding Name="NoAnnouncements" Location="Resource(wss,noXinviewofY_LIST)" />
    <ParameterBinding Name="NoAnnouncementsHowTo" Location="Resource(wss,noXinviewofY_DEFAULT)" />
    </ParameterBindings>
    <Xsl>
    <xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:d="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime"
    xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt"
    xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal">     <xsl:output method="html" indent="no"/>     <xsl:decimal-format NaN=""/>  
      <xsl:param name="dvt_apos">&apos;</xsl:param>     <xsl:variable name="dvt_1_automode">0</xsl:variable>     <xsl:template match="/" xmlns:x="http://www.w3.org/2001/XMLSchema"
    xmlns:d="http://schemas.microsoft.com/sharepoint/dsp" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:SharePoint="Microsoft.SharePoint.WebControls">
            <xsl:call-template name="dvt_1"/>     </xsl:template>     
    <xsl:template name="dvt_1" ddwrt:ghost="" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:ddwrt2="urn:frontpage:internal">      
      <xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>      
         <link rel="stylesheet" href="/sites/EFLDEV/Utillity/ES/page.css" type="text/css" media="screen" /> <link rel="stylesheet" href="/sites/EFLDEV/Utillity/ES/slider.css" type="text/css"
    media="screen" /> <script type="text/javascript" src="/sites/EFLDEV/Utillity/ES/jquery.easing.1.2.js"></script> <script src="/sites/EFLDEV/Utillity/ES/jquery.anythingslider.js" type="text/javascript"
    charset="utf-8"></script> <script type="text/javascript">         function formatText(index, panel) {           return index + &quot;&quot;;        
    }         $(function () {             $(&apos;.anythingSlider&apos;).anythingSlider({                 easing: &quot;easeInOutExpo&quot;,    
                autoPlay: true,                 delay: 3000,                 startStopped: false,                
    animationTime: 600,                 hashTags: true,                 buildNavigation: true,             pauseOnHover: true,        
    startText: &quot;Go&quot;,         stopText: &quot;Stop&quot;,     navigationFormatter: formatText             });             $(&quot;#slide-jump&quot;).click(function(){
                    $(&apos;.anythingSlider&apos;).anythingSlider(6);             });         });     </script> <div class="anythingSlider">
        <div class="wrapper">         <ul>         <xsl:call-template name="dvt_1.body">             <xsl:with-param name="Rows"
    select="$Rows" />             </xsl:call-template>         </ul>             </div>         </div>     </xsl:template>
        <xsl:template name="dvt_1.body">         <xsl:param name="Rows" />         <xsl:for-each select="$Rows">    
            <xsl:call-template name="dvt_1.rowview" />         </xsl:for-each>     </xsl:template>     
    <xsl:template name="dvt_1.rowview" ddwrt:ghost="" xmlns:ddwrt2="urn:frontpage:internal">         <li>         <div class="textSlide">
    <!-- display the item title and a link to the item --><h3><a href="/{@FileDirRef}/DispForm.aspx?ID={@ID}" title="{@ItemTitle}"><xsl:value-of select="@ItemTitle" /></a></h3> <!-- display the
    body of the item  -->    <div><xsl:value-of select="@ItemDescription" disable-output-escaping="yes" /></div>     </div>     </li></xsl:template> 
    </xsl:stylesheet></Xsl>
    <DataFields>
    </DataFields>
    <XmlDefinition>
    <View Name="{D63D68ED-17D1-4CC9-BCF6-20DFED0FB269}" Type="HTML" DisplayName="NewsDisplay" Url="/sites/EFLDEV/Lists/CT_RSSFeeds/NewsDisplay.aspx" Level="1" BaseViewID="1"
    ContentTypeID="0x" ImageUrl="/_layouts/15/images/generic.png?rev=37" >
    <Query/>
    <ViewFields>
    <FieldRef Name="LinkTitle"/>
    <FieldRef Name="ChannelID"/>
    <FieldRef Name="Tag"/>
    <FieldRef Name="Created1"/>
    <FieldRef Name="ItemTitle"/>
    <FieldRef Name="ID"/>
    <FieldRef Name="ItemDescription"/>
    </ViewFields>
    <RowLimit Paged="TRUE">30</RowLimit>
    <Aggregations Value="Off"/>
    <JSLink>clienttemplates.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <Toolbar Type="Standard"/>
    </View>
    </XmlDefinition>
    </WebPartPages:XsltListViewWebPart>
    </ZoneTemplate></WebPartPages:WebPartZone>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageDescription" runat="server">
    <SharePoint:ListProperty CssClass="ms-listdescription" Property="Description" runat="server"/>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderCalendarNavigator" runat="server">
    <SharePoint:SPCalendarNavigator id="CalendarNavigatorId" runat="server"/>
      <ApplicationPages:CalendarAggregationPanel id="AggregationPanel" runat="server"/>
    </asp:Content>

    Hi,
    In SharePoint Online 2013, we can use jQuery to convert “&lt”  to “<” and  convert “&gt” to “>”.
    The following code for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function () {
    $(".ms-rtestate-field").each(function(){
    var $this = $(this).find("p");
    if ($this.length>0) {
    $this.each(function(){
    $(this).html($(this).html().replace('&lt;', '<').replace('&gt;', '>'));
    </script>
    We can also use JSLink to customize the display view.
    http://code.msdn.microsoft.com/office/Client-side-rendering-JS-2ed3538a
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Z Out Put Type For Picking List In VL06

    Can I assign Z Out Put Type of picking list in VL06 . If yes ,  I request you to mention where and how I can assign  please .
    Thanks In Advance

    Dear Jaya,
    The picking list Z output type you can get in VL06 transaction through assigning the same output type in your shipping point detail screen.
    IMG path is SPRO-->Enterprise Structure -->Definition -->Logistics Execution -->Define, copy, delete, check shipping point. Here you select your shipping point then go in to the detail screen here you can assign your Z picking list output type under Print Picking list tab.
    Before that you need to do these configuration settings.
    1.You need to define the Z Output type
    SPRO>IMG>Logistics execution>Shipping>Basic shipping functions-->Output Control -->Output Determination -->Maintain Output Determination for Outbound Deliveries -->Maintain Condition Tables -->
    Maintain Output Types.
    2. Using TCode V/38, you have to maintain the Z condition type by clicking on new entries, maintained the time,print parameters and transmission medium.
    You need to assign the processing routines Prog: ,Form Routine:, and Form:
    3. You need to maintain the print parameters based on the shipping point for your Z output type.
    through transaction VP01SHP.
    I hope this will help you,
    Regards,
    Murali.

  • Thanks.. can u please help me out in one more question. how can i transfer files like pdf, .docx and ppt from my laptop to iPhone 5 ? please its urgent.

    thanks.. can u please help me out in one more question. how can i transfer files like pdf, .docx and ppt from my laptop to iPhone 5 ? please its urgent.

    See your other post
    First, i want to know how can i pair my iPhone 5 with my lenovo laptop?

  • How can we get date period in out put screen as a header (PLS Urgent)

    Hi frdz,
    In ad hoc reports client want to get date field in out put screen as per selection screen date priod.
    Kindly let me know how can we get the same.
    EX: My report selection peiod is 01.01.2006 to 31.12.2006
    The same above date I want to get in out field screen header.
    Thanks,
    $ Lakshmi
    Message was edited by:
            Lakshmi

    see if this link helps http://support.apple.com/kb/ht1212
    you will probably have to restore the iphone as new.

Maybe you are looking for

  • How to create a new domain in BPEL console

    Hi Am new to BPEL can some one let me know how to create domain in BPEL console Thanks Baji

  • Del accnt

    hi, In delivery PGI one accounting document is created & in billing one accounting document is created.So what is the difference between them. Thanks, Pintoo.

  • Locking and Unlocking Transactions

    hi, We have locked SM06 transaction in SM01 and we dont know the time Please let me know if there is way to find out the date and time of when SE06 is locked in SM01 Please guide

  • I am having trouble downloading photoshop elements 11.

    i pressed the download button next to my order and it brought me to a page where i had to install the installer, which i did and i ran it.   then i went back to the recent order page and pressed download and it brought me back to the page to download

  • File to file scenrio

    Hi I am doing file to file scenario , i want to find the directory path at receiver dynamically on the basis of sender business service name for eg if the file is coming from business service X101 then the file should go in folder X101 Any ideas Rega