Reg: ztable error

Hi ALL,
I have developed one alv report.
the output which i got from report should store in ztable
so i created one ztable
in the report the data declaration is like this they are 30 fields
TYPES: BEGIN OF TY_FINAL,
         MANDT TYPE MANDT,
         MATNR TYPE MATNR,       "Material
         WERKS TYPE WERKS_D,     "Plant
         LGORT TYPE LGORT_D,     "Sloc
         CHARG TYPE CHARG_D,     "Val type
         PSPNR TYPE PS_POSID,    "WBS element
         POST1 TYPE PS_POST1,    "Proj desc
         MAKTX TYPE MAKTX,       "Material desc
         MATKL TYPE MATKL,       "Material grp
         LFGJA TYPE LFGJA,       "Fisc Year
         LFMON TYPE LFMON,       "Month
         AGE1 TYPE MENGE_D,                              "Age1 qty
         AGE2 TYPE MENGE_D,                              "Age2 qty
         AGE3 TYPE MENGE_D,                              "Age3 qty
         AGE4 TYPE MENGE_D,                              "Age4 qty
         AGE5 TYPE MENGE_D,                              "Age5 qty            "Mod : 001
         PRLAB TYPE LABST,       "Unrestr.use
         PRINS TYPE INSME,       "QI stk
         PRSPE TYPE SPEME,       "Blocked stk
         TRAME TYPE TRAME,       "Stk in transit
         LBKUM TYPE LBKUM,       "Total stk
         SALK3 TYPE SALK3,       "Total val
         VERPR TYPE VERPR,       "MAP
         TOT_QTY TYPE LBKUM,         "Qty
         TOT_VAL    TYPE LBKUM,       "Val
         MAP       TYPE LBKUM,
         PRLAB_VAL TYPE LBKUM,       "Unrestr.use
         PRINS_VAL TYPE LBKUM,      "QI stk
         PRSPE_VAL TYPE LBKUM,       "Blocked stk
         TRAME_VAL TYPE LBKUM,
       END OF TY_FINAL.
DATA: WA_FINAL TYPE TY_FINAL,
      IT_FINAL TYPE STANDARD TABLE OF TY_FINAL INITIAL SIZE 0.
the output i am getting only 19 fields
PERFORM FIELDCAT  USING '1'  'MATNR'  'IT_FINAL' TEXT-002 '18' ' ' ' '.
  PERFORM FIELDCAT  USING '2'  'MAKTX'  'IT_FINAL' TEXT-003 '40' ' ' ' '.
  PERFORM FIELDCAT  USING '3'  'MATKL'  'IT_FINAL' TEXT-004 '9' ' ' 'X'.
  PERFORM FIELDCAT  USING '4'  'WERKS'  'IT_FINAL' TEXT-005 '4'  ' ' ' '.
  PERFORM FIELDCAT  USING '5'  'LGORT'  'IT_FINAL' TEXT-006 '4'  ' ' ' '.
  PERFORM FIELDCAT  USING '6'  'CHARG'  'IT_FINAL' TEXT-007 '10' ' ' ' '.
  PERFORM FIELDCAT  USING '7' 'PSPNR'   'IT_FINAL' TEXT-024 '24' ' ' ' '.
  PERFORM FIELDCAT  USING '8'  'AGE1'   'IT_FINAL' TEXT-008 '13' ' ' ' '.
  PERFORM FIELDCAT  USING '9'  'AGE2'   'IT_FINAL' TEXT-009 '13' ' ' ' '.
  PERFORM FIELDCAT  USING '10'  'AGE3'   'IT_FINAL' TEXT-010 '13' ' ' ' '.
  PERFORM FIELDCAT  USING '11' 'AGE4'   'IT_FINAL' TEXT-011 '13' ' ' ' '.
  PERFORM FIELDCAT  USING '11' 'AGE5'   'IT_FINAL' TEXT-025 '13' ' ' ' '.          "Mod : 001
  PERFORM FIELDCAT  USING '12' 'PRLAB'  'IT_FINAL' TEXT-012 '13' ' ' ' '.
  PERFORM FIELDCAT  USING '13' 'TRAME'  'IT_FINAL' TEXT-014 '13' ' ' ' '.
  PERFORM FIELDCAT  USING '14' 'TOT_QTY' 'IT_FINAL' TEXT-017 '13' 'X' ' '.
  PERFORM FIELDCAT  USING '15' 'MAP'     'IT_FINAL' TEXT-018 '11' 'X' ' '.
  PERFORM FIELDCAT  USING '16' 'PRLAB_VAL' 'IT_FINAL' TEXT-019 '13' 'X' ' '.
  PERFORM FIELDCAT  USING '17' 'TRAME_VAL' 'IT_FINAL' TEXT-021 '13' 'X' ' '.
  PERFORM FIELDCAT  USING '18' 'TOT_VAL'   'IT_FINAL' TEXT-023 '13' 'X' ' '.
so i want to storing 19 fileds in ztable
i have return a code in report  like this
LOOP AT IT_FINAL INTO WA_FINAL.
MODIFY ZPRO_AGING FROM WA_FINAL .
ENDLOOP.
zpro_aging is ztable
iam getting error like this
the type of the database table and werk area "wa_final" are not  unicade-convertibe
pls can u help me.
thanks
mars

hi,
try this..
1. Declare an internal table for ZPRO_AGING and move the records from wa_final to internal table.
2. Then modify the Ztable from internal table.
Regards,
Satish Reddy.

Similar Messages

  • "mapping null reg" compiler error LV2009

    Opens fine in LV 8.6, but gives "Compiler error. mapping null reg" error in LV 2009.
    If you get rid of the 2D transpose, the code compiles fine.
    Attachments:
    Bitmap to Graphic Block v1.0.vi ‏17 KB

    Thanks for reporting this. The issue has actually already been addressed in LabVIEW 2010. 
    Regards,
    Will
    Certified LabVIEW Architect, Certified Professional Instructor
    Choose Movement Consulting
    choose-mc.com

  • Reg:Getting error text from a channel into a file or into a variable

    Hi,
    Can we get the error text such as u201Cjava.lang.NegativeArraySizeExceptionu201D  from a communication channel into a variable or in the form of an xml message so that based on kind of error further processing can be done.
    Regards,
    Rahul

    You can decide further processing based on the data available in the mapping. If the value comes in the source field for a list element as you expected do UDF and return error as string and decide the mapping as per business need. I talk about something like enhanced interface determination. That's one way. Reading the error message from the communication channel and decide does not seem to be better option.

  • Reg.SMTP Error while using UTL_MAIL in Oracle 10g

    Hi,
    I am getting the following SMTP error while trying to use the UTL.MAIL package of Oracle 10g. The query is as follows.
    begin
    utl_mail.send(
    sender => 'NAVEEN',
    recipients => '[email protected]',
    subject => 'Testing utl_mail',
    message => 'The receipt of this email means'|| ' that UTL_MAIL works'
    end;
    UTL_MAIL package is installesd and the port 25 is configured and firewall is changed.
    The same block was working fine before 5 days and now is giving the error as
    ORA-29279: SMTP permanent error: 501 badly formatted MAIL FROM user - no "<"
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 222
    ORA-06512: at "SYS.UTL_MAIL", line 407
    ORA-06512: at "SYS.UTL_MAIL", line 594
    ORA-06512: at line 2
    Could you please help me out how to proceed???
    Regards,
    Naveen Kumar.

    Can you back that statement about an Oracle UTL_SMTP bug up with an actual bug number??
    From what you have posted, this is not a bug!! but expected and documented (RFC'ed) SMTP server behaviour.
    My proof:
    /home/billy> telnet mail 25
    Trying 165.143.128.26...
    Connected to mail
    Escape character is '^]'.
    220 CNTRRA20-GTW01 [CNTRRA20-GTW01] Thu, 06 Mar 2008 14:26:26 +0200
    HELO 10.251.93.58
    250 CNTRRA20-GTW01 Hello [10.251.93.58]
    MAIL FROM: naveen <[email protected]>
    501 naveen <[email protected]> : illegal character(s) in domain string
    MAIL FROM: NAVEEN
    501 NAVEEN : domain string is NULL.
    quit
    221 CNTRRA20-GTW01 closing connection. Goodbye!
    Connection closed by foreign host.
    /home/billy>
    As you can clearly see, the SMTP server expects a DOMAIN name as part of the MAIL FROM address. It also does not accept the alternative format suggested.
    Yes, not all SMTP servers are equal and some support additional formatting.
    But to imply that because the SMTP server does not accept your address formatted as string NAVEEN, it is a UTL_SMTP problem, sounds like a smelly one to me.

  • Reg. Error in MIGO transaction

    Hi friends,
    When I run standard transaction MIGO it is giving dump. Just after entering the Tcode it is giving dump. The following is the error we are getting.
    *Syntax error in program "SAPLVBDOCUBATCH_DM ".*
    Detail description:
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLMIGO" had to be terminated because it has          
    come across a statement that unfortunately cannot be executed.                                                                               
    The following syntax error occurred in program "SAPLVBDOCUBATCH_DM " in include  
      "LVBDOCUBATCH_DMU25 " in                                                        
    line 139:                                                                        
    "You can only use the COLLECT command in a table if all of its non-key "         
    "fields are numeric (type I, P, or F) . . . . . . . ."                           
    The include has been created and last changed by:                                
    Created by: "SAP "                                                               
    Last changed by: "SAP "                                                          
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLMIGO" had to be terminated because it has          
    come across a statement that unfortunately cannot be executed.                                                                               
    Please look into this and give me your suggestions, Thanks in advance.
    Regards,
    Chandu.

    Hi Venkat,
    My BASIS people solved the issue, they applied some patches to the system. Then it got set. You please check with your BASIS team.
    Regards,
    Chandu.

  • Reg : Getting error while approving leave request

    Hello Experts,
    Manger is getting and error message u2018Work item 000000000000 cannot be readu2019 while
    Approving the leave request of one his reportee. This error is triggering for only one
    Reportee. 
    Experts please kindly help us.
    Regards,
    Raj

    Hi Raj,
    There are a number of issues that could cause this.  Can you share your scenario (where is manager approving the request - via SAPGUI, ESS, MSS?)  Are you using an SAP standard workflow?
    Plus, there are lots of threads in SCN on this topic.  Have you checked any of these?
    Good luck,
    Sue

  • Reg. Error while Full load - process chain

    Hi,
    I am running a process chain, which is a full load. In Manage screen it is in RED status whereas, While i chekced in Monitor screen it is showing as "Missing messages" . While I checked in the error and warning messages, I found that the data packet should be run manually. So I tried Manual update option by killing the job manually. After doing this i tried to run the same process with "Back to Technical Status" option. While performin this again i got an error saying  "REQUXXXX terminated, as data packet 0000XX could not be locked"
    How this error can be rectified.
    Please advice.
    Thanks in advance!!!
    Regards,
    Melissa

    Hi Melissa.....
    While i chekced in Monitor screen it is showing as "Missing messages"........where did u got the message.............in the data packet.......right...........?..........
    I found that the data packet should be run manually. So I tried Manual update option by killing the job manually..................which job u hav killed........? Extraction Job?If u hav killed the Extraction job........then Manual update is not possible..............Manual update is only possible when the Extraction job will get completed successfully........
    Due to this u r getting the Error Message error saying "REQUXXXX terminated, as data packet 0000XX could not be locked"....................When the request itself does'nt exist............how could u do Manual update for that deletedrequuest........
    Then only option is..............make the QM status red.............delete the request from the target and repeat the load.........
    Hope this helps.......
    Regards,
    Debjani........

  • Reg: webservices  error  in  xi

    Hi ,
    Iam new to xi and  had developed a http to web service scenario and the response i got an error
    Result:  
    <SAP:Error><SAP:Category>XIAdapterFramework</SAP:Category><SAP:Code>MESSAGE.GENERAL</SAP:Code><SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: invalid content type for SOAP: TEXT/HTML</SAP:AdditionalText></SAP:Error>
    so in the receiver soap adapter  in module tab  i have given
    Module name - localejbs/AF_Modules/MessageTranspormationBean
    Type - Local Enterprise Bean Module - This is defined by the user, but the same name should be given in the module configuration for passing the parameters. In this case “transform” In the module configuration ,
    Module key - In this case “transform”
    Parameter name - TransformContenType
    Parameter Value - text/xml;charset=utf-8
    I got an error
    Result:  
    <SAP:Error><SAP:Category>XIAdapterFramework</SAP:Category><SAP:Code>MESSAGE.GENERAL</SAP:Code><SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: local bean not found: localejbs/AF_Modules/MessageTranspormationBean</SAP:AdditionalText></SAP:Error>
    the websevice is
    http://www.webservicex.net/SendSMS.asmx?op=SendSMSToIndia
    Could any one help me out.
    Thanks & Regards,
    Gangadhar.S

    Hi Gangadhar
    If you are  new to SAP XI , then its better to read TIBIT. Below are the links of TIBIT which are very helpful in understanding the End-to-end process of XI. And you can even do some exercies here which are very helpful.
    TBIT40:
    https://websmp109.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT40
    TBIT41:
    https://websmp201.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT41&LANGUAGE=
    TBIT42:
    https://websmp206.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT42&LANGUAGE=
    TBIT43:
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60161651
    TBIT44:
    https://websmp102.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT44
    later you can follow this link which contains step by step blogs for http to webservices
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_weblog&query=httptoweb+service&adv=false&sortby=cm_rnd_rankvalue
    Thanks
    sandeep
    PS: if helpful plz reward points

  • Reg: Proxy error while fetching data from RFC's

    Hi All,
    I am fetching data from RFC's. When the data is in bulk I am getting an error like:
    Proxy Error
    The proxy server received an invalid response from an upstream server.
    The proxy server could not handle the request POST /webdynpro/dispatcher/sap.com/pb/PageBuilder.
    Reason: Error reading from remote server
    When the data is samll only I am not getting any error and am able to fetch it easily. Please suggest me something in this regard.
    Thanks in advance,
    Gaurav

    Hi Detlef / Gowtham,
    Now I am able to fetch data from flat files from OWB Server as well as OWB Client.
    One way I have achieved as suggested by you
    1) Creating location on the OWB Client
    2) Samples the files at client
    3) Created & Configured external table
    4) Copy all flat files on OWB Server
    5) Updated the location which I created at the client.
    Other way
    1) Creating location on the OWB Client
    2) Samples the files at client
    3) Created & Configured external table
    4) Copied flat files on the sever in same drive & directory . like if my all flat files are on C:\data at OWB Client then I copied flat file C:\data on the OWB Server. But this is feasible for Non-Windows.
    Hence my problem solved.
    Thanks a lot.
    Regards,
    Manmohan

  • Reg. Error message during Purchase order more than PR.

    Dear Sir
    After putting Purchase order for a Purchase requisition we can able to rise Purchase order for a PR. We a error message. Kindly give the solution this problem.
    How to set error message in this case.
    Thanks
    Rajj.

    Hi
    If u want to restrict PO creation with more than PR Qty u can set error message in OME0 or path as follows
    SPRO>Materials Management>Purchasing>Environment Data>Define Attributes of System Messages-->system message
    06 076
    Set the message no : 06 076 as error messages.
    Then when All The PR qty already convert to PO,then system will not allow another PO to created for this PR.
    Vishal...

  • Reg. Error in material BRICKS order 10003000 item 0000

    Dear Experts
    When I do confirmation in CO11N i am getting the following error
    Error in material BRICKS order 10003000 item 0000
    Message no. RU119
    Diagnosis
    The data necessary for automatic goods movements in a confirmation is incomplete or contains errors.
    System Response
    Automatic goods movements were not carried out. Instead, the system wrote error records.
    Procedure
    Process the error records in one of the following transactions: If the variable parameters are appropriately set then once the confirmation has been created the system asks you whether you want to process the error records. If you answer is "yes" then the system branches to the material overview where you can carry out processing. You branch to the transaction for reprocessing error records from automatic goods movements.
    Pls help me
    Thanks in advance
    Rajakumar.K

    Quantity and Value update tick is made in OMS2 - MATERIAL TYPE then this problem is solved.
    by myself
    Edited by: Raja Kumar on Aug 26, 2009 2:48 PM

  • Reg runtime error

    hai to all,
    i am trying to run PO bapi. suddenly i am getting runtime error as
    "Data objects in a Unicode program are not convertible"
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLGRAP" had to be terminated because one of the  statements could not be be executed.                                                                               
    This is probably due to an error in the ABAP program.                        
    i tried to debug the entire program , runtime error occurs immediately after executing.
    please let me know how to correct the error
    regards
    vijay

    Hi,
    This may be due to some structure incompatibility. use function module 'pi_bp_move_unicode' to move the structures, there by avoiding dumps. The imported parameter from the FM should be sent to the BAPI.
    If this is useful, award points pls..
    Regards,
    Bharadwaj

  • Reg - Deployment Error in NWDS7.0

    Hi All ,
    Im trying To Deploy Web Dynpro Sample Application By Creating project Name and Application and Iview . When im try to deloy the application  after giving SDM Pasword it throws Following Error .
    please suggest Valueble inputs .
    com.sap.tc.webdynpro.services.sal.core.DispatcherException: The requested deployable object 'local/test1' and application 'Test1' are not deployed on the server. Please check the used URL for typos.
    Exception id: [00144FFA3533005B000000E2000012EC00047D1D2759F136]
    Regards ,
    venkat p

    Should be here:
    usr/sap/System Id/instance number/j2ee/cluster/server0/log/default trace
    Ask basis to provide you the trace that's tagged with the exception ID that the error message gives you.
    Regards,
    Jan

  • Reg:bsp error in ICF node

    hi ,
    i had developed a BSP Application in sap 4.7 ,but when i test it iam getting the below error .
    certain ICF nodes must be released in transaction SICF for the BSP Extensions HTMLB
    SAP/BC/BSP/SAP/SYSTEM
    SAP/BC/BSP/SAP/PUBLIC/BC
    SAP/PUBLIC/BSP/SAP/PUBLIC/BC
    could any one help me out regarding this issue.
    Thanks & Regards
    Satish.

    In OSS note <b>517484</b> on https://websmp204.sap-ag.de/notes , and there we can find that for BSP following services should be activated!
    <b>Goto SICF Tcode & activate the below nodes:</b>
    /default_host/sap/bc/bsp/sap
    /default_host/sap/bc/bsp/sap/system
    /default_host/sap/bc/bsp/sap/public/bc
    /def ault_host/sap/public/bc (available for 620 with Support Package 34)
    /default_host/sap/public/bc/ur (available for 620 with Support Package 34)
    /default_host/sap/public/bsp/sap/public
    /default_host/sap/public/bsp/sap/public/bc
    /defaul t_host/sap/public/bsp/sap/system
    /default_host/sap/public/bsp/sap/htmlb (as of Release 620 Support Package SAPKB62026)
    Note: After you activate the BSP service, the corresponding application services must also be activated.
    Raja T
    Message was edited by:
            Raja Thangamani

  • Reg syntax error in ECC6.0

    hi,
    Iam getting syantax error for this small code in ECC 6.0.
    plz help in solving this.
    here is the full code.
    DATA: WS-01(1) TYPE C VALUE '1',
    WS-02(1) TYPE C VALUE '2',
    WS-03(1) TYPE C VALUE '3',
    WS-04(1) TYPE C VALUE '4',
    WS-05(1) TYPE C VALUE '5',
    WS-06(1) TYPE C VALUE '6',
    WS-07(1) TYPE C VALUE '7',
    WS-08(1) TYPE C VALUE '8',
    WS-09(1) TYPE C VALUE '9',
    WS-10(1) TYPE C VALUE 'A', "Omit letter 'A'
    WS-10(1) TYPE C VALUE 'B',
    WS-11(1) TYPE C VALUE 'C',
    WS-12(1) TYPE C VALUE 'D',
    WS-14(1) TYPE C VALUE 'E', "Omit letter 'E'
    WS-13(1) TYPE C VALUE 'F',
    WS-14(1) TYPE C VALUE 'G',
    WS-15(1) TYPE C VALUE 'H',
    WS-18(1) TYPE C VALUE 'I', "Omit letter 'I'
    WS-16(1) TYPE C VALUE 'J',
    WS-17(1) TYPE C VALUE 'K',
    WS-18(1) TYPE C VALUE 'L',
    WS-19(1) TYPE C VALUE 'M',
    WS-20(1) TYPE C VALUE 'N',
    O TYPE N VALUE '24', "Omit letter 'O'
    WS-21(1) TYPE C VALUE 'P',
    WS-22(1) TYPE C VALUE 'Q',
    WS-23(1) TYPE C VALUE 'R',
    WS-24(1) TYPE C VALUE 'S',
    WS-25(1) TYPE C VALUE 'T',
    WS-29(1) TYPE C VALUE 'U', "Omit letter 'U'
    WS-26(1) TYPE C VALUE 'V',
    WS-27(1) TYPE C VALUE 'W',
    WS-28(1) TYPE C VALUE 'X',
    WS-29(1) TYPE C VALUE 'Y',
    WS-30(1) TYPE C VALUE 'Z',
    WS-31(1) TYPE C VALUE '0',
    NUM_LENGTH TYPE N VALUE '8'. " Length of stored no.
    DATA : MAX_VAL(2) TYPE N VALUE '31'.
    DATA: BEGIN OF NUM_TAB OCCURS 35,
    CHAR(1) TYPE C,
    VAL LIKE SY-INDEX,
    END OF NUM_TAB.
    initializes internal table with character values from data
    DO MAX_VAL TIMES VARYING CHAR FROM WS-01 NEXT WS-02 .
    MOVE: CHAR TO NUM_TAB-CHAR,
    SY-INDEX TO NUM_TAB-VAL.
    APPEND NUM_TAB.
    ENDDO.
    regards
    vaja

    Hi,
    In unicode field names were not allowed with - symbol
    wa-20 is not allowed
    wa_20 is allowed
    if you use wa-20 you will get syntax errors.
    Regards,
    sivachalasani.

Maybe you are looking for

  • Error occured when connect to MySql Databse in Dreamweaver

    Hello! I met a problem when connect to Mysql Databse in Dreamweaver Details: My Php Environment: Php 5.2.2+ MySql 5.0.4 + IIS 6.0 + DW IDE + WinXP SP2, All necessary sevice started(Actually I have never stopped any Windows service). Php installed (II

  • T400 - only integrated graphics?

    There seems to be only integrated graphics for the T400 (Intel Graphics Media Accelerator 4500MHD with vPro)... Can a dedicated graphics card be added to it?

  • How to push remainder Children up after remove 1

    Hi everyone, i have an ary contain a numbers of information as below var ary:Array = new Array(); var temp:Array; var box_mc:Box; // this is a movieclip which contain dynamic text box inside. // assume inside the array have 9 itemName on the stage i

  • Installed Plugins and Checked Settings Still not playing Videos on Safari

    Hello,      I installed java and a dish tv plugin to watch videos and still shows the same page that they haven't been installed. I checked safari settings everythings good. Checked computer and everything is installed. Why is it not playing? Any hel

  • SQL Query Builder Error

    Hi, I'm trying to build a data model based on data on our server. I've created a Data Set in SQL using the Query Builder, but when I go to save, I receive this error message:       [Hyperion][SQLServer JDBC Driver][SQLServer]Invalid object name 'CMPR