How to pass one sapce to char type variable

Hi,
There is one import parameter in rfc "zstat" with char type and length 1. I want to pass value equal to one space in this variable during execution of RFC so that it passes the condition in code where it is not initial.
But during runtime it doesnt store value equal to one space and become initial.
So my question is how to pass value equal to one sapce to this variable.?
Thanks in Advance!!!
-Harkamal

Hi!
If it a char type, then its initial value is a SPACE character.
If it confuses the program and you wanted to use it another way, then use numbers (type i - integer). It's initial value is "0".
Or try to use other flag characters, like "T" for true and "F" for false values.
Regards
Tamá

Similar Messages

  • State machine custom task workflow how to pass one task field value to the next task field

    i am using ItemMetadata.xml to pass value from list to custom task first value its passing the but second value is showing as null
    plus how to pass one custom task value to the next custom task
    i.e one supervisor approver comments submitted field i want to see on department manager approval custom task which is the next approver from supervisor
    ows_firstfield=""
    ows_SecondField=""
    the above ows fields are from list
    in this i am unable to retrive the second value in the task form this is my first query?
    second query is that how can we pass one task field value to next approver task field value?
    any idea
    MCTS,ITIL

    What type of workflow is this?  IS this Visual Studio or SharePOint designer or third party (K2, Nintex, etc...)?  YOu should be able to get ahold of the task that was edited via the correlation token, and then grab any value you want from that
    task (wether it be a custom field or a standard worfklow task field). 
    It would help to know what you are using to build the workflow.
    Thanks!

  • How to pass values to XML complex type of a Webservice using PL/SQL

    HI,
    I need to call a web service from PL/SQL that has an complex type element. That complex type element has 4 child elements each of integer type.
    I want to pass values for this complex type using SOAP_API.add_parameter but I can't understand how to pass the values.
    <xsd:element name="getBestFit">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element maxOccurs="1" minOccurs="1" name="circleId" type="xsd:string"/>
                        <xsd:element maxOccurs="1" minOccurs="1" name="usage" type="Q1:UsageInfoType"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
    <complexType name="UsageInfoType">
         <sequence>
              <element maxOccurs="1" minOccurs="1" name="a1" type="int"/>
              <element maxOccurs="1" minOccurs="1" name="a2" type="int"/>
              <element maxOccurs="1" minOccurs="1" name="a3" type="int"/>
              <element maxOccurs="1" minOccurs="1" name="a4" type="int"/>
         </sequence>
    </complexType>
    Please help me in getting a solution here.
    Thanks in advance.

    Have you tried doing a google search on "SOAP_API.add_parameter" to see what comes back? I see a lot of hits come back so hopefully one of those will help you. I've never used soap_api as I used utl_http to make WS calls. This required me to build the SOAP message (aka XML of a specific nature) by hand and then pass it to the WS using utl_http. How this approach is done via SOAP_API, I can't say.

  • Passing a CHAR type variable to to_date

    I am loading and transforming some legacy main frame data that stores dates in a Julian format number field, roughly an Oracle RRDDD date format. Some date between 2000 and 2009 drop the leading 0s, for example in 2009, giving a data like 931, which could be Jan 1, 1993 or  Jan 31, 2009. I can stuff a leading zero(s) on the number field to give me '0931' in a char field, which my Oracle top_date will interpret as Jan 31 2009 with the correct mask 'RRDDD." BUT, I cannot find a way to pass my character sting '0931' which is a variable to my my Oracle to_date, which seems to want the enclosing single quotes, even from a character variable:
    Thus
    my_Julian_date = 345  --  Is February14  ,2003, leading 0's not available from legacy source |
                                                                                                                                                        |
    SELECT TO_DATE('00345', 'RRDDD') FROM DUAL    returns 14-FEB-03    OK                     |
    SELECT TO_DATE(345, 'RRDDD')      FROM DUAL    returns 14_FEB-03    OK too              |
                                                                                                                                                        |
    but if I put my date as character into a variable,                                                                        |
    DECLARE my_date VARCHAR2(5);                                                                                         |
    BEGIN                                                                                                                                       |
        my_date   := '00345' ;                                                                                                           |
        SELECT TO_DATE(   my_date, "RRDDD') ... fail to read my_date                                     |          /* please ignore that this select from DUAL won't work */
        SELECT TO_DATE('|| my_date||', "RRDDD') ...                                                                  |            /* with the my_date variable, The issue is to_date accepting a variable value */
    How can a pass a varchar2 or char VARIABLE  with a VALUE like '00345' to TO_DATE?

    Thanks,
    but maybe I wasn't good at my description. My source file has a field cit_dte which is a numeric 5 digit representation of a Julian year of form RRDDD. It drops leading zeros for years 2000 to 2009 and would have a value lke  332 for February 1, 2003, or 4365 for 04365, thus resolving to incorrectlly to 65th day of 1943 or 365th day of 2004 with the leading 0,
    I need to pass a string like 0421  as a char variable value, my_date, rather than a hard coded string, to to_date like ...
                       TO_DATE(my_char_date,'RRDDD')
    rather than TO_DATE('0421','RRDDD')
    In your example, you are hard coding the '00345' into to the my_date VARCHAR2 (5) variable but I have to load my_date from a function call IN variable of numbere type, after converting the IN parameter number type to the my_date varchar2 (5) variable.
    My flow is  (1.)    NUMBER --> (into function ny_date()  as a number type)
                      (2.)  --> convert parameter IN number type to my_date VARCHAR2(5) variable with leading 0s added as needed (in a case statement)
                      (3.) --> pass variable my_date [character string] to  TO _DATE()
    BUT, TO_DATE only seems to accept hard coded character strings. likle '0421' an not a varchar2 variale with a value of 0421. I tried prepedning the parameter into to_date with
    ...to_date:'||my_date||' , RRDDD) to wrap some single quotes aroudnt he my_date variable value, but that does not work.

  • How to pass one row of a result set to a cffunction?

    I can pass the entire result set of a query to a cffunction,
    but the function only needs one row.
    The code below is a syntax error, where "3" is array index
    notation for the third row of the result set.
    What is the correct way to pass one row of a result set to a
    cffunction?
    Thank you.

    iirc, cf does not allow one to reference and access a row of
    a resultset
    like that.
    you will have to create a structure/array that holds the data
    from
    specific query row and pass that to your function. looping
    over
    queryname.columnlist list will make it easier and not
    specific to any
    particular query. make it into another function that accepts
    a query and
    row number as arguments and returns a struct/array of that
    row data (or
    automatically passes it to another function).
    sample code for creating a structure of specific query row
    data:
    <cfset rowstruct = {}>
    <cfloop list="#queryname.columnlist#" index="col">
    <cfset rowstruct[col] = queryname[col][somerownumber]>
    </cfloop>
    <cfdump var="#rowstruct#">
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • How to Pass dashboard prompt value to RPD variable??

    Hi Experts,
    I am creating RPD variable with below query in initialization block
    SELECT extract(month from Max(report_date))  from xyz_date_dim where report_id=14 and year=:YEAR
    I am having YEAR prompt in dashboard..from this RPD variable i want to get MAX(month) from selected year in dashboard.Here my problem is unable to pass selected YEAR to RPD Initialization block.
    I read some threads we can pass user selected values to session variables. If possible can any one help me how to pass variable to achieve my requirement.
    can any one help me in this....
    Thanks,
    KSS.

    So you want to pick a month in a dashboard prompt and have the answers report filter for that month, and return results for that month, month -1, month -2 etc etc.
    If so try the following, lets assume your measure is simply called 'count'
    in the BMM you have measure 'count' with aggregation set.
    Create a new measure in the BMM called 'count MAGO' or whatever you want (this will be month -1)
    in the logical forumula for that column, use the AGO function, syntax would be AGO(count measure,<time dimension.Month>, -1) - this function is found under the 'Time Series Functions' category.
    repeat steps to create 'count 2MAGO' and use -2 in the AGO function to take off 2 months.
    Repeat for however many Mth Ago's you want.
    Then in answers, simply use is prompted on your month fied to filter the report for the relative month, select your 'count', 'count MAGO', 'Count 2MAGO' etc, the measure will be calculated for prior months relative to your filtered month.
    Sorted?

  • How to pass a value to a bind variable in a query report in oracle apex

    Hi Guys,
    I have requirement to send weekly reports via email to some users. The users should receive their own records in the report. The user details is stored in a table. What I am planning to do is to create a report query in oracle apex to generate the report and then run a function/procedure via a scheduler to email the report to respective users. Now my query is ............. is it possible to pass a value (user name) to the report query to pull records of only that user? I know we can have bind variables in the report query but I have no idea how to pass a value for bind variables from a function/procedure.
    Can anyone help me on this issue or suggest a better approach?
    Thanks,
    San

    You need to use dynamic sql
    But please keep in mind that since you're using Oracle you may be better off posting this in some Oracle forums
    This forum is specifically for SQL Server
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to pass username;password in to header Variable

    Hi All,
    I have to invoke client SOAP WSDL based web service, He has given the URL. I want to invoke it from bpel. It is sync based web service.
    Please have look at sample input data. in the header section there is element called Token.  what i need to do here I need to pass the user name and password those separated by ;
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.xxxxxxx.com/2005/">
       <soapenv:Header>
          <ns:AuthorizationToken>
             <ns:Token>username;password</ns:Token>
          </ns:AuthorizationToken>
       </soapenv:Header>
       <soapenv:Body>
          <ns:WEBGet>
             <ns:key>pass the input value</ns:key>
          </ns:WEBGet>
       </soapenv:Body>
    </soapenv:Envelope>
    Please advise me how to pass these values when i am invoking it through BPEL.
    Thanks,

    Please help me out, It is little bit urgent.

  • Pls help...How to pass a executed value to a variable?

    hi everyone im new here..
    ok im having prob in passing the executed value of a string into a variable for me to manupulate the value. sample codes as below :
    declare @Str varchar(500)
    declare @Str1 varchar(50)
    declare @Int varchar(50)
    declare @Str2 varchar(50)
    set @Str1 = 'where ET.isVerified = 1'
    set @Str = 'select sum(ET.Sundries+ET.Entertainment+ET.BalReimbursement+ET.Fee+ET.TrainerCharges+ET.SeminarPack+ET.Food+ET.Accomodation+ET.Flight) from ExpensesTransactions ET ' + @Str1
    EXEC(@Str)
    Answer : 16935.00
    so now i want to pass the output(Answer) into a variable so that i can insert the value into a table. anyone can help me in this thing . thank you so much..
    regards
    -nash-

    hi Jurek
    thanx for ur help dude, i change as what u said but i got this error msg "Incorrect syntax near '@Answer'"
    declare @Str varchar(500)
    declare @Str1 varchar(50)
    declare @Int varchar(50)
    declare @Str2 varchar(50)
    declare @Answer varchar(50)
    set @Str1 = 'where ET.isVerified = 1'
    set @Str = ' BEGIN select sum(....) INTO @Answer From ExpensesTransactions ET ' + @Str1 + ' END;'
    EXEC(@Str)
    print @Answer
    but then i change the script abit to 'Begin select....' + @Answer + ' From ..' + @Str1 + 'END;'...this time i got no error msg but there is no value in variable @Answer...
    thanx everyone
    - nash -

  • How to pass one lookup value to another lookups

    Hi All,
    I've two relational sources with a join condition,added lookup and kept join condition too.I've to pass this lookup value to another lookup.
    let me know how we can handle this in odi.
    Thanks

    If you don't use "expression in the SELECT clause" option, why don't you simply drag and drop your file datastores in your canvas and do a standard join?
    The result will be the same.
    See here for more details : Re: Lookup Vs Join

  • How to pass one value from method 1 to method 2 in BADI...

    Hello Experts,
    How do I pass a custom variable from lets say method 1 to method 2 in BADI? Do I need to
    enhance it? For example, I need to pass my flag variable which contains 'X' from method as exporting
    and importing in method 2.

    Hi,
    Yes declare a flag in first method and make it 'X' when you get the condition that you have made changes to item values and export it to memory id ...
    EXPORT GV_FLAG TO MEMORY ID 'SSS'.
    and in second method import the same...
    IMPORT GV_FLAG FROM MEMORY ID 'SSS'.
    and according to the value write the logic...
    Thanks,
    Shailaja Ainala.

  • How i pass one pages value to other age.

    Hi All,
    I am working in oracle Project module(12.1.3).
    when i open a project these are the Global button(project,Resource,workplan,Control,Financial,Reporting)
    i want to create a new(PMS_Classification) and i created it.
    Navigation:(project Respensibility->project list->select a project->project Home page)
    My requirement is: when i click the PMS_Classification it takes the Project_id value and populate the field LineofBusiness.
    My Function URL:OA.jsp?page=/PMS_Classification/oracle/apps/pa/classification/webui/PMS_ClassificationPG&akRegionApplicationId=275&addBreadCrumb=RS
    MY controler code:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    pageContext.putSessionValue("paCIReturnToList", (new StringBuilder()).append(pageContext.getCurrentUrlForRedirect()).append("&addBreadCrumbs=RS").toString());
    String s1 = pageContext.getParameter("paProjectId");
    PMS_ClassificationAMImpl AM = (PMS_ClassificationAMImpl)pageContext.getApplicationModule(webBean);
    AM.CalculateLineofBusiness(pageContext, webBean);
    My AM code:
    public void CalculateLineofBusiness (OAPageContext pageContext, OAWebBean webBean){
    /*String LineofBusiness = pageContext.getParameter("Line_of_Business");
    String Duration = pageContext.getParameter("Duration");
    String Budget = pageContext.getParameter("Budget");
    String TeamSize = pageContext.getParameter("Team_Size"); */
    pageContext.putSessionValue("paCIReturnToList", (new StringBuilder()).append(pageContext.getCurrentUrlForRedirect()).append("&addBreadCrumbs=RS").toString());
    String s1 = pageContext.getParameter("paProjectId");
    String LineofBusiness = "";
    if(s1 != null)
    try
    PreparedStatement ps = getOADBTransaction().getJdbcConnection().prepareStatement("select class_code from Pa_project_CLASSES where PROJECT_ID = " + s1 + " AND CLASS_CATEGORY LIKE 'Line of Business'");
    ResultSet rs = ps.executeQuery();
    while (rs.next())
    LineofBusiness = rs.getString(1);
    catch(SQLException e)
    System.out.println("Exception is:" + e.getMessage());
    else {
    throw new OAException("ProjectId not found",OAException.INFORMATION);
    OAMessageTextInputBean text=(OAMessageTextInputBean)webBean.findChildRecursive("Line_of_Business");
    text.setText(pageContext,LineofBusiness);
    But when i Click the global link my page is displayed but in this page Line_of_Business value did not displyed.
    Please any one Help on this.
    Regards
    Rabindra.

    Hi Anand,
    It is gloval Button.
    The project Home page Controler code is:(ProjectHomePageLayoutCO)
    package oracle.apps.pa.project.webui;
    import java.io.Serializable;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAStaticStyledTextBean;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean;
    import oracle.apps.fnd.framework.webui.beans.nav.OABreadCrumbsBean;
    import oracle.apps.pa.progress.PageLayoutUtils;
    import oracle.apps.pa.structure.webui.StructureUtils;
    import oracle.apps.pa.util.webui.*;
    import oracle.jbo.Row;
    public class ProjectHomePageLayoutCO extends PAPageLayoutControllerImpl
    public static final String RCS_ID = "$Header: ProjectHomePageLayoutCO.java 120.1 2005/07/12 11:29:26 appldev ship $";
    public static final boolean RCS_IDRECORDED = VersionInfo.recordClassVersion("$Header: ProjectHomePageLayoutCO.java 120.1 2005/07/12 11:29:26 appldev ship $", "oracle.apps.pa.project.webui");
    public ProjectHomePageLayoutCO()
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    int i = oapagecontext.getLogLevel();
    if(i <= 2)
    Debug.log(oapagecontext, this, "in processRequest of ProjectHomePageLayoutCO", 2);
    SessionUtils.putTabValue("PA_PRM_PROJ_TABS", oapagecontext);
    oapagecontext.putSessionValue("paProjectMode", "PROJECT");
    oapagecontext.removeSessionValue("paProjectTemplateId");
    super.processRequest(oapagecontext, oawebbean);
    String s = oapagecontext.getParameter("paPreviewMode");
    if(s == null)
    s = "N";
    oapagecontext.putSessionValue("paCIReturnToList", (new StringBuilder()).append(oapagecontext.getCurrentUrlForRedirect()).append("&addBreadCrumbs=RS").toString());
    String s1 = oapagecontext.getParameter("paProjectId");
    if(s1 == null)
    s1 = SessionUtils.getProjectId(oapagecontext);
    } else
    SessionUtils.putProjectId(s1, oapagecontext);
    oapagecontext.putTransactionValue("paProjectId", s1);
    if("N".equals(s))
    String s2 = Security.checkUserPrivilege("PA_PRM_PRJ_HOME_TAB", "PA_PROJECTS", s1, oapagecontext, false);
    Debug.log(oapagecontext, this, (new StringBuilder()).append("Project Home Layout CO ======> checkUserPrivilege returns ").append(s2).toString(), 3);
    if(s2 != null && s2.equals("F"))
    String s4 = (new StringBuilder()).append("OA.jsp?akRegionCode=PA_PROJECT_OVERVIEW_LAYOUT&akRegionApplicationId=275&addBrea" +
    "dCrumb=RS&OAPB=PA_BRAND&paProjectId="
    ).append(s1).append("&paProjectFromId=").append(s1).toString();
    Debug.log(oapagecontext, this, "Project Home Layout CO ======> redirect to Project Overview Page", 3);
    oapagecontext.setRedirectURL(s4, false, "RP");
    String s5 = Security.checkUserPrivilege("PA_PAXPREPR_OPT_KEY_MEMBER", "PA_PROJECTS", s1, oapagecontext, false);
    String s7 = Security.checkUserPrivilege("PA_TEAM", "PA_PROJECTS", s1, oapagecontext, false);
    String s9 = Security.checkUserPrivilege("PA_ASN_CR_AND_DL", "PA_PROJECTS", s1, oapagecontext, false);
    String s11 = Security.checkUserPrivilege("PA_PRM_WORKLIST", null, null, oapagecontext, false);
    oapagecontext.putTransactionValue("paProjectKeyMembers", s5);
    oapagecontext.putTransactionValue("paTeamView", s7);
    oapagecontext.putTransactionValue("paAssignmentCreateAndDelete", s9);
    oapagecontext.putTransactionValue("paWorkflowNotification", s11);
    oapagecontext.putTransactionValue("ConfObjectID", s1);
    oapagecontext.putTransactionValue("ConfObjectType", "PA_PROJECTS");
    } else
    Security.checkUserPrivilege("PA_REPORT_LAYOUT_VIEW", null, null, oapagecontext, true);
    oapagecontext.putTransactionValue("ConfObjectID", "-999");
    oapagecontext.putTransactionValue("ConfObjectType", "");
    if(i <= 2)
    Debug.log(oapagecontext, this, "in ProjectHomePageLayoutCO,abt to set pageType in txn", 2);
    oapagecontext.putTransactionValue("ConfPageType", "PH");
    if("N".equals(s))
    String s3 = StructureUtils.getLatestPublishedVersionIdFromDB(oapagecontext, s1);
    StructureUtils.putStructVersionId(s3, "WORKPLAN", oapagecontext);
    OAPageLayoutBean oapagelayoutbean = (OAPageLayoutBean)oawebbean;
    String s6 = oapagelayoutbean.getTitle();
    String s8 = null;
    String s10 = null;
    if(s1 != null)
    s8 = SessionUtils.getProjectNumber(s1, oapagecontext);
    s10 = SessionUtils.getProjectName(s1, oapagecontext);
    s6 = (new StringBuilder()).append(s6).append(": ").append(s10).append(" ").append("(").append(s8).append(")").toString();
    oapagelayoutbean.setTitle(s6);
    OAPageLayoutBean oapagelayoutbean1 = oapagecontext.getPageLayoutBean();
    oapagelayoutbean1.defaultBreadCrumbTextFromWindowTitle(true);
    if("N".equals(s))
    OABreadCrumbsBean oabreadcrumbsbean = (OABreadCrumbsBean)oapagecontext.getPageLayoutBean().getBreadCrumbsLocator();
    if(oabreadcrumbsbean != null)
    oabreadcrumbsbean.removeAllLinks(oapagecontext);
    int j = oabreadcrumbsbean.getLinkCount();
    if(j > 1)
    oabreadcrumbsbean.removeLink(oapagecontext, 1);
    OAStaticStyledTextBean oastaticstyledtextbean = (OAStaticStyledTextBean)oawebbean.findIndexedChildRecursive("ConfPageType");
    if(oastaticstyledtextbean == null)
    if(i <= 2)
    Debug.log(oapagecontext, this, "in if of new model", 2);
    String s12 = (String)oapagecontext.getTransactionValue("ConfObjectID");
    String s13 = (String)oapagecontext.getTransactionValue("ConfObjectType");
    String s14 = (String)oapagecontext.getTransactionValue("ConfPageType");
    if(i <= 3)
    Debug.log(oapagecontext, this, (new StringBuilder()).append("objId :").append(s12).toString(), 3);
    Debug.log(oapagecontext, this, (new StringBuilder()).append("objType :").append(s13).toString(), 3);
    Debug.log(oapagecontext, this, (new StringBuilder()).append("pgType :").append(s14).toString(), 3);
    OAViewObject oaviewobject = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("PagePersVO");
    if(oaviewobject == null)
    oaviewobject = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).createViewObject("PagePersVO", "oracle.apps.pa.progress.server.PagePersVO");
    Serializable aserializable[] = {
    s12, s13, s14
    oaviewobject.invokeMethod("initQuery", aserializable);
    if(i <= 2)
    Debug.log(oapagecontext, this, "initQuery called", 2);
    String s15 = null;
    String s16 = null;
    if(oaviewobject.first() != null)
    s15 = (String)oaviewobject.first().getAttribute("PersFunctionName");
    s16 = oaviewobject.first().getAttribute("PageId").toString();
    if(i <= 3)
    Debug.log(oapagecontext, this, (new StringBuilder()).append("persFnName :").append(s15).toString(), 3);
    Debug.log(oapagecontext, this, (new StringBuilder()).append("pgId :").append(s16).toString(), 3);
    String s17 = "N";
    if(s15 != null)
    boolean flag = PageLayoutUtils.isValidPersonalizationFn(oapagecontext, s14, s15);
    String s18;
    if(!flag)
    OAViewObject oaviewobject1 = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("PageLayoutPersVO");
    Serializable aserializable1[] = {
    s14
    oaviewobject1.invokeMethod("chkDefault", aserializable1);
    Row row = oaviewobject1.first();
    s15 = (String)row.getAttribute("PersFunctionName");
    s16 = (String)row.getAttribute("DefPageIdOa");
    if(i <= 3)
    Debug.log(oapagecontext, this, (new StringBuilder()).append("persFnName :").append(s15).toString(), 3);
    Debug.log(oapagecontext, this, (new StringBuilder()).append("pgId :").append(s16).toString(), 3);
    s18 = "Y";
    } else
    if(i <= 2)
    Debug.log(oapagecontext, this, "valid assocn", 2);
    s18 = "N";
    if(s15 != null)
    String s19 = (new StringBuilder()).append("OA.jsp?page=/oracle/apps/pa/project/webui/ProjectHomeConfigPG&akRegionApplicatio" +
    "nId=275&paProjectId="
    ).append(s1).append("&").append("paPersFuncName=").append(s15).append("&pageId=").append(s16).append("&paInvPageAssoc=").append(s18).toString();
    if(i <= 3)
    Debug.log(oapagecontext, this, (new StringBuilder()).append("redirectURL, persfn name not null :").append(s19).toString(), 3);
    oapagecontext.redirectImmediately(s19, false, "RS");
    } else
    if(i <= 2)
    Debug.log(oapagecontext, this, "PA mode", 2);
    oapagecontext.putTransactionValue("paPageConfigMode", "PA");
    When i selected a project Home page is displayed,it is the controler code so when i select my button PMS_Classification how i got the projectID
    so that i will display the LineofBusiness.

  • How to pass one's tables information to another

    Hello :
    i would like to one favor iam trying to send some specific information from one internal table to another,
    but when i make the APPEND the information doesn't apear in the destiny table(r_omisiones_nocreadas) , this a segment of the code that iam using:
    LOOP AT t_patrones.
    READ TABLE t_seleccion WITH KEY entidad = t_patrones-entidad BINARY SEARCH.
    Si la entidad para PSCD y SICOP,coincide con la entidad de SIE (la
    cual puede ser diferente debido a que tiene una dirección de
    notificacion independiente), se suman los importes.
        IF t_patrones-entidad = t_patrones-entidad_sie.
          w_aportacion = t_patrones-aportacion + t_patrones-aportacion_sie.
          w_amortizacion = t_patrones-amortizacion +
                           t_patrones-amortizacion_sie.
          w_subtotal = w_aportacion + w_amortizacion.
          IF NOT ( ( w_amortizacion >= t_seleccion-amortizacion ) OR
                   ( w_subtotal >= t_seleccion-aportacion ) ).
         No se alcanza el importe requerido para efectuar la notificación
    IF t_omisiones-patron = t_patrones-patron.
      APPEND r_omisiones_nocreadas
      MOVE 'No cumple con el rango de importes' TO r_omisiones_nocreadas-nocreado.
    ENDIF.
    this segement of code try to eliminate some information and when this informations is eliminated should be pass to the destiny table r_omisiones_nocreadas.
    i would appreciate if you have any answer for me thanks a lot

    Hi,
    LOOP AT t_patrones.
    READ TABLE t_seleccion WITH KEY entidad = t_patrones-entidad BINARY SEARCH.
    Si la entidad para PSCD y SICOP,coincide con la entidad de SIE (la
    cual puede ser diferente debido a que tiene una dirección de
    notificacion independiente), se suman los importes.
    IF t_patrones-entidad = t_patrones-entidad_sie.
    w_aportacion = t_patrones-aportacion + t_patrones-aportacion_sie.
    w_amortizacion = t_patrones-amortizacion +
    t_patrones-amortizacion_sie.
    w_subtotal = w_aportacion + w_amortizacion.
    IF NOT ( ( w_amortizacion >= t_seleccion-amortizacion ) OR
    ( w_subtotal >= t_seleccion-aportacion ) ).
    No se alcanza el importe requerido para efectuar la notificación
    IF t_omisiones-patron = t_patrones-patron.
    r_omisiones_nocreadas = t_patrones.APPEND r_omisiones_nocreadas.MOVE 'No cumple con el rango de importes' TO r_omisiones_nocreadas-nocreado.
    ENDIF.
    Thanks,
    Pramod

  • How to pass an internal table(AbstractList type) as input to RFC??

    Hi,
    I need to call an RFC which accepts a internal table as input(of AbstractList type as input). Please tell me the best and easy way of passing this as input.
    internal table name : Li_mailer
    type structure      : Solisti1
    Please help me in this.
    Regards,
    Narahari

    Hi Narahari,
    I assume you have already populated your table in WebDynpro.
    Your code should be like this
    <ModelNode>_Input input = new <ModelNode>_Input();
    int nodeSize = wdContext.node<Li_mailer>().size();
    for(int index=0; index<nodeSize; index++){
    Solisti1 w_solist = new Solisti1();
    WDCopyService.copyCorresponding(wdContext.node<Li_mailer>().get<Li_mailer>()ElementAt(index), w_solist);
    input.add<Li_mailer>(w_solist);               
    try{
    input.execute;
    wdContext.<ModelNode>_Input.bind(input);
    wdContext.nodeOutput().invalidate();
    catch (WDDynamicRFCExecuteException ex){
    This will work.
    Regards,
    Shubham

  • How to pass a user defined table type to stored procedure?

    Hi,
    I am trying to call a stored procedure from Java. The store procedure has three IN parameter, 2 IN/OUT params and 3 OUT parameters. The two IN/OUT parameters are user defined objects. Can anyone tell me how to set these IN/OUT parameters in Java.
    Thanks

    It is database/driver specific so you need to use the specific functionality of the driver (not jdbc) to access it.

Maybe you are looking for

  • My newly created fillable form is not saving the data input by applicant

    I have created a fillable form from a word document using Acrobat XI. This has been uploaded to our careers website, however, feedback from some applicants is that have completed this rather detailed application form they are unable to save the newly

  • Can I upgrade my hard-drive in my iMac 7,1

    Hello, I have the mid 2007 released intel based imac. I am about to change my 1GB memory to 4GB memory per the info I found on the Apple support site (upgrading memory on mid 2007 imacs or later). I also want to upgrade my hard-drive to 1TB as I need

  • What is the correct Patch for Oracle 11gR1 to be at Oracle 11.1.0.7 Solaris

    What is the difference between the following types of patches for Solaris 10.0.9 64 bit? to be at 11.1.0.7 on Solaris 64bit OS version 10/9 ? * RDBMS Server * Oracle Database Family

  • How to get count of all records of all entities in CRM Online

    Hi,  I want to get count of all records entitywise in dynamics CRM 2013 online. I know we can count the records in CRM on-premise using a SQL query in report. Earlier I wrote a SSRS report to count the records in a CRM entity wise  as displayed in th

  • Preview Mode - Full is not functioning

    View -> Preview Mode - > Full is supposed to let you see the rest of the stage in full color when editing inside a movie clip. That seems to not function. Instead the rest of the stage is still ghosted out after you double-click a movie clip to edit