Web service appears to be ignoring values for destination and parameters.

I'm on my long trek trying to get a report to export programatically from CRS2008 to a pdf in a folder.  The good news is I'm almost done.  The bad news is I can't seem to figure out where I'm going wrong.  I've cobbled together some code and it works (doesn't die).  The only problem is whatever I set the destination to be it always gets overridden by the defaults in the report.  The same goes for the parameters.
Any help would be greatly appreciated,
J
code is below.
    protected void TestSub2()
        // Document path
        string crPath = "path://InfoObjects/Root Folder/WWE Reports/rtodbc3" + "@SI_SCHEDULEINFO,SI_PROCESSINFO";
        // Enterprise Web Services URL and Login Credentials.
        string boSessionURL = "http://192.168.1.100:8080/dswsbobje/services/Session";
        string boCMSName = "myorgani-1cf481";
        string boAuthType = "secEnterprise";
        string boUsername = "Administrator";
        string boPassword = "Password";
        Session boSession = null;
        try
            // Logon to Enterprise
            EnterpriseCredential boCredential = new EnterpriseCredential();
            boCredential.Domain = boCMSName;
            boCredential.AuthType = boAuthType;
            boCredential.Login = boUsername;
            boCredential.Password = boPassword;
            boSession = new Session(new BusinessObjects.DSWS.Connection(boSessionURL));
            boSession.Login(boCredential);
            // Retrieve Document CUID
            BIPlatform biPlatform
                = BIPlatform.GetInstance(boSession, boSession.GetAssociatedServicesURL("BIPlatform")[0]);
            GetOptions getOpts = new GetOptions();
            getOpts.IncludeSecurity = true;
            ResponseHolder rh = biPlatform.Get(crPath, getOpts);
            InfoObjects reports = rh.InfoObjects;
            if (reports == null)
                return;
            BusinessObjects.DSWS.BIPlatform.Desktop.CrystalReport myReport = (BusinessObjects.DSWS.BIPlatform.Desktop.CrystalReport)reports.InfoObject[0];
            SchedulingInfo schedulingInfo = myReport.SchedulingInfo;
            if (schedulingInfo == null)
                schedulingInfo = new SchedulingInfo();
            //start put in parameters
            ReportProcessingInfo procInfo = myReport.PluginProcessingInterface;
            ReportParameter[] repParams = procInfo.ReportParameters;
            CurrentValues oCurrentValues = new CurrentValues();
            BusinessObjects.DSWS.BIPlatform.Desktop.PromptValue[] oPromptValue = new BusinessObjects.DSWS.BIPlatform.Desktop.PromptValue[1];
            oPromptValue[0] = new BusinessObjects.DSWS.BIPlatform.Desktop.PromptValue();
            oPromptValue[0].Data = "2";
            oCurrentValues.CurrentValue = oPromptValue;
            repParams[0].CurrentValues = oCurrentValues;
            // end put in parameters
            //start put in for scheduling parameters...
            Destination[] oDestination = new Destination[1];
            oDestination[0] = new Destination();
            oDestination[0].Name = "CrystalEnterprise.DiskUnmanaged";
            BusinessObjects.DSWS.BIPlatform.Dest.DiskUnmanagedScheduleOptions diskOptions = new BusinessObjects.DSWS.BIPlatform.Dest.DiskUnmanagedScheduleOptions();
            String[] destinationFile = new String[1];
            destinationFile[0] = "C:\\" + myReport.Name + ".rpt";
            diskOptions.DestinationFiles = destinationFile;
            schedulingInfo.Destinations = oDestination;
            //end put in for scheduling parameters...
            schedulingInfo.RightNow = true;
            schedulingInfo.ScheduleType = ScheduleTypeEnum.ONCE;
            BusinessObjects.DSWS.BIPlatform.Desktop.ReportProcessingInfo reportProcessingInfo = new ReportProcessingInfo();
            BusinessObjects.DSWS.BIPlatform.Desktop.CrystalReportFormatOptions crystalReportFormatOptions;
            crystalReportFormatOptions = new CrystalReportFormatOptions();
            crystalReportFormatOptions.Format = ReportFormatEnum.PDF;
            crystalReportFormatOptions.FormatSpecified = true;
            reportProcessingInfo.ReportFormatOptions = crystalReportFormatOptions;
            myReport.PluginProcessingInterface = reportProcessingInfo;
            myReport.SchedulingInfo = schedulingInfo;
            reports.InfoObject[0] = myReport;
            biPlatform.Schedule(reports);
            Response.Write("hey it worked!");
        catch (DSWSException ex)
        { Console.WriteLine(ex); }
        finally
            if (boSession != null)
                boSession.Logout();

I've based my stuff on the samples.  Unfortunately when I try and run them I get other errors.  For instance when I get to the line
Dim rh As ResponseHolder = bipService.Get("path://InfoObjects/Root Folder/WWE Reports/" + REPORT_STRING + "@SI_SCHEDULEINFO, SI_PROCESSINFO", oGetOptions)
and the path string is:
"path://InfoObjects/Root Folder/WWE Reports/rtodbc3@SI_SCHEDULEINFO, SI_PROCESSINFO"
I get
{"Get exception (Error: WBP 99999)"}
    CallStackTrace: "   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
   at BusinessObjects.DSWS.BIPlatform.ConsumerBIPlatform.Get(String SessionID, String Path, GetOptions Options)
   at BusinessObjects.DSWS.BIPlatform.BIPlatform.Get(String pathURI, GetOptions options)"
    CauseDetail: Nothing
    CauseException: "SoapException"
    CauseID: Nothing
    CauseMessage: "The [action] cannot be processed at the receiver."
    Data: {System.Collections.ListDictionaryInternal}
    HelpLink: Nothing
    ID: "http://biplatform.dsws.businessobjects.com/2007/06/01/Get"
    InnerException: Nothing
    Message: "Get exception (Error: WBP 99999)"
    Operation: "http://biplatform.dsws.businessobjects.com/2007/06/01/Get"
    Source: "DSWS Web Service Consumer"
    StackTrace: "   at BusinessObjects.DSWS.BIPlatform.BIPlatform.Get(String pathURI, GetOptions options)
   at _Default.Schedule() in C:\Storage\Software\CR2008\wssdk_net_samples_12\Schedule_VB\Schedule_VB\Default.aspx.vb:line 89"
    TargetSite: {System.Reflection.RuntimeMethodInfo}
    WebServiceID: ""
J

Similar Messages

  • Web Services Test Page: No input fields for SOAP header parameters?

    Hello,
    we're using OracleAS / OC4J 10.1.3.1 and have developed a web service that has some self defined SOAP header parameters.
    I would like to use the Web Services Test Page provided by the OAS but it seems that there is no opportunity
    to provide input values for these SOAP header parameters.
    Do I miss something there or is it not supported by OAS?
    I've read the documentation but could not find a clue.
    any help is appreciated,
    Regards,
    Martin

    I hear you. As you have probably heard, OC4J is being replaced by WebLogic Server and the 10.1.3.x releases are the last that will be produced. We'll do maintenance on it of course, but little/no new feature work. This would be a new feature we'd have to add, so I'm afraid there's not much chance in having it done.
    It's not ideal, and of course more work for you, but if you want to provide your client with a test page that exposes the SOAP headers as form fields, you could always develop and ship one yourself.
    -steve0

  • Acrobat Suddenly Ignores Prompt for Destination and Filename

    I've searched the forums and haven't found a solution although noted many occurrences of related problem. I'm running Acrobat 7 in Windows XP in a LAN environment.
    Up until yesterday, I have not had any problem with being prompted for a new pdf destination or filename as selected in my Distiller preferences. Now Acrobat creates the pdf and files it without the prompt. This is very disruptive to my workflow.
    Distiller preferences selected: Ask for PDF file destination, View PDF when using Distiller. (This isn't occurring)
    Adobe PDF Printing Preferences: Adobe PDF Output Folder = Prompt for Adobe PDF filename, Ask to Replace existing PDF file (This isn't occurring)
    Default port was My Documents/*pdf BUT I created a new port configured to a folder that I selected. New pdfs are now saved there but without prompting for destination or filename.
    Our I.T. staff isn't well-versed in Acrobat or Adobe softwares. If anyone has a solution, I would really appreciate one!

    Simply go to the START menu and select the printers. Right click on the Adobe PDF printer and select the properties. On the general tab, select printing preferences. Then select the Adobe PDF settings tab. On that tab menu you will have check boxes for those desired preferences.
    If you are using PDF Maker, there is a possibility that you will have to check the preferences in that menu in WORD or other application. PDF Maker uses the preferences in the printer properties and then adds others. The settings there may override the printer settings if you change them.

  • Web services design issues.... for a newbie

    I have to develop several web services (JDev 9.0.2.822 and 9iAS R2). Almost all examples that can be downloaded from OTN expose simple web services that user java datatype like strings, ints and the like. In my case, the web services I should develop transfer custom information which are modeled as value classes or entity EJB's in my app. We deal with complex objects which contain collections/arrays/lists of other objects, and although most of the bussiness logic of the app is exposed via stateless session beanss and clases, I can not select their nethods since there ar no custom serializers for them.
    By reviewing the sample newsfeed web service I noticed that int their implementation they decided to "hard-code" the data by doing an XML-query to the db and constructing a custom XML document. this document is returned as a java string so the web-service is, at the end a very simple one, which uses no custom serializers. Of course there is code to create the XML doc, and there should be some XML parsing at the client in order to deserialize the XML into java in order to do something with it.
    My question is, is this the "preferred" method to deal with custom complex datatypes. should I include code in my beans and value classes so they "serialize" itself to XML so my web services have to deal with simple java strings? I have no experience in developing serializers, and I can't see why they are used? I am not sure which path should I follow, for example, should I use an array serializer to serialize a collection/array of object or should I better develop a method which will create a custom XML document repesenting the array? Are there any trade-off?
    I have to start development right away, so please give me some insinght.
    Thanks,
    Fedro.

    Yes, Oracle9iAS is currently production on 9.0.2. The target for OC4J 9.0.3 was end of summer but I have not seen it arrive yet. It is supposed to work in conjunction with 9.0.2 - i.e. you can use the OC4J 9.0.3 with the rest of your Oracle9iAS implementation. I think you are reasonably safe assuming it will be here by year end. I sit on the JDev side of the house so don't have specifics on what their actual delivery dates are but would guess sometime during September. The developer preview of OC4J 9.0.3 is currently available here on OTN as per the headline in the Web services Center at: http://otn.oracle.com/tech/webservices.
    There are two big advantages of OC4J 9.0.3:
    1. Interoperability testing ... it has been put through the SOAPBuilder's interoperability tests and includes a test suite for you to try it out 9.0.2 is fine here but you have evidence in 9.0.3;
    2. Feature/functionality - support for Web services based on JMS, document style Web service support, testing harness at the end-point, J2EE 1.3 certification, custom serialization support (not there in 9.0.2), cleaner PL/SQL based Web services and more - see:
    http://otn.oracle.com/products/ias/daily/jul22.html
    The development environment that goes along with it is JDeveloper 9.0.3. While OC4J 9.02/9.03 comes with what is called the Web services assembly tool for those who like scripting/command-driven approaches, JDev puts a traditional visual dev environment on top of the OC4J 9.0.3 environment (and also Apache SOAP 2.2/2.3.1, incidently) The developer preview of JDev 9.03 is due out within days here on OTN ... probably Tuesday based on what I understand. JDev 9.0.3 production is scheduled to arrive probably in late September mid-October.
    Hope this gives some background to help with your decision.
    Mike.

  • How to know the dynamic values for this :AND category_id_query IN (1, :3, )

    Hi Team,
    R12 Instance :
    Oracle Installed Base Agent User Responsibility --> Item Instances -->
    Item Instance: Item Instances > View : Item Instance : xxxxx> Contracts : Item Instance : xxxxx> Service Contract: xxxxx>
    In the above page there are two table regions.
    Notes.
    -------------------------------------Table Region---------------------------
    Attachments
    -------------------------------------Table Region---------------------------
    --the attachments are shown using the query from the fnd_lobs and fnd_docs etc...
    I want to know what are the document types are displayed in this page ?
    --We developed a custom program to attach the attachments to the  services contracts and the above seeded OAF page displays those ..as needed.
    But after recent changes..the Attachments--> table region is not showing the attachments.
    I have verified the query..and could not find any clue in that..
    but i need some help if you guys can provide..
    SELECT *
    FROM
    *(SELECT d.DOCUMENT_ID,*
    d.DATATYPE_ID,
    d.DATATYPE_NAME,
    d.DESCRIPTION,
    DECODE(d.FILE_NAME, NULL,
    *(SELECT message_text*
    FROM fnd_new_messages
    WHERE message_name = 'FND_UNDEFINED'
    AND application_id = 0
    AND language_code  = userenv('LANG')
    *), d.FILE_NAME)FileName,*
    d.MEDIA_ID,
    d.CATEGORY_ID,
    d.DM_NODE,
    d.DM_FOLDER_PATH,
    d.DM_TYPE,
    d.DM_DOCUMENT_ID,
    d.DM_VERSION_NUMBER,
    ad.ATTACHED_DOCUMENT_ID,
    ad.ENTITY_NAME,
    ad.PK1_VALUE,
    ad.PK2_VALUE,
    ad.PK3_VALUE,
    ad.PK4_VALUE,
    ad.PK5_VALUE,
    d.usage_type,
    d.security_type,
    d.security_id,
    ad.category_id attachment_catgeory_id,
    ad.status,
    d.storage_type,
    d.image_type,
    d.START_DATE_ACTIVE,
    d.END_DATE_ACTIVE,
    d.REQUEST_ID,
    d.PROGRAM_APPLICATION_ID,
    d.PROGRAM_ID,
    d.category_description,
    d.publish_flag,
    DECODE(ad.category_id, NULL, d.category_id, ad.category_id) category_id_query,
    d.URL,
    d.TITLE
    FROM FND_DOCUMENTS_VL d,
    FND_ATTACHED_DOCUMENTS ad
    WHERE d.DOCUMENT_ID = ad.DOCUMENT_ID
    *) QRSLT*
    WHERE ((entity_name    ='OKC_K_HEADERS_V'-- :1
    AND pk1_value          IN ( 600144,599046) --:2
    AND category_id_query IN (1, :3, :4, :5, :6, :7) )
    AND datatype_id       IN (6,2,1,5)
    AND (SECURITY_TYPE     =4
    OR PUBLISH_FLAG        ='Y')))
    --='000180931' -- 'ADP118'
    The above seeded query is the one which is used for table region to retrieve the data..
    how to know the dynamic values for this : AND category_id_query IN (1, :3, :4, :5, :6, :7) )
    --Sridhar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Patricia,
    is it working for restricted key figure and calculated key figure ??
    Note Number Fisc Period Opening Days
    1 1 2
    2 1 3
    3 1 0
    because I have other restriction, so I create two restricted key figure..
    RK1  with restriction :  Total Number of Note,
    RK2  with restriction :  Total Opening Days ,
    then I Created a calculated key figure, average opening days in a period
    CK1 = RK2 / RK1..
    in this case, I am not sure if it will work or not..
    for example, during RK2 calclation, it might be this   2+3 = 5, the line with 0 will be ignored..
    during RK1 calcualtion, it might be 1 + 1 + 1 = 3. ---> Not sure in this case, the line with opening days 0 will be calculated or not..
    could you please confirm..

  • Firefox is having a problem with Linkedin. I get the error, error in parsing value for "backgroun" and for "filter"

    When trying to send messages in linkedin, firefox takes me back to the log in screen without sending the message. On the error console it shows the error; error in parsing value for "background" and error in parsing value for "filter". What is causing this?

    Pages does not support the Apple font used for color emoji, so that behavior is normal.
    With what app are you reading the yahoo mail?  There is really no guarantee than any other email service will show the special Apple font involved.
    You should have no problem putting emoji directly into Mail or Text edit via drag drop from the Character Viewer as shown below.
    You should also be able to upload graphics here easily by clicking on the camera icon.  My email is tom at bluesky dot org.

  • CALCULATE_TAX_ITEM gives wrong values for Scess and HScess in PO Print

    Dear Friends,
    I am working with PO Print in smartforms hare the Fm CALCULATE_TAX_ITEM is gives wrong values for Scess and HEcess if I put the Gate pass (Basic Excise Duty) Manually.
    And one more Issue is as if I check any line item condition taxes than imediatly when I see the print the all line items Scee and HEcess displays same which I have saw.
    If there is a single line item in PO than there is no issue any way.
    kindly suggest to resolve the issue.
    Regards,
    D Tarun Kumar

    Hi,
    I had the same issue, that taxes on invoice tab of PO was not printed correctly on PO form by calling CALCULATE_TAX_ITEM.
    If you want to have the same tax value as komp-mwsbp, that use following form routine call before FB CALCULATE_TAX_ITEM.
    perform j_1b_save_tax_fields(saplmepo) using ekko ekpo lfa1.
    This is used in transaction me23n also.
    Kind regards,
    Tülay

  • PriceSlider content item always having a fixed value for 'sliderMax' and 'sliderMax'

    Hi,
    I am using ATG-10.2
    I am trying to create the navigation with invoke assembler call (to contentCollection '/content/Shared/Guided Navigation') Everything goes well, except the price slider.
    sliderMin and sliderMax values are always having fixed values, even though there are products with higher prices than this range.
    Ex: This is how my content item looks like
    {enabled=true, @type=PriceSlider, name=Price, filterCrumb=com.endeca.infront.cartridge.model.RangeFilterBreadcrumb@d45e275, sliderMax=1500, sliderMin=0, priceProperty=sku.activePrice}
    But in this search result, there are product which have prices even beyond 10,000
    I hope that the properties I am accessing are correct (contentItem.sliderMin and contentItem.sliderMax).
    Does anyone has seen this before??
    Any solution to overcome this issue. ??
    NOTE: See the attached images here.
    https://qa.endecacommunity.com/questions/2429/priceslider-content-item-always-having-a-fixed-value-for-slidermax-and-sli…

    If you want to get better help post a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html].
    Most of the code you posted is not relevant to your question/problem.
    Also you shouldn't name a JTextArea object jDescrLabel ?
    That's confusing for someone else reading your code.
    Why not use jDescrTextArea ?

  • Optimal value for shmmax and shmall

    Hi Experts,
    Am new to the database administration side. Need help/suggestions from you all. My requirement is narrated below:
    I was going the kernel parameter for oracle 10gr2. But I have a doubt the following two parameters.
    kernel.shmall=2097152 (Default)
    kernel.shmmax=2147483648 (Default)
    Also I know that this is the recommended value for these two parameters. But just want to check if I have physical RAM of 4GB then what should be the optimal value for these parameter.
    Also can anyone suggest how to set the optimal value for these parameter.
    Thanks

    You can always set to the "Install" size and after it completes reduce them. You can move them down 25 to 30 percent in most cases.
    The default size for SHMALL in RHEL 3/4 and 2.1 is 2097152 which is also Oracle's recommended minimum setting for 9i and 10g on x86 and x86-64 platforms. In most cases this setting should be sufficient since it means that the total amount of shared memory available on the system is 2097152*4096 bytes (shmall*PAGE_SIZE) which is 8 GB. PAGE_SIZE is usually 4096 bytes unless you use Big Pages or Huge Pages which supports the configuration of larger memory pages.
    SHMMAX should not exceed 4294967295 on a 32-bit system. On x86-64 platforms, SHMMAX can be much larger than 4GB since the virtual address space is not limited by 32 bits.
    If SHMMAX is too small, you can get error messages like :
    ORA-27123
    I almost always go with the recommended settings even on tiny 1GB systems.
    With a 4GB system these probably are not worth changing.
    Best Regards
    mseberg
    Edited by: mseberg on Jul 13, 2011 5:21 AM

  • How to know the right value for SHMMAX and SHMALL for ia64 memory 32Gb

    Dear all,
    I want to install Oracle database 10g R2 on RHEL 5 ia64.
    Here the server specification :
    Proc : itanium64 ( montecito )
    Mem : 32Gb
    # getconf PAGE_SIZE = 16384
    Metalink says, that SHMMAX should be half of physical memory and SHMALL = SHMMAX / PAGE_SIZE.
    kernel.shmmax = 17179869184
    kernel.shmall = 1048576
    My Question is this is right value for SHMMAX and SHMALL on my server..??
    Thank you

    if shmmax is half the ram then what should be sga
    sga size should anyhow should be less then shmmax ,means we cannot increase sga size more than half the ram
    then how ROT for SGA that should be 70% of RAM hold good

  • How to set value for trim and bleed using jsx script?

    I have tried using bleedoffsetRect but somehow it is not working. Can anybody please help me on how to set value for trim and bleed using jsx script? Any example will be highly appreciated.
    Following is the code I am trying with:
    var _saveName = new File ( root_path +_strFileName+".pdf");
        var _saveOpts = new PDFSaveOptions();
        _saveOpts.printerResolution = 300; 
        var bleedarray = new Array();
         bleedarray[0] =9.00;
         bleedarray[1]=9.00;
         bleedarray[2]=9.00;
         bleedarray[3]=9.00;    
        _saveOpts.bleedOffsetRect = bleedarray;

    I would expect although I've not actually tried this for the bleed off set box to be larger than the artbaord and the first two values to be negative or 0…
    var bleedarray = new Array(-9,-9,artboard.width+9,artboard.height+9);
    Where 'artboard.width' & 'artboard.height' you will have calculated from your file. An Array(9,9,9,9); would not constitute any boxes bounds.

  • Opening values for SFG and FG....Material master or MR21?

    hi Experts,
    when we upload the opening material values, from where will it pick the values for SFG and FG.....is it from Material Master or from MR21.
    I want to run Costing run and save the prices after uploading the opening balances and not before. will there be any financial entry if i run the costing run and save the prices and i m not making any material movements but just running the costing run.
    thanks in advance
    regards
    suresh

    Yes,thats correct. Refer the below documentation for more clarity.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/8f/d1de34e4cb2300e10000009b38f83b/frameset.htm
    Thanks and regards
    Kedar

  • Web service wrapper in FB4 ignores Element when Attribute exists

    I created a web service wrapper in Flash Builder 4 using the "Data --> Connect to Data/Service... ".
    The WSDL contains a type like this:
    <xs:complexType name="Description">
    <xs:simpleContent>
      <xs:extension base="xs:string">
       <xs:attribute name="languageCode" type="xs:string"/>
      </xs:extension>
    </xs:simpleContent>
    </xs:complexType>
    In the response XML this type looks like this:
    <ns2:Description languageCode="en_US">My Description</ns2:Description>
    In this case the code generator ignores the element value ("My Description") and just creates a property for the attribute (languageCode="en_US").
    BTW: Not mixing elements and attributes in one type would be a possible solutions, but I usually deal with web services I did not implement and I therefore can't change.
    Has anyone had this problem and hopefully solved it?
    Regards,
    Martin

    Thanks for sharing your tips on this forum, as it will be useful for other users, that run into this issue.
    Feedback like this will also help us improve error reporting in the next release, as missing class files in the packaged application is a common issue when developers are moving from the embeded oc4j instance packaged with JDewveloper to standalone instances.
    -Eric

  • Trying to get the input parameter of a web service fxn based on table value

    Hello--
    I am new to ADF and Jdev 11g (I am a forms developer). I had created a web service from a pl/sql stored db package. I can successfully execute a function with an input parameter from ADF Faces.
    Instead of the input parameter being enterable by the user, I would like it to be based on a selected ADF table column value. How would I correlate the selected row column value as the function input parameter?
    I played with an ADF output text based on the ADF table column with the PartialTriggers value set to the ADF table...which updates the output text based on the column selected. Do I use some sort of partial trigger on the input parameter?
    From a forms point of view, I am looking for the "Copy Value from Item" property :)

    Hi,
    Not sure if this would help you.
    But if your table is bound to a ViewObject, it will be easier to get the current selection.
    Supose your table is bound to iterator1.
    In your backBean code:
    DCBindingContainer dcBindings = (DCBindingContainer)getBindings();
    DCIteratorBinding iterator =dcBindings.findIteratorBinding("iterator1");
    Row row = iterator.getCurrentRow();
    Object selectedValue = row.getAttarbute(<value of the column you are looking for>);
    public BindingContainer getBindings() throws Exception {
    try {
    if (this.bindings == null) {
    FacesContext fc = FacesContext.getCurrentInstance();
    this.bindings =
    (BindingContainer)fc.getApplication().evaluateExpressionGet(fc,
    "#{bindings}",
    BindingContainer.class);
    return this.bindings;
    } catch (Exception ex) {
    displayMessage("Error occurred. Please contact your IT Adminstrator.");
    return this.bindings;
    Let me know if this helps.
    -Makrand

  • Web service response object contains no values

    Hi,
    Using Netweaver, I've created an EJB-based web service that contains a single method. The method takes two input parameters and returns as a response, a data transfer object (DTO) containing several boolean values.  When I test this web service with the Web Service Navigator however, the response object contains a flat DTO-- meaning the contents of the DTO are missing. For example, this is what happens now when I call the web
    service...
    Incoming parameters:
    ...userID (String) = some user ID
    ...systemID (String) = some system ID
    Outgoing parameters:
    ...response
    ......(nothing contained within response--
    ...... there should be boolean values here)
    But this is what I should see when I call the web service...
    Incoming parameters:
    ...userID (String) = some user ID
    ...systemID (String) = some system ID
    Outgoing parameters:
    ...response
    ......booleanValue1
    ......booleanValue2
    ......booleanValue3
    Documentation doesn't seem to address this problem. Does anyone know how to correct this?
    Thanks,
    Amy

    Hi
    Have you found the workaround?
    Sorry for refreshing topic. Flag mustUnderstand ='1' in response is unussual thing.
    BR

Maybe you are looking for