SAPUI5 Login page?
up vote
1
down vote
favorite
i cant find any simmilar to my question soo i want just to know if i can make a "login page" my own instead of the popup
this there a way?
My application is deployed on the cloud platform and goes trough a cloud connector to the sap backend system where it get his odata data from..
Its kinda ugly and i cant find anything to this.. except when the app is deployed in the abap repository.. but my is deployed and running trough the cloud platform.
(Username = SAP User and password also sap user pwd)
so maybe someone can help or paste an example
javascript odata sapui5
add a comment |
up vote
1
down vote
favorite
i cant find any simmilar to my question soo i want just to know if i can make a "login page" my own instead of the popup
this there a way?
My application is deployed on the cloud platform and goes trough a cloud connector to the sap backend system where it get his odata data from..
Its kinda ugly and i cant find anything to this.. except when the app is deployed in the abap repository.. but my is deployed and running trough the cloud platform.
(Username = SAP User and password also sap user pwd)
so maybe someone can help or paste an example
javascript odata sapui5
That popup is most likely appearing due to chromes default behavior of showing a sign in dialog when it receives a response with status code 401. You can stop this from happening by changing your response to return something other than 401 or you could change the Authorization header to something other than Digest or Basic.
– Daniel Almeida
Nov 13 at 10:44
Now is my authorization on „no authorization“.. if I make basic than I can put my data in it.. but it’s not the idea behinde the app.. It’s for more then one user. So for my understanding.. I cannot make a login page to prevent the popup? I mean the popup should be the login page.. I just want to make it more beautyfull and a own view
– Jünge alles
Nov 13 at 14:25
Looks like same issue: stackoverflow.com/q/52671995/3434027
– iPirat
Nov 18 at 7:16
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
i cant find any simmilar to my question soo i want just to know if i can make a "login page" my own instead of the popup
this there a way?
My application is deployed on the cloud platform and goes trough a cloud connector to the sap backend system where it get his odata data from..
Its kinda ugly and i cant find anything to this.. except when the app is deployed in the abap repository.. but my is deployed and running trough the cloud platform.
(Username = SAP User and password also sap user pwd)
so maybe someone can help or paste an example
javascript odata sapui5
i cant find any simmilar to my question soo i want just to know if i can make a "login page" my own instead of the popup
this there a way?
My application is deployed on the cloud platform and goes trough a cloud connector to the sap backend system where it get his odata data from..
Its kinda ugly and i cant find anything to this.. except when the app is deployed in the abap repository.. but my is deployed and running trough the cloud platform.
(Username = SAP User and password also sap user pwd)
so maybe someone can help or paste an example
javascript odata sapui5
javascript odata sapui5
asked Nov 12 at 18:59
Jünge alles
176
176
That popup is most likely appearing due to chromes default behavior of showing a sign in dialog when it receives a response with status code 401. You can stop this from happening by changing your response to return something other than 401 or you could change the Authorization header to something other than Digest or Basic.
– Daniel Almeida
Nov 13 at 10:44
Now is my authorization on „no authorization“.. if I make basic than I can put my data in it.. but it’s not the idea behinde the app.. It’s for more then one user. So for my understanding.. I cannot make a login page to prevent the popup? I mean the popup should be the login page.. I just want to make it more beautyfull and a own view
– Jünge alles
Nov 13 at 14:25
Looks like same issue: stackoverflow.com/q/52671995/3434027
– iPirat
Nov 18 at 7:16
add a comment |
That popup is most likely appearing due to chromes default behavior of showing a sign in dialog when it receives a response with status code 401. You can stop this from happening by changing your response to return something other than 401 or you could change the Authorization header to something other than Digest or Basic.
– Daniel Almeida
Nov 13 at 10:44
Now is my authorization on „no authorization“.. if I make basic than I can put my data in it.. but it’s not the idea behinde the app.. It’s for more then one user. So for my understanding.. I cannot make a login page to prevent the popup? I mean the popup should be the login page.. I just want to make it more beautyfull and a own view
– Jünge alles
Nov 13 at 14:25
Looks like same issue: stackoverflow.com/q/52671995/3434027
– iPirat
Nov 18 at 7:16
That popup is most likely appearing due to chromes default behavior of showing a sign in dialog when it receives a response with status code 401. You can stop this from happening by changing your response to return something other than 401 or you could change the Authorization header to something other than Digest or Basic.
– Daniel Almeida
Nov 13 at 10:44
That popup is most likely appearing due to chromes default behavior of showing a sign in dialog when it receives a response with status code 401. You can stop this from happening by changing your response to return something other than 401 or you could change the Authorization header to something other than Digest or Basic.
– Daniel Almeida
Nov 13 at 10:44
Now is my authorization on „no authorization“.. if I make basic than I can put my data in it.. but it’s not the idea behinde the app.. It’s for more then one user. So for my understanding.. I cannot make a login page to prevent the popup? I mean the popup should be the login page.. I just want to make it more beautyfull and a own view
– Jünge alles
Nov 13 at 14:25
Now is my authorization on „no authorization“.. if I make basic than I can put my data in it.. but it’s not the idea behinde the app.. It’s for more then one user. So for my understanding.. I cannot make a login page to prevent the popup? I mean the popup should be the login page.. I just want to make it more beautyfull and a own view
– Jünge alles
Nov 13 at 14:25
Looks like same issue: stackoverflow.com/q/52671995/3434027
– iPirat
Nov 18 at 7:16
Looks like same issue: stackoverflow.com/q/52671995/3434027
– iPirat
Nov 18 at 7:16
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
This pop-up is appearing for the logon to your ABAP backend system.
You can simply remove it by setting up Single Sign-On
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
This pop-up is appearing for the logon to your ABAP backend system.
You can simply remove it by setting up Single Sign-On
add a comment |
up vote
0
down vote
This pop-up is appearing for the logon to your ABAP backend system.
You can simply remove it by setting up Single Sign-On
add a comment |
up vote
0
down vote
up vote
0
down vote
This pop-up is appearing for the logon to your ABAP backend system.
You can simply remove it by setting up Single Sign-On
This pop-up is appearing for the logon to your ABAP backend system.
You can simply remove it by setting up Single Sign-On
answered Nov 22 at 14:52
Nandan Chaturvedi
597622
597622
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268466%2fsapui5-login-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
That popup is most likely appearing due to chromes default behavior of showing a sign in dialog when it receives a response with status code 401. You can stop this from happening by changing your response to return something other than 401 or you could change the Authorization header to something other than Digest or Basic.
– Daniel Almeida
Nov 13 at 10:44
Now is my authorization on „no authorization“.. if I make basic than I can put my data in it.. but it’s not the idea behinde the app.. It’s for more then one user. So for my understanding.. I cannot make a login page to prevent the popup? I mean the popup should be the login page.. I just want to make it more beautyfull and a own view
– Jünge alles
Nov 13 at 14:25
Looks like same issue: stackoverflow.com/q/52671995/3434027
– iPirat
Nov 18 at 7:16