Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Beginning on SAP web ide and javascript bases

Former Member
0 Likes
660

As the title I started from two days to work in SAP and for now I'm starting with javascript (no ABAP) .... is there any complete guide that shows me all the necessary knowledge? For now I'm seeing from here .....

https://sapui5.hana.ondemand.com/#/api/sap.m.QuickView/controlProperties

This is the beginning

<mvc:View controllerName="esercizio3.controller.Tabella" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mvc="sap.ui.core.mvc"
	displayBlock="true" xmlns="sap.m">
	<App>
		<pages>
			<Page title="{i18n>title}">
				<content>
					<IconTabBar id="onPress">
						<items>
							<IconTabFilter icon="sap-icon://action">
								<Text text=" Immettere qui le info "/>
							</IconTabFilter>
							<IconTabFilter text="allegati" count="33" icon="sap-icon://attachment">
								<Text text="Per gli allegati cliccare qui"/>
							</IconTabFilter>
							<IconTabFilter text="note" count="24" icon="sap-icon://notes">
								<Text text="Per le note cliccare qui "/>
							</IconTabFilter>
							<IconTabFilter text="gruppi" count="12" icon="sap-icon://group">
								<Text text="Il contenuto va qui .... "/>
							</IconTabFilter>
						</items>
					</IconTabBar>
				</content>
			</Page>
		</pages>
	</App>
</mvc:View>
2 REPLIES 2
Read only

SergioG_TX
SAP Champion
SAP Champion
562

there isn't an all knowledge 🙂 but you can check several places:

1) open.sap.com --> there are a few free courses to get up to speed

2) help.sap.com --> look for official documentation

3) scn.sap.com --> search for blogs and Q&A

4) sap cloud platform - you can use this for your own learning

5) developer guide + other javascript online sources ... including but not limited to JavaScript Scope, Syntax, MVC, .....

good luck and welcome to ui5 development

Read only

0 Likes
562

thanks 😉