UOM not appearing on the second page of form - abap

I have a 2-page Adobe form. In the footer section of master page I have the UOM for totals. When running the form UOM appears in the first page (footer section) but not in the second page. All other data except the UOM are successfully displayed, both in first and second page footer section.
Any idea what I could have missed?
Thanks!

Just found solution to my problem. Tables are not allowed in master pages, both header and footer, so to make data appear in header and footer of all pages the variable (for example UOM) should be transferred to a global data and then use that global data for data binding.
Hope this helps to those having same issue.

Related

How to reset search item on Master Detail page?

I have link which navigate to Master Detail page and perform search, it works well.
But, when I change page and back again to MD (through navigation) search item still hold the value from link.
How can I clear search item when I change page?
Clear its value in Pre-rendering process.

TYPO3: login form on page + sub pages

In TYPO3, how do I get a login form to be the first rendered content element on a page and all its sub pages? I tried to check the "recursive" option but that doesn't seem to do the trick?
There are quite a few ways to set up something like this. Here's one approach:
Add a separate content section in your backend layout right above the current section.
Use slide to have pages inherit content for this section from their parent pages
Put the login form in that section on your the root page of your subtree.
This rather simple approach leaves control to the editor.
The recursive option you mentioned is very likely related to the record storage page and tells TYPO3 to look for records (here: users) in subpages of the selected page.

Sitefinity: How to set page title based-on the content item being viewed?

I have a page in Sitefinity 7 and its entire purpose is to show the detailed view of a custom content item.
So I've dragged-on a widget to the page, selected that it only shows one particular item only, without selecting which, because it should be whatever one was chosen from another page which caused them to navigate here.
One not-selected content item.
The page with the list control navigates to the detailed page.
But the page title is the same no-matter which is selected. I want the page title to be one of the content item's fields. How can I get the page title to be based-on the item we're viewing?
Edit the Awards widget on your details page and then go to the Advanced settings, then in the MetaTitle field enter the field name of your module you'd like to use, so in most cases "Title", then in the PageTitleMode field, you can enter one of a few options, Append, Replace or DoNotSet. Documentation on those options is here. You can also utilize the MetaKeywordsField and MetaDecriptionField by also mapping those to a new "SEO Keywords" or "SEO Description" long text field on your module for instance. Documentation on that is here.
The screenshot is from Sitefinity 6.3 but it should be the same.

Bigcommerce product image snippet in custom panel

I'm new to Bigcommerce and hoping someone can help me figure out if I'm doing anything wrong here. I'm simply trying to create a custom template for my product pages. I created a new file called "_product.html", uploaded it via FTP, and applied it to one of my products.
Within this file I have a default panel called ProductDetails.html. This panel makes a reference to the products thumbnail images. Everything works as expected.
However, I now copy the content from the ProductDetails.html panel and place it in a new panel called ProductInformation.html. At this point, there is no difference between ProductDetails.html and ProductInformation.html, except for the name.
I then go into my _product.html template and replace the reference to the ProductDetails panel with a reference to my new ProductInformation panel. Now, none of the snippets or global variables are being populated. They print nothing to the page.
If I put the original reference to the ProductDetails panel back, everything is displayed as expected. Is there something I'm missing here? Are the snippets and global variables used in the system-created ProductDetails panel only available in that file and not available to other custom panels created for a product page?
I really appreciate any help you can provide! Thank you!
As I recall, there is a key element inside of the ProductDetails Panel that is needed to get all the variables to work on a product page. I think the order even matters.
I would recommend using Snippets to control the information you want to swap out on a custom product page.
The ProductDetails panel populates the global variables that you are trying to use. If you do not have it on the custom page then you cannot use the variables inside of it. The workaround is to place the panel inside an HTML comment:
<!-- %%Panel.ProductDetails%% -->
That way the panel will be called by the Bigcommerce template system without affecting the rest of your layout.

RDLC Print PageHeader Only on First Page

Is there a way to show the report header only on the first page? Just as expected the PageHeader.PrintOnFirstPage only shows or hides the header for the first page only. The customer wants the header to show up only on the first page, kinda like a title in a document. I looked at MS-RDL.pdf and RDL200501 with no luck. My reports are RDLC not RDL but it should not matter. If there is no straightforward solution I will look into writing custom code to supress the header on pages > 1.
If you need the header to be on the first page only, why struggle to put it inside the PageHeader anyway?
Instead, remove the PageHeader altogether and design whatever you want as the 'header' directly at the top most body.
Just my two cents.