Sapscript issue

Hi
I want to move some value from main window to address window without use of abap code.
Is it possible to have a sort of 'global variable" which can get a value in main window, and then assign that value to a field in fx. header window.
<MOVED BY MODERATOR TO THE CORRECT FORUM>
Thanks
Turan
Edited by: Egemen_Turan on Sep 13, 2011 12:41 PM
Edited by: Alvaro Tejada Galindo on Sep 28, 2011 3:34 PM

All variable can be used by every windows
So If you print a variable in the main, you can print it in a secondary window
Max

Similar Messages

  • Chinese Language in EN SAPScript issue

    I had to make changes on an existing Sapscript (EN), which had some chinese characters. These chinese characters were appearing as '#' in Normal Editor but were appearing fine in PC Graphical Editor and also in Print Preview.
    I made changes (removed a tab space) between 2 chinese characters in column header, all chinese characters only in that line became '#', also in Print Preview. Rest of the chinese characters elsewhere were displaying fine in print preview.
    I downloaded the copy of the form from test system (having previous setting) and uploaded in development to overwrite my changes.Now all chinese characters are displayed as '#' in Print Preview. If I copy pasted chinese characters manually it shows '?'.
    Can anyone tell me why the characters changed to '#' when I removed a tab space ? And how I can rectify this ?
    I am not sure if its Font issue or something as the characters were displayed initially.
    Thanks and Regards
              Vivek
    Edited by: Vivek Prabhu on Dec 9, 2011 10:48 AM

    Yes. I changed the datastore to default.
    I used both method: ODBC driver and IBM iseries access to connect to AS400. ODBC is the same in BODI. In universe, I used default, I can see data. But in BODI, I can't.
    My machine is BOE client software. But I created universe in my machine, export it. And then from my machine, I created WI report, also export to CMS. And then I view it in ViewInfo. Everything runs well for both connections.
    But in BODI, I use it to migrate data to Oracle. I can't see data in DataView of Designer too. Although, I changed locale, set codepage to default as you told, it didn't work.
    Any suggestions please.
    Anh
    Edited by: Anh Phan on Mar 30, 2010 4:45 AM

  • SAPSCRIPT issue - F140_CUS_STAT_O2

    I am able to make changes in this module using SE71. Save to a transport and have it transported to our quality region. Transport shows no errors, but when I look in the quality region my changes are not there. The only thing that has changed on the HEADER tab (in SE71 quality) is that the sapscript now has a status of 'TRANSLATE' instead of 'ACTIVE'. Does anyone have an idea how to get around this?

    When you did the translation in development system, do youloged into the system in the same language(original)? the translation can me possible for standard copied scripts in the original language.
    I think you dont have the change authorization in quality,
    so try to do the translation using the original language and activate it in develoment and then transport. it might solve your issue.

  • Tricky SAPscript issue

    We have a form which writes out the description of a material:
    <b>&MAKT-MAKTX&</b>
    Usually this is fine but sometimes materials include '&' in this text: eg
    <b>Complete 2&2&1   R 1.0TBAG</b>
    The users are complaining that materials like these have their descriptions changed when printed by this form: eg
    <b>Complete 22.1   R 1.0TBAG</b>
    I think what is happening is that the form is interpreting the embedded &2& as a symbol and of course replaces it in the description with '2.'.
    I want to know if there is any way I can tell the form to inhibit placeholder replacement so that the description can be printed correctly.... or has anybody got another way to print the description properly?

    Hi Srikanth,
    as it turns out there IS something we can do to fix this issue in SAPscript! I did some digging in OSS and found note 658270 - Deactivating low-level symbols replacement for individual symbols. This note was already applied at my site. All I had to do was insert the following in my form:
    /:   PERFORM OSS_NOTE_0658270 IN PROGRAM SAPLSTXC       
    /:   USING &MAKT-MAKTX&                                 
    /:   ENDPERFORM                                         
    This turned 'off' symbol replacement only for field MAKT-MAKTX and therefore the embedded ampersands printed out.
    Technically this was satisfying to find the solution and it could prove useful in the future but in fact in this case we are going to get the users to change their descriptions,
    eg,  'Complete 2&2 &1 R1.0t Bag' will print out correctly whereas 'Complete 2&2&1 R1.0t Bag' will not.
    The main reason being that although users have only complained about the issue in one sapscript it will occur in all sapscripts so the best approach is to get the source data fixed.

  • PU19 PDF/SAPScript issue in upgrade between 4.7 to ECC6.0

    We are upgrading from 4.7 to ECC6.0. ADS is setup for PDF format. When I run Tax reporter, in the log, I see W2 is getting generated under both PDF format and SAPScript format. Actually creates spool for W2 on both formats (Forms generated in PDF and also in SAPScript format). How do I stop the W2 statement NOT to create in SAPScript format. and Create only in PDF format. Any help please.
    Thanks, Raj

    Config view V_T5UX7 for tax form 'HR_F_W2' . Delimit alternate form HR_F_W2' (having Sapscript radio button selected) and any forms you no longer want Sapscript to create with an early end date (e.g. 12/31/2007).
    Rgds.

  • Sapscript Issue . Same line appears in all the line

    Hi All ,
    By using the logic below , i am able to find the 4 diffrenet line item in my window .
    Now i am getting the same line in all the lines in sapscript.
    Pls suggest , how to avoid this .
    In  my final table it_excdtl , all diffrent line item are shown ( shown while debugging )
    Thanks & Regards
    Kiro
    below is the code
    CLEAR WA_EXCDTL .
    Loop at it_excdtl INTO WA_EXCDTL.
    IF WA_excdtl-menge NE 0.
    wa_excdtl_amt_unit = ( WA_excdtl-exbed / WA_excdtl-menge ).
    WA_EXCDTL_ED_UNIT = ( WA_excdtl-ecs / WA_excdtl-menge ).
    WA_EXCDTL_CVD_UNIT = ( WA_excdtl-exaed / WA_excdtl-menge ).
    modify it_excdtl from wa_excdtl.
    ENDIF.
    PERFORM write_form2.
    FORM write_form2 .
    loop at it_excdtl.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    element = 'EMAIN2'
    function = 'APPEND'
    function = 'SET'
    type = 'BODY'
    window = 'MAIN2'
    IMPORTING
    PENDING_LINES =
    EXCEPTIONS
    element = 1
    function = 2
    type = 3
    unopened = 4
    unstarted = 5
    window = 6
    bad_pageformat_for_print = 7
    spool_error = 8
    OTHERS = 9
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDLOOP.
    ENDFORM. " WRITE_FORM2

    ok guys i found the solution thanks to steve muench and his "upload text file and image example" on his weblog..
    thanks steve :)
    insted of:
    <adf:render model="bindings.Pic"/>
    it should be
    <adf:render model="Row.Pic"/>

  • SAPScript issues - J_1B_BORDERO

    Hi all,
    I am having a hard time figuring out where the data for the SAPScript form J_1B_BORDERO is begin collected. I need to modify the form by adding additional data to it, but unless I figure out which program to modify I can not do it. I have been looking at ABAP report RFFOBR_U, but I have had no luck so far in location the bits and pieces of code that I need.
    Also, in the J_1B_BORDERO form there is a PERFORM statement that appearently is calling UPDATE_PAY_DOC and  GET_BORDERO_NUMBER in the RFFOBR_U program, but these subroutines does not exist in RFFOBR_U.
    I am confused..
    Does anyone have any clues?
    Any help is greatly appreciated!
    Regards,
    Thomas

    Hi,
    I am in 4.6C, pasting the following code that is available in line number mentioned by me,
    form empfbank_daten_lesen.
    Empfängerbank-Anschriftsdaten lesen ----------------------------------
    read address of payee ------------------------------------------------
      clear bnka.
      select single * from bnka
        where banks eq reguh-zbnks
        and   bankl eq reguh-zbnky.
      regud-zbnka    = bnka-banka.
      regud-zbstr    = bnka-stras.
      regud-zbort    = bnka-ort01.
      regud-zbank    = bnka-banka.
      regud-zbank+61 = bnka-ort01.
      condense regud-zbank.
      regud-zbrch    = bnka-brnch.
    Bankleitzahl ohne Aufbereitungszeichen für Begleitliste und DTA ------
    store numerical bank number ------------------------------------------
      hlp_zbnkl      = reguh-zbnkl.
      regud-ozbkl    = reguh-zbnkl.
    endform.                               "EMPFBANK_DATEN_LESEN
    Hope this helps, you can search for FORM EMPFBANK_DATEN_LE in your version,
    Rgds,

  • Sapscript issue: spool

    hi
    in sapscript function:
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device   = device
          language = sy-langu "language
          form     = 'Z_SHOPPING_LIST'
          OPTIONS  = itcpo
          dialog   = ' '.
    how to set: just to send spool not print out.
    thank you very much!

    hi !
    who can give me a idea!
    just let sap form generate in spool ,so can  view use SP02 don't print immediate!

  • Sapscript form prints #

    Hi,
    Pls reply back if you have come across such a sapscript issue before.
    Sometimes(Not always) all the contents in a sapscript print out (also the print preview) prints all characters as # . Each and every character on the form prints as '#### .....' .
    Printer used - Xerox WorkCenter
    Printer Driver - HP Laserjet 4 Series PCL - 5
    Let me know the soln in case anybody has come across such an issue before.
    Thanks,
    ashok

    Hi Ashok,
    Can you give some details, like is this happening for only specific printers or font+font size combination as SAPScript recognizes fonts with specific sizes for e.g. Font HELV has font sizes recognized by 10 and 8, 9 - HELV is not recognized by the Script.
    As for me I think this problem might be solved by changing Printer Configuration.
    Thanks
    Anirban M.

  • Dunning in ECC 6.0 UC_OBJECTS_NOT_CHARLIKE Dump

    Hi,
    We are doing an upgrade from 4.6 to ECC 6.0 and when we execute transaction F150 for dunning we get the following runtime error does anyone have any idea what might cause this or how to resolve it.
    Runtime Errors         UC_OBJECTS_NOT_CHARLIKE
    Date and Time          03.10.2007 11:26:12
    Short text
    The current statement is only defined for character-type data objects.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLSTXV" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    For the statement
    "IF ... op1 CO op2 ..."
    only character-type data objects are supported at the argument position
    "op1".
    In this case. the operand "op1" has the non-character-type "P". The
    current program is a Unicode program. In the Unicode context, the type
    'X' or structures containing not only character-type components are
    regarded as non-character-type.
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "UC_OBJECTS_NOT_CHARLIKE" " "
    "SAPLSTXV" or "LSTXVFXX"
    "FORMAT_SYMBOLVALUE"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    System environment
    SAP-Release 700
    Application server... "sapqs2"
    Network address...... "10.1.11.40"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "4x AMD64 Level"
    Character length.... 8 Bits
    Pointer length....... 64 Bits
    Work process number.. 22
    Shortdump setting.... "full"
    Database server... "SAPQS2"
    Database type..... "ORACLE"
    Database name..... "QS2"
    Database user ID.. "SAPSR3"
    Char.set.... "English_United State"
    SAP kernel....... 700
    created (date)... "May 21 2007 22:16:42"
    create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"
    Database version. "OCI_10201_SHARE (10.2.0.2.0) "
    Patch level. 111
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows
    NT 6.0"
    Memory consumption
    Roll.... 16128
    EM...... 12569712
    Heap.... 0
    Page.... 24576
    MM Used. 2814704
    MM Free. 1372640
    User and Transaction
    Client.............. 400
    User................ "DALY_M"
    Language key........ "E"
    Transaction......... " "
    Transactions ID..... "0F9B71DCFFA7F10BBB8A001A4BB0243C"
    Program............. "SAPLSTXV"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    Termination occurred in the ABAP program "SAPLSTXV" - in "FORMAT_SYMBOLVALUE".
    The main program was "SAPF150D2 ".
    In the source code you have the termination point in line 599
    of the (Include) program "LSTXVFXX".
    The program "SAPLSTXV" was started as a background job.
    Job Name....... "F150-20071001-HO001 -5"
    Job Initiator.. "DALY_M"
    Job Number..... 11261200
    Source Code Extract
    Line
    SourceCde
    569
    570
          Bereitet Symbol entsprechend den Angaben auf
    571
    572
    form format_symbolvalue using fs_line
    573
    fs_value
    574
    fs_valuelength.
    575
    576
    field-symbols:
    577
    <work>.
    578
    data:
    579
    fs_vallen  like integer,
    580
    fs_techlen type i,
    581
    fs_vis_len type i.
    582
    583
    valpos    = 0.
    584
    valoffset = 0.
    585
    clear: fs_value,fs_valuelength.
    586
    587
    *... Pruefen Initialwert und Initialwertunterdrueckung .................
    588
    if value_initial = true and value_noinit = true.
    589
    exit.
    590
    endif.
    591
    592
    *... Wert komprimieren .................................................
    593
    if value_condense = true.
    594
    condense val. if val(1) = space. shift val. endif.
    595
    endif.
    596
    597
    *... Local date format .................................................
    598
    if value_ldate = true.                                             "JPN
    >>>>>
    if <value_raw> co '0123456789 '.                                "JPN
    600
    write <value_raw> to val using edit mask '==JPDAT'.           "JPN
    601
    endif.                                                          "JPN
    602
    endif.                                                             "JPN
    603
    604
    *... Offset bearbeiten .................................................
    605
    if offlen > 0.
    606
    assign fs_line+offpos(offlen) to <work>.
    607
    valpos = <work>.
    608
    endif.
    609
    610
    *... Laenge bearbeiten .................................................
    611
    if lenlen > 0.                       "...angegebene Wertlaenge
    612
    assign fs_line+lenpos(lenlen) to <work>.
    613
    vallen = <work>.
    614
    if vallen > val_max.                                    " B20K079471
    615
    message a799 with val_max itcvd-name vallen.         " B20K079471
    616
    endif.                                                  " B20K079471
    617
    elseif value_dictlen = true.         "...Dictionary-Laenge
    618
    vallen = itcvd-outputlen.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    2
    SY-TABIX
    4
    SY-DBCNT
    267
    SY-FDPOS
    5
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    FI Dunning - Print Program
    SY-MSGTY
    S
    SY-MSGID
    B!
    SY-MSGNO
    015
    SY-MSGV1
    00001040
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20071003
    SY-UZEIT
    112612
    SY-XPROG
    SAPCNVE
    SY-XFORM
    CONVERSION_EXIT
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    13 FORM         SAPLSTXV                            LSTXVFXX                              599
    FORMAT_SYMBOLVALUE
    12 FUNCTION     SAPLSTXV                            LSTXVU02                               73
    GET_TEXTSYMBOL
    11 FORM         SAPLSTXC                            LSTXCFSC                             1256
    SC_GET_TEXTSYMBOL
    10 FORM         SAPLSTXC                            LSTXCFSC                              495
    SC_TOKEN
    9 FORM         SAPLSTXC                            LSTXCFPA                              310
    PA_ACTUAL
    8 FORM         SAPLSTXC                            LSTXCFPA                              156
    PA_BODY
    7 FUNCTION     SAPLSTXC                            LSTXCU03                              147
    WRITE_FORM
    6 FORM         SAPLF150                            LF150U07                             1151
    WRITE_LINE
    5 FUNCTION     SAPLF150                            LF150U07                              242
    PRINT_DUNNING_NOTICE
    4 FUNCTION     SAPLF150                            LF150U19                               29
    FI_PRINT_DUNNING_NOTICE
    3 FUNCTION     SAPLBFFM                            LBFFMU65                               54
    OPEN_FI_PERFORM_00001720_E
    2 FORM         SAPF150D2                           SAPF150D2                             556
    OFI_DUN_ACT
    1 EVENT        SAPF150D2                           SAPF150D2                             139
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.      13 Ty.          FORM
    Name  FORMAT_SYMBOLVALUE
    FS_VALUE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    FS_VALUELENGTH
    0
    0000
    0000
    VALUE_INITIAL
    2
    0
    TRUE
    X
    5
    8
    SYST-REPID
    SAPLSTXV
    5454555522222222222222222222222222222222
    310C348600000000000000000000000000000000
    VALUE_NOINIT
    2
    0
    VALUE_CONDENSE
    2
    0
    SYST
    ####################################################D#######x###############$#################
    0000000000000000000000001000000000000000000000000000400000007000000000000000200000000000000000
    2000000040005000000000004000000000000000B10050001000400010008000000000000000410000000000000000
    VAL
    2,925.00
    2222222223233323322222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000002C925E0000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-REPID
    SAPLSTXV
    5454555522222222222222222222222222222222
    310C348600000000000000000000000000000000
    VALUE_LDATE
    X
    5
    8
    SY
    ####################################################D#######x###############$#################
    0000000000000000000000001000000000000000000000000000400000007000000000000000200000000000000000
    2000000040005000000000004000000000000000B10050001000400010008000000000000000410000000000000000
    <VALUE_RAW>
    ####’P#
    0000950
    000220C
    C_TOKEN_URL_END
    )U
    25
    95
    INACTIVE_FCODES[]
    Table[initial]
    OFFLEN
    0
    0000
    0000
    FS_LINE
    &MHND-WRSHB(L)&,,&MHND-FAEDT&,,&MHND-VERZN(L)&
    24444255544242222244442444452222444425455424222
    6D8E4D723828C96CC6D8E4D615446CC6D8E4D652AE8C960
    <WORK>
    2
    0
    OFFPOS
    0
    0000
    0000
    No.      12 Ty.          FUNCTION
    Name  GET_TEXTSYMBOL
    *RSTXV
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    TX2EMPTY
    2
    0
    %_DUMMY$$
    2222
    0000
    LINE
    &MHND-WRSHB(L)&,,&MHND-FAEDT&,,&MHND-VERZN(L)&
    24444255544242222244442444452222444425455424222
    6D8E4D723828C96CC6D8E4D615446CC6D8E4D652AE8C960
    ITCVD
    MHND-WRSHB
    4444255544222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    D8E4D72382000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-FLENG
    47
    2000
    F000
    ITCVD[]
    Table IT_166[5x292]
    FUNCTION-POOL=STXVDATA=ITCVD[]
    Table reference: 127
    TABH+  0(20) = 309F3D57FE070000000000000000000000000000
    TABH+ 20(20) = 7F000000A60000000500000024010000FFFFFFFF
    TABH+ 40(16) = 04DC0000100B000010000000C9248001
    store        = 0x309F3D57FE070000
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 127   (0x7F000000)
    label        = 166   (0xA6000000)
    fill         = 5     (0x05000000)
    leng         = 292   (0x24010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000040
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x40B73D57FE070000
    pgHook       = 0x0000000000000000
    idxPtr       = 0x90033E57FE070000
    shmTabhSet   = 0x0000000000000000
    id           = 135   (0x87000000)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    collHook     = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    VALUE_SIGN_RIGHT
    2
    0
    SCROLL_LINES
    13
    0000
    D000
    NAM
    MHND-WRSHB
    4444255544222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    D8E4D72382000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-SUBRC
    0
    0000
    0000
    SUM
    2
    0
    ITCVD-SUM
    2
    0
    ZEROLEN
    2
    0
    VALUE_RAW
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    VALUE_RIGHT
    2
    0
    VALUE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    VALUE_LENGTH
    0
    0000
    0000
    VAL_MAX
    255
    F000
    F000
    SY-MSGID
    B!
    42222222222222222222
    21000000000000000000
    TTDTG
    22222222222222222222222222222222222222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SPACE
    2
    0
    SY-MSGNO
    015
    333
    015
    SY-MSGV1
    00001040
    33333333222222222222222222222222222222222222222222
    00001040000000000000000000000000000000000000000000
    SY-MSGV2
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    No.      11 Ty.          FORM
    Name  SC_GET_TEXTSYMBOL
    SY-REPID
    SAPLSTXC
    5454555422222222222222222222222222222222
    310C348300000000000000000000000000000000
    UNRESOLVED
    2
    0
    C_PC_BARCROT_270
    270
    333
    270
    RSTXC-TDDEBUG
    2
    0
    TRUE
    X
    5
    8
    SY
    ####################################################D#######x###############$#################
    0000000000000000000000001000000000000000000000000000400000007000000000000000200000000000000000
    2000000040005000000000004000000000000000B10050001000400010008000000000000000410000000000000000
    OP_ERROR_OFFS
    0
    0000
    0000
    DBABAPBREAK
    2
    0
    FCODE_PRINT
    PRNT
    55452222222222222222
    02E40000000000000000
    PC_ID_CODEPAGE
    CP
    45
    30
    PC_ID_ULINE
    UL
    54
    5C
    TX_CATALOG-TDSPRAS
    E
    4
    5
    PROTPAGE_ALL
    ALL
    444
    1CC
    <SC_LINE>
    &MHND-WRSHB(L)&,,&MHND-FAEDT&,,&MHND-VERZN(L)&
    24444255544242222244442444452222444425455424222
    6D8E4D723828C96CC6D8E4D615446CC6D8E4D652AE8C960
    PROTPAGE_OFF
    OFF
    444
    F66
    %_PRINT
    HOFI001SAPF150D2_                                                                      X X8 ¼ÿ
    44443335454333435222222222222222222222222222222222222222222222222222222222222222222222252532BF
    8F69001310615042F000000000000000000000000000000000000000000000000000000000000000000000080880CF
    POS
    0
    0000
    0000
    C_AMP_SYM_MAXLEN
    132
    8000
    4000
    NAME
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SUM
    2
    0
    PROTNEXT_SAME_PAGE
    SAME-PAGE
    5444254442
    31D5D01750
    FT_STRING
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    FT_STRING_LEN
    0
    0000
    0000
    VALUE_RAW
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    OSS_NOTE_0658270
    2
    0
    G_IS_CFONT
    2
    0
    APPLICATION_NORMAL
    TN
    54
    4E
    FCODE_PRINTER_FONTS
    PFON
    54442222222222222222
    06FE0000000000000000
    OFF
    2
    0
    No.      10 Ty.          FORM
    Name  SC_TOKEN
    BOTLINES-TDLINE+0(8)
    22222222
    00000000
    SPACE
    2
    0
    PC_ID_BOX_BEGIN
    BB
    44
    22
    APPLICATION_NORMAL
    TN
    54
    4E
    L_LENGTH
    47
    2000
    F000
    SYST-REPID
    SAPLSTXC
    5454555422222222222222222222222222222222
    310C348300000000000000000000000000000000
    UNIT_POINT
    PT
    55
    04
    EVENTS-TDSCANSTAT
    1
    3
    1
    FCODE_CATALOG
    CATA
    44542222222222222222
    31410000000000000000
    %_VIASELSCR
    0
    4
    FCODE_CREATE
    CREA
    45442222222222222222
    32510000000000000000
    IS_ESCAPE
    2
    0
    SYMBOL
    000000000000000000
    2223333333333333333332222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    FCODE_PREVIEW
    PREV
    55452222222222222222
    02560000000000000000
    OTF-TDPRINTPAR
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FCODE_DOCU
    ODOC
    44442222222222222222
    F4F30000000000000000
    No.       9 Ty.          FORM
    Name  PA_ACTUAL
    SYST-REPID
    SAPLSTXC
    5454555422222222222222222222222222222222
    310C348300000000000000000000000000000000
    DEVICE_TELEX
    TELEX
    54445222
    45C58000
    PA-INTERRUPT
    2
    0
    FALSE
    2
    0
    PA-EXIT
    2
    0
    ARCHIVE_ONLY
    2
    3
    2
    FCODE_EDIT_MAIN
    MAIN
    44442222222222222222
    D19E0000000000000000
    OP_SYMBOL
    2
    0
    PA_TOKEN
    3
    0000
    3000
    SCREEN
    %_17SNS0000149933_%_%_%_%_%_%_
    2533545333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
    5F173E30000149933F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
    C_BMP_BACKGROUND_NOPRI
    2
    3
    2
    STATUS_CUSTOMER
    CUS
    455
    353
    TRANSTAT_ACTIVE
    0
    3
    0
    ATTRIBUTES_FONT
    002
    333
    002
    No.       8 Ty.          FORM
    Name  PA_BODY
    %_DUMMY$$
    2222
    0000
    PC_OUT_PAGE
    P
    5
    0
    PC_ID_PRINT_CONTROL
    PC
    54
    03
    FCODE_PRINTER
    PATT
    54552222222222222222
    01440000000000000000
    PA-INTERRUPT
    2
    0
    PC_ID_BOX_BEGIN
    BB
    44
    22
    TRANSLATION_WANTED
    0
    3
    0
    FLAG_RDI_ACTIVE
    2
    0
    %_SPACE
    2
    0
    G_BITMAP_TABL
    ##########ÿÿÿÿ
    2222222222222222222222222222222222222222220000000000FFFF
    0000000000000000000000000000000000000000000000000000FFFF
    SYST-REPID
    SAPLSTXC
    5454555422222222222222222222222222222222
    310C348300000000000000000000000000000000
    G_BITMAP_TABL[]
    Table[initial]
    WTYPE_VARIABEL
    VAR
    54522
    61200
    PC_ID_BOX_END
    BE
    44
    25
    FALSE
    2
    0
    PC_ID_LINK_END
    LE
    44
    C5
    No.       7 Ty.          FUNCTION
    Name  WRITE_FORM
    ELEMENT
    531
    333
    531
    FUNCTION
    SET
    545
    354
    TYPE
    BODY
    4445
    2F49
    WINDOW
    MAIN
    4444
    D19E
    PENDING_LINES
    2222
    0000
    PC_ID_TELECOM
    /T
    25
    F4
    RSJOBINFO
    00000000000000                                  ####
    222222222222222222222222222222223333333333333322222222222222222222222222222222220000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    OP_PAGE_MAX
    99999
    33333
    99999
    %_DUMMY$$
    2222
    0000
    ELEMENTS-TDFROMLINE
    157
    9000
    D000
    SYSTEM_WINDOW_MAIN
    MAIN
    44442222
    D19E0000
    BOOLEAN
    2
    0
    ETYPE
    3
    3
    3
    ETYPE_CURRENT
    3
    3
    3
    C_PC_INFO_FORM
    04
    33
    04
    SY-XFORM
    CONVERSION_EXIT
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    ETYPE_BOTTOM
    2
    3
    2
    SYST
    ####################################################D#######x###############$#################
    0000000000000000000000001000000000000000000000000000400000007000000000000000200000000000000000
    2000000040005000000000004000000000000000B10050001000400010008000000000000000410000000000000000
    C_PC_INFO_PAGE
    05
    33
    05
    APPLICATION_NORMAL
    TN
    54
    4E
    PC_BOTTOM_HEIGHT
    0
    0000
    0000
    FT-BOT_HEIGHT
    0
    0000
    0000
    SYST-REPID
    SAPLSTXC
    5454555422222222222222222222222222222222
    310C348300000000000000000000000000000000
    No.       6 Ty.          FORM
    Name  WRITE_LINE
    %_DUMMY$$
    2222
    0000
    No.       5 Ty.          FUNCTION
    Name  PRINT_DUNNING_NOTICE
    I_F150D2
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    I_F150V
    20071001HO001 00000000
    3333333344333233333333222222222222222222222222222222222222222222222222222222222222222222222222
    200710018F001000000000000000000000000000000000000000000000000000000000000000000000000000000000
    I_ITCPO
    #HOFI           XLIST1S    HO00107
    2222222222222222222222222222222222222222222222222222222222220444422222222222544553522224433333
    00000000000000000000000000000000000000000000000000000000000008F69000000000008C9341300008F00107
    I_MAHNV
    40020071001HO001 F A
    33333333333443332424
    400200710018F0010601
    I_MHNK
    40020071001HO001 DFAS 0000000028                                      0  2007100120071001
    3333333333344333244452333333333322222222222222222222222222222222222222322333333333333333322222
    400200710018F001046130000000002800000000000000000000000000000000000000000200710012007100100000
    I_MOUT
    X
    5
    8
    I_OFI
    X
    5
    8
    I_UPDATE
    2
    0
    T_FIMSG[]
    Table IT_63[0x236]
    PROGRAM=SAPF150D2FORM=OFI_DUN_ACTDATA=T_FIMSG[]
    Table reference: 46
    TABH+  0(20) = 0000000000000000C0501D57FE07000000000000
    TABH+ 20(20) = 2E0000003F00000000000000EC000000FFFFFFFF
    TABH+ 40(16) = 04000000301F000002000000C1048001
    store        = 0x0000000000000000
    ext1         = 0xC0501D57FE070000
    shmId        = 0     (0x00000000)
    id           = 46    (0x2E000000)
    label        = 63    (0x3F000000)
    fill         = 0     (0x00000000)
    leng         = 236   (0xEC000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000132
    occu         = 2     (0x02000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    shmTabhSet   = Not allocated
    id           = Not allocated
    ref

    It's a SAPscript issue, and it depends whether it's standard SAP or something you've done yourself. Looking at the call stack it appears to be standard SAP so I'd suggest searching on OSS. Avoid searching on "SAPLSTXV" , "LSTXVFXX" or
    "FORMAT_SYMBOLVALUE" as these are generic SAPscript terms.

  • Sales invoice printout probs

    hi experts.
    we are 3 plants for our concern and we are prepared the sales invoice through t-code j1ip , when we are shifted the materials from one plant to another plant ie inter-plant .it could not print the customer address in the to block. of sales invoice .but when we are shifted the material to other external concern. it could printed the customer address in the to block..
    pls somebody rectify this prob.
    regards
    surender

    hi jignesh ..
    basically am a abaper. i knew this is the smartform/sapscript issue. in the top left of the sales invoice  the customer address should be print. but it could not be printed while we use the t-code j1ip.. plz resolve this.
    and one more ques. is how to retrieve the abap and smartforms/sapscript program for the particular  sales invoice.
    i think u understood what am ask..?
    see our plant name is x. and i want to shift the materials to x1.
    x1,
    2/3 cambridge road,
    banglore.     
    the above address should be printed in the top-right corner of the delivery challan *** invoice.
    regards
    surender

  • Sales invoice printout

    hi
               while am taking the sales invoice printout through j1ip. it does not  print the *company nameie vendor name* in the to block of the dc. *** invoice paper.
    there are three plants in our concern. the problem is arised only in , when we shift the material to our plants . not to other company.
    pls resolve the problem
    regards
    surender.s

    hi jignesh ..
    basically am a abaper. i knew this is the smartform/sapscript issue. in the top left of the sales invoice  the customer address should be print. but it could not be printed while we use the t-code j1ip.. plz resolve this.
    and one more ques. is how to retrieve the abap and smartforms/sapscript program for the particular  sales invoice.
    i think u understood what am ask..?
    see our plant name is x. and i want to shift the materials to x1.
    x1,
    2/3 cambridge road,
    banglore.     
    the above address should be printed in the top-right corner of the delivery challan *** invoice.
    regards
    surender

  • Address printing issue in SAPSCRIPT

    Hi All,
    I am getting address printing issue in address in sapscript .
    Here is my address format in the script.
    /: ADDRESS DELIVERY PARAGRAPH ZA LINES 10
    /:    TITLE                &KNA1-ANRED&
    /:    NAME               &KNA1-NAME1&,  &KNA1-NAME2&,  &KNA1-NAME3&,  &KNA1-NAME4&
    /:    STREET            &ADRC-STREET&
    /:   LOCATION        &ADRC-STR_SUPPL1
    /:   POBOX             &KNA1-PFACH&  CODE  &KNA1-PSTL2&
    /:   POSTCODE       &KNA1-PSTLZ&
    /:  REGION              &KNA1-REGIO&
    /:  CITY                   &KNA1-ORT01&,  KNA1-ORT02&
    /:  COUNTRY          &KNA1-LAND1&
    /:  FROMCOUNTRY &T001-LAND1&
    /: ENDADDRESS
    Here in the above code I had added LOCATION and modified the STREET field value.
    Moved the changes to QAS server along with the driver program., confirmed all the related transports are moved.
    While testing in QAS , i noticed that after LOCATION print I am getting blank space and then the remaining fields are printed.
    For example:
         casa velas boutique hotel
         Attn:  Marie John
         AV.  cocoterosss
        63550 Nuevo Vallarta, Nayarit,
        MEXICO.
    In the above example the third line the LOCATION data.
    The surprise here is that I am not getting blank space in DEV , I had checked all the transports, and all are ok.
    Please advice me where I am wrong, ie why i am getting blank space in QAS whereas it not showing in DEV.
    Thanks in advance.
    Vengal Rao.

    Hi Jay,
    I fully agree with you that the address printed will be as per SAP standards.
    Currently I am looking into the country configuration in DEV - I hope may be the reason,
    I have to use the existing ADDRESS....ENDADDRESS format as our client is using  4.6 version,  he just print the financial reports using the common script.
    So anything away from the orginal one may lead to more trouble in other reports.
    Once I get a reason behind the issue, I shall definetly post them.
    Thanks,
    Vengal Rao.

  • SAPscript: Header Window : Title Prinitng Issue

    Hi all
      I am modifying  SAPscripting(Z-version).
      On the Header Window, we are printing our Company Name with address.
      Snapshot of the code in this window which I feel not working(was working before) was :
    Z5                <b>Invoice</>
    Z5
    Z7   <b>myCompany<zs>#</> (China) Co., Ltd</>
    /:   INCLUDE ZHEX-MACRO-WWW-XNA_CO_LTD OBJECT TEXT ID ST
    The stmt on Z7 has to print the Company Name with R on the top right of the comp name.  The first Z5 is getting executed and INCLUDE also executes but the stmt of Z7 doesnot.
      I need your help in fixing this issue  !
    Cheers
    RJ
    null

    Z7 is your paragraph format, zs is your character format.
    Z7 will set your text's position in the window, zs is presumably set to display the font as superscript.  It would be worth checking in the SAPscript that both of these are defined as you need.
    Regards,
    Nick

  • Sapscript & smartform upgrade issue

    Can anyone please let me know the issues faced while upgrading sapscript and smartform in documents like purcchase order,sales order and invoice.

    Hi Ch@ndr@,
    This seems a strange problem. It is possible that this is simply a problem with the Sapscript buffers. Can you run the report RSTXDELL on the system to clear the Sapscript buffers?
    To do this you can use RSTXDELL report with default settings except it is better to have * instead of the current client number in the Client field.
    After this, create a new spool and see if the problem is resolved? It will not work to reprint an old spool as the print data is already incorrect.
    Regards,
    Aidan

Maybe you are looking for

  • My bookmarks were on a olumn to the left I closed it by accident How do I get this back This is NOT the bookmarks toolbar

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/811433'' The bookmarks were listed in folders and just saved individually I wish to see them again in a column on the left. I appreciate your assistance

  • Unable to start the cloud

    After configuring Cloud Provider and Adobe CQ WEM License, I tried to start my first CQ cloud. It failed, cloud status says 'blue' In the activity log I can find the following entries      Install failed for node: /var/clouds/content/companies/privat

  • Illustrator CS6 - Adding dimensional information to a drawing

    How can I add actual dimensions to an object.  I'ver created the drawing, but now want to add the dimension informaiton of a few objects into the drawing, without having to manually add the line and arrow and text.

  • Will InDesign CS 5.5 open my PageMaker 7.0 Files?

    I currenly own Pagemaker 6.5 with an upgrade to 7.0, as well as InDesign CS PageMaker Edition. I am unable to open my PageMaker files (either version) in the InDesign, running on either an XP SP3 computer (which I understand is not surprising) or on

  • Best way to exercise battery?

    New 17" MBP, New User, sure this has been asked before. What level should the battery be routinely discharged to before a recharge? This unit is usually plugged into AC in my motor-home, but I was curious about this question. I'm at 67% right now, so