Cannot create a new db instance on IBM cloud - db2

I'm attending a MOOC course and I am a complete newbe of IBM cloud. The reason for which I am writing here is, as reported on the subject, that I am struggling with an istance creation.
First of all the system believes that converting part of the web pages in Italian is of any help to me, but it's not! In fact, all the times I'm googling for an help I have to figure out the English translation of what's written in Italian. This also means that, up to the moment in which I'll figure out how to convert ALL in English, some of the words could be a bit wrong.
By the way..
login into my IBM cloud account
--> click on catalogue
--> select "Services"
--> select "Database"
--> select the square "dB2"
A page like the following one opens to me
Here some problems:
The systems wants to know which is my location ("ubicazione") than, according with my MOOC explanations, I should have to select the socalled "lite plane", which is free. But the only way to select that "lite plane" is not to select "Milan" into the "ubicazione" selector.
So, once I've chosen "London", the "lite plane" square open up, as you can see in the following picture
But still there is no way to create a new istance as, in some ways, the system believes I already have a free instance opened
Particularly, in the previous image you can see the following message
Crea servizio
You can only have one instance of a Lite plan per service. To create a new instance, either delete your existing Lite plan instance or select a paid plan.
ID transazione: 4b9c59b60dd2413b8ba0e5ab1e5d5811
apart the weird fact that is half in Italian half in English, I realize that I may have a new instance opened in one of my previous attempts, but it is not, as you can see here
So, what's wrong in all of this? Could you help me to figure out how to create a new dB2 instance and how to make IBM working in English for ALL it's website?

Db2 on Cloud offers the free lite plan only in Dallas and London. If you get an error message that you already have such a service instance in your account, check your existing resources. If an instance exists use that one or delete it.

Related

(Power Automate, Microsoft Forms connector) Finding Form using FormID?

I have inherited a bunch of flows from a former co-worker. One of these flows are using the: "When a response is submitted" Microsoft Forms connector as a trigger.
The connection is made using my former co-workers 'personal' work account and I need to switch it to mine (a service acc).
Now, my co-worker shared access to relevant SharePoint sites before leaving but must have forgotten to share access to this specific Form. I am unable to locate the form in our SharePoint setup and have even had our administrator try and help me look but no luck so far.
Looking at the connector the only thing I have to go from is a "Form ID", which I haven't been able to find much info about except for how to extract it to use in flows.
The form ID looks like this:
Xz9pUAX8ika_qIDyEUYU05TNwO5_-kpFmx7-D65GU8lUNFYzWkg1MUY2VEo3VTExSEdSVDBZT*******
I do not know how or if this ID is sensitive at all so I gave blanked out the last few digits to be safe. If seeing the full ID makes a difference and is not a security hazard I wouldn't mind sharing it.
Does anyone know a trick for locating a Microsoft Forms using a FormsID?
It looks like you´re in luck. The ID can be used when properly used in the HTML. For the following examples, I used the ID that you provided.
The standard link that you use for sending and collecting respones should look like this: https://forms.office.com/Pages/ResponsePage.aspx?id=Xz9pUAX8ika_qIDyEUYU05TNwO5_-kpFmx7-D65GU8lUNFYzWkg1MUY2VEo3VTExSEdSVDBZT*******
The "Share to collaborate" link should look like this: https://forms.office.com/Pages/DesignPageV2.aspx?subpage=design&FormId=Xz9pUAX8ika_qIDyEUYU05TNwO5_-kpFmx7-D65GU8lUNFYzWkg1MUY2VEo3VTExSEdSVDBZT*******
The last link only works depending on the settings.
Share to collaborate settings
If it doesn´t hopefully the first link can hopefully help you in copying the content.

Can’t click on the create button to on Db2 IBM on Lite Plan

For some reason once I’ve picked the region with has the Lite price plan, the create button becomes disabled, I can’t click it to create the db instance - has someone experienced this before?

How to fix "Org or space not found" error while creating toolchain in IBM cloud?

I am trying to deploy Cloud Foundry application to IBM cloud. When I try to create "Toolchain" and select Region under "Delivery Pipeline", I don't get any value under "Organization" label.
I went through IBM cloud's deployment description page and tried to change the region from "Frankfurt" to "Dallas" as recommended.
I am using Lite account, therefore, cannot create more than one organization.
Please note that I already have one organization created which is not getting discovered.
I expect the "Organization" and "Space" column to populate automatically once the region is selected.
I solved it by putting region correctly. My organization belonged to region "United Kingdom" so I had to select region "London" while creating a toolchain.
Make sure you have done the following steps correctly.
1. Note down Organization name, Region, and Space name from a link given below.
Go to this link https://cloud.ibm.com/account/cloud-foundry and then click on the organization name. After that you will see this page then notes these things.
2: Go to the link given below to create toolchain and on the page put everything on red marking below that you noted above.
#OmUniyal, If you're just starting out working with toolchains, I would recommend creating the toolchain in a resource group rather than an organization. Although there is no planned date, organization based toolchains will eventually be migrated to resource group based ones. Functionally toolchains in orgs or resource groups are basically the same, it's just the "container" holding them.

Form content in multiple languages: View behaviour and model handling

Currently I work an an app where the user can create products for a catalog. The status is, he can do this in one language, data gets send to the backend and saved. The next step would be to make this creation process ready for multiple languages e.g. english or french. The behaviour should be the following, he choses the language inside a drop down field and gets a form in the selected language.
The problems I encountered and my solution process till now:
1) How should the view handling be? Should I create a new fragment for every language and exchange the content? If Im correct that would mean I would need to destroy and create fragements for the languages, right? And then create them with a binded model again.
2) How should I handle the model/models? Should I create one model with the data they share e.g. creation date and create a model with language related attributes? That would be my solution right now.
Maybe you already did something similiar or have some thoughts about this, thanks for any help!
You should do neither of those things. There are mechanisms in place, generally referred to as i18n that help you with this process. UI5 help available here:
https://ui5.sap.com/sdk#/topic/df86bfbeab0645e5b764ffa488ed57dc
and
https://ui5.sap.com/sdk#/topic/5424938fc60244c5b708d71b50a0eee4
In summary, translations should be done using the i18n mechanisms and the oData logon language.
Logging into the application, assuming it's hosted on an SAP gateway or SCP / Launchpad, the user's current logon language will drive at least all standard SAP translatable texts like the labels returned from data elements in your oData services. The appropriate url parameter is sap-language=EN, but it's set automatically from the current browser settings. Generally, you don't have to worry about this.
The same browser settings drive which particular i18n file is loaded. This could be specific like en_US for American English, or fr for French.
If you code your app without any hard coded translations but always follow the rules in the links above, adding a language should be trivial.
These translations could probably be triggered programmatically via a dropdown as well but I have never tried that since it's extra steps for my users.

Google cloud - Where i need to register my app?

I don't know where I need to register my app after created my first project. I already followed their instruction regarding to app registration.
https://cloud.google.com/console
To register a new application, do the following:
Go to the Google Developers Console.
Select a project, or create a new one.
In the sidebar on the left, select APIs & auth. In the displayed
list of APIs, make sure all the APIs you are using show a status of
ON.
In the sidebar on the left, select Registered apps.
At the top of the page, select Register App.
Fill out the form and select Register.
Thanks a lot in advance.
The instructions you pasted refer to the older API Console.
You can either figure out their Cloud Console equivalents (Create Project, etc), or go to the previous version at https://code.google.com/apis/console/b/0/?noredirect
It's worth pointing out that Google's terminology is somewhat muddled. Sometimes "app" refers to a "project", other times it refers to a "client" within that project.
For example, you might have a project called "My Multi-Device Task List". That may have a web client, an Android client and an iOS client. Sometimes the word "app" refers to the project, other times it refers to one of its clients.