Posts

Showing posts from May, 2020

Using BAPI upload excel file for t-code AS02 in SAP

Using BAPI " BAPI_FIXEDASSET_CHANGE " create a zprogram to upload excel file for mass change fixed asset in SAP. REPORT  ZAS02_ASSET_CHANGE_UPLOAD . TYPE-POOLS :  truxs . " Structure for Excel data TYPES :  BEGIN  OF  ty_excel ,          anln1  TYPE  anln1 ,          bukrs  TYPE  bukrs ,          kostl  TYPE  kostl ,          werks  TYPE  werks ,          prctr  TYPE  prctr ,         END  OF  ty_excel . DATA :  lt_excel     TYPE  TABLE  OF  ty_excel ,       ls_excel     TYPE  ty_excel ,     ...

Create Order and Unorder list in HTML

 Here is the details of order and unorder list creation in HTML: <!DOCTYPE html> <html> <head>   <meta charset="utf-8">   <meta name="viewport" content="width=device-width">   <title>My Favorite Food</title> </head> <body>   <h2>I love Noodles !!! </h2>   <h3>Lets make it..... </h3>   <h4> Ingredients: </h4>     <!-- Unorder List -->   <ul>     <li>Sticky Noodles. </li>     <li>Onion </li>     <li>Egg </li>     <li>Vegetables </li>     <li> Noodles Masala </li>     <li>Tomato Sauce </li>     <li>Oil</li>       </ul> <!-- end of unorder list -->     <!-- Order list -->   <ol>   ...