draft2

SVNCache可以关掉:open "Settings", then go
to "Look and Feel"->"Icon Overlays"->"Status cache" and click "None"

  create or replace trigger 触发器名称(命名规则:TRG_SYNC_表名)
    after Insert Or Update Or Delete on 表名
    Referencing OLD As OLD NEW As NEW
    FOR each row
declare
  v_Region (区号)  Varchar2(5) := '';
  v_FlowNo  (流水号) Varchar2(60) := '';
  v_SeqNo  (业务日志更新序号)  Number(10) := 0;
  v_RealFlag  (是否实时) Varchar2(1) := '';
begin
  Pkg_SyncInfo.ap_GetRecVar(v_Region, v_FlowNo, v_SeqNo, v_RealFlag);
  If inserting Then
    If v_RealFlag = '0' Then
      Insert Into ENTITY_SYNC_QUEUE
        (Region,
         Create_Time,
         Trans_SN,
         Refresh_Index,
         Entity_Table,
         Entity_Key,
         Refresh_Type,
         Source_Table,
         Source_Key)
      Values
        (v_Region,
         Sysdate,
         v_FlowNo,
         v_SeqNo,
         '实体表名',
         '实体键值',
         'I',
         '源表名',
         :NEW.源键值);  
  End If;
end TRG_SYNC_CM_CA_ACCOUNT;


“实体定义表”与“查询实体数据源定义表”的数据,放入预先定义好的Map变量中?是什么表

往一个list里面加对象时,最好是一个对象一个对象的NEW不然可能出现加入的对象全是一个值


<?xml version="1.0" encoding="UTF-8"?>
<businesses>      
<business name="helloWorld"
do="com.huawei.bme.example.ui.helloworld.domain.HelloWorld" extends="global-default"
service-bean="com.huawei.bme.example.ui.helloworld.service.HelloWorldService" start-step="inputName">
<step name="inputName" view="/example/helloworld/name.usl">      
    <invoke service="sayHello">         
**??<result on="#BMEResult == 'success'" to="toWelcome"/>             ?? 
    </invoke>                    
</step>           
<end name="toWelcome" view="/example/helloworld/welcome.usl"/>
    </business>
    </businesses>
<bme:view>
    <bme:panel title="please input your name" cols="2" viewmode="edit">
<bme:field property="name" colspan="2" label="your name"></bme:field>
<bme:buttongroup align="left">
    <bme:button value="say hello" id="submit">
<bme:fire event="click" service="sayHello('%{BMEModel}')"
mode="navigate"></bme:fire>            
    </bme:button>
</bme:buttongroup>
    </bme:panel>
</bme:view>


extends="global-default"
----com.huawei.bme.example.ui.helloworld.service.HelloWorldService
----/example/helloworld/name.usl
----/example/helloworld/welcome.usl
sayHello('%{BMEModel}


取conversation值的方法:
1:Conversation cs = ConversationUtils.getConversation();
  cs.getAttributes().put("sviews", s);

2:business.xml中<step name="reallist" view="/helloworld/getStudents.usl" ori="#sviews"></step>   //此中#sviews和sviews的相同;

3:usl中<bme:cell property="#sviews" >
#sviews


你可能感兴趣的:(draft2)