Posts

Showing posts with the label Create Order and Unorder list in HTML

BAPI for material storage location Add

 We can add material storage location plant wise using third party app or web. BAPI names : BAPI_MATERIAL_MAINTAINDATA_RT Import parameters: HEADDATA: Material Tables: STORAGELOCATIONDATA: Material: Plant: STGE_LOC:   STORAGELOCATIONDATAX: Material: Plant: STGE_LOC:   use below code after completing steps. CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.        

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>   ...