Antwort: Re: Fw: Antwort: Re: PO Release WF Question

Christian Wallner C.Wallner at ats.net
Mon Sep 1 03:00:38 EDT 2008


Thanks for the Info,

I did the same thing, 2 lines per position so that everything fits. But 
theres no unwanted line breaking, SBWP seems to swallow the spaces which I 
use to align the data :/

regards,
Chris



"Florin Wach" <florin.wach at gmx.net> 
Gesendet von: sap-wug-bounces at mit.edu
01.09.2008 08:52
Bitte antworten an
"SAP Workflow Users' Group" <sap-wug at mit.edu>


An
"SAP Workflow Users' Group" <sap-wug at mit.edu>
Kopie

Thema
Re: Fw: Antwort: Re: PO Release WF Question






Hi Christian,

I usually use two lines per line-item until it fits. E.g. putting the 
material short text on the next line. Sadly that there's no solution for 
that line-breaking thing that I know of.
Also I cut the material text at 20 characters or so

Best wishes,
Florin

Example for purchase requisition's descriptive text (the translator-class 
gives the Heading-Text for a data element):

Output:

-Pos- -Matnr.-         Text              Net price
00010 ........ Test WACH  Textände       3.200,00 EUR

Coding excerpt:

   REFRESH: longText.

   FIELD-SYMBOLS: <pos>    TYPE LINE OF MEREQ_T_EBAN.

   DATA: text              TYPE LINE OF Z_WF_MAILTEXT_TAB,
         date_c(12)        TYPE C,
         l_t_purchaseOrganization TYPE VVXTEXT78,
         l_t_createdBy            TYPE VVXTEXT78,
         l_t_companyCode          TYPE VVXTEXT78,
         l_t_documentType         TYPE VVXTEXT78.



   l_t_purchaseOrganization = Z_CL_TRANSLATOR=>translate( i_dtel = 'EKORG' 
i_text = 'S' ).
   CONCATENATE l_t_purchaseOrganization ':' INTO l_t_purchaseOrganization.
   l_t_createdBy = Z_CL_TRANSLATOR=>translate( i_dtel = 'ERNAM' i_text = 
'H' ).
   CONCATENATE l_t_createdBy ':' INTO l_t_createdBy.
   l_t_companyCode = Z_CL_TRANSLATOR=>translate( i_dtel = 'BUKRS' i_text = 
'M' ).
   CONCATENATE l_t_companyCode ':' INTO l_t_companyCode.
   l_t_documentType = Z_CL_TRANSLATOR=>translate( i_dtel = 'BLART' i_text 
= 'H' ).
   CONCATENATE l_t_documentType ':' INTO l_t_documentType.

* ========== Header information
* ------- New line
   CONCATENATE l_t_purchaseOrganization m_ekorg SY-VLINE
               l_t_companyCode m_bukrs
               INTO text SEPARATED BY SPACE.
   APPEND text TO longText.

* ------- New line
   WRITE m_erdat TO date_c.
   CONCATENATE l_t_documentType documentType SY-VLINE
               l_t_createdBy m_ernam 'on'(002) date_c
               INTO text SEPARATED BY SPACE.
   APPEND text TO longText.

* ------- New line
   text = '-Pos-|-Matnr.-|------- Text  -------|--- Net price ---'(L01).
   APPEND text TO longText.

* ========== Line items
   LOOP AT m_eban ASSIGNING <pos>.
* ------- New line
      DATA: netwr(15)     TYPE C,
            matnr_c(8)    TYPE C.
      WRITE <pos>-preis TO netwr CURRENCY <pos>-waers.
      WRITE <pos>-matnr TO matnr_c.
      IF matnr_c IS INITIAL.
         matnr_c = '........'.               "#EC NOTEXT
      ENDIF.
      CONCATENATE <pos>-bnfpo matnr_c <pos>-txz01(20) netwr <pos>-waers
                  INTO text SEPARATED BY SPACE.
      APPEND text TO longText.

   ENDLOOP.




-------- Original-Nachricht --------
> Datum: Mon, 1 Sep 2008 08:40:25 +0200
> Von: "Christian Wallner" <C.Wallner at ats.net>
> An: sap-wug at mit.edu
> Betreff: Fw: Antwort: Re: PO Release WF Question

> Hi Florin, 
> 
> Works fine, but there is a minor cosmetic issue :-) 
> (Sorry this screenshot is german...) 
> 
> The text is not really beautifully aligned: 
> 
> 
> When testing BUS2012 with this PO, the test is formatted like that: 
(Table
> of RSTXT-TXLINE) 
> 
> 
> So, SBWP seems to "swallow" the spaces to allign the columns :/ 
> Any ideas how to avoid that? 
> 
> regards, 
> Chris 
> 
> 
> 
> "Florin Wach" <florin.wach at gmx.net> 
> Gesendet von: sap-wug-bounces at mit.edu 
> 26.08.2008 11:38 
> 
> Bitte antworten an
> "SAP Workflow Users' Group" <sap-wug at mit.edu>
> 
> 
> An
> "SAP Workflow Users' Group" <sap-wug at mit.edu> 
> Kopie
> 
> Thema
> Re: PO Release WF Question
> 
> 
> 
> 
> 
> 
> 
> 
> Hi Chris,
> 
> you'll create a virtual attribute of BUS2012, marking it as a mulitline 
> element referring to VVXTEXT78.
> In the coding section of the attribute you build up the text you'd like 
to
> display.
> 
> In the long text of the work item, enter the expression for (e.g.) 
> BUS2012.Longtext and on the following dialog answer with "All lines with 

> line breaks".
> 
> Rummage here through the forum or the SDN to learn more about Business 
> Object Types and how to create a system-wide delegation, if you need 
> information on that.
> 
> 
> Best wishes,
>   Florin
> 
> 
> -------- Original-Nachricht --------
> > Datum: Tue, 26 Aug 2008 11:24:08 +0200
> > Von: "Christian Wallner" <C.Wallner at ats.net>
> > An: sap-wug at mit.edu
> > Betreff: PO Release WF Question
> 
> > Hi Folks,
> > 
> > I have a question regarding influencing the workitem longtext of a 
task.
> > In a po release workflow, the approver has the possibility to reject 
or 
> > approve the po.
> > 
> > To make the decision quicker, the approver wants to see several data 
of 
> > the po positions in the longtext of the user decision.
> > 
> > How can I achieve that? Ok, I need a table in the workflow container 
> with 
> > the needed position data, but how do I bring them into the longtext of 

> the
> > task?
> > 
> > regards and thanks for all hints!
> > Chris
> > AT&S Austria Technologie & Systemtechnik AG
> > Legal form | Rechtsform: Aktiengesellschaft
> > Registered office | Sitz: Fabriksgasse 13, 8700 Leoben, Austria 
> > Commercial Register Number | Firmenbuchnummer: FN 55638 x, 
Landesgericht
> > Leoben 
> > 
> > This e-mail and any attachment may contain confidential and/or 
> privileged
> > information. If you are not the intended recipient (or have received 
> this
> > e-mail in error) please notify the sender immediately and destroy this
> > e-mail. Any unauthorised copying, disclosure or distribution of the 
> material in
> > this e-mail is strictly forbidden.
> _______________________________________________
> SAP-WUG mailing list
> SAP-WUG at mit.edu
> http://mailman.mit.edu/mailman/listinfo/sap-wug
> 
> 
> 
> AT&S Austria Technologie & Systemtechnik AG
> Legal form | Rechtsform: Aktiengesellschaft
> Registered office | Sitz: Fabriksgasse 13, 8700 Leoben, Austria
> Commercial Register Number | Firmenbuchnummer: FN 55638 x, Landesgericht 

> Leoben 
> 
> This e-mail and any attachment may contain confidential and/or 
privileged 
> information. If you are not the intended recipient (or have received 
this 
> e-mail in error) please notify the sender immediately and destroy this 
> e-mail. Any unauthorised copying, disclosure or distribution of the 
> material in this e-mail is strictly forbidden. 
> _______________________________________________
> SAP-WUG mailing list
> SAP-WUG at mit.edu
> http://mailman.mit.edu/mailman/listinfo/sap-wug
> 
> AT&S Austria Technologie & Systemtechnik AG
> Legal form | Rechtsform: Aktiengesellschaft
> Registered office | Sitz: Fabriksgasse 13, 8700 Leoben, Austria 
> Commercial Register Number | Firmenbuchnummer: FN 55638 x, Landesgericht
> Leoben 
> 
> This e-mail and any attachment may contain confidential and/or 
privileged
> information. If you are not the intended recipient (or have received 
this
> e-mail in error) please notify the sender immediately and destroy this
> e-mail. Any unauthorised copying, disclosure or distribution of the 
material in
> this e-mail is strictly forbidden.
_______________________________________________
SAP-WUG mailing list
SAP-WUG at mit.edu
http://mailman.mit.edu/mailman/listinfo/sap-wug


AT&S Austria Technologie & Systemtechnik AG
Legal form | Rechtsform: Aktiengesellschaft
Registered office | Sitz: Fabriksgasse 13, 8700 Leoben, Austria  
Commercial Register Number | Firmenbuchnummer: FN 55638 x, Landesgericht Leoben 

This e-mail and any attachment may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorised copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/pipermail/sap-wug/attachments/20080901/55c492a4/attachment.htm


More information about the SAP-WUG mailing list