Tab problem in sapscript

Hi all,
My requirement is I need to print a form in this format in sapscript: -
All these are in the same text element.
What happen now is the Text Id cannot display in the correct tab when there is more than one line.
Not correct (now)
Type:        TEST FS SPARE
Text Id :   
1234,12345,123456,1234567,12345678,123456789,1234567890,123456,1234567,123456,1234567,12345678,1234567,12345678
Description: Spare Part
Expected result
Type:        TEST FS SPARE
Text Id :    1234,12345,123456,1234567,12345678,123456789,1234567890,
          123456,1234567,123456,1234567,12345678,1234567,12345678
Description: Spare Part
Here is my code
/E      DETAILS
HA     Type: ,,,,,,,,&RIWO1-MATKTX(C)&
HA     Text Id.: ,,,,,,,,&GV_FETXT&
HA     Description.: ,,,,,,,,&GV_DESCP&
  DATA: lv_count TYPE i.
  loop at iviqmfe where fenum > 0 and kzloesch eq space.
    lv_count = lv_count + 1.
    if lv_count EQ 1.
      MOVE iviqmfe-fetxt to gv_fetxt.
    else.
      concatenate gv_fetxt iviqmfe-fetxt into gv_fetxt SEPARATED BY ','.
    endif.
  endloop.
  loop at iviqmfe where fenum > 0 and kzloesch eq space.
    perform print_element using 'DETAILS' 'MAIN'.
  endloop.
Thanks in advance.

Hi,
Instead of using ' ,,,,,, ' again and again,  try giving some value in Tabs in Paragraph formats.. with certain length..
Hope this helps..

Similar Messages

  • Very Urgent Tab Problem

    Hi to All...
    I Designed the PDF forms using Adobe Acrobat Live Cycle Designer 7.0.
    but i am facing tab problem.
    for example: if i entered in the some text boxes then if i want to go back to previous text boxex means curser will go to the some other text boxes.
    and also if open in internet Explorer tab issue is more.
    is there any property we need to set?
    please guide me its very urgent.
    thanks in Advance...
    chalmal Seetaram

    To set the Tab order choose: 'Tab Order' under 'View' menu and read through the Tips.... it is easy.
    Good Luck,
    SekharN

  • Printing Problem in SAPscript

    Hi friends, I have one problem with sapscript printing. When i am seeing the print preview of a form i dont have any problems with words overlapping. But When i prnt on local printer I am seeing words overlapping. Is there anything worng in my form or anything to be configured with printer ? please help me

    Seems like your Printer Driver and SAP logical printer doesn't match each other. Take a help from your Basis guys.
    Regards,
    Naimesh Patel

  • Alignment with Tabs Problem

    Hi friends,
    i have an CRM application where the item alignment and the tabs is creating a problem for me.
    Instead of me to elaborate, i can show you in my page in apex.oracle.com, so that you can understand my problem clearly in the page itself. These are the login credentials
    http://apex.oracle.com/pls/apex
    Workspace: mini_ws
    username: [email protected]
    password: mini4i
    Over there in the application 45387(application name: Customer Relationship Mgmt)
    Under Page 2(page name: Accounts). U can see that the i couldn't able to align the following three items to the right side position of the region along with other items.
    <li> sic code
    <li> shipping country
    <li> upsell opportunity
    i dont know why it is not arranging like the other items(as the other items are arranged properly).
    Another Problem is the tab problem in that page. I have following two tabs
    <li>Accounts(will navigate to the page 2)
    <li>Contacts(will navigate to the page1)
    There is no any problem with the tab "Accounts" as it is correctly navigating to the page 2. But the problem persist with the "Contacts" tab.
    As the "Contacts" tab is navigating to the page 1, but the"Accounts" tab is not visible in the page 1 and it is entirely getting disappearing. i dont know why it is happening.
    Generally for the tabs, if we navigate to the corresponding page by pressing the corresponding tabs means, the other tab has to be visible inorder to navigate to the other page.
    But in my case, if i pressed the "Contacts" tab means the "Accounts" tab is getting disappearing. I think that you can able to get my problem clearly in the example.
    What is the tab issue over here and also about the alignment issue.
    Thanks for your support friends.
    Regards,
    Mini

    Mini wrote:
    Hi friends,
    i have an CRM application where the item alignment and the tabs is creating a problem for me.
    Instead of me to elaborate, i can show you in my page in apex.oracle.com, so that you can understand my problem clearly in the page itself. These are the login credentials
    http://apex.oracle.com/pls/apex
    Workspace: mini_ws
    username: [email protected]
    password: mini4i
    Over there in the application 45387(application name: Customer Relationship Mgmt)Thank you for doing so. It makes troubleshooting so much easier.
    Under Page 2(page name: Accounts). U can see that the i couldn't able to align the following three items to the right side position of the region along with other items.
    <li> sic code
    <li> shipping country
    <li> upsell opportunity
    i dont know why it is not arranging like the other items(as the other items are arranged properly).The first item on the other rows has <tt>colspan="4"</tt> set.
    Another Problem is the tab problem in that page. I have following two tabs
    <li>Accounts(will navigate to the page 2)
    <li>Contacts(will navigate to the page1)
    There is no any problem with the tab "Accounts" as it is correctly navigating to the page 2. But the problem persist with the "Contacts" tab.
    As the "Contacts" tab is navigating to the page 1, but the"Accounts" tab is not visible in the page 1 and it is entirely getting disappearing. i dont know why it is happening.
    Generally for the tabs, if we navigate to the corresponding page by pressing the corresponding tabs means, the other tab has to be visible inorder to navigate to the other page.
    But in my case, if i pressed the "Contacts" tab means the "Accounts" tab is getting disappearing. I think that you can able to get my problem clearly in the example.
    What is the tab issue over here and also about the alignment issue.No idea. Tabs are awful so I never use them.

  • Sapscript tabs problem

    I'm developing an Form where I have 13 columns. I tried to use tabs to align theses columns but it is not working because 12 of these columns are currency. Sometimes the value of the field is e.g.  1.500,00 or 17.200,00 or even 0,00 and because of this the columns be unaligned, it's like I wasn't using tabs. I also tried to write the currency to a char field and to use offset, but didn't work either! In this company they use a print manager I don't know if it's because of it. Standard forms work properly.
    Thanks in advance.

    Hii..
       Here u need to take care that one field's length should not cross on to the other field...
    If that happens the tab structure will not give correct output..
    I hope u can know the output field lengths of all the fields in the table..
    so make sure that the second field tabl should start after the no of characters the firrst field occupied completely......
    Use DECIMAL justified for currency fields in TAB positions instead of left alignment..
    reward if it helps u...
    sai ramesh

  • Turkish character problem in SAPScript

    Hi ,
    I have created a SAPScript form (Purchasing - RFQ) original language is TR, and created a copy of this in language EN.
    I have problem with Turkish characters when printing an RFQ in English.
    Any comments ?
    Thanks.
    Utku

    hii
    The logic to build SAP Script and Smart form of all languages will be same. But while working on Asian language please take care of the following points.
    1 Make sure you logon to SAP in turkish language only.
    2 At the Operating system level install the turkish language.[Control panel - >Regional and language Option - >language Tab - > Click on Install Files for East Asian languages] If these language already installed then click on Detail and add the turkish languages .
    3 At SAP level click on Customizing of Local layout[Alt+F12] and click on options.Go to tab I18N and click on Activate the multi-byte functionalities to support check box.
    4.Take care of the Font while assigning to Character formar or paragraph format. Dont use normal font name.
    USE turkish FONT
    Revert back for more help
    Regards
    Naresh

  • Printing problem with sapscripts

    Hi everybody, I have a problem with a sapscript. This is called from a user exit, and take one value to print . I have that value in the sapscript with the same value between &&, but it doesn't print anything, only print the text I have there. Does anybody know which could be the problem??
    Thanks in advance

    Hi....
    it will display correctly...
    just check it once.
    if u have a variable called <b>'name'</b> in the print program then use <b>&name&</b> in the script. it will work fine.
    Just check it once.
    Reward points if useful......
    Suresh......

  • Problem in sapscript.

    In this a sapscript driving program .this is use for printing data when I click print preview one line have different text .i want to correct that text in script form. But I m not able to identify form name can u tell me how to get form name or how to solve the problem.
    REPORT zj_1i57fp MESSAGE-ID 8i.
    TABLES: t001w,
            j_1iwrkcus,
            j_1iregset,
            j_1iindcus,
            j_1iexcdtl,
            j_1iexchdr,
            lfa1,
            adrc,
            t001.
    Begin 11.05.99
    DATA : BEGIN OF listtab OCCURS 30,
             procdoc(1) TYPE c,
             exnum   LIKE j_1iexchdr-exnum,
             exdat   LIKE j_1iexchdr-exdat,
             srgrp   LIKE j_1iexchdr-srgrp,
             preprn  LIKE j_1iexchdr-preprn,
             exbed   LIKE j_1iexchdr-exbed,
             exsed   LIKE j_1iexchdr-exsed,
             exaed   LIKE j_1iexchdr-exaed,
             list_line LIKE sy-linno,
           END OF listtab.
    End 11.05.99
    DATA : BEGIN OF options.
            INCLUDE STRUCTURE itcpo.
    DATA : END OF options.
    DATA : BEGIN OF result.
            INCLUDE STRUCTURE itcpp.
    DATA : END OF result.
    DATA : BEGIN OF thead OCCURS 10.
            INCLUDE STRUCTURE thead.
    DATA : END OF thead.
    DATA : BEGIN OF tlines OCCURS 10.
            INCLUDE STRUCTURE tline.
    DATA : END OF tlines.
    DATA : text_id(4) TYPE c.
    DATA : doc_num LIKE j_1iexchdr-exnum,  " pai 17/09/98
           m_length TYPE i.                " pai
    Begin 11.05.99
    DATA : doc_no   LIKE j_1iexchdr-exnum,
           doc_dt   LIKE j_1iexchdr-exdat,
           series   LIKE j_1iexchdr-srgrp,
           preprn   LIKE j_1iexchdr-preprn,
           m_selected,
           m_date(10) TYPE c,
           tabix LIKE sy-tabix.
    DATA : it_pcrdtl LIKE TABLE OF zeou_pcrdtl WITH HEADER LINE,
           it_pcrhdr LIKE TABLE OF zeou_pcrhdr WITH HEADER LINE .
    DATA : wa_mara TYPE mara,
           wa_t032t TYPE t023t.
    DATA : gv_tot_duty TYPE konv-kwert,
           gv_tot_amt TYPE konv-kwert,
           gv_tot_val TYPE konv-kwert.
    SELECT-OPTIONS: se_exnum FOR j_1iexchdr-exnum,
                    se_exdat FOR j_1iexchdr-exdat.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN BEGIN OF BLOCK 4 WITH FRAME TITLE text-005.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 01.
    PARAMETERS: p_print RADIOBUTTON GROUP grp1 DEFAULT 'X'.
    SELECTION-SCREEN COMMENT (15) text-006.
    SELECTION-SCREEN POSITION 20.
    PARAMETERS: p_reprn RADIOBUTTON GROUP grp1.
    SELECTION-SCREEN COMMENT (20) text-007.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK 4.
    End 11.05.99
    doc_num = doc_no.                      " pai
    m_length = STRLEN( doc_num ).
    WHILE m_length < 10.
      CONCATENATE '0' doc_num INTO doc_num.
      m_length = m_length + 1.
    ENDWHILE.
    doc_no = doc_num.                      " pai
    Begin 11.05.99
    TOP-OF-PAGE.
      WRITE :/3 text-001,
                text-002,
                text-003,
                text-004.
    START-OF-SELECTION.
      IF p_print = 'X'.
        SELECT * INTO CORRESPONDING FIELDS OF TABLE listtab FROM j_1iexchdr
             WHERE trntyp = '57FC' AND status = 'P' AND
                   exnum IN se_exnum AND exdat IN se_exdat AND preprn = ''.
      ELSEIF p_reprn = 'X'.
        SELECT * INTO CORRESPONDING FIELDS OF TABLE listtab FROM j_1iexchdr
             WHERE trntyp = '57FC' AND status = 'P' AND
                   exnum IN se_exnum AND exdat IN se_exdat.
      ENDIF.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH
           'No data available or Document already printed'.
      ENDIF.
    END-OF-SELECTION.
      SET PF-STATUS '100'.
      SORT listtab BY exnum exdat.
      LOOP AT listtab.
        WRITE :/ listtab-procdoc AS CHECKBOX.
        WRITE :  listtab-exnum UNDER text-001,
                 listtab-exdat UNDER text-002.
        WRITE AT 30 listtab-srgrp.
        WRITE AT 45 listtab-preprn.
        listtab-list_line = sy-linno.
        MODIFY listtab.
      ENDLOOP.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'EPRN'.
          DO.
            tabix = sy-index.
            READ LINE sy-index FIELD VALUE listtab-procdoc.
            IF sy-subrc <> 0.
              EXIT.
            ENDIF.
            IF listtab-procdoc = 'X'.
              READ TABLE listtab WITH KEY list_line = tabix.
              doc_no = listtab-exnum.
              doc_dt = listtab-exdat.
              series = listtab-srgrp.
              m_selected = 'y'.
              EXIT.
            ENDIF.
          ENDDO.
      ENDCASE.
    Call fn. module to capture pre-printed excise no.
      IF m_selected = 'y'.
        CALL FUNCTION 'J_1I_ACCEPT_VALUE'
          EXPORTING
            i_preprn = preprn
          IMPORTING
            o_preprn = preprn.
      ELSE.
        MESSAGE e000(8i) WITH 'Select a Document'.
      ENDIF.
    Check whether entered pre-printed excise no. already exists
      SELECT SINGLE * FROM j_1iexchdr WHERE preprn = preprn AND
                                            status <> 'D' AND
                                      NOT (  exnum   = doc_no
                                      AND    exdat   = doc_dt
                                      AND    srgrp   = series ).
      IF sy-subrc = 0.
        SET CURSOR FIELD 'PREPRN'.
        MESSAGE e000(8i) WITH 'Pre-printed excise no.' preprn 'already used'.
      ENDIF.
    End 11.05.99
      SELECT SINGLE * FROM j_1iexchdr
      WHERE   exnum   = doc_no
      AND     exdat   = doc_dt
      AND     srgrp   = series.
    IF SY-SUBRC <> 0.
       MESSAGE E000(8I) WITH 'Invalid Challan number entered'.
                                                                "10.05.99
    ELSEIF J_1IEXCHDR-PREPRN <> PREPRN AND J_1IEXCHDR-PREPRN <> ''.
       MESSAGE E000(8I) WITH
       '57F4' DOC_NO 'already printed with pre-printed excise no.'
        J_1IEXCHDR-PREPRN.
    ENDIF.
    IF J_1IEXCHDR-STATUS NE 'P'.
       MESSAGE E000(8I) WITH 'Challan status is not posted..cannot print'.
    ENDIF.
    Begin 10.05.99
    j_1iexchdr-exbed = j_1iexchdr-exbed + j_1iexchdr-exsed +
                       j_1iexchdr-exaed.
    Begin 10.05.99
    Print totals of BED, SED, AED
      j_1iexchdr-exbed = listtab-exbed + listtab-exsed + listtab-exaed.
      listtab-procdoc = ''.
      listtab-preprn = preprn.
      MODIFY LINE listtab-list_line FIELD VALUE listtab-procdoc
                  listtab-preprn LINE FORMAT COLOR 6 INPUT OFF.
    End 10.05.99
    Printing options
      options-tdcopies   = 1 .
      options-tdnewid   = 'X' .
      options-tddataset  = 'LIST1' .
      options-tddelete   = 'X' .
      options-tdprogram  = sy-repid.
      options-tdpreview  = 'X' .
      PERFORM open_form.
      PERFORM get_header_data.
      PERFORM write_form USING 'TITLE' 'DOC_TITLE_T' 'SET'.
      PERFORM write_form USING 'INFO' 'HEADER_DATA' 'SET'.
    Print Line items
      PERFORM write_form USING 'MAIN' 'DASH_LINE'   'SET'.
      PERFORM write_form USING 'MAIN' 'ITEM_HEADER' 'SET'.
      PERFORM write_form USING 'MAIN' 'DASH_LINE'   'SET'.
    ****Start of Changes***********************************
      DATA: gs_mseg TYPE mseg.
      CLEAR: gs_mseg.
      SELECT * FROM zeou_pcrdtl INTO TABLE it_pcrdtl
      WHERE exnum =  doc_no " j_1iexcdtl-exnum
      AND   exdat = doc_dt. "  j_1iexcdtl-exdat.
    ****End of Changes*************************************
      SELECT * FROM j_1iexcdtl WHERE exnum = doc_no AND
                                     exdat = doc_dt.
       SELECT SINGLE * FROM zeou_pcidtl INTO it_pcidtl
       WHERE ebeln =  j_1iexcdtl-rdoc1
       AND matnr = j_1iexcdtl-matnr.
    ****Start of Changes***********************************
       SELECT SINGLE * FROM zeou_pcrdtl INTO it_pcrdtl
       WHERE exnum =  j_1iexcdtl-exnum
       AND exdat = j_1iexcdtl-exdat.
        SELECT SINGLE * FROM mseg
                        INTO gs_mseg
                        WHERE mblnr = j_1iexcdtl-rdoc2
                        AND   mjahr = j_1iexcdtl-ryear2
                        AND   parent_id = j_1iexcdtl-ritem2.
        CLEAR it_pcrdtl.
        READ TABLE it_pcrdtl WITH KEY mblnr = gs_mseg-mblnr
                                      mjahr = gs_mseg-mjahr
                                      zeile = gs_mseg-zeile.
    ****End of Changes*************************************
        SELECT SINGLE * FROM mara INTO wa_mara
        WHERE matnr = j_1iexcdtl-matnr.
        SELECT SINGLE * FROM t023t INTO wa_t032t
        WHERE matkl = wa_mara-matkl
        AND spras = 'EN'.
        PERFORM write_form USING 'MAIN' 'ITEM_VALUES' 'SET'.
        gv_tot_duty = gv_tot_duty + it_pcrdtl-boedr.
        gv_tot_val =  gv_tot_val + it_pcrdtl-pcram.
        gv_tot_amt =  gv_tot_amt + j_1iexcdtl-exbas.
      ENDSELECT.
      PERFORM write_form USING 'MAIN' 'DASH_LINE' 'SET'.
      PERFORM write_form USING 'MAIN' 'TOTAL' 'SET'.
      SELECT SINGLE * FROM zeou_pcrhdr INTO it_pcrhdr
       WHERE pcrnr =  it_pcrdtl-pcrnr
       AND pcrdt = it_pcrdtl-pcrdt.
      PERFORM write_form USING 'MAIN' 'JOB_WORKER_ADDRESS' 'SET'.
      PERFORM write_form USING 'HEADER' ' ' ' '.
      text_id = 'PROC'.
    *concatenate j_1iexchdr-rdoc j_1iexchdr-ryear into thead-tdname.
      thead-tdname = '57FC'.
      PERFORM read_text.
      LOOP AT tlines.
        IF tlines-tdline NE space.
          j_1iregset-j_1irgdesc = tlines-tdline.
        ENDIF.
      ENDLOOP.
      PERFORM write_form USING 'FOOTER' ' ' 'SET'.
      PERFORM endform.
    Update table with entered preprn excise no.                "10.05.99
      UPDATE j_1iexchdr SET preprn = preprn
                        WHERE   exnum   = doc_no
                        AND     exdat   = doc_dt
                        AND     srgrp   = series.
    *&      Form  OPEN_FORM
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM open_form.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          application = ''
          device      = 'PRINTER'
          dialog      = 'X'
          form        = 'ZJ_1I_57F4'
        IMPORTING
          RESULT      = RESULT
        exceptions
          canceled    = 1
          device      = 2
          form        = 3
          OPTIONS     = 4
          unclosed    = 5
          OTHERS      = 6.
      IF sy-subrc NE 0.
        MESSAGE e888.
      ENDIF.
    ENDFORM.                               " OPEN_FORM
    *&      Form  WRITE_FORM
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM write_form USING  window element fnction.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
               element       = element
               function      = fnction
               window        = window
       IMPORTING
            PENDING_LINES =
           EXCEPTIONS
                element       = 1
                function      = 2
                type          = 3
                unopened      = 4
                unstarted     = 5
                window        = 6
                OTHERS        = 7.
    ENDFORM.                               " WRITE_FORM
    *&      Form  ENDFORM
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM endform.
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                RESULT   = RESULT
        TABLES
            OTFDATA  =
           exceptions
                unopened = 1
                OTHERS   = 2.
    ENDFORM.                               " ENDFORM
    *&      Form  GET_HEADER_DATA
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM get_header_data.
      CLEAR: t001w,j_1iwrkcus,j_1iregset,j_1iindcus.
      SELECT SINGLE * FROM  t001w
            WHERE  werks       = j_1iexchdr-werks.
      SELECT SINGLE * FROM j_1iwrkcus
            WHERE  j_1iwerks   = j_1iexchdr-werks.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'plant customisation not found'.
      ENDIF.
      SELECT SINGLE * FROM j_1iregset
            WHERE  j_1iregid   = j_1iwrkcus-j_1iregid.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'register id customisation not found'.
      ENDIF.
      SELECT SINGLE * FROM j_1iindcus WHERE
             j_1ibukrs = j_1iexchdr-bukrs.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'Customisation missing .. indcus'.
      ENDIF.
      SELECT SINGLE * FROM lfa1 WHERE
      lifnr = j_1iexchdr-lifnr.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'Vendor record missing ....'.
    **Vendor full address
      ELSE.
        SELECT SINGLE * FROM t001
                        WHERE bukrs EQ j_1iexchdr-bukrs.
        SELECT SINGLE * FROM   adrc
                        WHERE  addrnumber EQ lfa1-adrnr.
      ENDIF.
    ENDFORM.                               " GET_HEADER_DATA
    *&      Form  READ_TEXT
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM read_text.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          client                  = sy-mandt
          id                      = text_id
          language                = sy-langu
          name                    = thead-tdname
          object                  = 'J1IF'
          archive_handle          = 0
        IMPORTING
          header                  = thead
        TABLES
          lines                   = tlines
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
    ENDFORM.                               " READ_TEXT

    Hi ,
      The form name is passed as a parameter to the FM OPEN_FORM , in your case look at the code
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    application = ''
    device = 'PRINTER'
    dialog = 'X'
    form = 'ZJ_1I_57F4'  " Form Name
    IMPORTING
    RESULT = RESULT
    exceptions
    canceled = 1
    device = 2
    form = 3
    OPTIONS = 4
    unclosed = 5
    OTHERS = 6.
    , Now use se71 to see the from and check the text .
    Please do revert back in case you want more information.
    Regards
    Arun

  • TOC (table of contents) Formatting/Leader Tab Problems

    BACKGROUND
    I have found it impossible to format TOCs with leader tabs as I've seen the procedure outlined in numerous forum posts, books, and elswehere. I am an intermediate FrameMaker user running FM 9 on Windows XP Pro. I run the same setup on a home and office machine with the same problem.
    I am in the process of migrating very large volumes of our company's documentation from LaTek to FM and this issue is proving to be insurmountable.I need to have complete control over this process, instead of "making do" with the default TOC.
    I have spent three days studying every nuance of the issue, which usually leads me to some insight or pattern that lets me solve the problem, or at least share some clue on the forums. However, in this case, FM either doesn't work as its supposed to or it implements my changes in a seemingly arbitrary manner. So I'm not sure if this is a bug or a user error. I've also experienced the occasional crash of FM during all this work, oftentimes this is preceded by the Paragraph Designer window freezing up and refusing to change views within the window (i.e. basic, default font, etc.).
    THE PROBLEM
    More specifically, I've learned to manage general formatting with the building blocks on the "reference page", but the leader tabs I use for the page numbers almost never propogate, unless I use the sample TOC included with FM.
    I am certain they are properly formatted, I've even copied examples directly from files that I know work (FM sample files).
    When I implement the process manually, I insert the tab between the building blocks (no spaces), set a right flush tab, double click and choose tab leader option. Then I go to "body page" view, save the document, and regenerate the TOC. Usually nothing happens. Ocassionally, after regenerating several times or creating a fresh TOC, some of the changes magically propogate.
    I have even tried importing the format of another TOC, which only seems to work randomly. Mostly not.
    Any help is appreciated.
    Thanks,
    Douglas

    Thanks for your quick responses, as well as your other suggestions for my project.
    I am running FM 9.0p230. I tried upgrading to 9.0.3 when I began encountering this problem, but received an error message telling me I was running the wrong version of FM. If any one is familiar with this error message and can mention the fix before I delive into that problem, it is also appreciated.
    I have attached the TOC. I'm not sure how/if this can be used to help me troubleshoot, so please let me know. I am new to the forums and the development side of FM.
    I did "update all" on the paragraphs tags in question. If you look in the body view of this page with text symbols turned on, you can see the symbols for the second tab stops I have placed between the text and page number. That informatoin also appears in the Paragraph Designer. Both of those things add to my confusion on this matter, because that would seem to indicate I have globally applied the paragraph tags correctly, right?
    If you go to the reference page, you will see my treatment of the building blocks.
    Thanks again in advance for help,
    Douglas

  • Partial payment tab problem when clearing two open items in vendor account

    Dear All,
    I have the problem with partial payment procedure.
    As SAP is presenting the process, partial payment should work as follows (i.e. with vendor):
    1. Incoming invoice is posted -> Credit -100
    2. Credit note is posted  -> Debit +20
    3. Payment (without clearing) is posted to vendor account -> Debit +50
    I'll run transaction F-44 and go to tab "Partial payment".
    I see 3 items (as above).
    I mark Item -100 and +20
    I double click in filed next to -100 and it changes to -20
    An now it should make no posting but only assignemet of one item to another.
    But in my case, if I click "save" icon, it makes postings Debit 20 and Credit -20 on vendor account.
    Is there any possibility that such clearing will not generate any posting but just make assignement of one item to another. Or maybe there is something wrongly configured in the system. At the moment the partial payment makes some kind of residual items.
    Thanks in advance for replay.
    Best regards
    Greg

    Hello,
    Yes, it's right, whenever we clear vendor or custmoer account, the system creates document, but as I remeber from other instalations, the document had header but there was no postings.
    It case described, the system creates posting:
    40       Vendor      20 EUR
    50       Vendor      20 EUR
    This is strange for me. As ther should be clearing document but with no postings.
    Have you got any idea how to configure the system, so partial payment tab in clearing transactions creates clearing document but with no phisical postings.
    Best regards
    Greg

  • Multiple tab problem in Fire Fox, URL pane is not changing

    Open multiple tabs
    the url shown in url pane does'nt change but stays which has entered latest one.
    the url pane text wont change even when you swap to another tab.

    A couple of possible causes:
    First check to see if an add-on is causing this, add-ons can cause problems with the location bar not updating. For details of how to check this see https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    The second possible cause is a problem with the file that stores details of bookmarks and browsing history. I don't think this will be the cause in your case, as if there is a problem with that file you will normally get multiple problems. For details on this see http://kb.mozillazine.org/Locked_or_damaged_places.sqlite

  • Problem in sapscript Main Window Box command - Urgent

    Dear friends,
    Problem while showing boxes in multiple pages in sapscript. Box command is defined begining of the main window. But while printing showing in first page only not in other pages.
    Regards,
    Praveen Lobo

    This could be your problem why box command is not getting displayed in all pages, you might be using the box command in the element that is only called once and that to in the first page... so try to check your form and place you box command under element that is getting called in each and every page, it will solve your poblem.
    Note: for testing you can place your box command under element "/E" where you are displaying your line items... even though it is called multiple number of times it gets overlapped.
    close the thread once your question is answered.
    Regards,
    SaiRam

  • Text problem in SAPScript

    Hello,
    i have a problem i need to print one recepit with sapscript.
    I have to made a changes in displaying the text in o/p but it is in different language i.e PT
    text to display is
    IVA NÃO REGULARIZADO – ARTº 71 CIVA
    Now if you see above in sentence we have some special characters which are not present in keyboard itself.
    Origanal language of form is DE
    Can anyone help me out in this.
    Regards,
    Vikrant

    Hi,
    Goto SE63 and translate the TEXT from one language to other.
    regards,
    Shiva

  • Java plug-in 1.4.1 proxy configuration issue causes JTextField TAB problems

    I have an applet that has multiple JTextFields in it. I recently updated my Java plug-in to version 1.4.1, and now using TAB to navigate among text fields does not always work when I first bring up a browser and load the applet.
    I've found, however, that if I open the Java Console and hit "p" (reload proxy configuration), and then reload my applet (hit Refresh/Reload on my browser), the Tab key works as expected. I did not have this issue with releases prior to 1.4.1.
    Any clue on how I can ensure proper proxy configuration upon initial instantiation of the browser? I've seen the problem in both IE 6.0 and Netscape 7.0.
    Note that the reloading of the proxy configuration only appears to be necessary once per browser session.

    The navigation isn't working. I click in the first text field to give the initial field focus. I then hit TAB and nothing happens. I have a key listener set up for the ENTER key, and this is also supposed to navigate to the next field via:
    ((JTextField)evt.getSource()).transferFocus();
    To see if there was a problem with my build environment or threads in my application, I came up with the following dummy applet:
    import java.awt.BorderLayout;
    import javax.swing.BoxLayout;
    import javax.swing.JApplet;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class TestApplet extends JApplet {
    public void init() {
    super.init();
    public void start() {
    JPanel myPanel = new JPanel();
    myPanel.setLayout(new BoxLayout(myPanel, BoxLayout.Y_AXIS));
    JTextField textField1 = new JTextField("Text Field 1");
    myPanel.add(textField1);
    JTextField textField2 = new JTextField("Text Field 2");
    myPanel.add(textField2);
    JTextField textField3 = new JTextField("Text Field 3");
    myPanel.add(textField3);
    getContentPane().add(BorderLayout.CENTER, myPanel);
    public void stop() {
    super.stop();
    I then compiled this applet using the following:
    javac TestApplet.java
    I then put together the following HTML file:
    <HTML>
    <HEAD>
    <TITLE>Test Applet</TITLE>
    </HEAD>
    <BODY MARGINWIDTH="0" MARGINHEIGHT="0" BGCOLOR="white">
    <APPLET
    CODE=TestApplet.class
    WIDTH=635
    HEIGHT=500
    ALIGN=left
    VSPACE=10
    HSPACE=10
    >
    </APPLET>
    </BODY>
    </HTML>
    The results are the same. I am not able to navigate using the TAB key until I bring up the Java console and then close it again. I would think that if this was a bug in 1.4.1_01, I would have seen it all over the forums. Any help would be greatly appreciated.

  • Item level security, workflow and tab problems

    was wondering if someone could help us out with some problems we are having. We need to up and running over the next two days so anyone who could get back to us pretty quickly would be greatly appreciated.
    We are actually having a couple of issues which all revolve around three
    groups we have created (for simplicity we have only attached one user to each group). Here are the steps we took:
    Problems adding content:
    a) Added the three groups to the page group and gave them view access.
    b) Turned on approvals and set group3 as the approver.
    c) Added the three groups to the page and gave them view access.
    d) In the page properties, I enabled item level security.
    e) Added an item content area to the page.
    f) Added three pieces of simple content
    g) For content item1 I granted granted full access to group1(Own, manage, view), for content item 2 I granted full access to group2, etc.
    h) WHen I log on as a user in group1 I only see content item1. HOwever, when I edit the page I find I cannot add any items as user1.
    i) I went back to the page properties and changed the access of all three groups to "manage items with approval" but let the item level security as it was.
    j) When I logged on as user1 I found I could see all items now when I should only have seen content item1. What the hell? Can anyone tell me what I did wrong?
    Problems with item level security on tabs:
    a) Repeat steps a) through d) above.
    b) Create a content region and add three tabs: Home, Work, Life.
    c) On the Work tab changed portlet region to item region.
    d) Added three items with security exactly as I did above.
    e) When I signed on as user1 I saw all three items when I only should have seen item1. What the hell?
    f) I monkeyed around with the secutiry at the tab level but it didn't seem to make much difference. ANyone have any ideas what is going on here?
    Thanks in advance.

    Does the library have versions enabled? Also are these logins occuring within word/excel etc?
    If there's multiple login prompts which occur even if entering valid credentials what does hitting escape (after the first prompt) achieve, does the document open anyway?
    There's a situation where Office will prompt for credentials if you open a document when you've only got read access but there's a version history (to which you don't have access). This is to allow you to enter more highly privelidged credentials if you
    want to.

Maybe you are looking for