sql apex shuttle v2,connoar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql apex shuttle v2,connoar相关的知识,希望对你有一定的参考价值。

declare  
  l_vc_arr2 apex_application_global.vc_arr2;   
	l_id number;
begin  
  
    l_vc_arr2 := apex_util.string_to_table(:P422_ORGANIZACIONES);
	
	delete
	  from items_distribucion_config_org
	 where id_itdico = to_number(:P422_ID_ITDICO)
	   and ':' || :P422_ORGANIZACIONES || ':' not like '%:' || idorganizacion || ':%';
	
	
    for i in 1..l_vc_arr2.count loop  
    
  	  begin
    		select id_idcorg 
    		  into l_id
    		  from items_distribucion_config_org
    		 where id_itdico = to_number(:P422_ID_ITDICO)
    		   and idorganizacion = to_number(l_vc_arr2(i));
  	  exception
  	    when no_data_found then
    		insert
    		  into items_distribucion_config_org ( 
    				id_itdico
    			  , idorganizacion
    			  , ind_activo
    			  ) values ( 
    				:P422_ID_ITDICO
    			  , l_vc_arr2(i)
    			  , 1  
    			); 
  	  end; 
              
    end loop;   
    
end; 

以上是关于sql apex shuttle v2,connoar的主要内容,如果未能解决你的问题,请参考以下文章

Oracle Apex Shuttle 项目数组在提交时为空

Oracle ApEx Shuttle 和 Ajax On Demand 流程

Oracle Apex:Shuttle 没有将价值放在右侧并提供 null

Oracle APEX - 将 Shuttle Item 选择保存到新表

Oracle Apex:在另一个项目更改时刷新项目

sql apex_item,apex项目