Using a variable's definition as a variable name

I have a string variable with definition I need to use as a
variable name.
For example, this is super simplified:
var newVariable = 'it is working';
var partOne:String = 'new';
var partTwo:String = 'Variable';
var partThree = partOne + partTwo;
trace("my variable is " + partThree);
Instead of tracing partThree as literally partOne + partTwo
(which traces "newVariable") i'd like it to trace the
Definition of partOne + partTwo (which is "it is working").
I hope this makes sense, help or advice is
appreciated.

...
var partThree = this[partOne + partTwo];
trace("my variable is " + partThree); //will trace: my
variable is it is working
TS

Similar Messages

  • How To Pass Oracle Procedure Value using Tidal Oracle Database Job Definition to Tidal Variable

    how do i pass the parameter value from an oracle database tidal job to a tidal variable? for example i have this oracle db job that is defined to execute an oracle database procedure and i need to pass the parameter value to the tidal variable.
    SQL tab:
    begin
      procedure_get_user_info(<OracleUserVariable.1>);
    end;
    thanks,
    warren

    tesmcmd is a binary that sits in your TIDAL master installation bin directory. It takes options, one of which is varset which let's you set variable values.
    So you can run a system level script ( a unix example is given below) which can set values for group variables.
    Looking at your example you need to find a way to define OracleUserVariable.1
    Where does the value for this variable come from?
    Sample variable set script:
    GROUP_FILE_VAR=`echo $2 | sed -e 's/\.xml\.pgp/\.xml/'`
    tesmcmd varset -i $1 -n GROUP_FILE_XML -v $GROUP_FILE_VAR
    XSD_FILE_VAR=`echo $2 | sed -e 's/\.xml\.pgp/\.xsd/'`
    tesmcmd varset -i $1 -n GROUP_FILE_XSD -v $XSD_FILE_VAR
    And we call the job using
    setvar.sh <JobID..p> <Group.REQUEST_FILE>
    which are overrides from a file event.

  • Using getter/setter for returing a string variable to display on an Applet

    have two classes called, class A and class testA.
    class A contains an instance variable called title and one getter & setter method. class A as follow.
    public class A extends Applet implements Runnable, KeyListener
         //Use setter and getter of the instance variable
         private String title;
         public void init()
              ASpriteFactory spriteFactory = ASpriteFactory.getSingleton();
              // Find the size of the screen .
              Dimension theDimension = getSize();
              width = theDimension.width;
              height = theDimension.height;
              //Create new ship
              ship = spriteFactory.createNewShip();
              fwdThruster = spriteFactory.createForwardThruster();
              revThruster = spriteFactory.createReverseThruster();
              ufo = spriteFactory.createUfo();
              missile = spriteFactory.createMissile();
              generateStars();
              generatePhotons();
              generateAsteroids();
              generateExplosions();
              initializeFonts();
              initializeGameData();
              //Example from Instructor
              //setMyControlPanel( new MyControlPanel(this) );
              // new for JDK 1.2.2
              addKeyListener(this);
              requestFocus();
         public void update(Graphics theGraphics)
              // Create the offscreen graphics context, if no good one exists.
              if (offGraphics == null || width != offDimension.width || height != offDimension.height)
                   // This better be the same as when the game was started
                   offDimension = getSize();
                   offImage = createImage(offDimension.width, offDimension.height);
                   offGraphics = offImage.getGraphics();
                   offGraphics.setFont(font);
              displayStars();
              displayPhotons();
              displayMissile();
              displayAsteroids();
              displayUfo();
              //displayShip();
              //Load the game with different color of the space ship          
              displayNewShip();
              displayExplosions();
              displayStatus();
              displayInfoScreen();
              // Copy the off screen buffer to the screen.
              theGraphics.drawImage(offImage, 0, 0, this);
         private void displayInfoScreen()
              String message;
              if (!playing)
                   offGraphics.setColor(Color.white);
                   offGraphics.drawString("\'A\' to Change Font Attribute", 25, 35);
                   offGraphics.drawString(getTitle(), (width - fontMetrics.stringWidth(message)) / 2, height / 2
                             - fontHeight);
                   message = "The Training Mission";
                   offGraphics.drawString(message, (width - fontMetrics.stringWidth(message)) / 2, height / 2);
                   message = "Name of Author";
                   offGraphics.drawString(message, (width - fontMetrics.stringWidth(message)) / 2, height / 2
                             + fontHeight);
                   message = "Original Copyright 1998-1999 by Mike Hall";
                   offGraphics.drawString(message, (width - fontMetrics.stringWidth(message)) / 2, height / 2
                             + (fontHeight * 2));
                   if (!loaded)
                        message = "Loading sounds...";
                        int barWidth = 4 * fontWidth + fontMetrics.stringWidth(message);
                        int barHeight = fontHeight;
                        int startX = (width - barWidth) / 2;
                        int startY = 3 * height / 4 - fontMetrics.getMaxAscent();
                        offGraphics.setColor(Color.black);
                        offGraphics.fillRect(startX, startY, barWidth, barHeight);
                        offGraphics.setColor(Color.gray);
                        if (clipTotal > 0)
                             offGraphics.fillRect(startX, startY, (barWidth * clipsLoaded / clipTotal), barHeight);
                        offGraphics.setColor(Color.white);
                        offGraphics.drawRect(startX, startY, barWidth, barHeight);
                        offGraphics
                                  .drawString(message, startX + 2 * fontWidth, startY + fontMetrics.getMaxAscent());
                   else
                        message = "Game Over";
                        offGraphics.drawString(message, (width - fontMetrics.stringWidth(message)) / 2, height / 4);
                        message = "'S' to Start";
                        offGraphics.drawString(message, (width - fontMetrics.stringWidth(message)) / 2, height / 4
                                  + fontHeight);
              else if (paused)
                   offGraphics.setColor(Color.white);
                   message = "Game Paused";
                   offGraphics.drawString(message, (width - fontMetrics.stringWidth(message)) / 2, height / 4);
         public String getTitle() {
              System.out.print(title);
              return title;
         public void setTitle(String title) {
              this.title = title;
    }displayInfoScreen method in class A calls out for getTitle( ) to be displayed on an applet as an initial display string for the application.
    The instance variable title is set by setTitle method which is called out in class testA as follow,
    public class testA extends TestCase
          * testASprite constructor comment.
          * @param name
          *          java.lang.String
         public testA(String name)
              super(name);
          * Insert the method's description here.
          * @param args
          *          java.lang.String[]
         public static void main(String[] args)
              junit.textui.TestRunner.run(suite());
              // need to figure out how to get rid of the frame in this test
              System.exit(0);
         public static Test suite()
              return new TestSuite(testA.class);
          * Basic create and simple checks
         public void testCreate()
              A theGame = new A();
              assertNotNull("game was null!", theGame);
          * Basic create and simple checks
         public void testInit()
              A theGame = new A();
              Frame gameFrame = new Frame("THE GAME");
              gameFrame.add(theGame);
              int width = 640;
              int height = 480;
              gameFrame.setSize(width, height);
              // must pack to get graphics peer
              gameFrame.pack();
              theGame.resize(width, height);
              theGame.setTitle("TEST THE GAME");
              theGame.init();
              assertEquals("ASprite width not set", A.width, width);
              gameFrame.dispose();
              gameFrame.remove(theGame);
    }Basically, class testA invokes the init( ) method in class A and start the applet application. However, it displays a white blank display. If I change the getTitle( ) in the displayInfoScreen method to a fixed string, it works fine. Did I forget anything as far as using getter & setter method? Do I have to specify some type of handle to sync between setter and getter between two classes? Any feedback will be greatly appreciated.
    Thanks.

    Your class A extends runnable which leads me to believe that this is a multi-threaded application. In that case, title may or may not be a shared variable. Who knows? It's impossible to tell from what you posted.
    Anyway, what is happening is that your applet is being painted by the JFrame before setTitle is called. After that, who knows what's happening. It's a complicated application. I suspect that if you called setTitle before you added the applet to the frame, it would work.

  • Use varialbe as a value in substitution variable

    Hi there,I incrementaly update my cube day by day.And I set a user variable in autoexec.bat to get the current date,eg '2003-06-23'.Could I use such variable as a variable's value in substition variable ?My platform is 6.5 on w2k.Regards,luau

    You can use that in a MAXL script to set the substitution variable.the MAXL script would be something like:Alter database $4 drop variable $5;alter database $4 add variable $5 $7 ;where: $4 is the app.cub $5 is the substitution variable name $7 is the value of the subs. variableRich Sullivan - Beacon Analytics

  • ORA-04054 : using variable substitution for the database link name

    Hi,
    I need to use variable substitution for the database link name.
    Here is my command :
    declare
    GET VARCHAR2(50);
    begin
    select OIA_GET_DESIGNATION into GET from INFODRI.OMA_IN_ARTICLES;
    for rec in (select * from [email protected]_GET_DESIGNATION)
    LOOP
    dbms_output.put_line('TEN_CODE vaut : '||rec.ten_code);
    END LOOP;
    exception
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERREUR ORACLE DETECTEE : '||rec.OIR_CUR);
    DBMS_OUTPUT.PUT_LINE('Message Erreur : '||SUBSTR(SQLERRM,1,245));
    :crd := -1;
    end;
    When I run this programm, I receive the error :
    ORA-04054: database link REC.OIA_GET_DESIGNATION does not exist
    When I replace :
    for rec in (select * from [email protected]_GET_DESIGNATION)
    by :
    for rec in (execute immediate 'select * from tensions@'||rec.OIA_GET_DESIGNATION)
    I receive the error :
    PLS-00103 : Encountered the symbol "IMMEDIATE" while parsing.
    What can I do to resolv my problem ?
    Regards,
    Rachel

    What is the name of the DB Link and the name of the object you are selecting
    from?
    I find it easier to create a view on the remote object then use that in selects.
    e.g,
    Link Name = MyLink
    Object_name = Addr_Loc
    create or replace VIEW Rem_Addr_Loc AS
    select * from addr_loc@mylink;
    In the code I then use the view
    begin
      for C_Rec in (select * from Rem_Addr_loc)
      loop
         dbms_output.put_line('Rec: '|| C_Rec.Col1);
      end loop;
    end;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Trying to use multiple if statements to set a variable in my script

    I am importing a csv file to create user accounts.. i have it working.. but now i want to have the script look at a variable, and based on that variable set other variables, like the ou or home directory path etc..
    here's what i have so far.. it seems to select the 2nd option ASH unless i # it out then it selects the first option..i am clearly missing something simple here.... i can't just use an else statement as i will need many lines of logic to support the many
    different ou's, home dir shares etc.. globally...
    import-csv $csv | foreach-object {
     $site=$_.site
                       $HomeDArl= "\\teleflex\global\home\medical\na\arl"
                       $HomeDASH= "\\ashfs01.arrowintl.com\user"
                            if ($site='ARL'){
                                $homed = $HomeDArl
                            if ($site='ASH'){
                                $homed =$HomeDASH 

    Thanks for the push in the right direction..
    Import-CSV $filepath | ForEach-Object {
                                  $site=$_.site
                                   switch ($site) {
                                    Arl {$homed = "\\teleflex\global\home\medical\na\arl"}
                                    Ash {$homed ="\\ashfs01.arrowintl.com\user"}

  • Label of attribute when used as View Criteria item with Bind Variable

    I've a VO attribute used in a named search with this requirement:
    The attribute provides has an optional View Criteria item that has a bind variable operand. The bind variable is in the WHERE clause. The attribute has an LOV. The choice list for the specified View Criteria item should display the label "Effective Release". However, in all other contexts, including the search results table and the dropdowns the user can optionally add in an advanced search, the label displayed for the attribute must say "Release".
    In other words, the default label for the attribute should be "Release" in all but one context - which is that when the dropdown list for the viewCriteria item using the bind variable is displayed, the label should say "Effective Release".
    Note that if the user moves to Advanced Search and selects adds the attribute as a search criteria, this latter usage should be labeled as "Release". (in this case, in other words, the dropdown that displays by default and has the bind variable operand is labelled "Effective Release", the one the user added in advance search is labelled "Release")
    here is the View Criteria item source xml:
          <ViewCriteriaItem
            Name="ReleaseId1"
            ViewAttribute="ReleaseId1"
            Operator="="
            Conjunction="AND"
            Value=":v_ReleaseId"
            GenerateIsNullClauseForBindVars="false"
            ValidateBindVars="true"
            IsBindVarValue="true"
            Required="Required"/>I've experimented by putting "Effective Release" as the label for the bind variable as below. However, ADF does not use that value to display, it defers to the attribute value:
    <Variable
        Name="v_ReleaseId"
        Kind="viewcriteria"
        Type="oracle.jbo.domain.Number">
        <Properties>
          <SchemaBasedProperties>
            <LABEL
              ResId="EFFECTIVE_RELEASE_LOV"/>
          </SchemaBasedProperties>
        </Properties>
      </Variable>The reason for the requirement, if it matters, is that the View Criteria item with the bind variable ("Effective Release" queries a range of values using the analytic function rank(); the bind variable is in the WHERE clause. Otherwise, the dropdown that can be added in advanced search ("Release") looks for exact matches on the attribute value. So since the search functionality is different, the label should be different.
    Am using 11g.
    Thanks for your help.

    Hi
    I have found that when using validation type Key Exists and the VO is in the local application, then the bind variable is available in the Create Validation wizard. When I try and create a validator on a VO that is core to all my applications, then I put that VO into an ADF library, the bind variable parameter is not available for mapping to my entity object attribute, even though I can select the VO to create a view accessor from the ADF library.
    Possible bug?

  • Use swf to add to captivate score variable

    Hi,
    Challenge: I'm trying to add to / update the quiz score in captivate from a swf. My swf is added on a blank slide in a captivate quiz using Insert>Animation.
    What I've Tried: In my flash/swf file I have a button with the AS2 code (I could change to AS3 if the solution needed it):
    on (press) {
    _root.cpQuizInfoPointsscored = 100;}
    The swf also contains a text field set to the variable _root.cpQuizInfoPointsscored
    My results so far: When I publish the captivate project, the button in my swf file works, and the variable text field is updated to read '100'. However when I get to the captivate score page the score from my swf is not included.
    I would really appreciate any help or advice on this problem. Thanks in advance.
    Experience: I'm a captivate newbie and have had a bit of experience with Flash.

    Hello,
    I'm not at all a Flash-expert but played a lot with variables and advanced actions in Captivate. As far as I know (and I had some confirmation from the Adobe people) you cannot change the cpQuizInfoPointsScored variable that can be transferred using SCORM (and that is also the one displayed in the score slide). You can of course change a user variable, but not this system variable. And this is valid for CP4 and CP5 (you did not mention the version you are using - but since you are talking about AS2 I presume CP4). What could be possible is to create a Question widget instead of an animation, because widgets can communicate with Captivate and the score attached to a Question widget will be taken into account for the total score.
    Lilybiri

  • How to use xtags: when or xtags: if on variable id

    <!-- <xtags:variable id="data" context="<%=specs%>" select="//header/msds"/>
              <a href="/DATA/<%=data%> target="#">MSDS</a>
    -->
    My problem is if the value of data is null it gives the error page not found in the explorer but I want to href to some html file that for this item data is not there(actually data is holding a pdf file name if no file is attched to this item then i want to display the not data vailable for this item
    how I can use xtags: when
    xtags:otherwise doing checking on the id data
    Thanks

    Thanks for response
    I got the same code from xtags library but still the problem is
    <xtags:choose>
    <xtags:when test="firstName">
    Hello <xtags:valueOf select="@firstName"/>
    </xtags:when>
    <xtags:otherwise>
    Hello there friend
    </xtags:otherwise>
    </xtags:choose>
    I am not clear that this firstname is the is id or what
    I wanted to confirm that I have to use this whole code inside a xtage: variable
    like for example my code is
    *<xtags:variable id="msds" context="<%=specs%>" select="//header/msds"/>*
    I have to validate msds that if it has some value go for it other was I can provide ahtml file displaing no file i sthere

  • Assigning a Jython variable value to an ODI variable

    I have to implement database cursor functionality in ODI.
    For storing the returned values from database, I am using a Jython list.
    The next functionality that I have to implement is as follows:
    (i) For each value in the Jython list, I have to pass that value as a variable to an interface and then execute the interface
    (ii) Return back to the Jython list to get the next value in it
    (iii) Execute the interface for the new value from Jython list
    (iv) Have to execute the interface for as many values as in the list and stop when list is over.

    Hi,
    Thanks for your replies.
    I tried your method of using source as a query in procedure and using ODI startScen in the Target of the same procedure. But the scenario runs only once, and then stops even though the Source query returns 4 rows.
    Do we have to write Source and Target in separate steps of the procedure?
    Does ODI store the many records returned into some internal variables?
    I need to implement a cursor functionality so what is the best approach?
    Can i pass array variable value to some odi variables and do a loop?
    I used a workaround....it works but dont know if that's a good way of doing things:
    I retrieved all the different values that I need in a string by appending the values(this was done using Java loop).
    In my next step in the procedure I call a scenario(package which has some variables and my interface), which passes this long variable from Java as <@...@>
    Then in the package I use an iteration variable which is used to find out the SubString position so that I can extract the correct string to use for my Interface in the next step of the Package.
    It is working fine as of now.....but things could be made simpler if I could call the scenario in the Java loop, then I wouldn't need the iteration variable etc.

  • Variable being overwritten in the Variable Substitution (File Adapter)

    In the File adapter Receiver Communication Channel, I am using variable substitution.
    The problem is that the first variable I use (userid) is being overwritten by the second variable (filenumber). How can I fix this problem?
    File Name Scheme: %userid%_%filenumber%.xls
    Target XML:
    ============
    <?xml version="1.0" encoding="UTF-8"?>
    <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40">
    <Worksheet ss:Name="FileName">
    <Table x:FullColumns="1" x:FullRows="1">
      <Row>
        <Cell><Data ss:Type="String">0209519</Data></Cell>
        <Cell><Data ss:Type="String">32226v2 v1.1</Data></Cell>
      </Row>
    Variable Substitution:
    =======================
    userid          payload:Workbook,1,Worksheet,1,Table,1,Row,1,Cell,1,Data,1
    filenumber    payload:Workbook,1,Worksheet,1,Table,1,Row,1,Cell,2,Data,1
    Expected Output:
    ==============
    0209519_32226v2 v1.1
    Actual Output:
    ============
    32226v2 v1.1_32226v2 v1.1
    Thanks for your help.

    Thank you for all your suggestions. I decided to modify my target XML and concantinate all the fields into one string so I don't have to worry about the variables being overwritten in the variable substitution.
    Target XML:
    ============
    <?xml version="1.0" encoding="UTF-8"?>
    <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40">
    <Worksheet ss:Name="FileName">
    <Table x:FullColumns="1" x:FullRows="1">
    <Row>
    <Cell><Data ss:Type="String">0209519_32226v2 v1.1</Data></Cell>
    </Row>
    Variable Substitution:
    =======================
    filename payload:Workbook,1,Worksheet,1,Table,1,Row,1,Cell,1,Data,1
    Expected Output:
    ==============
    0209519_32226v2 v1.1
    Actual Output:
    ============
    0209519_32226v2 v1.1

  • Variable replacement path with another variable

    Hi Guru's
    I'd like to use the functionnality of replacement path from a variable.
    Well, i have variable V_1 which is a basic manual entry variable based on a date infoobject. this variable is not mandatory and accessible.
    And i have the variable V_2 which should be based on V_1 so i created V_2 with a process replacement path and in the replacement tab i put V_1 (i try with the list but i didn't find my V_1)
    But the result is that V_2 is always empty but i have no problem when i check the query
    So do you have any idea ?
    Why i can not see the V_1 in the list of variable from the replacement ?
    I don't want to use by exit. i know that it is possible but i want to use the main simple functionnality for flexibility is maintenance by users.
    Thanks for help
    Cyril

    thanks for your answer,
    svu123, my V_1 variable is of course in a correct status to be used. i made test in first without V_2.
    And when i create V_2 in the first tab i activated correctly the replacement in processing type. if not i can not choose
    the query or variable source and i can not see the list of variables.
    Rakesh, i tried what you answered without results. i check different variables that are available in the list and i have
    lots of different variables (all in ready for input) but i have interval, multiple single values, SAP standard variables my own variable on other fields.
    any other ideas ?
    many thanks
    Cyril

  • Assign a Javascript variable value to a ABAP variable

    Hi,
       I wish to assign a javascript variable value to  a ABAP variable. Any ideas how to do that?
        Many thanks.
    Rgds,
    Bernice

    Here's another suggestion for you.
    BSP Application: SBSPEXT_HTMLB
    Check out the radionbuttongroup.bsp
    So then instead of using a standard HTML radio buttons you can use the HTMLB element with the parameter for onClick set then in your DO_HANDLE_EVENT you can read the value.
    VIEW
    <htmlb:radioButtonGroup id="radio">
      <htmlb:radioButton id="id_link"
                       text="Link"
                    onClick="myClickHandler"/>
      <htmlb:radioButton id="id_unlink"
                       text="Unlink"
                    onClick="myClickHandler"/>
    </htmlb:radioButtonGroup>
    DO_HANDLE_EVENT
      DATA:   lt_event        TYPE REF TO if_htmlb_data.
      lt_event = cl_htmlb_manager=>get_event_ex( request ).
      if lt_event IS NOT INITIAL.
        if  lt_event->event_name = htmlb_events=>radiobutton.
           case lt_event->event_id.
            when 'control_id_link'.
              schalter = ' '..
            when 'control_id_unlink'.
              schalter = '1'.
           endcase.
        endif.
      endif.
    There is an example of how to use it and read it in the DO_HANDLE_EVENT you then just have to pass the variable around (in this example the variable name is schalter and is defined as char1 in the class)

  • Variable description not appearing in variable screen

    Hi Experts,
    we have created a variable which is ready for input. While executing the query, the variable description is not appearing in the variable screen, instead variable technical name is only appearing in the variable screen.
    The same variable is being used in two queries. In one query, it displays the technical name and in the other query it displays the description of that variable.
    your solution would be greatly appreciated.
    Thanks,
    Franks

    yeah......it is strange.  As soon as the variable screen comes up, all the variables normally shown in description rather than a technical name, unless you select "Key & text"  OR only "key" OR only "Text".
    But, in this case this particular variable is showing in technical name, the description itself is disappearing from the variable screen.
    No changes have been made to variable. The same variable displays with descriptions in other query.  so difficult to analyze.

  • Concatentating of variables issue - Getting Not a variable debugging.

    I'm building a insert statement based on a view I have by building
    while stepping thru a bulk collect. I'm Concatentating my 4 varibles to
    create a final sql statment that I want to use for Execute Immediate.
    However when Concatentating the four variables the last variables for some
    strang reason null out the variable.
    While debugging I see all 4 variables populated ok, I played with changing the
    variables lengths to see if that was the issue but I still have the issue.
    Any idea why I would get "not a variable" when Concatentating the final variable?
    Below is the Procedure with 2 lines showing the partial one that works and the
    full line that fails.
    CREATE OR REPLACE Procedure File_Load_Proc Is
    Type Fl_Tab Is Table Of File_Load%Rowtype Index By Binary_Integer;
    Recs Fl_Tab;
         ValCols Varchar2(1000);
         SelCols Varchar2(1000);
         SqlStatI Varchar2(200);
         SqlStatS Varchar2(200);
         FinalSql Varchar2(32767);
         v Integer;
    VMp# Map.Mp#%Type := Null;
    Procedure Get_Data
              Is
    Begin
    Select * Bulk Collect
    Into Recs
    From File_Load;
    End Get_Data;
    Procedure Perform_Insert
              Is
    Begin
    Null;
              --Execute Immediate FinalSql;
    End Perform_Insert;
    Procedure Process_FileLoad_Data
              Is
    Begin
    For Indx In 1 .. Recs.Count Loop
                        --First Record from Map
                             If Recs(Indx).RO# = 1 Then
                             If VMp# Is Null Then
                                       VMp# := Recs(Indx).MP#;
                                  Elsif VMp# <> Recs(indx).MP# Then
         v := Length(SqlStatI || Rtrim(ValCols,',') || ') ' || RTrim(SelCols,',') || SqlStatS);
    --This shows values the partial string values
         FinalSql := RTrim(SelCols,',') || SqlStatS;
                                            --When I add all the pieces to the sql statment the variable contains no data
    FinalSql := SqlStatI || Rtrim(ValCols,',') || ')' || RTrim(SelCols,',') || SqlStatS;
                                  Perform_Insert;
                                  End If;
                                  SqlStatI := 'Insert Into ' || Recs(Indx).SD_Into_Tb || ' (';
                                  ValCols := Null;
                                  SelCols := 'Select ';
                                  SqlStatS := ' From ' || Recs(Indx).SD_Select_Tb || ';';
                             End If;
                             ValCols := ValCols || Recs(Indx).SD_Name_Out || ',';
                             SelCols := SelCols || Recs(Indx).SD_Name_In || ',';
    End Loop;
                   --Insert last Map Records;
    FinalSql := SqlStatI || Rtrim(ValCols,',') || ')' || RTrim(SelCols,',') || SqlStatS;
         Perform_Insert;
    End Process_FileLoad_Data;
    Begin
    Get_Data;
              -- Loop Thru Records and build Insert Statements
    Process_FileLoad_Data;
    Commit;
    Exception
    When Others Then
    Rollback;
    Raise;
    End File_Load_Proc;

    This could be an artifact of whatever front end program you're using to debug.
    If I were you, I'd try adding debug statements (via your custom debug log package if you have one or via dbms_output.put_line if you haven't - not forgetting to set serveroutput on first *{;-) ) to record what each value was. That should help you to pinpoint what the issue might be.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • Error while trying to change or save as  query in query designer

    Hi , When we are trying to change or do a save as to a query in the query designer,it is giving us an error stating"'An unexpected object variable or with block variable not set'error occured in wdbrlog 1 error(s) are logged". We have searched in SDN

  • Weblogic deployment error

    I am trying to deploy a Very simple JFS Application that Connects to a Webservice and sends a request. When I run it in JDeveloper locally it works, but when i Deploy to Weblogic i get the following error: oracle/jrf/PortabilityLayerException [03:24:

  • Data mismatch between TABLE and Std. Extract str. (AFPO & 2LIS_04_P_MATNR)

    Hi, I am getting data mismatch in ECC standard table and ECC standard extract structure. Please help me. I am using 2LIS_04_P_P_MATNR data source (standard extract structure). <b>I have following data in ECC Table (AFPO - Order Item).</b> AUFNR (Orde

  • Reporting bugs to Apple?

    Hi all, I've looked all over the Apple site, through the support pages etc, I can't find a page or e-mail address etc to report a bug to Apple anyone know how to go about this? this Apple TV re-syncing bug is driving me nuts, and well user to user fo

  • Oracle 9i - Java

    Does anyone know of a good source for understanding how to incorporate the new database interaction features with Java? Thanks, Zeke