siebel

How to retrieve Business Component rows in SIebel Open UI PM?

别说谁变了你拦得住时间么 提交于 2020-01-05 02:52:08
问题 How can I get field values of BC from Presentation Model in Siebel Open UI? I was trying: SiebelApp.S_App.Model.GetBusObj("").GetBusComp("") but Model is not recognized. I also tried creating model with GetModel() function, but it didn't succeed. 回答1: If you need to access any BC in the Active View,you can do that via the Get method of the PM, eg: GetRecordSet will give you an array of variables. See this example to see how you can GetFieldValue If you need to access some other BCs not in the

I want to refresh a view in siebel on a button click

ε祈祈猫儿з 提交于 2019-12-24 11:05:19
问题 I am using siebel v 8.0. I would like to refresh the view when button in an applet is clicked. When the button is clicked, I need some code in browser script that can refresh the view. I have tried 1. this.BusComp().InvokeMethod("RefreshRecord"); 2. this.BusComp().InvokeMethod("RefreshBusComp"); 3. theApplication().InvokeMethod("RefreshBusComp"); 4. theApplication().GetService("FINS Teller UI Navigation").InvokeMethod ("RefreshCurrentApplet", theApplication(). NewPropertySet(), theApplication

Error on reference integration ATG Siebel

倖福魔咒の 提交于 2019-12-24 06:03:57
问题 We are integrating ATG to Siebel, we are getting an error while syncing the products from Siebel below are the error. [oracle@localhost logs]$ less VodafonePub.out **** Error Wed Jul 20 04:41:36 EDT 2016 1469004096089 /atg/siebel/catalog/SiebelCatalogImportService THREAD (Thread-58): Batch processing failed. Logging details with parent. **** Error Wed Jul 20 04:41:36 EDT 2016 1469004096090 /atg/siebel/catalog/SiebelCatalogImportService Aborting Job after ADD/UPDATE PHASE - all repository

jQuery get value of selected radio button

China☆狼群 提交于 2019-12-16 20:02:36
问题 The problem statement is simple. I need to see if user has selected a radio button from a radio group. Every radio button in the group share same id. The problem is that I don't have control on how the form is generated. Here is the sample code of how a radio button control code looks like: <input type="radio" name='s_2_1_6_0' value='Mail copy to my bill to address' id = "InvCopyRadio" onchange = 'SWESubmitForm(document.SWEForm2_0,s_4,"","1-DPWJJF")' style="height:20;width:25" tabindex=1997 >

WSDL creation in Siebel

半腔热情 提交于 2019-12-12 03:49:41
问题 We created one webservice to fetch the full product promotion structure which is based on custom version of SWI ISS Promotion IO This webservice is returning 80% of the promotion structure. As the IO don’t have any Integration component associate with Relation Ship Domain it is not returning the records associated with the Relationship domain The Relationship Domain applet is associated with the BC ISS Promotion CP Structure Domain BusComp which is VBC .It don’t have any table association

Plink is not returning to command prompt when executing start_http

泪湿孤枕 提交于 2019-12-12 02:14:07
问题 I'm executing a command using Plink through a Perl file from a Windows machine. system("cmd /c c:\\plink.exe -batch -ssh -l $user_name @ $host_name -pw $pwd start_http"); Execution is hanging. When I execute the same command from command prompt, Plink is not returning to command prompt. Tried using & at the end of the command but no use. And I don't want to redirect output to any log file. Whereas "stop" command is working fine system("cmd /c c:\\plink.exe -batch -ssh -l $user_name @ $host