Target of assignment must be a reference value. Issue

So I have this issue I have never seen before and am unsure how to solve. I might be dumb but Im pretty sure I can do this. any ways can some one tell me why the following throws a Target of Assignment must be a refrene value?
public class test
     private var t:Test = new Test();
     private var fName:String;
     private var xml:XML;
     //For this example assumewe set a value of apples.XML to fName
     public function get fileName():String
          return fName;
     public function loadFile(fileToLoad:String):Boolean
          //open the file and return true or false if it exists and
          //can be opened.
     public funtion returnObject():XML
          if(loadFile(t.fileName) = true) // Target of assignment must be a reference value.
               //load objects into xml
               retun xml
There is a reason I am doing it this way. How ever I am not here to disuss that I am here to discuss why I am getting this error. loadFile(fileToLoad:String) takes a string, I am essentially giving it a string...So whats it's issue?

that's not a valid as3 class.  you need a package designation and a constructor.
package{
public class test
     private var t:Test = new Test();
     private var fName:String;
     private var xml:XML;
     //For this example assumewe set a value of apples.XML to fName
public function test(){
      public function get fileName():String
          return fName;
     public function loadFile(fileToLoad:String):Boolean
          //open the file and return true or false if it exists and
          //can be opened.
     public funtion returnObject():XML
          if(loadFile(t.fileName) = true) // Target of assignment must be a reference value.
               //load objects into xml
               retun xml

Similar Messages

  • Assigning object reference values to field symbols

    Okay.......has anyone out there figured out how to assign the reference value of an object (you know the value you see in the debugger for example: .........to a field symbol.
    I know there has to be a way and was wondering if anyone has successfully achieved this. Its easy to assign a memory area to a field symbol if its an itab like this below:
    field-symbols: <fs>.
    data: v_fieldname(20) type c.
    v_fieldname = '(SAPLMEREQ)MARA'.
    assign (v_fieldname) to <fs>.
    This shouldn't be impossible with code like:
    field-symbols: <fs> type ref to object.
    data: v_ref(100) type c.
    v_ref = '{O:666*\FUNCTION-POOL=MEREQ\CLASS=LCL_REQ_ITEM_STATE}'.
    assign (v_ref) to <fs>.
    I just know that the code above doesn't work....
    Any suggestions? And please......no questions about "why" or "what do I want to accomplish?" .....
    Mike

    Hello Michael
    I assume you have not yet seen the following links:
    ABAP OO - MEREQ (Purchase Req) - Protected Attributes
    [Accessing the Inacessible - Local Classes within Global Classes|https://wiki.sdn.sap.com/wiki/display/ABAP/AccessingtheInacessible-LocalClasseswithinGlobalClasses]
    Regards
      Uwe

  • Please help!!! This expression must have a constant value

    I try to work with cfc and cfinvoke and not sure why I got this error. Searched
    in google for answer but still don't get any. Can anyone help please...not sure where
    I had it wrong...I thought my codes should work (?)
    When a form is submitted I have this codes in formaction.cfm, I captured all the form fields in a structure:
    <CFSET st_Registration = {Salutation="#Trim(Form.Salutation)#", FName = "#Trim(Form.FName)#", MName = "#Trim(Form.Mname)#",LName =  "#Trim(Form.LName)#" .......etc }/>
    Then I set all the required fields:
     <CFSET ReqFields ="Salutation,FName,LName,Addr1,City,State,Zip,Country,Phone,Email,username,password">
    <!--- Then send the structure and req. fiels list to a function located in a component to verify required fields ---><cfset CreateUserInfo = createObject("component", "airbucks.cfcomp.VerifyInput").init()> 
    <CFINVOKE component="#CreateUserInfo#" method="Verify_ReqFields" st_Registration = "#st_Registration#" RequiredFields ="#ReqFields#" returnvariable="VerifyResult">
    <CFIF #VerifyResult# IS "">
    <cfdump var="#st_Registration#">
    <CFELSE>
      <CFIF #st_Registration["Country"]# IS "USA">
    <CFINCLUDE template="registration_ret.cfm">
      <CFELSE>
    <CFINCLUDE template="registration_other_ret.cfm">
      </CFIF>
    </CFIF>
    <!--- Below is part of the component with the function for checking required fields --->
    <cfcomponent displayname="VerifyInputData" output="false"> <CFFUNCTION name="Init" access="public" returntype="any" output="false" hint="Returns an initialized component instance.">
     <!--- Return This reference. --->
     <cfreturn THIS />
     </CFFUNCTION>
     <!--- Verify required fields --->
     <CFFUNCTION name="Verify_ReqFields">
     <cfargument name="st_Registration" type="struct" required="true">
     <cfargument name="RequiredFields" type="string" required="true"> 
    <!--- check if req. fields are blank --->
     <CFSET ErrorList = "">
     <cfloop collection="#arguments.st_Registration#" item="KEY">
     <CFIF #Trim(st_Registration[KEY])# IS "">
     <CFSWITCH expression="#Trim(KEY)#">
     <CFCASE value="#arguments.RequiredFields#">
     <CFSET ErrorList = ListAppend(ErrorList, "#KEY#")>
     </CFCASE>
     </CFSWITCH>
     </CFIF>  
    </cfloop>
     <CFRETURN ErrorList >
     </CFFUNCTION>
      </cfcomponent>
        Here is the error:  
    The following information is meant for the website developer for debugging purposes.
    Error Occurred While Processing Request
    This expression must have a constant value.
    The error occurred in C:\Inetpub\wwwroot\AirBucks\registrationaction.cfm: line 55
    53 :                              
    54 : <!--- Verify required field based on the required list set above --->
    55 : <cfset CreateUserInfo = createObject("component", "airbucks.cfcomp.VerifyInput").init()>
    56 : <CFINVOKE component="#CreateUserInfo#" method="Verify_ReqFields" st_Registration = "#st_Registration#" RequiredFields ="#ReqFields#" returnvariable="VerifyResult">
    57 :      

    Thank you and I'll change my codes.
    When I did the following, I still get the same error.
    Isn't it CreateUserInfo is the object?
    <cfset CreateUserInfo = createObject("component", "airbucks.cfcomp.VerifyInput").init()>
    <CFSET VerifyResult = CreateUserInfo.Verify_ReqFields(st_Registration, ReqFields)> 
    Using cfinvoke used to work.
    The following information is meant for the website developer for debugging purposes.
    Error Occurred While Processing Request
    This expression must have a constant value.
    The error occurred in C:\Inetpub\wwwroot\AirBucks\registrationaction.cfm: line 54
    52 : <!--- Verify required field based on the required list set above --->
    53 :
    54 : <cfset CreateUserInfo = createObject("component", "airbucks.cfcomp.VerifyInput").init()>
    55 : <!---
    56 : <CFINVOKE component="#CreateUserInfo#" method="Verify_ReqFields" st_Registration

  • Hiding reference value in document flow

    hello, friends.
    from the sales order document flow, i want to hide the reference value (material price, from the material master) of the goods issue.  is there a standard way to configure this without ABAP?
    thanks for your help.
    jty

    Hi,
    I know of a way to hide that particular detail, hope you are aware of how to apply it.
    There is a field transaction varent in sales document,
    we can customize the filed in IMG->general setting->field varient.
    save with a name and assign this name to the sales dcoument field transaction varient.
    Regards,
    Siddharth.

  • How to assign a JSP variabl's value to a JavaScript variable?

    Hello,
    I want to assign a JSP variable's value to JAVASCRIPT variable.
    or how to assign JavaScript variable's value to JSP varialbe
    HOw do i do it ?
    can anyone please help?
    Regards and thanks for your time.
    Ashvini

    I want to assign a JSP variable's value to
    JAVASCRIPT variable.
    var jsVariable = <%=someVariable%>;
    or how to assign JavaScript variable's value to JSP
    varialbeYou can't. JSP is server-side and JavaScript is client-side. The JSP variables are never available on the client side for any sort of assignment.

  • Network message format error. GET request must have a QUERY_STRING value

    I have installed new Content Server 10gR on my laptop.
    Web Server is : Apache 2.2.4
    DB is : Oracle 10g (Standard Edition)
    Platform : Windows
    CS is up & running. I am able to login and browse through content store. But when I try to perform any type of Submit operation anywhere in CS Portal ( for example "Updating My Profile and clicking on Submit" ) I get following error:
    "Network message format error. GET request must have a QUERY_STRING value (the CGI parameters on the URL) "
    1. Does any one know why I am getting this ?
    2. Is some configuration missing for Apache which connects Apache with CS ?
    Below is the httpd.conf changes:
    LoadModule IdcApacheAuth D:/oracle/ucm/idc/shared/os/win32/lib/IdcApache22Auth.dll
    IdcUserDB idc "D:/oracle/ucm/idc/data/users/userdb.txt"
    Alias /idc "D:/oracle/ucm/idc/weblayout"
    <Location /idc>
    Order allow,deny
    Allow from all
    DirectoryIndex portal.htm
    IdcSecurity idc
    </Location>
    3. One things that I see that before hitting the Submit button the URL is:
    http://delrpatha76669.sapient.com:8989/idc/idcplg/?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=HOME_PAGE&Auth=Internet
    And after hitting Submit button on "My Profile" the URL becomes:
    http://delrpatha76669.sapient.com:8989/idc/idcplg/
    I guess part of URL gets truncated/missed etc and so we are getting this error ?
    Any way to fix this ?
    Edited by: user12188052 on Sep 21, 2010 10:10 AM

    This issue is resolved.
    Cause
    - After installation when I started CS , I saw "D:\oracle\ucm\idc\weblayout\idcplg" folder missing error in logs. Reason why I created this "idcplg" folder inside "weblayout" folder was because I thought it was not created during installation. I created this folder & copied "idc_cgi_isapi.dll" this file into it.. This was the issue
    Fix
    - I deleted the folder "D:\oracle\ucm\idc\weblayout\idcplg" and everything started working fine now.

  • ORA-14314: resulting List partition(s) must contain atleast 1 value

    Hi,
    Using: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production, Windows 7 Platform.
    I'm trying to understand Exchange Partition and Split (List) partitioning. Below is the code I'm trying to work on:
      CREATE TABLE big_table (
      id            NUMBER(10),
      created_date  DATE,
      lookup_id     NUMBER(10),
      data          VARCHAR2(50)
    declare
      l_lookup_id big_table.lookup_id%type;
      l_create_date date;
    begin
      for i in 1 .. 1000000 loop
        if mod(i,3) = 0 then
           l_create_date := to_date('19-mar-2011','dd-mon-yyyy');
           l_lookup_id := 2;
        elsif mod(i,2) = 0 then
           l_create_date := to_date('19-mar-2012','dd-mon-yyyy');
           l_lookup_id := 1;
        else
           l_create_date := to_date('19-mar-2013','dd-mon-yyyy');
           l_lookup_id := 3;
        end if;
        insert into big_table(id, created_date, lookup_id, data)
           values (i, l_create_date, l_lookup_id, 'This is some data for '||i);
      end loop;
      commit;
    end;
    alter table big_table add (
    constraint big_table_pk primary key (id));
    exec dbms_stats.gather_table_stats(user, 'BIG_TABLE', cascade => true);
    create table big_table2 (
    id number(10),
    created_date date,
    lookup_id number(10),
    data varchar2(50)
    partition by list (created_date)
    (partition p20991231 values (TO_DATE(' 2099-12-31 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN')));
    alter table big_table2 add (
    constraint big_table_pk2 primary key(id));
    alter table big_table2 exchange partition p20991231
    with table big_table
    without validation
    update global indexes;
    drop table big_table;
    rename big_table2 to big_table;
    alter table big_table rename constraint big_table_pk2 to big_table_pk;
    alter index big_table_pk2 rename to big_table_pk;
    exec dbms_stats.gather_table_stats(USER, 'BIG_TABLE', cascade => TRUE);
    I'm trying to split the data by moving created_date=19-mar-2013 to new partition p20130319. I tried to run the below query but failed with error. Where am I doing it wrong?
    Thanks.
    alter table big_table
    split partition p20991231 values (to_date('19-mar-2013','dd-mon-yyyy'))
    into (partition p20130319
         ,partition p20991231
    Error report:
    SQL Error: ORA-14314: resulting List partition(s) must contain atleast 1 value
    14314. 00000 -  "resulting List partition(s) must contain atleast 1 value"
    *Cause:    After a SPLIT/DROP VALUE of a list partition, each resulting
               partition(as applicable) must contain at least 1 value
    *Action:   Ensure that each of the resulting partitions contains atleast
               1 value

    I stand corrected.
    Below are the steps I have gone through to understand:
    1. How to partition a table with data in it.
    2. Exchange partition.
    3. Split partition (List).
    4. Split data to more than 2 partitions.
    Please correct me if I'm missing anything.
    CREATE TABLE big_table
        id           NUMBER(10),
        created_date DATE,
        lookup_id    NUMBER(10),
        data         VARCHAR2(50)
    DECLARE
      l_lookup_id big_table.lookup_id%type;
      l_create_date DATE;
    BEGIN
      FOR i IN 1 .. 1000000
      LOOP
        IF mod(i,3)= 0 THEN
          l_create_date := to_date('19-mar-2011','dd-mon-yyyy');
          l_lookup_id   := 2;
        elsif mod(i,2)   = 0 THEN
          l_create_date := to_date('19-mar-2012','dd-mon-yyyy');
          l_lookup_id   := 1;
        ELSE
          l_create_date := to_date('19-mar-2013','dd-mon-yyyy');
          l_lookup_id   := 3;
        END IF;
        INSERT INTO big_table(id, created_date, lookup_id, data)
          VALUES(i, l_create_date, l_lookup_id, 'This is some data for '||i);
      END LOOP;
      COMMIT;
    END;
    ALTER TABLE big_table ADD
    (CONSTRAINT big_table_pk PRIMARY KEY (id));
    EXEC dbms_stats.gather_table_stats(USER, 'BIG_TABLE', CASCADE => true);
    CREATE TABLE big_table2
      ( id           NUMBER(10),
        created_date DATE,
        lookup_id    NUMBER(10),
        data         VARCHAR2(50)
      partition BY list(created_date)
      (partition p0319 VALUES
        (TO_DATE(' 2013-03-19 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN') ,TO_DATE(' 2012-03-19 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN') ,TO_DATE(' 2011-03-19 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    ALTER TABLE big_table2 ADD
    (CONSTRAINT big_table_pk2 PRIMARY KEY(id));
    ALTER TABLE big_table2 exchange partition p0319
    WITH TABLE big_table without validation
    UPDATE global indexes;
    DROP TABLE big_table;
    RENAME big_table2 TO big_table;
    ALTER TABLE big_table RENAME CONSTRAINT big_table_pk2 TO big_table_pk;
    ALTER INDEX big_table_pk2 RENAME TO big_table_pk;
    EXEC dbms_stats.gather_table_stats(USER, 'BIG_TABLE', CASCADE => TRUE);
    SELECT p.partition_name, p.num_rows
    FROM user_tab_partitions p
    WHERE p.table_name = 'BIG_TABLE';
    ALTER TABLE big_table split partition p0319 VALUES
    (TO_DATE(' 2013-03-19 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    INTO (partition p20130319, partition p0319);
    ALTER INDEX big_table_pk rebuild;
    EXEC dbms_stats.gather_table_stats(USER, 'BIG_TABLE', CASCADE => TRUE);
    SELECT p.partition_name, p.num_rows
    FROM user_tab_partitions p
    WHERE table_name = 'BIG_TABLE';
    SELECT DISTINCT created_date FROM big_table partition(p20130319);
    SELECT DISTINCT created_date FROM big_table partition(p0319);
    ALTER TABLE big_table split partition p0319 VALUES
    (TO_DATE(' 2012-03-19 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    INTO (partition p20120319, partition p20110319);
    ALTER INDEX big_table_pk rebuild;
    EXEC dbms_stats.gather_table_stats(USER, 'BIG_TABLE', CASCADE => TRUE);
    SELECT p.partition_name, p.num_rows
    FROM user_tab_partitions p
    WHERE table_name = 'BIG_TABLE';
    SELECT DISTINCT created_date FROM big_table partition(p20130319);
    SELECT DISTINCT created_date FROM big_table partition(p20120319);
    SELECT DISTINCT created_date FROM big_table partition(p20110319);

  • Looking for must-read programming reference material

    I am relatively new to programming and would like a reading list of must-read programming references. I know several languages, but I am not looking for materials about any particular language; instead, I would like to read up on more fundamental things such as programming concepts, programming algorithms, programming paradigms,  computer architectures, programming style, etc. What are the classic, must-read books and articles that I should begin reading? Thank you for your suggestions.

    I've never used assembly for a 64-bit system, but I'm sure most of the same concepts apply.  In fact I'm pretty sure any change is analogous to the change from 16 to 32 which wasn't that drastic.
    With assembly language, learning the core concepts is the biggest step, the difference between 16 and 32 bit wasn't like learning a new language, rather it was just having more and bigger registers.  I don't do any actual programming in assembly - I dabbled a bit for fun, but I dont 'use' it.  But the concepts I learned through assembly have helped me in every other programming language.  Given that, I'm sure a book on 32-bit assembly would be useful for a 64-bit system.
    Consider too that assembly is a bit of a dying art.  Pair that with the fact that 64-bit systems are relatively new, and there won't be many people who can write a quality book about their lifetime of experience with 64-bit assembly.
    Lastly, (in this very disorganized listing of barely related points), 32-bit to 64-bit is also a trivial change compared to the various instruction sets that have been used.  If/when you understand the similarities and differences between the various assembly languages and instruction sets, is when you really start using the strengths of your particular architecture.  (I'm tempted to make a Matrix reference "There is no spoon").  My favorite assembly languages, just for the fun of it, are One-Instruction-Set systems.  When I realized that one single instruction used repeatedly can create the diversity of programs we use ... I was in geek heaven.  I put that day on par with learning about hardware-software interchangability, and the fact that our modern computers are made up of a vast series of only one type of logic gate ... and the day I learned some lamba calculus ... (end geekgasm)
    Anyhow, learning to 'think' in assembly language can help all your programming (IMHO) regardless of whether you ever speak to your computer in that language.  So, yes, I'd say the 32-bit book would be worth reading even if your current computer is 64.

  • Does anyone know a way to reference values in cells from separate sheets?

    Does anyone know a way to reference values in cells from separate sheets?

    I had not used the iCould version.  I just fired it up. So far I don't know how to click to make a reference to another sheet but the syntax for sheet and table names when typing them in is a little different.  If there is a space character in the name, you have to put single quotes around the name.
    ='Sheet 1'::'Table 1'::B1

  • HT5557 Why are there no ISBN number references for iBooks text books?  Books are assigned with the ISBN reference.

    When text books are assigned, the school/class references them by ISBN numbers.  the iTunes store does not seem to reference the books by ISBN.  How can you determine if it is a correct match?

    Hi Sivaram,
    This error is generally related to issues with Memory.
    For very high performance intensive activities you may even need to increase the memory temporarily...
    Please check with your basis team...
    Regards,
    Ashok

  • About SAP standard reference value of the statistics data ST03N or ST03

    Dear all,
    Did you have a reference value of the statistics data ST03N or ST03?
    Because when I saw the statistics data, I realy could not analysis these statistics data, and I also did not sure the value of the statistics data was right or not.
    Could anybody give me a good advice?
    Thanks a lot~

    Hi CX,
    Glad to know you coming from Mainland China
    Let me help you to check the very 'old' SAP training book BC315 2003 version on Chapter 4-18 it says:
    n     If a problem is detected, the data in the Workload Monitor (Transaction ST03N) can be used as follows to identify the area of the system where the problem is located.
    n     First check for general performance problems affecting all transactions. Good general  performance is normally indicated by:
    Ÿ     Wait time < 10% response time
    Ÿ     Main menu (choose Transaction Profile) < 100 ms
    n     In the Workload Monitor, the following values normally indicate good performance:
    Ÿ     Average roll-in time < 20 ms
    Ÿ     Average roll wait time < 200 ms
    Ÿ     Average load (and generation) time < 10 % of response time (<50 ms)
    Ÿ     Average database request time < 40 % of (response time - wait time)
    Ÿ     Average CPU time < 40 % of (response time - wait time)
    Ÿ     Average CPU time Not much less than processing time
    Ÿ     Average  response time - Depends on customer requirements – there is no general rule
    The last statement is pretty much reasonable coz you cannot expect an old machine running latest SAP version like ECC 6.0 performs as fast as current big giant machine like IBM p5 595.
    From my experience sometimes hardware upgrade/configuration is much easier than an SAP Basis to try to drain his brain to get the 5% performance increase. For example, an ECC 5.0 instance which using EMC storage was configured as RAID 5 initially, however later when it was configured as RAID 1+0 the performance increased a lot --- Bottle net was the storage.
    Many cases like that...What I mean is that by maximum the hardware of the machine is the first thing to do for an SAP Basis... It's not surprised that a box is only utilized 40% of its memory, of course, by mistake.
    Nice to know you again my Mainland friend I've been missing that hometown for long.

  • UDF for getting File Name and updating in target as reference value

    Dear All,
    I am working on File-PI-RFC interface. In one of the columns of RFC, I need to pass the File Name as reference.
    Kindly guide me on which UDF can be used for this requirement.
    Regards,
    NJ

    Hi Nishu Jain,
    Basically my requirement to get Filename in idoc segments in order to validate the posting at month end.
    Its an File to idoc scenario- GL Posting.
    Please check attached UDF and it gives error. Kindly help. Thanks

  • Assign to a globa variable value from html variable.

    I need to assign to a global varaible say pkg1.var1 a value from the form.varaible.value
    how can it be done.
    The code looks like
    htp.p('<form name="f_a" method="get" >');
    htp.p( 'Your ref. nr.: ');
    htp.p('<input type="text" name="f_var1" maxlength="25" onChange="alert(''Your new reference num is ''+f_a.f_var1.value);" value="'||r_offerte.cusrefnur||'">');
    pkg.var1:='f_a.f_var1.value';
    htp.p('</form>');
    This code does not work and the value assigned is null;
    Thanks in advance.

    Hi,
    this forum is about Oracle Forms. maybe you try this in the database forum or Portal.
    Frank

  • Assigning a 'dynamically created sequence' value to a variable

    in my procedure i am creating a sequence on the fly, i am preparing the name with some passed parameters like below
    v_seq_name := 'seq_'||loadid||v_table_name;
    execute immediate 'CREATE SEQUENCE '||v_seq_name||' MINVALUE 1 MAXVALUE 999999999999999999999999999 START WITH 1 increment by 1 cache 20';
    and now after doing some operations i need to assign the current value of sequence to a number variable i tried following but not working
    1) v_curr_value : = v_seq_name.currval ;
    2) select v_seq_name||'.nextval' into v_curr_value from dual;
    can you please suggest me how i can get the value in plsql block.

    DIVI wrote:
    in my procedure i am creating a sequence on the fly, i am preparing the name with some passed parameters like below
    v_seq_name := 'seq_'||loadid||v_table_name;
    execute immediate 'CREATE SEQUENCE '||v_seq_name||' MINVALUE 1 MAXVALUE 999999999999999999999999999 START WITH 1 increment by 1 cache 20';
    and now after doing some operations i need to assign the current value of sequence to a number variable i tried following but not working
    1) v_curr_value : = v_seq_name.currval ;
    2) select v_seq_name||'.nextval' into v_curr_value from dual;
    can you please suggest me how i can get the value in plsql block.Well, you haven't given the error you are getting but I guess the procedure isn't compiling? You need to execute immediate any reference to the sequence.
    Having said that, your architecture is probably wrong if you are dynamically creating things in a procedure.
    Why do you need to create them dynamically?

  • EBS - fill assignment field with bank reference

    Hi,
    We are trying to fill the bank reference for incoming payments in the assignment field for the GL postings. For the 2 banks it is working fine, since they send it in 88 record and we have defined search string to fill in assignment field. We use BAI2 format
    But for 1 bank, the bank reference is sent in 16 record, and search string does not work for 16 record. But i do see the bank reference filled in FEBEP-VGREF.
    With userexit i can probably populate this in the assignment field but is it possible using standard algorithm?

    Also check note 1409628.
    Unfortunately Algorithm 015 is limited to a 13 character reference.
    Note 1409628
    There are dependencies (if you
    use algorithm 015) between the fields FEBEP-/(BSEG-)ZUONR, FEBEP-CHECT
    and FEBEP-/(BSEG-)SGTXT.
    The behavior should be as follows:
    If you enter only a check number the result will be stored in
    FEBEP-CHECT. The algorithm 015 will move this content also to
    FEBEP-ZUONR and creates a record in table FEBCL with this value.
    Later in the program flow the report RFEBBU00 fills SGTXT with
    this value.
    Since FEBEP-CHECT has only 13 charactes, ZUONR is truncated.
    The search string works if you need to remove undesired characters
    from FEBEP-CHECT, but the lenght will always be 13.
    The Note 1409628 doesn't enchange the field, but instead it uses ZUONR
    for the search.
    So in your case I suggest you to use exit 1 FEB00001 as per note 494777.
    Then you can move all 16 characters which are available in FEBRE to
    field FEBCL-SELVON
    You need to program the exit with a LOOP in FEBRE, then move the
    content to FEBCL.
    Kind Regards,
    Fernando Evangelista

Maybe you are looking for

  • How to contact CEO.............HELP

    How do I contact the CEO about my Infinity  problem its been 5 months of empty promises can someone please help Solved! Go to Solution.

  • Disk Layout for a RAC deployment on a shoe string

    Hi, not sure if this is better placed under RAC or Linux group. I am planning a demo RAC system using 2 linux servers and due to stingy managers, the smallest budget ever imagined ! I will have the 2 servers networked but am looking at a cheapo disk

  • Hot to output in QuickTime, codec H264, at 30fps

    Hi.  I'm using Premiere Pro CS6.  I need to output my footage in QuickTime with H264 Codex at 30 fps - but when I use the drop down to select QuickTime Format and select H.264 as my codec, I don't see any place that lets me change my frames per secon

  • Container for attachment to Mail?

    I use Mail and it's very good except for one thing: there is no container for attachments so they end up on your page mixed up with all thetext. All the other e-mail programmes have this (although they are crap otherwise)except Entourage but that cos

  • 2.1.1 cannot login keep spinning

    tried the cmd.exe "Netsh ... Reset" but still not working... how to solve this? thank you!