form fill_it_sort.
    iw_sort-spos = '1'.
     iw_sort-fieldname = 'AUFNR'.
     iw_sort-up = 'X'.
     "iw_sort-subtot = 'X'.
     append iw_sort to it_sort_lvc.
     clear iw_sort .

iw_sort-spos = '2'.
     iw_sort-fieldname = 'ARBPL'.
     "iw_sort-up = 'X'.
    " iw_sort-subtot = 'X'.
     append iw_sort to it_sort_lvc.
     clear iw_sort .

iw_sort-spos = '3'.
     iw_sort-fieldname = 'KOSTL'.
     "iw_sort-up = 'X'.
     "iw_sort-subtot = 'X'.
     append iw_sort to it_sort_lvc.
     clear iw_sort .

iw_sort-spos = '4'.
     iw_sort-fieldname = 'BUDAT'.
     "iw_sort-up = 'X'.
    " iw_sort-subtot = 'X'.
     append iw_sort to it_sort_lvc.
     clear iw_sort .

iw_sort-spos = '5'.
     iw_sort-fieldname = 'BUDAT'.
     "iw_sort-up = 'X'.
    " iw_sort-subtot = 'X'.
     append iw_sort to it_sort_lvc.
     clear iw_sort .

endform.

form alv_disp.

perform fill_fieldcat using it_fieldcat.
    perform fill_it_sort.

call function 'REUSE_ALV_GRID_DISPLAY_LVC'
    exporting
      i_callback_program    = sy-repid

"i_callback_pf_status_set = 'PF_status'
      i_callback_user_command  = 'USER_COMMAND'
      it_fieldcat_lvc          = it_fieldcat
      "is_layout_lvc            = it_layout
      i_save                  = 'A'
      it_sort_lvc                = it_sort_lvc

tables
       t_outtab                = gt_excel

exceptions
      program_error            = 1
      others                   = 2.

endform.

IT_sort用法实例的更多相关文章

  1. php中的curl使用入门教程和常见用法实例

    摘要: [目录] php中的curl使用入门教程和常见用法实例 一.curl的优势 二.curl的简单使用步骤 三.错误处理 四.获取curl请求的具体信息 五.使用curl发送post请求 六.文件 ...

  2. 上传文件及$_FILES的用法实例

    Session变量($_SESSION):�php的SESSION函数产生的数据,都以超全局变量的方式,存放在$_SESSION变量中.1.Session简介SESSION也称为会话期,其是存储在服务 ...

  3. C++语言中cin cin.getline cin.get getline gets getchar 的用法实例

    #include <iostream> #include <string> using namespace std; //关于cin cin.getline cin.get g ...

  4. Union all的用法实例sql

    ---Union all的用法实例sqlSELECT TOP (100) PERCENT ID, bid_user_id, UserName, amount, createtime, borrowTy ...

  5. 【转】javascript入门系列演示·三种弹出对话框的用法实例

    对话框有三种 1:只是提醒,不能对脚本产生任何改变: 2:一般用于确认,返回 true 或者 false ,所以可以轻松用于 if...else...判断 3: 一个带输入的对话框,可以返回用户填入的 ...

  6. php strpos 用法实例教程

    定义和用法该strpos ( )函数返回的立场,首次出现了一系列内部其他字串. 如果字符串是没有发现,此功能返回FALSE . 语法 strpos(string,find,start) Paramet ...

  7. 【JSP】三种弹出对话框的用法实例

    对话框有三种 1:只是提醒,不能对脚本产生任何改变: 2:一般用于确认,返回 true 或者 false ,所以可以轻松用于 if...else...判断 3: 一个带输入的对话框,可以返回用户填入的 ...

  8. python多线程threading.Lock锁用法实例

    本文实例讲述了python多线程threading.Lock锁的用法实例,分享给大家供大家参考.具体分析如下: python的锁可以独立提取出来 mutex = threading.Lock() #锁 ...

  9. jQuery中on()方法用法实例详解

    这篇文章主要介绍了jQuery中on()方法用法,实例分析了on()方法的功能及各种常见的使用技巧,并对比分析了与bind(),live(),delegate()等方法的区别,需要的朋友可以参考下 本 ...

随机推荐

  1. 三个loading小动画实例

    直接贴代码: <!DOCTYPE html><html><head>    <meta charset="utf-8">    &l ...

  2. Angular1.x组件通讯方式总结

    Angular1开发模式 这里需要将Angular1分为Angular1.5之前和Angular1.5两个不同的阶段来讲,两者虽然同属Angular1,但是在开发模式上还是有较大区别的.在Angula ...

  3. centos中开机时如何自启动samba服务器

    解决办法如下:1.编辑rc.local文件#vi /etc/rc.d/rc.local2.加入如下启动命令/usr/sbin/apachectl start/etc/rc.d/init.d/mysql ...

  4. HackerRank "New Year Chaos"

    Two tricks here: 1. Counting no. of inversed pairs - using Merge Sort, nothing special 2. How to che ...

  5. github管理代码

    1.首先去github官网申请一个账号 github官网 2.登录github,并新建一个库: 点击: 进去之后,这里填写库名,可以随便填写:  然后直接点击: 3.本地连接github 1)安装gi ...

  6. Junit4常用注解

    Junit4注解 JUnit4的测试类不用再继承TestCase类了.使用注解会方便很多. @Before:初始化方法@After:释放资源@Test:测试方法,在这里可以测试期望异常和超时时间@Ig ...

  7. TCP/UDP的接收包方式

    UDP udp不是流式的,每次接收一个包,长度不超过(65535-28,总包长65535字节,包头28字节).所以UDP方式下不需要填写任何参数直接调用 $client->recv() 即可.注 ...

  8. CRM HomePage.aspx

    //added by bgx on 20160616 //隐藏指定title按钮 function hideISVButton(buttonTitle) { var comps = document. ...

  9. 1. Longest Palindromic Substring ( 最长回文子串 )

    要求: Given a string S, find the longest palindromic substring in S. (从字符串 S 中最长回文子字符串.) 何为回文字符串? A pa ...

  10. loadrunner11遇到的问题汇总及相应的解决方案(持续更新)

    1.在此界面点击Run Load Tests提示: "Can not save the license information because access to the registry  ...