Skip to main content
Answer

How to add attachment pin on the bills and adjustment screen AP301000 on mobile app.

  • March 20, 2023
  • 4 replies
  • 177 views

Forum|alt.badge.img

Hi Folks,

I’ve tried to attachment pin on the Bills and Adjustment screen ID AP301000 for the mobile app using below customization code, but it didn’t work after publishing customization, so some one help me on this ?

 

 

 

Best answer by sweta68

Hi @psoni1585 ,

Yes, I am able to add Attachment on Bills and Adjustments(AP301000) screen.(refer below screenshot).

  • I have used below code for add attachment.
update screen AP301000 
{
Update container "DocumentSummary"
{
attachments
{
disabled = false
add type "jpg"
{
extension = "jpg"
}
add type "png"
{
extension = "png"
}
add type "pdf"
{
extension = "pdf"

}
}
}
}
  • And below code for update sitemap.
update sitemap
 {
     update item "AP301000"
      {
        displayName = "Bills and Adjustments"
        visible = true
      }
 }

Can you please try this once?

Hope, It helps!

Regards,

Sweta

4 replies

Forum|alt.badge.img+9
  • Semi-Pro III
  • March 20, 2023

 

Hi @psoni1585 ,

Are you able to see the Bills and Adjustments screen on Mobile app?

I believe you need to

  • Update Main Menu to see the Bills and Adjustments screen.(Refer below Screenshot)
Update Main Menu
  • Add below code in Update: MENU section.
Update Sitemap

 

Hope, It helps!

Regards,

Sweta


Forum|alt.badge.img
  • Author
  • Varsity I
  • March 20, 2023

Hi @sweta68,

Thanks a lot for your response.

Actually, I’m using MYOB Advanced mobile app and bills & adjustment screen is already there, so that’s not an issue. I just want to add attachment pin to bills & adjustment screen to allow user to attach any document through mobile app.

 

I’ll greatly appreciate, if you can help me on this.  

Thanks & Regards,

Pankaj 

 


Forum|alt.badge.img+9
  • Semi-Pro III
  • Answer
  • March 21, 2023

Hi @psoni1585 ,

Yes, I am able to add Attachment on Bills and Adjustments(AP301000) screen.(refer below screenshot).

  • I have used below code for add attachment.
update screen AP301000 
{
Update container "DocumentSummary"
{
attachments
{
disabled = false
add type "jpg"
{
extension = "jpg"
}
add type "png"
{
extension = "png"
}
add type "pdf"
{
extension = "pdf"

}
}
}
}
  • And below code for update sitemap.
update sitemap
 {
     update item "AP301000"
      {
        displayName = "Bills and Adjustments"
        visible = true
      }
 }

Can you please try this once?

Hope, It helps!

Regards,

Sweta


Forum|alt.badge.img
  • Author
  • Varsity I
  • March 23, 2023

Hi @sweta68 

 

Appreciate your help. now I managed to add attachment pin on both Purchase order & AP bills and adjustment screen using your code.

Thanks a lot...😀

Regards,

Pankaj