Skip to main content
Answer

How to add activities Tab on customized screen(New Screen)

  • April 24, 2022
  • 8 replies
  • 533 views

Forum|alt.badge.img

Hi Team,

Could anyone let me know the procedure to add “Activity” Tab in a new screen.

 

Regards,

Ramya

Best answer by ktruong

For anyone who needs it, there is a built in reusable graph extension that might help.
 

public sealed class SXServiceContractMaint_ActivityDetailsExt : ActivityDetailsExt<SXServiceContractMaint, FSServiceContract>
{
public static bool IsActive() => true;

public override Type GetLinkConditionClause()
{
return typeof(Where<CRPMTimeActivity.refNoteID.IsEqual<FSServiceContract.noteID.FromCurrent>>);
}
}

 

Good luck,

 

K Truong

8 replies

Forum|alt.badge.img

Hi @ramya15 

you need tabs in new screen, right?

Open the Customization project editor  → Select your Screen & open it → it will opened Screen Editor window→ Select Form it is available on Left side → Select the right side ADD CONTROLS Tab → Drag the Tab control to the Form(left side)→ click on Save.


Forum|alt.badge.img
  • Author
  • Jr Varsity III
  • April 25, 2022

Hi @NageswaraRaoAddanki60 ,

Sorry for the miscommunication, I want to replicate Standard “Activities” function on my customized screen. Please help on this.

 

 

Regards,

Ramya


Forum|alt.badge.img

Hello @ramya15 

 

Please add SkinID=DetailsInTab

 


Chris Hackett
Community Manager
Forum|alt.badge.img
  • Acumatica Community Manager
  • April 28, 2022

Hi @ramya15 have you been able to resolve your issue? Thank you!


Forum|alt.badge.img
  • Author
  • Jr Varsity III
  • April 28, 2022

Hi @Chris Hackett ,

Still i cannot find the complete procedure to Replicate “Activity” Tab on my customized Screen.

 

 

Regards,

Ramya


DavidEichner
Captain II
Forum|alt.badge.img+13
  • Captain II
  • September 1, 2023

I would like to figure out how to do this as well.

Prospeçtive new client needs many notes imported for customer location.


darylbowman
Captain II
Forum|alt.badge.img+15

To start, you need this view defined in the graph:

public CRActivityList<YourMainGraphDAC> ActivityList;


  • Freshman II
  • Answer
  • April 12, 2024

For anyone who needs it, there is a built in reusable graph extension that might help.
 

public sealed class SXServiceContractMaint_ActivityDetailsExt : ActivityDetailsExt<SXServiceContractMaint, FSServiceContract>
{
public static bool IsActive() => true;

public override Type GetLinkConditionClause()
{
return typeof(Where<CRPMTimeActivity.refNoteID.IsEqual<FSServiceContract.noteID.FromCurrent>>);
}
}

 

Good luck,

 

K Truong