Ir al contenido principal

Entradas

Mostrando entradas de abril, 2020

How to modify the font and size for Texts in Sage X3?

Publicado en  https://www.sagecity.com/support_communities/sage_erp_x3/b/sageerp_x3_product_support_blog/posts/how-to-modify-the-font-and-size-for-texts-in-sage-x3 Autor: https://www.sagecity.com/members/joel-singam We can enter header, footer and line texts in different functions. For example, Header text in purchase order function is used to enter an order header text. This text will be printed on the order document based on the PURTEXORD (Order text position) parameter in ACH/TEX. Select the Header text, notice the font is ‘Aerial’ and the font size is ‘10’. Note, standard font and size is ‘MS Sans Serif, 12’. Let me show you how to modify this, 1.   In  Setup ,  General parameters ,  Presentation styles  (GESASY) 2.   Select an existing style or create your own code        - Here I have used the existing style and added a new code ‘Text’.        - Under Comment add the following        - ";font-style:normal;background-color:#B0FFB0

Punto de entrada para modificar el remitente en el envio de correo.

####################################################################################### #   ZAWRKMEL - Punto de entrada AWRKMEL  Envio mail Workflow ####################################################################################### $ACTION Case ACTION   When "EMAIL"    : Gosub EMAIL Endcase Return ############################################## $EMAIL #Se manda siempre con el usuario noreply@sssss.com #Al ser su correo por web se ha configurado el envío a través del SII y solo puede enviarse por una cuenta. #Funciona indicando en todos los usuarios el correo noreply@sssss.com #Si hacemos esto no podríamos mandar nada a un usuario ya que no sabemos su correo, así que en el usuario #indicamos su correo y en la salida del mail machacamos el remitente con noreply@ssssss.com EXP_MAIL = 'noreply@ssssss.com' Return ##############################################

Test sending mail to your SMTP connector using Powershell

 8 BY  PETER SCHMIDT   ON  SEPTEMBER 26, 2011 EXCHANGE As a consultant I often test SMTP connectors on Exchange.  There are several ways of doing this. There is the good old way of using telnet,  ExchangePro  has a great article describing the Telnet way of testing you SMTP connection: http://exchangeserverpro.com/how-to-send-email-via-telnet The other way of testing if a SMTP connector works on Exchange (2007/2010), could be using PowerShell. In PowerShell 2.0 there is a builtin cmdlet cmdlet: Send-MailMessage You can run the following command in PowerShell to do some mail testing: Send-MailMessage –From sender@testserverdomain.com –To recipient@recipientdomain.com –Subject “Test Email” –Body “Test E-mail (body)” -SmtpServer smtpserver.fqdndomain.local >>telnet fic 26 220 FIC Microsoft ESMT 830 ready at Fri, 2 Dec 2005 09:24:56 +0000 MAIL Service, Version: 6.0.3790.1 >>HELO me.localdomain 250 FIC Hello [1.1.1.1] >>MAIL FROM: example@example2.com 250

Exportar configuración pantalla

Hola, ¿alguien sabe como puedo exportar la "configuración" o estructura de visualización de una pantalla de un dossier a otro?. No sé si exactamente se denomina así. Adjunto un pantallazo indicando a lo que me refiero. En las pantalla hay un botón de "Personalización pantalla" que permite cambiar el orden de los campos y la posición de los mismo. Después te permite grabar esta estructura y compartirla con el resto de usuarios. Lo que quiero es exportarme a otro dossier esa personalización. ¿se puede hacer? ¿como? Un saludo y muchas gracias!! Responder Me gusta Más Principales respuestas Sin conexión   j.rodriguez  hace 1 día   +1   suggested Hola Mario, Sí, es posible realizar la exportación desde Administración > Herramientas > Exportaciones > Gestión personalizaciones. Allí deberás dar de alta la personalización y luego exportas el .json... Todas las respuestas Respuestas Más antiguos Votos Más rec

Launching Pop-Up Windows and Passing Data in Sage X3

Autor:  https://medium.com/@nickdavies7 Origen fuente:  https://medium.com/@nickdavies7/launching-pop-up-windows-and-passing-data-in-sage-x3-bccf3c7679a4 There are occasions in X3 where we need to launch a pop-up dialog box from a button and pass data from the source screen to the pop-up window. This can easily be accomplished with a combination of a screen, window and an action and a bit of code. In this demonstration, I’ll set up a pop-up window to display information about a supplier that a purchase order has been raised for. Creating the Screen Firstly, we’ll need to create a new screen. This will be used to combine the fields we want to display in the window. Navigate to Development -> Script Dictionary -> Screens Create a new screen with the fields required. Set up a new screen with the screen code  ZPOHBPS  and the size set to  Dialogue . Add the sections and fields necessary to be displayed in the window, such as supplier na

Preview of coming transactions

Origen fuente:  https://www.sagecity.com/support_communities/sage_erp_x3/b/sageerp_x3_product_support_blog/posts/preview-of-coming-transactions Autor:  https://www.sagecity.com/members/pnightingale Preview of coming transactions Did you ever want to see what accounts were going to be hit by the posting of a transaction before you committed it to the General ledger? Maybe, you are setting up a new company and/or product line and want to check the account postings before bringing everything live. You may have newbies and want to review their BP supplier or BP customer invoice coding before the transactions are validated. In the regular transaction posting process, Sage X3 doesn’t give you a peak at the journal transaction before it hits the General Ledger. I will show you how we can accomplish this preview with the aid of User parameter ACESIMTRC - Simulated entry generation. Let’s look at the posting process and how we can use this parameter. How do transactio