BDD - Cucumber Feature File

Hi,
I see that you are worked on the BDD in Katalon as per the post at BDD is not executing.

Can you please look into the below observation. When I run the cucumber feature file, it runs always the group of the below section which is highlighted. I have tried with the different options by changing the label names of the file. If I keep only ONE paramter, the whole script is executing.

It is working bit different and Does it mean do we need to provide any connectivity for each scenario it will take one parameter from each para ??

Bottom is sample reference for step definition.

@Login
Feature: Title of your feature
I want to use this template for my feature file

@Login1
Scenario Outline: Login into XYZ Application
Given running indicator flag
And User is on XYZ Application Login Screen **
When User enters the in the Login
And User enters the in the password
And User clicks on the ok button
Then User logged in successful at Home Screen
** Examples:

| atid | pwd1 | runind |
| nm1013 | test01g | Y |
| nm0313 | test02g | Y |

@Login1
Scenario Outline: Click on the Create Inquiry Menu Item
Given User is on XYZ Home Screen
When user click on the Inquiry menu item
And select the billing mode should be
And user click create inquiry item from the heading
Then it should displays create inquiry pagef
Examples:
| contract |
| GS00T07NSD0007 |
| GS00T07NSD0007 |

Step Definition
@Given(“running indicator flag (.*)”)
def run_indicator_flag(String ind1) {
println "Passing Indicator " + ind1
}

@And(“User is on GMP Application Login Screen”)
def user_on_GMP_Application_Login_Screen() {
boolean store2a
WebUI.openBrowser(’’)
WebUI.navigateToUrl(‘https://URL’, FailureHandling.STOP_ON_FAILURE)
}

@When(“User enters the (.*) in the Login”)
def user_enter_userid_in_the_Login(String uid) {
WebUI.setText(findTestObject(‘Object Repository/ORTC01/Page_/input_userid’), uid, FailureHandling.STOP_ON_FAILURE)
}

@And(“User enters the (.*) in the password”)
def User_enters_the_in_the_password(String pwd5) {
WebUI.setText(findTestObject(‘Object Repository/ORTC01/Page_/input_password’), pwd5, FailureHandling.STOP_ON_FAILURE)
}