EBS 组织架构:
(一)业务组(BG)
(二)法律实体(LE)
(三)业务实体(OU)
(四)库存组织(INV)
(五)公司成本中心(Cost Center)
(六)HR组织
(七)多组织接入控制
Sale Order 销售订单 的 Ship Confirm 发运功能模块:
在做状态变化时候要记得对WHO字段进行状态的修改。
必要表的信息:...
分类:
其他好文 时间:
2014-08-28 18:14:15
阅读次数:
401
oracle 实现类似MYSQL的 find_in_set 排序,函数 decode:
select * from tb_info_game where gameid in(23,20,19,26,18)
order by decode(gameid,23,1,20,2,18,3,26,4,1009,5)
参考CDSN的帖子:http://topic.csdn.net/...
分类:
数据库 时间:
2014-08-28 18:13:25
阅读次数:
301
SubsetsGiven a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must...
分类:
其他好文 时间:
2014-08-28 17:58:05
阅读次数:
356
比如表中有两列数据 :id name1 a1 b1 c2 d2 e变成如下格式:id name1 a,b,c2 d,e数据:if object_id(#表)is not null drop table #表select did,name, from #表 order by diddrop table...
分类:
数据库 时间:
2014-08-28 17:46:25
阅读次数:
469
一对多的双向关联:user对应多个orderuser.xml: order.xml: 注意如果一的那方不加inverse="true",增,更可以正常,但删除会引起错误。Hibernate中的inverse在表关系映射中经常应...
分类:
系统相关 时间:
2014-08-28 16:53:50
阅读次数:
244
Sizzle.find = function( expr, context, isXML ) {
var set, i, len, match, type, left;
//expr是否为空
if ( !expr ) {
return [];
}
for ( i = 0, len = Expr.order.length; i < len; i++ ) {
type = Expr...
分类:
Web程序 时间:
2014-08-28 16:16:59
阅读次数:
236
Today, I started to create a couple of JSP pages for the server-side part of my MSc thesis project in order to be able to output some meaningful stati...
分类:
其他好文 时间:
2014-08-28 16:06:09
阅读次数:
172
3.点击字母“i”开始编辑文件,输入内容:
DocumentRoot /alidata/www/phpwind
ServerName localhost
ServerAlias localhost
Options -Indexes FollowSymLinks
AllowOverride all
Order allow,deny
...
分类:
Web程序 时间:
2014-08-28 13:21:19
阅读次数:
269
select t2.username,t2.sid,t2.serial#,t2.logon_time
from v$locked_object t1,v$session t2
where t1.session_id=t2.sid order by t2.logon_time;
查看数据库都有哪...
分类:
其他好文 时间:
2014-08-28 13:10:59
阅读次数:
156
Permutation Sequence
The set [1,2,3,…,n] contains a
total of n! unique permutations.
By listing and labeling all of the permutations in order,
We get the following sequence (ie, for n = 3):...
分类:
其他好文 时间:
2014-08-28 11:30:09
阅读次数:
231