Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrianMRO/a50c9f2cc7fe24d3c75761d625f9cf5f to your computer and use it in GitHub Desktop.
Save BrianMRO/a50c9f2cc7fe24d3c75761d625f9cf5f to your computer and use it in GitHub Desktop.
Acumatica Mobile Demo - Tags - ZZTagEntry Graph
using BLOG.Common;
using PX.Data;
using PX.Data.BQL.Fluent;
namespace BLOG.IN
{
public class ZZINTagEntry : PXGraph<ZZINTagEntry, ZZINTag>
{
[PXViewName("Tag")]
public SelectFrom<ZZINTag>.View Document;
[PXViewName("Current Tag")]
public SelectFrom<ZZINTag>
.Where<ZZINTag.tagID.IsEqual<ZZINTag.tagID.FromCurrent>>
.View CurrentTag;
public PXSetup<ZZBlogSetup> Setup;
#region Constructor
public ZZINTagEntry()
{
ZZBlogSetup setup = Setup.Current;
}
#endregion
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment