Posts

Showing posts from May, 2015

Oracle XML Publisher related Table Details

Image
Lets take example of standard report AP Invoice Register to check xml publisher related table details. Concurrent Program screen shot: For  Data definition we can query using Executable code as shown in below screenshot. Data Definition Screen shot: Data definition get stored in below given Tables: XDO_DS_DEFINITIONS_B XDO_DS_DEFINITIONS_TL We can use below given query to find out details related to data definition. SELECT *  FROM XDO_DS_DEFINITIONS_B  WHERE DATA_SOURCE_CODE = 'APXINRIR'; SELECT * FROM XDO_DS_DEFINITIONS_TL  WHERE DATA_SOURCE_CODE = 'APXINRIR'; Template Screenshot: Template related detail get stored in below given table. XDO_TEMPLATES_B XDO_TEMPLATES_TL XDO_LOBS We can use below given query to find out template related details from back-end. SELECT *   FROM XDO_TEMPLATES_B   WHERE TEMPLATE_CODE = 'APXINRIR'; SELECT *   FROM XDO_TE...

Automatic SEO for Images - Add Proper ALT and Title Tags Automatically

Earlier i told you best  seo tips for  images  which were all manually to be followed. However, its not that easy to optimize each and every image for search engines. So, here is a JavaScript code for your blog which will  add  all necessary attributes such as  ALT ,  Title  etc to your images and optimize all your blog images for search engines. This is one of the easiest way to optimize all images in your blog posts and implementation process only takes less than a minute. This will not only optimize new images but will also optimize all images that your blog have in older posts. Go to Dashboard > Design > Edit HTML (else move to next step) Now, search for code in your template (tip: press CTRL + F and paste this code) Paste below given code just Before </body> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/> <script type='text/javascript'> //<![C...

A Simple B2B Marketing Framework

Image
We often discuss in this blog how B2B marketing is becoming more complex, and how to manage this complexity. Marketing is getting involved in many more areas that touch the customer along the buying process, multiplied by a dizzying variety of new tactics, online communications and engagement platforms. I have always liked frameworks to make sense of this complexity, and add some structure to identify focus areas and value drivers, dependencies and hierarchies - all to make complexity a bit easier to manage. Pragmatic Marketing Framework One of the best known frameworks in product marketing is from  Pragmatic Marketing . Very clean and structured, it lists all major areas that need to be designed, built, and managed by product marketing and product management. My problem with the framework is that while it shows a neat hierarchy (from market to programs and support) it only loosely links its components along a common thread. In my mind, this common thread should be the custom...