Questions tagged [aliases]
169 questions
0
votes
1 answer
Click not working using variable in testcomplete
Click not working using variable in testcomplete as following.
var okbtn= "Aliases.LateralData_Applications_Dashboard.LoginForm.btnOK";
okbtn.ClickButton();
while direct click without variable is working fine as following.
…

sanjay
- 13
- 1
- 5
0
votes
1 answer
Joining two columns from one table to one column in other returning different or the same result for each of the 2 columns
I have 4 tables that I can join easily. The last join requires two columns to be joined to a categories table; which, I want a different value (categoryName) returned in the same row.
Output desired
customerID, adID, categoryselectedID,…

Dan Currie
- 11
- 5
0
votes
1 answer
Resolving Ambiguos columns without Ailas
I have a Dynamic query where the select columns are dynamically prepared. As this is a common code and I have some specific column choices, I have to put Aliases according to my query.
For this I had to use string replace.
I want to know if there is…

venkatesh
- 111
- 2
- 9
0
votes
0 answers
Type aliases/abbreviations can't access members?
F# type aliases are not working as I would expect. e.g.
type MyMap = Map
let myMap = ["One", "1"; "Two", "2"] |> Map.ofList
let myMap2= ["One", "1"; "Two", "2"] |> MyMap.ofList
The first let works fine. The second one fails…

user1443098
- 6,487
- 5
- 38
- 67
0
votes
0 answers
Diffences between map start and aliases
I'm using dojo 1.11.2 to build a web application. I noticed a different behaviour between the usage of map star (*) and aliases.
I want to override all focus module with my custom version.
Please see the following examples. [In my application I also…

scosmaa
- 11
- 2
0
votes
1 answer
How to setup the aliases in unix using the script file?
I want to add all my aliase in a g.ksh file like
alias outbox="cd /var/uhs/xys/abc"
alias 1outbox="cd /var/uhs/xys/ab1"
alias 2outbox="cd /var/uhs/xys/ab2"
alias o3utbox="cd /var/uhs/xys/ab3"
alias 4outbox="cd /var/uhs/xys/ab4"
alias 5out="cd…

user251287
- 101
- 1
- 3
- 12
0
votes
2 answers
Why can't I 'cd' into Bash aliases on Cygwin?
I'm using Bash via the mintty terminal on Cygwin, and I've created two aliases in my .bashrc file in my Cygwin home directory.
alias croot="C:/cygwin64"
alias desktop="B:/Users/User/Desktop"
When I enter croot or desktop into the terminal, it seems…

Hashim Aziz
- 4,074
- 5
- 38
- 68
0
votes
0 answers
PHP MVC Namespacing and Aliasing
I'm trying to learn PHP better my working on my custom framework (learning purposes) and I was wondering how can I implement namespaces with aliases (they're new to me). My "framework" structure look like:
app/
controllers/
core/
…

b0ne
- 653
- 3
- 10
0
votes
1 answer
access tomcat alias dir from java
In Tomcat7 there is an option to use aliases from the context like this:
With this I can access files from outside the webapp. Now, I want to write and read from this dir from my Java code, but…

tibi
- 657
- 1
- 10
- 22
0
votes
1 answer
Run Ansible playbook on UNIQUE user/host combination
I've been trying to implement Ansible in our team to manage different kinds of application things such as configuration files for products and applications, the distribution of maintenance scripts, ...
We don't like to work with "hostnames" in our…

domi756
- 21
- 1
- 4
0
votes
1 answer
How to use aliases in ui-router?
I am using angular ui for routing in angular js.
I have a url like http://servername/#/news/14.But I want to use aliases and have url like http://servername/#/news/news_title. Is it possible in angular ui??
Here is my config
angular.module('News',…

bittu
- 337
- 2
- 13
0
votes
1 answer
Extract all fields with aliases from select / view statement using REGEX
How would I retrieve the fields from this sql statement?
create view CCV_REALPROP as select *, SUBSTRING( PARCEL_NO, 1, 3) as CC_GROUP from REALPROP
I need to retrieve the fields as such:
1: *
2: SUBSTRING( PARCEL_NO, 1, 3) as CC_GROUP
Any help is…

wsnyder
- 13
- 5
0
votes
1 answer
Joomla same menu aliases
I am using Joomla in version 3. I have a problem with aliases, which may not be the same.
I am building a website that will work in this way:
There is a database of user profiles. A single user profile has its own specific menu that is configurable…

Tomek Chałupnik
- 1
- 1
0
votes
1 answer
`require': cannot load such file -- mail (LoadError) in postfix aliases
I got below error when sending mail from postfix.
Command output:
/home/user/.rvm/rubies/ruby-2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot load such file -- mail (LoadError)
I have created aliases to…

Alok Rawat
- 21
- 8
0
votes
1 answer
Left Join table error missing aliases
I wrote a query in mysql to get all records from job_input table and corresponding output records if avaible from job_output table. It gives the following error:
Query: select ji.* from job_input as ji left join (select
SUM(jo.O_Total) AS…

Asma Zinneera Jabir
- 801
- 3
- 13
- 31