Promotions refer to the entire set of activities, which communicate the product, brand or service to the user. The idea is to make people aware, attract and induce to buy the product, in preference over others.
Questions tagged [promotions]
137 questions
5
votes
3 answers
Testing In-app Promotions: how to cancel a purchase made with a promo code
Is there any way to cancel a purchase made with a promotion code?
The developer console shows the count of redeemed promo codes but I didn't find a way to administrate and cancel them.
According to the Testing In-app Promotions documentation there…

Jérémy Reynaud
- 3,020
- 1
- 24
- 36
5
votes
2 answers
primitive promotion for >> [Java]
I encountered misunderstanding of primitive promotion in the next code snippet.
byte a = 2;
int b = a >> 4L;
What would I expect?
long b = (int)a >> 4L;
long b = a >> 4L;
int b = a >> 4L;
int >> long will promote to the larger data type (long) and…

Andrew Tobilko
- 48,120
- 14
- 91
- 142
4
votes
2 answers
C++: non-native types promotion
Let's suppose I've got a 2D vector template class:
template class Vec2 {
T x, y;
// ...
};
I'd expect that the result of a sum between a Vec2 and a Vec2 would be a Vec2, but C++ won't do this by default.
Am…

peoro
- 25,562
- 20
- 98
- 150
4
votes
2 answers
iPhone App Store (Paid App) - Promo Codes / Updates
I have a few specific questions concerning paid applications in the App Store, along with promo codes and updates. I've done my research, but I either haven't found answers, or have found very outdated "I think this is how it works..." answers.
I…

Craig Otis
- 31,257
- 32
- 136
- 234
4
votes
5 answers
generating promotion code using python
By using python language, what would be a clever / efficient way of generating promotion codes.
Like to be used for generating special numbers for discount coupons.
like: 1027828-1
Thanks

Hellnar
- 62,315
- 79
- 204
- 279
4
votes
3 answers
Default argument promotions in C99 standard
I have a question about default argument promotions in C99 standard. In the book "C Programming - A Modern Approach, 2nd Edition" I've read that:
Argument Conversions:
[...]
1) The compiler has encountered a prototype prior to the call. [...]
2)…

Quentin
- 1,090
- 13
- 24
3
votes
2 answers
Magento Tier Sales Prices?
I've been trying to mirror some functionality
in Magento (v1.6) as seen on another website. In the example, the
store owner has set up the ability to apply sales prices to a tier.
(most likely tierprices.phtml as the wrapper) by applying a sales…

ehime
- 8,025
- 14
- 51
- 110
3
votes
2 answers
How to register a Facebook Application dynamically via Graph API like wildfireapp and others doing?
I am trying to create a sweepstakes application.
I am trying to copy wildfire.
But I am unable to create facebook applications dynamically like they are doing.
I checked it they are using graph api to show on front end but there is no method…

Inam Abbas
- 1,480
- 14
- 28
3
votes
1 answer
Apply multiple times a Product Partner Fixed Price Promotion
In SAP Commerce v1811 I configured a product partner fixed price promotion such us
"Buy 2 of Product A and get product B at USD 100"
In order to do this I used the Product perfect partner fixed price and configured
Conditions
CONTAINER_X:…

mcalcagno
- 123
- 8
3
votes
0 answers
Algorithm strategy to find minimum cart value after applying eligible deals/promotions on cart items
I was working on an assignment in the domain of E-commerce.
Admin user can create promotions. If promotion applied, the price of an will be item reduced.
A Promotion:
has many items
has some conditions which must be fulfilled in order to apply it…

Hasmukh Rathod
- 1,108
- 1
- 14
- 20
3
votes
1 answer
How can I make my app appear under AppStore link in safari search on mobile devices?
My question may seem trivial for some of you but I'm kinda new to app promotion.
I would like to enable the appearance of my app in a safari search on mobile devices as you can see in the image bellow.
How can I make my app appear as the "Numbers"…

Martin
- 843
- 8
- 17
3
votes
2 answers
Need Help Writing SQL To Apply Promotions to Shopping Basket at Checkout
Don't laugh but I'm a Lotus Notes (non-relational database!) developer trying to work with SQL and, although I have the basic concepts nailed, I'm stuck on something I'd consider to be "advanced".
Imagine a user reaches an online checkout having…

Jake Howlett
- 169
- 3
- 14
3
votes
3 answers
operator+ doesn't work when both parameters need to be promoted
I have a class named 'Card' and a class named 'CardDeck', with the following promotion defined in 'CardDeck.h':
CardDeck(Card card){cards.push_back(card);}
CardDeck has a friend operator+:
friend CardDeck operator+(const CardDeck, const…

shayelk
- 1,606
- 1
- 14
- 32
3
votes
1 answer
Jenkins using Git Plugin not populating GIT_COMMIT to promoted build
I am trying to set up a series of jobs in Jenkins to build and deploy an application using the Promoting plug in. We are currently using Git as our SCM and we are using the Git Plug in to help with the builds. This particular build is a Maven build.…

Jorge Varona
- 195
- 2
- 8
3
votes
1 answer
C usual arithmetic conversions -- last case in standard
Trying to parse the standard, the last case seems to be the case where we have a signed and an unsigned operand, where the signed operand has larger rank, but still can't fit the full range of the unsigned operand of lower rank. This seems to be the…

JT1
- 443
- 3
- 9