Wednesday, December 20, 2017

One Plus 3T and 5

Tuesday, September 20, 2016

Visual Studio ALM Virtual Machines HOLs links

Wednesday, July 6, 2016

TFS 2013 Team Build : Part 2 - How to change the default build number format of a build definition.

How to change the default build number format of a build definition to give meaningful names to the completed builds.
Hi All,
In this post we will see how we can change the Build Number format to give meaningful names to the completed builds. By default the build number format of the build is: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.r)

SampleCI_20160706.1
Example: If my build definition name is SampleCI then the build number will be:
  •         SampleCI_20160706.1
  •         SampleCI_20160706.2
  •         SampleCI_20160706.3

To change this to some other format, we have to go to any of the build definition we have created or new. In the Build Definition go to BuildNumberFormat process parameter in “Process Tab”.
Our goal is to change the build number format as shown below, we want to capture the team project name also in the build number. $(TeamProject)_$(BuildDefinitionName)_$(Date:yyMMdd)$(Rev:.r) let’s see how to do this.


Step 1. Create a new Build Definition or open existing build definition, then click on Process tab.

Step 2. Under Process tab, look for Build Number Format process parameter and click on the ellipses button as shown in below screenshot.


Step 3. In the BuildNumber Format Editor window, you can see default build number format string and its preview. To see and add the other tokens click on Macros >> button.


Step 4. On clicking Macros >> button, you can see all available list of tokens and its values as shown in below screenshot



Step 5. Since we wants to add the $(TeamProject) token before $(BuildDefinitionName), place the cursor at the starting point i.e. before $(BuildDefinitionName), tag as shown below. Then select the $(TeamProject) token and click on Insert button.



Step 6. On clicking Insert button, we will see that the token is been added to the format string and we can modify the string by adding a underscore symbol (_) to differentiate between Team project name and build definition name as shown below. Click Ok button


Step 7. That’s all, we are done with setting the build number format to
$(TeamProject)_$(BuildDefinitionName)_$(Date:yyMMdd)$(Rev:.r)
We can see the format in the build process parameter value as below.



Step 8. Save the changes to the build definition and queue the build.


In the My Builds dropdown list of Team Explorer builds page we can see that build number also includes Team Project name , here in my case Team project name is FabrikamFiber and build definition name is DemoApp


Below screenshot shows the Team Project Name in build summary report




Hope you enjoyed this blog. Let me know for any queries.


Monday, June 27, 2016

TFS Work Item Customization using TFS Power Tool: Part 5

How to restrict the user or group from creating or updating a specific work item type.

 

Hi All,

In this post we will see how to stop a user or group from creating or updating a particular work item type in TFS team project.

In TFS team project we can either give read/write permission to all work item type or none of them, but it is not possible to restrict the user or group from creating or editing a specific work item type like bug or task.

In this post I’m going to provide a work around to achieve the requirement- where a user or group should be able to create or update all work item types except Bug, let us see how to do this.

    1.      Open bug work item template using process tab.

    Open Visual Studio, and Click on TOOLS -> Process Editor-> Work Item Types-> Open WIT from server, to open the template online.

       

      https://3.bp.blogspot.com/-mWl_iKWXdl0/Vlw5_FdU68I/AAAAAAAAAb8/XWO-kpRnEvs/s1600/OpenTaskOnline.png

      2.      Now connect to the TFS and then to the Team Project under the Team Project Collection. Select work item type Bug.

       

      3.      Look for field Changed by and double click on it to edit.

       

      4.      When Field Definition window opens, click on Rules tab to add a new rule READONLY by clicking New button.

      5.      In the Select a rule type window select rule named READONLY, then click OK.

      6.      Now time to use this rule to achieve our requirement, identify the group to which this bug work item type should not be editable. Here in my example I want make bug work item type non editable for members of the Team Project Default group Contributors.

      Pass the value [project]\Contributors in the field For, find below screenshot for your reference.

      Then click OK.

      7.      Now you will see the new rule added to the list. Click OK. Then Save changes to server by clicking Save button of Visual Studio or using key board shortcut , Ctrl+s

       

      8.      Now connect to Team Project then open Team Project Administer Sever Page by clicking on  Administer Server gear button.

       

      9.      In Team Project Administer Sever Page open Security Tab. Under Security Tab look for group Contributors and add a windows user by clicking Add button under Members tab.

       

       

      Search for the member. Then click on Save changes button.

       

      Now a new member (Brian Keller) is added to the group Contributors.

      10.   Now login as one contributor member and connect to Team Project, here it is Awesome Team Project.

      11.   Click on Create new, dropdown list and select Bug work item type.

      12.   Enter the details and then click on Save button.

      13.   On Clicking save this user will be prompted with message as shown in below screenshot. By this way can restrict user from creating and updating Bug work item type.

       

      Hope you enjoyed this blog.

      Happy blogging J

       

Tuesday, April 12, 2016

Different ways to create Team Project for VSTS default collection

Visual Studio Online(VSO) is now  Visual Studio Team Services (VSTS)


Hi All, 
In my previous post on VSO (i.e VSTS) I have explained the steps to create free VSTS account,in this post we will explore different options for creating new team project in VSTS account. As we all know in VSTS we can have only one collection , i.e. DefaultCollection under which we can create multiple team projects. Here are the different options to create Team Project.

Connect to your VSTS account (Ex: https://explorevsonline.visualstudio.com/)

Method 1:

Below screen will appear if you have opted out creating team project during VSTS account creation or there is no Team Project created on your VSTS account. On this page you can input details like Team Project name, choose process template,select the version control type(Git or TFVC) then click on Create project button.


Method 2:

Another way for creating team project is by clicking on  Manage Account i.e the gear button at the top-right corner as shown in the below screenshot,



 when you click on the gear button as shown above you will be redirected to the VSTS admin page. In this admin page you can find the control panel tab and you can also find link for creating new Team project. Click on "Create a new team project" link present at the right side under Control panel, which will pop up "CREATE TEAM PROJECT" window, now you can enter the details as mentioned in Method 1


Method 3:

In case you have already created a Team Project and want to create one more, use below option to quickly create a team project.
In your VSTS account Overview tab you can find "New" link under "Recent projects & teams" section as highlighted in below image, click on the "New" link. You will get pop up "CREATE TEAM PROJECT" window, now you can enter the details as mentioned in Method 1




Method 4:

If you have already connected to the team project and using any of the tabs like, Home /Code / Work / Test / Release / Build, you can quickly create new team project by clicking on the current team project link, which displays the drop down list with option for "New team project" as highlighted below. Click on "New team project" option. You will get pop up "CREATE TEAM PROJECT" window, now you can enter the details as mentioned in Method 1


hope this article finds you  interesting, happy blogging :)

Sunday, April 3, 2016

Hand Coding Coded UI Test using Visual Studio



Hi All,
In this post we will learn how to create the Coded UI Automation test script by hand coding the entire scenario along with UI objects. Explanation about how the Visual Studio Coded UI tool will identify the controls and perform UI actions is out of the scope of this blog.
Please find sample source code for practice on below steps here.
In this blog we will take a simple scenario, we will hand code the automation script for the default Calculator application available in windows system. From launching the Calculator application, declaring and getting UI or Search Properties and to perform all the UI action we will hand code C# scripts using the objects available in the application. The scenario is as below:
1.      Launch Calculator application
2.      Click button 8
3.      Click button +
4.      Click button 7
5.      Click button =

6.      And validate the result which be on the result text box.

So let’s open Visual Studio tool (Ultimate/Premium) any version from 2010 to 2015. Select the Visual C# as the scripting language and under Visual C# template select the Test option and choose the Coded UI Test Project as below. Give a name for the test project, click on Ok button. Your test project is ready.

You will get a pop-up window to select either “Record Actions” or “Use an existing Action Recording”. Since we want to hand-code the test, we will cancel this window and follow the below steps for hand scripting the Coded UI test.


  1.      Now right click on the test project you created and create a class file called “Launch.cs” for getting the main calculator window details

2.      In the class use below namespace.
        using Microsoft.VisualStudio.TestTools.UITesting;

3.      Declare a static variable under class
        public static UITestControl calciwindow;

4.      Then create a static method called “Control” inside the Launch class which will return UITestControl object as below

This gets the main window/control of calculator App, which will be used as parent control for all the button and text and other UI controls inside the calculator App.
                public static UITestControl Control()
        {
            calciwindow = new UITestControl();
            calciwindow.TechnologyName = "MSAA";
            calciwindow.SearchProperties[UITestControl.PropertyNames.Name] = "Calculator";
            calciwindow.SearchProperties[UITestControl.PropertyNames.ClassName] = "CalcFrame";
            return calciwindow;
        }
Your class should look like below image.



5.      So we have got the code to launch the Calculator Application. Now let’s create a Coded UI test class which will call the main calculator window and perform the UI actions on the application.
6.      Now create another class “CalciFun” or any other name, which will be a Coded UI Test class
Use below Namespaces for the class
               using Microsoft.VisualStudio.TestTools.UITesting;
               using Microsoft.VisualStudio.TestTools.UITesting.WinControls;
               using Microsoft.VisualStudio.TestTools.UnitTesting;

7.      Mention [CodedUITest] attribute on top of the Class

8.      Declare a static variable under the class to get the main Calculator window details which is available in Launch class
               static UITestControl control = Launch.Control();

9.      Create a New method CallFun as below inside the class. For now let’s keep it empty. Mention [TestMethod] attribute on top of new method.
[TestMethod]
public void CallFun()
        {
               }


10.   Now create static methods inside the class for each of the controls after the CallFun” method.
11.   Use the static variable declared above in step 8 as “parent control” for all the UITestControl objects you are going to create.
12.   We are going to declare few button and text controls. Like below we are getting the UI/Serach properties for button controls in Calculator application namely button 7, 6, Add and Equals, which will be later used by the tool to execute the test and perform UI actions. In the same fashion declare text control and UI properties to identify the Result box/text control available in Calculator Application.

For Button Controls

public static UITestControl btnmethod8()
        {
            UITestControl btn8 = new WinButton(control);
            btn8.SearchProperties[UITestControl.PropertyNames.Name] = "8";
            return btn8;
        }

public static UITestControl btnmethod7()
        {
            UITestControl btn7 = new WinButton(control);
            btn7.SearchProperties[UITestControl.PropertyNames.Name] = "7";
            return btn7;
        }

public static UITestControl btnmethodAdd()
        {
            UITestControl btnAdd = new WinButton(control);
            btnAdd.SearchProperties[UITestControl.PropertyNames.Name] = "Add";
            return btnAdd;
        }

public static UITestControl btnmethodEqual()
        {
            UITestControl btnEqual = new WinButton(control);
            btnEqual.SearchProperties[UITestControl.PropertyNames.Name] = "Equals";
            return btnEqual;
        }
For text Box Controls
public static UITestControl txtmethodResult()
        {
            UITestControl txtResult = new WinText(control);
            txtResult.SearchProperties[UITestControl.PropertyNames.Name] = "Result";
            return txtResult;
        }
           

13.   Now go back to “CallFun” method created in step 9, and start performing the UI actions using the controls defined, and validate the results. The method should look like below:


Now run the test. With the above code the Coded UI test engine will Launch the App and perform the UI test.
The test is going to fail because the expected value is 10 , but actually application returned value is 15.

To pass the test you can change the expected values 10 to 15 in the Assert function.


Hope this helps, thanks for reading this blog. :)


Saturday, April 2, 2016

List 5: HDFC Diners club credit card retail merchants or stores in Bangalore


<< HDFC Diners club credit card retail merchants or stores in Bangalore lists 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,11 >>

Merchant Name
Address
City
LIFE STYLE INTERNATIONAL PVT LTD
ADARSH OPUS W 76DOOR NO 1 CAMPBELLROAD AUSTIN TOWN
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
RPR PLAZA NO 93 1VARTHUR RD MARATHLLIEXTENSION
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MELANGE STORE NO 131COMMERCIAL STREET
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MELANGE STORE NO 131COMMERCIAL STREET
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MAX RETAIL DIVISIONNO G 37 GRD FLRPHOENIX MARKET CITY BANGALORE EAST MAHADEVAPURA NR KR PURAM FLYOVER
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MELANGE STORE 2NDFLR PHOENIX MARKETCITY BANGALORE EAST MAHADEVAPURA
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
BOSSINI STORE GRDFLR PHOENIX MARKETCITY BANGALORE EAST MAHADEVAPURA
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MELANGE STORE 2NDFLR PHOENIX MARKETCITY BANGALORE EAST MAHADEVAPURA
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
NO 25 59 PID NO 60125 59 11TH MAIN RD3RD BLOCK JAYANAGAR EAST
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
119 120 COMMERICIALSTREET OPP COMMERCIAL STREET POLICE STATION
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
GOPALAN SIGNATUREMALL SURVEY NO 87 1BOLD MADRAS ROAD BENNIGANAHALLI KRISHNARAJAPURAM HOBLI
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MAX RETAIL DIVISIONNO G 37 GR FLRPHOENIX MARKET CITY BANGALORE EAST MAHADEVPURA NR KR PURAM FLYOVER
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MAX RETAIL DIVISIONNO G 37 GR FLRPHOENIX MARKET CITY BANGALORE EAST MAHADEVPURA NR KR PURAM FLYOVER
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
UNIT 008 GR FLRSIGMA MALL 15 16 17CUNNINGHAM ROAD
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
UNIT 008 GR FLRSIGMA MALL 15 16 17CUNNINGHAM ROAD
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
ROYAL MEENAKSHI MALLMUNICIPAL NO 424 376487 SY NO 63 BANNERGHATTA ROAD HULIMAVU
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
ROYAL MEENAKSHI MALLMUNICIPAL NO 424 376487 SY NO 63 BANNERGHATTA ROAD HULIMAVU
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
ROYAL MEENAKSHI MALLMUNICIPAL NO 424 376487 SY NO 63 BANNERGHATTA ROAD HULIMAVU
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
ROYAL MEENAKSHI MALLMUNICIPAL NO 424 376487 SY NO 63 BANNERGHATTA ROAD HULIMAVU
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
479 CHINMAYA HOSPITAL ROAD 1ST STAGEBINNAMANGALA INDIRA NAGAR
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
479 CHINMAYA HOSPITAL ROAD 1ST STAGEBINNAMANGALA INDIRA NAGAR
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MAX RETAIL DIVNOASIS CENTRE NO 30WARD NO 68 100 FEET RING RD SHINIVAGILU KORAMANGALA
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MAX RETAIL DIVNOASIS CENTRE NO 30WARD NO 68 100 FEET RING RD SHINIVAGILU KORAMANGALA
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MALANGE STOREFORUM VALUE MALLNO 62 WHITE FIELD MAIN ROAD
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MAX RETAIL DIVISION119 120 COMMERCIALSTREET OPP COMMERCIAL POLICE STATION
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
BOSSINI LIFESTYLEFORUM VALUE MALLNO 62 WHITE FIELD MAIN ROAD
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MALANGE LIFESTYLEFORUM VALUE MALLNO 62 WHITE FIELD MAIN ROAD
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
NO 25 59 PID NO 60125 59 12TH MAIN RD3RD BLOCK JAYANAGAR EAST
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
2015 SANGAMA PLAZA16TH MAIN HAL2ND STAGE 100 FT ROAD INDIRANAGAR
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
27 LOWER BASEMENTOPP PRESTIGE MANSTORE COMMERCIAL STREET
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
2015 SANGAMA PLAZA16TH MAIN HAL 2NDSTAGE 100FT ROAD INDIRANAGAR
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
1 2 OPP UNITED COLOURS OF BAELTON CHRUCH STREET WARD NO 76 RICHMOND TOWN
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
479 CHINMAYA HOSPITAL RD 1ST STAGEBINNAMANGALA INDIRA NAGAR
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
OASIS CENTER NO 30WARD NO 68 100 FEETRING ROAD SHINIVAGILU KORAMANGALA
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MANTRI MALL 2ND MAINROAD WARD NO 26SAMPIGE ROAD MALLESWARAM
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
30 SALARPURIA TECHPOINT INNER RING RDKORAMANGALA
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
ADARSH OPUS W 76DOOR NO 1 CAMPBELLROAD AUSTIN TOWN
BANGALORE
LIFE STYLE INTERNATIONAL PVT LTD
MANTRI MALL 2ND MAINROAD WARD NO 26SAMPIGE ROAD MALLESHWARAM
BANGALORE
LIFE STYLE SHOE CITY
NO 37 38 SHOP NO 2REMCO LAYOUT SERVICEROAD VIJAYANAGAR 2ND STAGE OPP BMTCF BUS DEPOT
BANGALORE
LIMITED EDITION
AYESHA APPARTMENTSBESEMENT FLOOR NO 111ST MAIN ROAD JAYAMAHAL EXT
BANGALORE
LIPIKA FASHIONS
100 VANNARPET LAYOUTVIVEKANGAR POSTNEAR CANARA BANK
BANGALORE
LIVE N BOOTS
NO 3 GROUND FLOORNO 534 1ST CROSSB BLOCK AECS LAYOUT KUNDALAHALLI NEAR BROOKE FIELDS
BANGALORE
LOKESSH AHUJA
55 3 CHIK BAZAAR RDTASKEN TOWN
BANGALORE
LOUIS
517 A 7TH CROSS 8THMAIN HANLMANTHNAGAR
BANGALORE
LOVELY FASHION
NO 80 1ST MAINSANTHRUPHINAGAR OPP BIG BAZAR KOTHANUR DINNE MAIN ROAD 7TH PHASE JP NAGAR
BANGALORE
LUBNA S DESIGNER WEAR
452 13TH CROSS 4THMAIN 2ND STAGEINDRANAGAR NEAR BDA COMPLEX
BANGALORE
LULU CENTER
519 GROUND AND 1STFLOOR 12TH MAIN BSK2ND STAGE PADMANABHA NAGAR
BANGALORE
LUXURY GOODS RETAIL PVT LTD
GUCCI THE SUBLIMEGALLERYTHE COLLECTION UB CITY 1ST FLR NEXT TO THANN 24 VITTAL MALLYA ROAD
BANGALORE
M ANJANAPPA SILKS
1453 KUCHAPPAPETDODDABALLAPUR
BANGALORE
M FASHION ZONE
13 MAS BUILDINGNEHRU MAIN ROADPAPANNA LAYOUT SUBBAYYANPALYA NEAR KULLAPPA CIRCAL
BANGALORE
M FAZAL AND SONS DRESS POINT
153 COMMERCIALSTREET
BANGALORE
M FAZAL AND SONS GHUNGHAT
153 COMMERCIALSTREET
BANGALORE
M K THE DESIGNER S BOUTIQUE
GROUNDFLOOR NO 25PILLAPPA LANE J M ROAD
BANGALORE
M L TEXTILES
NO 93 IST FLOORMADHU MARKET A MLANE CHICKPET CROSS
BANGALORE
M M COLLECTION
386 JUMMA MASJIDROAD OPP MASJID EAZAM
BANGALORE
M R GOLD COVERING
483 AVENUEROAD NEXT TOGANESHA TEMPLE
BANGALORE
M S GARMENTS
NO 77 1WHEELER ROADCO AND TOWN CIRCLE
BANGALORE
M S RAJ COLLECTIONS
NO 91 60 FEET ROAD6TH BLOCKKORAMANGALA
BANGALORE
M SHREE FASHION HOUSE
20 8 SHOP NO 1GROUND FLOORKENCHAPPA BUILDING CIRCLE BSK 2ND STAGE
BANGALORE
M VIJAYRAJ & CO
NO 33 D S LANE CHICKPET
BANGALORE
M ZURI SANA
1079 1ST FLR 12THMAIN ROAD HALL2ND STAGE INDIRANAGAR
BANGALORE
MAA AND ME
26 SAI BABATEMPLE ROADGREEN GARDEN LAYOUT MUNNEKOLALA NEAR KUNDANAHALLI GATE
BANGALORE
MAANSI COLLECTIONS
NO 778 SHOP NO 2GROUNDFLOOR 22ND CLUB ROAD 22ND MAIN HSR LAYOUT 2ND SECTOR
BANGALORE
MADHU PRIYA FASHIONS
18 SUBRAMANYAPURAMAIN ROADKADIRENA HALLI CIRCLE BSK 2ND STAGE
BANGALORE
MADHUR MILAN
NO 1734 17TH CROSS,MAGADI CHORD ROAD,VIJAYA NGR MAIN ROAD
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
PLOT NO 5B REGENTGATEWAY DODDANAKUNDIKIADB INDUSTRIAL AREA ITPL ROAD
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
PLANET FASHION NO72 1 761 100FT ROADINDIRANAGAR
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
STORE CODE 2177PLANET FASHION UF25 TO 26 NO 1 MANTRI SQUARE SAMPIGE ROAD
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
STORE CODE 2140PLANET FASHION NO336PID NO 98 170 366 MATADAHALLI FURTHER EXTENSION RT NAGAR ROAD
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
STORE CODE 2127PLANET FASHION NO737 CMH ROAD INDIRANAGAR
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
STORE CODE 1842PLANET FASHION FORUM27 28A 29 GROUND FLOOR ADUGODI MAIN ROAD
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
STORE CODE 1817PLANET FASHION ARJAYAGENCIES DAVIDOSS BUILDING 143 COMMERCIAL STREET
BANGALORE
MADURA GARMENT LIFE STYLE RETAIL CO LTD
UNIT NO G 14 GROUNDFLOOR LEVEL CANBERRABLOCK NO 24 VITTAL MALLAYA ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 62358SHOP NO 53 GOPALANINNOVATION MALL NO 22 JP NAGAR 3RD PHASE BANNER BHATTA
BANGALORE
MADURA GARMENTS
STORE CODE 62366NO 372 A1 GF CROSSKAGDASPURA
BANGALORE
MADURA GARMENTS
STORE CODE PE62349PETER ENGLANDNO 243 SRIKRUPA BEML MAIN ROAD NEW THIPPASANDRA
BANGALORE
MADURA GARMENTS
STORE CODE PE62349NO 243 SRIKRUPABEML MAIN ROAD NEW THIPPASANDRA
BANGALORE
MADURA GARMENTS
STORE CODE PE2346NO 844 60 FEET ROADA BLOCK SAHAKARNAGAR
BANGALORE
MADURA GARMENTS
STORE CODE PE62399SHOP NO 3 4CHAMUUNDESHWARI COMPLEX 100FT RING RD OPP BMTC BUS DEPOT BANASHAN 3RD STAGE
BANGALORE
MADURA GARMENTS
STORE CODE PE2334945 LIG II STAGE EXTYELAHANKA
BANGALORE
MADURA GARMENTS
STORE CODE VH21722VAN HEUSEN NO 4104TH MAIN SAJID CENTRE POINT KAMANAHALLI MAIN ROAD 2ND BLOCK HRBR LAYOUT
BANGALORE
MADURA GARMENTS
STORE CODE AS31981777C HAL 2ND STAGE100 FEET ROAD INDIRANAGAR
BANGALORE
MADURA GARMENTS
STORE CODE 201308MADURA ASSOCIATESNO 16 DEEPASHREE PARTY HALL 21ST MAIN ROAD BSK 2ND STA
BANGALORE
MADURA GARMENTS
STORE CODE 201307MADURA ASSOCIATESSAFINA PLAZA 84 85 INFANTRY ROAD
BANGALORE
MADURA GARMENTS
STORE CODE LP1097LOUIS PHILIPEENO 777CHAL 2ND STAGE BANGALORE CORP PID NO 72 1 777C
BANGALORE
MADURA GARMENTS
STORE CODE LP3171MENSWEAR UNLIMITEDKUSUM PRAKASH ARCADE NO 9 1ST MAIN CHIKMARENAHALLI SANJAY NAGAR
BANGALORE
MADURA GARMENTS
542 2ND STAGE3RD BLOCK NAGARBHAVIMAIN ROAD NEXT TO BDA COMPLEX
BANGALORE
MADURA GARMENTS
100 FEET ROADINDIRANAGAR
BANGALORE
MADURA GARMENTS
SHOP NO 118FORUM MALL NO 62WHITEFIELD MAIN ROAD
BANGALORE
MADURA GARMENTS
STORE CODE PE 31591 & 2 33A 11TH MAIN1ST PHASE MATTIKERE
BANGALORE
MADURA GARMENTS
PUNJAB CROCKERYHOUSE NO 53COMMERCIAL STREET
BANGALORE
MADURA GARMENTS
PE 315815A MASTHI MANSIONKG ROAD
BANGALORE
MADURA GARMENTS
MAHARAJA PARADISENO 1362 JAYANAGARSOUTH END ROAD
BANGALORE
MADURA GARMENTS
STORE CODE VS3150MAHARAJ PARADISE4 GF BDA COMPLEX HSR LAYOUT
BANGALORE
MADURA GARMENTS
STORE CODE 3149100 1 5TH CROSS5TH BLOCK KORAMANGALA
BANGALORE
MADURA GARMENTS
VS3146SHOWROOM CODE 3146PRATHAMS 2 NO 57 VINAYAKA COMPLEX GR FLR 9TH MAIN 80 FT ROAD SRINIVASNAGAR BANASHANKARI 1ST STAGE
BANGALORE
MADURA GARMENTS
VH1701VAN HEUSENNO 53 GR FLR COMMERICAL STREET
BANGALORE
MADURA GARMENTS
VH1597VAN HEUSENNO 760 100 FT ROAD HAL 2ND STAGE INDIRANAGAR
BANGALORE
MADURA GARMENTS
PE1401NO 3 1 GR FLRP T COLONY R T NAGAR
BANGALORE
MADURA GARMENTS
PE1395GROUND 1ST FLOORNO 177Y 1 1 12TH MAIN 3RD BLOCK RAJAJI NAGAR
BANGALORE
MADURA GARMENTS
AS1964ALLEN SOLLYNO 346 17 1TH A MAIN 27TH CRSOO 3RD BLOCK JAYANGAR
BANGALORE
MADURA GARMENTS
PE1492R K DISTRIBUTORSGROUND I II III FLR BALAJI TOWERS I II III FLR NO 382 75 19 OLD NO 75 30TH CROSS GEETHA COLONY 4TH BLOCK JAYANAGAR
BANGALORE
MADURA GARMENTS
VS3153R K DISTRIBUTORSSHOP NO 23 1ST FLR ESTEEM MALL BELLARY ROAD
BANGALORE
MADURA GARMENTS
PF1893MADURA GARMENTSMUNICIPAL 20 ANAPURNA COMPLEX ITI COLONY NEW BEL RD
BANGALORE
MADURA GARMENTS
CS0917INSTITUTION OFENGINEERS KARNATAKA STATE CENTRE NO 3 DR AMEDKAR VEEDHI
BANGALORE
MADURA GARMENTS
PE1340PETER ENGLAND BEL RDSHOP NO 209 GRD FLR MGECHBS LAYOUT NEW BEL ROAD DEVASANDRA RMV 2ND STAGE
BANGALORE
MADURA GARMENTS
VH1551M P WARD 76 MAGRAT HR ROAD
BANGALORE
MADURA GARMENTS
LP1054108 GARUDA MALL BMPWARD 76 MAGRATH ROAD
BANGALORE
MADURA GARMENTS
AS1938AS 117 GARUDA MALL BMP WARD 76 MAGRATH R OAD
BANGALORE
MADURA GARMENTS
VH1579AUDUGODI MAIN ROAD
BANGALORE
MADURA GARMENTS
LP1054108 GARUDA MALL BMPWARD 76 MAGRATH ROAD
BANGALORE
MADURA GARMENTS
LP1078108 GARUDA MALL BMPWARD 76 MAGRATH ROAD
BANGALORE
MADURA GARMENTS
PF1842FORUM 27 28A29 GROUND FLOOR ADUGODI MAIN ROAD
BANGALORE
MADURA GARMENTS
CS1834ALLEN SOLLY SANFRISCO NO 55 55 1 CHURCH STREET
BANGALORE
MADURA GARMENTS
STORE CODE 75034PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD SHOP NO 128 100FT ROAD 5TH BLOCK 3RD PHASE BANSANKARI 3RD STAGE
BANGALORE
MADURA GARMENTS
STORE CODE 75029PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD 7TH BLOCK 80FT ROAD CORPORATION WARD NO 67 NEAR SPANA BOOK HOUSE KORMANGLA
BANGALORE
MADURA GARMENTS
STORE CODE 75022PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD SHOP NO 203 DEVASANDRA NEW BEL ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 75021PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD SHOP NO 501 CORPORATION WARD NO 82 BINNAMANGLA 1ST STAGE CMH ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 75014PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD SHOP NO 2 3 4 & 5 2ND FLOOR GOPALAN INNOVATION MALL JP NAGAR 3RD PHASE
BANGALORE
MADURA GARMENTS
STORE CODE 75011PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD SHOP NO G 5 GOPALAN ARCADE MALL MYSORE ROAD RAJ RAJESHWARI ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 75010PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD SHOP NO 143 DEVIDOSS BUILDING COMMERCIAL STREET
BANGALORE
MADURA GARMENTS
STORE CODE 75008PEOPLE STORE DIV OFADITYA BIRLA NUVO LTD SHOP NO 665 1ST STAGE 1ST MAIN 100 FT ROAD INDIRA NAGAR
BANGALORE
MADURA GARMENTS
STORE CODE 31981ALLEN SOLLY 777CHAL 2ND STAGE 100FT RD INDIRANAGAR
BANGALORE
MADURA GARMENTS
STORE CODE 13057LOUIS PHILIPPEMUNICIPAL COPORATION NO 200 GRD FLR NO 205 1ST FLR GLENAND BLDG BRIGADE RD
BANGALORE
MADURA GARMENTS
STORE CODE 11097LOUIS PHILIPPE NO777C 100FT RD HAL 2ND STAGE OPP METHODIST CHURCH
BANGALORE
MADURA GARMENTS
STORE CODE 32944ALEEN SOLLY UG 35BRIGADE ORION MALL BRIGADE GATEWAY 26 1 80FT RD DR RAJ KUMAR RD
BANGALORE
MADURA GARMENTS
STOER CODE 62599NEW NO 144 PID NO49 64 144 DVG RD
BANGALORE
MADURA GARMENTS
STORE CODE 13057LOUIS PHIIPPE MUNCIPAL CORPORATION NO 200 GRD FLR NO 205 1ST FLR GLENAND BLDG BRIGADE RD
BANGALORE
MADURA GARMENTS
STORE CODE 62594NO 111 1ST FLRBRIGADE ORION MALL RAJAJI NAGAR EXT MALLESHWARAM WEST
BANGALORE
MADURA GARMENTS
STORE CODE 84042ALLEN SOLLY NO 11918 KHB COLONY BASAVESHWARNAGAR
BANGALORE
MADURA GARMENTS
STORE CODE 13056LOUIS PHILIPPE UG 33ORION MALL BRIGADE GATEWAY 26 1 80 FEET ROAD DR RAJKUMAR ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 13064LOUIS PHILIPPE SHOWROOM R PS PRIDE NO C 1 PID 67 4 C 1 KHB COLONY 5TH BLOCK KORAMANGALA
BANGALORE
MADURA GARMENTS
STORE CODE 13062LOUIS PHILIPPE UG 23ORION MALL BRIGADE GATEWAY 80 FT ROAD DR RAJKUMAR ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 84041SHOP NO 1 AND 2SANTOSH COMPLEX RAMMURTHYNAGAR MAIN RD RAMMURTHY NAGAR
BANGALORE
MADURA GARMENTS
STORE CODE 84040VH OUTLET NO 16 RMV2ND STAGE 1ST MAIN ISRO CHIKKAMARANAHALLI SANJAY NAGAR
BANGALORE
MADURA GARMENTS
STORE CODE 32941ALLEN SOLLY SHOP NOF 38 A PHEONIX MARKET CITY MALL K R PURAM HOBLI
BANGALORE
MADURA GARMENTS
STORE CODE 62593PHOENIX MARKET CITYDYAVASANDRA PHASE II IND AREA KRISHNARAJAPURAM HOBLI
BANGALORE
MADURA GARMENTS
STORE CODE 13054LOUIS PHILIPPE F38B 1ST FLOOR PHOENIX MARKET CITY DYAVASANDRA PHASE II INDUSTRIAL AREA KRISHNARAJAPURAM HOBLI
BANGALORE
MADURA GARMENTS
STORE CODE 21784 VANHEUSEN SHOP NO 06PHOENIX MARKET CITY MALL DYASANDRA PHASE II IND AREA KRISHNARAJPURAM HOBLI
BANGALORE
MADURA GARMENTS
STORE CODE 84027 12MARUTHIS ARCADE 100FT RING RD BANASHANKARI 3RD STAGE NR KATHARIGUPPA CIRCLE
BANGALORE
MADURA GARMENTS
STORE CODE 4020VAN HEUSEN OUTLETAQSA ARCADE 9 2 ULSOOR ROAD OPP GURUDWARA
BANGALORE
MADURA GARMENTS
STORE CODE 13040LOUIS PHILLIPPE SHOWROOM UNIT NO 71 OLD NO 123 COMMERCIAL STREET CORPORATION WARD NO 79
BANGALORE
MADURA GARMENTS
STORE CODE 32922ALLEN SOLLY SHOPNO 163 COMMERCIAL STREET
BANGALORE
MADURA GARMENTS
STORE CODE 62513NO 54 BRUHATHBANGALORE MAHANAGARA PAOLIKA PID NO 28 46 54 KILARI ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 4013VH VALUE STORESHOP NO 20 UPPER GRD FLR ROHINI COMPLEX KATHRIGUPPE MAIN ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 4011 VHOUTLET NO 84 SIBBICOMPLEX BHIMAJYOTHI NAGAR HBCS BASAWESHWARANAGAR
BANGALORE
MADURA GARMENTS
STORE CODE 62397SHOP NO F020FF ROYAL MEENAKSHI MALL BANNERGHATTA ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 13026LOUIS PHILIPPE G 010A ROYAL MEENAKSHI MALL BANNERGHATTA NAIN ROAD
BANGALORE
MADURA GARMENTS
STORE CODE 32916ALLEN SOLLY STOREGO10 B GF ROTAL MEENAKSHI MALL BANNERGHATTA MAIN ROAD
BANGALORE

<< HDFC Diners club credit card retail merchants or stores in Bangalore lists 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,11 >>