Multiple values in prompt not working..

I am able to create prompts using Java/ BO-SDK and i am also able to set values to these prompts; but the values in the report in Infoview are not getting refreshed. for e.g if a single value for city prompt is entered the code works fine but if i set multiple ";" separated values to this city prompt the values are not getting refreshed.
Here is my code for prompts:
function to set filter conditions
public static void setFilterConditions ( final DocumentInstance doc,final List<ConditionFilterDataItem> filterList )
        final DataProviders dps = doc.getDataProviders();
        final DataProvider dp = dps.getItem(0);
        final Query q = dp.getQuery();
        ConditionContainer conditioncont = (OMConditionContainer)q.getCondition();
        if(conditioncont!=null)
             conditioncont.removeAllChildren();
               createPrompt(doc, filterList);
             applyValuesToPrompt(doc, filterList);
          doc.setPrompts();
          dp.runQuery ();
          doc.refresh();
function to create prompts.
public static void createPrompt( final DocumentInstance doc,final List<ConditionFilterDataItem> filterList)
        System.out.println("Inside create Prompt method ");
        final ReportDictionary reportDict = doc.getDictionary();
        final DataProviders dps = doc.getDataProviders();
        final DataProvider dp = dps.getItem(0);
        final Query q = dp.getQuery();
        ConditionContainer conditioncont = (OMConditionContainer)q.getCondition();
        ConditionFilterDataItem conditionFilterDataItem = null;
        conditioncont = q.createCondition(LogicalOperator.AND);
          for(int i=0;i<filterList.size ();i++)
                  conditionFilterDataItem = filterList.get ( i );
                  final String[] operands =  conditionFilterDataItem.getFilterOperand ();
                  final ReportExpression reportExpression = reportDict.getChild
                        ( reportDict.getChildByName ( conditionFilterDataItem.getQueryObject ()).getID () );
                  final String objectName = conditionFilterDataItem.getQueryObject();
                  final DataSourceObject dataSourceObject = reportExpression.getDataSourceObject ();
                  ConditionObject conditionObject = null;
                  conditionObject = conditioncont.createConditionObject ( dataSourceObject );
                  final FilterCondition fc = conditionObject.createFilterCondition
                        (Operator.fromInt ( conditionFilterDataItem.getOperator ()-1));
                  ConditionPrompt condPrompt = fc.createConditionPrompt("Enter value of "+objectName+":");
                  condPrompt.setConstrained(false);
                  condPrompt.setMonoValue(false);
                  System.out.println("Prompt created for object name ::"+objectName);
                 if( operands.length > 1 && operands[1]!=null)
                      ConditionPrompt secondPrompt = fc.createConditionPrompt("Enter another value of "+objectName+":");
                      secondPrompt.setConstrained(false);
                      secondPrompt.setMonoValue(false);
                      System.out.println("Another Prompt created for object name ::"+objectName);
                  doc.applyFormat();
             dp.runQuery();
              doc.refresh();
              doc.save();  
function to set values to prompt
public static void applyValuesToPrompt(final DocumentInstance doc,final List<ConditionFilterDataItem> filterList)
        final DataProviders dps = doc.getDataProviders();
        final DataProvider dp = dps.getItem(0);
        final Query q = dp.getQuery();
        ConditionContainer conditioncont = (OMConditionContainer)q.getCondition();
        ConditionFilterDataItem conditionFilterDataItem = null;
        Map promptMap = generateInstanceMap(doc);
        OMFilterPrompt[] promptArr;
        if(filterList.size()==conditioncont.getChildCount())
                  System.out.println("conditioncont.getChildCount() "+conditioncont.getChildCount());
                  for(int i=0;i<filterList.size();i++)
                       System.out.println("FilterLsit size is "+filterList.size());
                       System.out.println("current value of i is "+i);
                            conditionFilterDataItem = filterList.get ( i );
                        final OMFilterSimple filter = (OMFilterSimple)conditioncont.getChildAt(i);
                        System.out.println( conditionFilterDataItem.getOperator ()+"  conditionFilterDataItem.getOperator ()");
                           System.out.println(conditionFilterDataItem.getQueryObject()+" conditionFilterDataItem.getQueryObject()");
                        final String[] operands = conditionFilterDataItem.getFilterOperand();
                        System.out.println("operands for "+conditionFilterDataItem.getQueryObject()+" is "+operands.length);
                        System.out.println(filter.getID());
                        promptArr=filter.findPrompts();
                           for(int j=0;j<promptArr.length;j++)
                                OMFilterPrompt prompt= promptArr[j];
                                System.out.println(prompt.getDisplayName());
                                String promptName=prompt.getDisplayName();
                                Prompt currentPrompt = (Prompt)promptMap.get(promptName);
                                if(operands[j]!=null)
                                currentPrompt.enterValues(convertStringToArray(operands[j]));
                                System.out.println("value set is ::"+operands[j]);
          doc.setPrompts();        
          //dp.runQuery ();
          doc.refresh();
    * Converts String to a string array.
    * @param values -
    *            string to be converted.
    * @return - String Array
   private static String[] convertStringToArray(String values) {
       StringTokenizer promptval = new StringTokenizer(values, "=");
       int loop = 0;
       int size = promptval.countTokens();
       String[] newArr = new String[size];
       while (promptval.hasMoreTokens()) {
           newArr[loop++] = new String(promptval.nextElement().toString()
                   .trim());
       return newArr;
function to create map for prompts
  private static Map generateInstanceMap(DocumentInstance document)
        Map<String, Prompt> promptMap = new HashMap<String,Prompt>();
        Prompts prompts = document.getPrompts();
        int count;
        if(prompts!=null)
             count= prompts.getCount();
             for(int i=0;i<count;i++)
                  Prompt prompt= prompts.getItem(i);
                  promptMap.put(prompt.getName(),prompt);
        return promptMap;
i first remove all filter conditions the create prompts and then sets values to these prompts.
the values are set correctly to the report when viewed in Infoview but the values are not refreshed ; so i see a blank report.
Can anyone help with a code snippet at the earliest.

All replies so far have focused on solving multiple form issues. I have no problem with multiple forms per page but exactly like the original poster I can not get my h:commandLinks to work when embedded in a h:datatable.
I have command buttons before and after the data table working great, but for whatever reason command links just do a post back to the backing bean.
At this point I am not even trying to process data, just verify the action method is being executed.
Another item of note, the links will always post to the same bean regardless of what bean is referenced in action="...."
Any ideas?
Message was edited by:
jasontc
It appears once the page is rendered for the first time any future rendering will display the link(s) but the link(s) will be junk.
I ran a test with a pre populated ArrayList for my datatable, link worked. I then reload the datatable with a different ArrayList and the link is still referencing the original item in the list. So the action method I want to call is called but the .getRowData is incorrect. In addition of the number of items in my list grows the links become junk beyond the original size of the list.

Similar Messages

  • Help - Multiple native extensions do not work

    Dear Adobe Air developer community and Adobe employees,
    My game dev. studio www.GoldSunGames.com is nearing completion on our biggest title developed with Adobe Air for iOS. During development we've hit countless  technical bumps in the road including issues with low memory, low performance and many others I can happily say have now been solved in big part to the help we've received from the Adobe Flash/Air community. Thanks!
    I am now reaching out to the community and any Adobe employees reading this to solve our last remaining major issue/bug with Adobe Air which is holding us back from releasing our title.
    Multiple native extensions do not work
    We can get any one single native extension to work including Game Center (with the help of MilkManGames). But multiple extensions together simply do not work. We are required by our publisher to have other iOS features included which require the use of multiple native extensions.
    A detailed break down of the programming process we are using can be found here:
    http://forums.adobe.com/thread/923158?tstart=0
    Any and all help is greatly appreciated. Free copy of the game in question "Megaplex Madness 2" to the problem solver or solvers.

    Thanks to Saumitra Bhave the problem has been solved!
    >> Does http://forums.adobe.com/message/4026961#4026961 help?
    Thanks

  • How exclude multiple values which are not in sequence ( range )

    Hi Abapers,
    My Requiremnt is to exclude multiple values which are not in sequence  in selection screen.
    I want to restrict some values .
    please provide sample code.
    thanks & regards,
    Hari priya

    SELECT-OPTIONS : s_matnr FOR mara-matnr.
    INITILIZATION.
    s_matnr-sign = 'E'.  " E means Excluding.
    s_matnr-option = 'EQ'.
    s_matnr-low = '1000'.
    append s_matnr.
    s_matnr-sign = 'E'.
    s_matnr-option = 'EQ'.
    s_matnr-low = '1500'.
    append s_matnr.
    s_matnr-sign = 'E'.
    s_matnr-option = 'BT'.
    s_matnr-low = '2000'.
    s_matnr-high = '3000'.
    append s_matnr.
    START_OF_SELECTION.
    SELECT * FROM MARA INTO TABLE itab WHERE mara IN s_matnr.
    the above s_matnr has values 1000,1500, 2000 - 3000.
    so the above code fetches all the values excluding 1000,1500 and between 2000 and 3000.
    Regards
    Bala Krishna

  • When i compare multiple attribute it is not working in MDX query

    Hi All,
    i have create a measuer please see below code,
    MEMBER [Measures].[a] as
    case when
    [DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Fungicide"  //Working
    then "1"
    when [DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Herbicide"  //Working
    then "1"
    when  [DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Seed" //Working
    then "3"
    when ([DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Fungicide" //Not working
    and [DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Seed")
    then "1and2"
    when  ([DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Fungicide"  //Not Working
    and [DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Seed"  )
    then "1and3"
    end
    when i compare multiple attribute it is not working.

    Hi manishcal16PPS,
    According to your description, your calculated measure is not working when two when statement together. Right?
    In this scenario, since the conditions in your case when statement are exclusive, you should use OR instead of AND operator.
    when  ([DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Fungicide"  
    OR
    [DimProduct].[Portfolio].CURRENTMEMBER.MEMBERVALUE="Seed"  )
    then "1and3"
    Best Regards,
    Simon Hou
    TechNet Community Support

  • Multi value parameter is not working

    Hello There,
    I have been facing below issue and tried to find work around but no luck. Before I explain what issue is let me mention my report. I have a simple report developed in SQL 2K12 SP1 with one multiple value parameter and a text box. I have given an action on
    text box where I am calling the same report by passing one of the possible value to multiple value parameter. Now issue is when I am trying to select another value(s) from multiple value parameter and click on view report it does not keeping the selected value
    in parameter. It keeps on holding the same value which was passed on text box click action. Surprisingly this is working fine in SQL 2K8. Please let me know if need more information on the issue and let me know solution on this asap. I am not sure whether
    this is bug in SQL 2K12.
    Regards,
    Bhushan

    Hi Bhushan,
    After testing the issue in my local SQL 2012 SP1 environment, I can reproduce it. And I also test the same scenario in my SQL 2008R2 environment, it works very well.
    If you have any concern about this, please submit a feedback at
    https://connect.microsoft.com/SQLServer/Feedback. Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software and services the best that they can be, and you can learn
    about and contribute to exciting projects.
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Win 2003 Sevver Command Prompt not working

    Hi,
    It seems somehow the command prompt are not working on my server and hence one of my software installation is failing on the server.
    it seems the CLI commands work fine when the Command prompt is executed directly from the /system32 dir. But when we use it from Start>run>cmd, the commands don't respond.
    For Example:
    C:\>ping
    'ping' is not recognized as an internal or external command,
    operable program or batch file.
    C:\>nslookup
    'nslookup' is not recognized as an internal or external command,
    operable program or batch file.
    And when I execute it from the /system32 :
    C:\WINDOWS\system32>ping
    Usage: ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]
                [-r count] [-s count] [[-j host-list] | [-k host-list]]
                [-w timeout] [-R] [-S srcaddr] [-4] [-6] target_name
    Options:
        -t             Ping the specified host until stopped.
                       To see statistics and continue - type Control-Break;
                       To stop - type Control-C.
        -a             Resolve addresses to hostnames.
        -n count       Number of echo requests to send.
        -l size        Send buffer size.
        -f             Set Don't Fragment flag in packet (IPv4-only).
        -i TTL         Time To Live.
        -v TOS         Type Of Service (IPv4-only).
        -r count       Record route for count hops (IPv4-only).
        -s count       Timestamp for count hops (IPv4-only).
        -j host-list   Loose source route along host-list (IPv4-only).
        -k host-list   Strict source route along host-list (IPv4-only).
        -w timeout     Timeout in milliseconds to wait for each reply.
        -R             Trace round-trip path (IPv6-only).
        -S srcaddr     Source address to use (IPv6-only).
        -4             Force using IPv4.
        -6             Force using IPv6.
    C:\WINDOWS\system32>nslookup
    Default Server:  dns-blr2.cisco.com
    Address:  72.163.128.140
    Please check and suggest!

    Hi Aryanadonis  ,
    Thanks for posting here
    According what you mentioned, I thought system can’t located command programs path when you perform this command .
    Seems that you can perform these command with assign path, what I thought is this issue occurred because wrong environment variable setting.
    I noticed that you have posted the Environment Variable result here, I checked and highlight wrong values that could cause this issue. please correct it and try perform
    command again.
    C:\WINDOWS;
    C:\WINDOWS\system32;
    C:\WINDOWS\system32\\wbem;
    C:\PROGRA~1\CSCOpx\objects\smarts\lib;
    C:\PROGRA~1\CSCOpx\objects\smarts\bin;
    C:\PROGRA~1\CSCOpx\campus\bin;
    C:\PROGRA~1\CSCOpx\MDC\tomcat\bin;
    C:\PROGRA~1\CSCOpx\MDC\Apache;
    C:\PROGRA~1\CSCOpx\MDC\Apache\bin;
    C:\PROGRA~1\CSCOpx\MDC\jre\bin;
    C:\PROGRA~1\CSCOpx\MDC\bin;
    C:\PROGRA~1\CSCOpx\lib\jre\bin\server;
    C:\PROGRA~1\CSCOpx\objects\db\win32;
    C:\PROGRA~1\CSCOpx\bin;
    C:\WINDOWS\system32\\wbems\smarts\binPROGRA~1\CSCOpx\MDC\ApacheOGRA~1\CSCOpx\lib\jre\bin\serverCOpx\lib\jrebin\serveremRoot%\System32\Wbem;
    C:\Other Programs\net snmp\bin
    This article below introduce how to modify environment variables in windows XP , but you may also reference to it and modify environment variable on you windows 2003:
    How To Manage Environment Variables in Windows XP
    http://support.microsoft.com/kb/310519
    Thanks.
    Tiger Li
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Navigation from union request - navigation target "is prompted" not working

    Hi friends..
    I've created a union request from 5 request.
    I'm trying to navigate to other request using value interaction. The column is "Is Prompted" on the other request.
    But thats not working. I'm seeing all the record instead of the filtered record.
    Please give me some solution.
    Thanks

    Try this for starters :
    http://gerardnico.com/wiki/dat/obiee/presentation_service/obiee_url_passing_filters
    I'll dig out some more posts we answered recently which helped a user out.
    Here you go :
    Re: Data level security
    Edited by: Alastair_PeakIndicators on 25-Mar-2010 08:21

  • I am attempting to upload multiple photos on a macpro from a cd.  I am used to a pc.  I tried using the command button to select multiples but it does not work.  Please advise

    I am attempting to upload multiple photos on a mac pro from a cd.  I have tried holding the "command"button down to select multiple photos but it does not work.  Please advise.  Thanks,John

    why not sort by (name, date, etc) and Click on 1st and Shift-Click on last.
    Might work better to copy or import to a project folder.
    https://discussions.apple.com/community/ilife/iphoto
    http://www.apple.com/support/iphoto

  • Capturing form values with javascript (not working in Safari!)

    Hi
    I'm working on a site and I need to be able to take the values of one form (that the user has entered) and use them to populate a second form (more details) in the appropriate input boxes. This works on all browser except Safari. It seems to me a javascript problem (as getElementById does not work properly) but I'm not entirely sure. The code I use to grab the form elements is as follows:
    obj = $('formslider".$this->id."');
    obj.getElementById('registerfirstname".$this->id."').value = callbackfirstname".$this->id.";
    obj.getElementById('registersurname".$this->id."').value = callbacksurname".$this->id.";
    obj.getElementById('registeremail_addr".$this->id."').value = callbackemail".$this->id.";
    obj.getElementById('registertelephone".$this->id."').value = callbacktelephone".$this->id.";
    obj.getElementById('registerrequest_type".$this->id."').value = requesttype_callback".$this->id.";
    This basically takes the values of the "callback" form and places them into the appropriate input boxes of the "register" form. However it seems to lose the values when moving to the next form. Please note, I am not refreshing - I am using Ajax to change the form so new content simply replaces an existing content, not transfering to another page. I use Sessions so it shouldn't forget the values.
    Can anyone help? It's quite an important thing as I need to migrate hidden form inputs too which are needed for this particular request system.
    Thanks
    Michael

    I'm seeing this same issue in Mavericks, 10.9.2.  Althought JavaScript is enabled in Safari, it just doesn't work, for any pages.
    I've tried different user accounts, including a new account, on the same machine, but they all do the same thing, so it's a machine-wide issue.
    I have plenty of other Mavericks machines, including my own, where it is working just fine, however, with the same settings.

  • Value mapping does not work

    Hi All,
    I can not get value mapping in XI 3.0 to work. Has anyone experience with this, the documentation is soo bad. This is what I have done:
    In the Graphical mapper I used the object "Value mapping" and filled in the following parameters:
    Value mapping context: http://sap.com/xi/XI
    Source
    Agency: System1
    Schema: UnitSystem1
    Target
    Agency: System2
    Schema: UnitSystem2
    In the directory I created an Value mapping table with the same paremeters as above and filled in the table.
    When I test the complete flow, the value mapping is not used. The unchanged values are just copied over to the target field.
    Any help is appreciated.
    Cheers,
    Frank

    Hi Colin,
    In test Mode you can't test the value mapping, because the value mapping table is part of the Directory. Instead of the Value Mapping I tried "Fixed Values" and that works, but you can not re-used it.
    If this advanced mapping guide explanes how to use the value mapping better then the standard "how to" mapping guide, please send it to me.
    email: [email protected]
    Cheers,
    Frank

  • MDIS Unmapped Values ADD is not Working Throws errors

    Hi Experts,
    I have a Qualified table where the Non qualifier is a Lietaral Date field.
    Qualified Update -> Update
    New links -> Create
    Existing Links -> All mapped Fields
    MDIS unmapped values -> ADD
    All is working well,When the Incoming file has exactly the same NOn qualifier as in Data manager,  But when the incoming file has some New non-qualifers then it fails with a value Exception...
    1166657856 2011/09/27 16:29:16.326 GMT Importing: 'Samplee_27sep[1].xml.MDM_DATA' Table --> 'CostCentre.CostCentre' Table.
    1166657856 2011/09/27 16:29:16.341 GMT Could not create lookups. Source record number: -10, error message : Type mismatch. Invalid field values.
    1166657856 2011/09/27 16:29:16.346 GMT Import failed. Could not create lookups. Source record number: -10, error message : Type mismatch. Invalid field values.
    Import action: Update (All Mapped Fields)
    Source record no: 1
    But ideally it should NOT fail as the MDIS Unmapped fields are set to ADD..
    I would expect it to Add any new NON qualfiers to QT and add that Link to that Record.
    But it is throwing error...
    Did anyone face this issue till date???
    Kind Regards
    Eva
    Why is this behaviour..

    Hi,
    In the Import map as the Non qualifier is the literal date field and in DM i can see they are stored in MM/DD/YYYY format.
    The incoming value from the File is also the same format but the Config parameters date format in Import map is different, is this the problem for not adding New dates even though the MDIS unmapped fields are set to ADD..
    Also, are Config parameters Specific to Map or Repository Or server!!
    i.e if i change a config parameter and save the map.
    will the config parameters in all import maps be changed automatically??
    Kind Regards
    Eva

  • Copy Settings to multiple images - STILL A NOT WORKING AFTER MANY VERSIONS!

    I have reported the problem of pasting settings to multiple images for many versions and this simple bug is STILL present in LR4!
    In develop module, make changes to an image, click Copy button, select settings to copy.
    Now, select a range or a number of images to which you want to paste the settings, click Paste button.  Guess what?  Only the first image gets the settings!
    This functionality should work and is even documented in the manual.  There are other ways of copying settings but I can never remember how to do this.
    Am I doing something wrong or is this a genuine bug that only seems to affect a few people (I did a web search for V3), or do people just not use this function?
    Please developers, fix this bug if it really is a bug!

    Thanks Dorin for the information.
    I guess I am just frustrated that the program does not work the way it is documented.  There are two very prominent buttons, Copy & Paste and they don't work as documented or as you would expect them to.
    With sync you have to navigate menus to do what one click of the mouse should accomplish.  All I want is some acknowledgement from Adobe that this is a bug and for it to be adressed.  As a long-time IT person I know this would be VERY easy to fix.  If it cannot be fixed then update the documentation.
    Oh well, enough said.  I still love LR!!!

  • Cascading prompt not working in infoview from today.

    Hi Gurus,
    All my reports have a common cascading prompt which was working fine till yesterday in infoview.
    now, its woking fine in thick client (Desk-i) but not working in infoview after exporting.
    Its give only single prompt instead of cascading.
    For eg: lets assume there is a 2 level cascading for quater and year
    My prompt will be "Select Quater" then cascading prompt should ask for "Select Year".
    In my case now, Desk-I prompting for "Select year" after"Select quater" where as Infoview is giving only "Select quater" prompt and result set as Q 1
                                Q 2
                                Q 3
                                Q 4
    there was no changes in universe since a week.
    Please help me, i'm lost here.
    Let me know if I have to write to BO support .
    Thanks in advance.
    Shesha

    Update..
    Its working.
    I refreshed the LOV's and exported universe.
    It started working.
    Thanks
    Shesha

  • Multi value Cascading Parameters Not working

    Hi ,
    I have created two report parameters and want them as Cascading. District Parameter depends on Region Parameter which should allow Multi selection. When I select single value in Region it works perfectly. But when I choose multiple values, District turns
    out to be a blank text box. Can you please advise on how to fix this?
    I have used the In clause in my code
    SELECT
    DISTINCT
    SalesDistrict
    FROMDistrict(NOLOCK)
    WHERESalesRegion
    IN(@SalesRegion)
    SG

    that's because  "public sector,East" is passed as a string rather than multiple values.
    you should split them into multiple rows...  there are several functions that do that.. you can pass the string to the function and use  IN clause look them in the district table.
    below example is using xml but you can also use functions, if you want... just google  "split comma delimited string to multiple rows" function
    declare @District table (Distrcit int,Region varchar(20))
    Insert into @District values (1,'East'),(2,'West'),(3,'Public Sector')
    declare @xml xml, @s nvarchar(max)
    select @s = N'public sector,East'
    set @xml = N'<root><r>' + replace(@s,',','</r><r>') + '</r></root>'
    select * from @District where Region in
    (select t.value('.','varchar(max)') as [delimited items]
    from @xml.nodes('//root/r') as a(t))
    refer http://www.kodyaz.com/articles/t-sql-convert-split-delimeted-string-as-rows-using-xml.aspx
    Hope it Helps!!

  • Result Type Condition for Multi value Manage Property not working

    Hi All,
    I have created one template & I wanted to show this template on particular condition. So I created the result type. The Managed property (MP) that I used, I have verified its attributes all attributes are selected and its type is Multi value. I am trying
    to apply the "Show fewer conditions" and some how the value not matched.
    I have checked MP ; it has all the values but some how the template not called. When I removed this condition it working and when choose other MP other then Multi valued. It is working as expected.
     Please let me know if i miss something here. 
    PS: I have checked each option from the Query drop down like "Equals any of" and "Contains any of" not working in case of multi value attribute. Please help.
    I have explain this issue more details in this post : http://sharepointfordeveloper.blogspot.com/2015/02/sharepoint-search-2013-result-type-with.html
    Regards,
    Basant Pandey
    http://sharepointfordeveloper.blogspot.com

    Update on above mentioned issue.
    I have verified the same at my end. So I come to this conclusion this is product issue. Either need to raise the ticket to Microsoft related to this issue.
    Regards,
    Basant Pandey
    http://sharepointfordeveloper.blogspot.com

Maybe you are looking for