Tuesday, April 5, 2022

SAP Tcodes

zme27 - Automatic STO creation

mmbe - Stock Overview, Material, Batch

me51n - Create Purchase Requisition

me21n - Create Purchase Order

me59n - Automatic Generation of POs

vl10b - 

se01 - Transport Organizer

we02 - IDoc List

sm37 - Simple Job Selection

su01 - User Maintenance: Initial Screen

se16n - General Table Display

v_sa - 

Thursday, January 6, 2022

SAP, Scrum Master, Work Report

20 January 2022

Thursday

- code review

- qa review form

- Development standards and guidelines

- programming standards


19 January 2022

Wednesday

- bsci account access

- pulse secure

- rsa

- sap

- code review

- twp meetings

- monday.com meetings


18 January 2022

Tuesday

- Increment

- Commitment: Definition of Done

- Endnote

- Acknowledgements

- People

- Scrum Guide History

- monday.com

- meetings

- SAP Logon




17 January 2022

Monday

- Sprint Retrospective

- monday.com

- scrum artefacts

- product backlog

- Commitment: Product Goal

- Sprint Backlog

- Commitment: Sprint Goal

- monday.com Meetings


13 January 2022

Thursday

- Scrum Master KT

- Scrum Events

- The Sprint

- Daily Scrum

- Sprint Retrospective

- Meetings


12 January 2022

Wednesday

- Scrum Guide

- Transparency

- Inspection

- Adaptation

- Scrum Values

- Scrum Team

- Developers

- Product Owner

- Scrum Master

- Meetings


11 January 2022 (Work from home)

Tuesday

- Meetings


10 January 2022

Monday

- scrum master

- agile

- scrum master meeting

- monday.com

- project management

- scrum guide

- scrum

- scrum theory

- meetings


07 January 2022

Friday


- scrum

- agile

- monday.com

- project process

- meetings



06 January 2022

Thursday


- SAP Weaver

- Logging onto SAP system

- ABAP (Advanced Business Application Programming Language)

- RICEFW

- Meetings


05 January 2022

Wednesday


- monday.com

- Construction teams

- Project Management

- CRM

- Integration

- Meetings


04 January 2022

Tuesday


- Finance and Controlling (FICO)

- SAP FI

- SAP CO

- Sales and Distribution Management (SD)

- Material Management

- Logistic Execution

- Supplier Relationship Management (SRM)

- Customer Relationship Management (CRM)

- SAP Architecture: Presentation Servers, Application Servers, Database Servers

- Clients

- monday.com

- day-to-day project management

- Meetings


03 Jan 2022 
Monday

- SAP (Systems, Applications & Products in Data Processing) Introduction and History
- ERP (Enterprise Resource Planning)
- Technical / Functional
- MM (Material Management System), PP(Production Planning), CRM (Customer relationships solution)
- sLog, sFin, sMarketing
- SAP Modules
- SAP FICO
- Meeting

Thursday, September 23, 2021

 Which keyword can be used for coming out of recursion?

Return

Which keyword is used to come out of a loop only for that iteration?

Break

_ is used to create an object.

constructor

What is instantiation in terms of OOP terminology?

The creation of an instance of a class.

Which one of the following is the correct extension of the Python file?

.py

Which is the correct HTML element for the largest heading:

The h1 element

What is the correct HTML for making a drop-down list?

<select> tag

What is the correct HTML for inserting an image?

<img src="img.gif" alt="MyPic">

src attribute in an image tag means what?

Source of the image

Python is _ programming language

high-level

What is an algorithm?

A set of instructions in order

Which are themselves a collection of different data types?

structures

In the C language, the constant is defined_.

Anywhere, but starting on a new line

What is required in each C program?

The program must have at least one function.







Tuesday, September 21, 2021

Search Engine Optimization (SEO)

On-Page SEO

Off-Page SEO

Crawler

WordPress

Title Page

H1 Tag

Description Tag

Portent's SERP Preview Tool

Google Analytics

Mobile Friendly Test

Friday, February 5, 2021

Python program for finding unique characters from the string

 temp = ""

string = input("Enter a string:")

for ch in string:

    nch = ch

    if(nch in temp):

        pass

    else:

        print(ch)

    temp = temp + ch






temp = ""

string = input("Enter a string:")

for ch in string:

    nch = ch

    count = 1

    if(nch in temp):

        count += 1

    else:

        print(ch,"count:", count)

    temp = temp + ch

Python program for reversing a string

First Method:


string = input("Enter a string:")

r = ""

l = len(string)

for a in range(l):

    r = r + string[l-a-1]

if(string == r):

    print(string, "is a palindrome")

else:

    print(string, "is not a palindrome")


Second Method: 


string = input("Enter a string:")

r = ""

length = len(string)

for a in range(-1, (-length-1), -1):

    r = r + string[a]

if(string == r):

    print(string, "is a palindrome")

else:

    print(string, "is not a palindrome")



Tuesday, February 2, 2021

Python program for String Traversal

 name = "awesome"

for c in name:

    print(c,'-', end = ' ')


Python program for reading a string and displaying it in reverse order

 string = input("Enter a string:")

print("The", string, "in reverse order is:")

length = len(string)

for l in range(-1, (-length-1), -1):

print(string[l])

SAP Tcodes

zme27 - Automatic STO creation mmbe - Stock Overview, Material, Batch me51n - Create Purchase Requisition me21n - Create Purchase Order me59...