How to programatically populate data in ADF shuttle component?

Hi,
Can anyone please let me know the code for programatically pouplating data into the shuttle Oracle ADF shuttle component using ArrayList object? I have my data(records) in an Arraylist object and I am using JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660.
Thanks,
Vikas

Have a look at this thread:
http://baigsorcl.blogspot.com/2010/10/creating-shuttle-component-in-oracle.html
Thanks,
Navaneeth

Similar Messages

  • How to change the width for adf shuttle without modify the skin file

    Dear Professionals
    I haven an ADF Shuttle component in my jsp screen , How can i change the width for the two boxes without modify the skin files.(I know i can do that by skin but what i want to change one shuttle just in one screen not change all shuttles on other screens).
    Regards
    Wish79

    Okay, I didnt try with the trinidad selectmanyshuttle, but this worked for me on the af:selectmanyshuttle..
            <af:selectManyShuttle label="Label 1" styleClass="mycustcss">
              <af:selectItem label="Label1" value="value1"/>
              <af:selectItem label="Label2" value="value2"/>
            </af:selectManyShuttle>
            <af:selectManyShuttle label="Label 1">
              <af:selectItem label="Label1" value="value1"/>
              <af:selectItem label="Label2" value="value2"/>
            </af:selectManyShuttle>        And in my css file, I have
    af|selectManyShuttle.mycustcss::content { width: 800.0px;}
    The first selectManyShuttle came up very wide and the second one came up in the default width..
    Julian.

  • ADF Shuttle Component - Can we have multiple leading list

    Hi,
    I have requirement where there are multiple lists of different types on the left hand side and user should be able to shuttle the items from any of the list to the single selected list in right side. I know in ADF shuttle there is one leading and one trailing list. I wan to know how can i make ADF shuttle component support multiple leading lists and single trailing list.
    Or should I go for total custom solution mimicking shuttle behavior?
    JDev version is 11.1.1.6.0
    Thanks,
    Sandeep
    Edited by: Sandeep Koul on Aug 26, 2012 10:47 PM

    After consulting other ADF experts offline, we have come to conclusion that there is no off-the shelf component which caters to my requirement.
    We are now going with complete custom solution to achieve shuttle behavior.
    I am marking this query as answered.
    Thanks,
    Sandeep

  • How to add static data in ADF table using ADF 11g?

    Hi
    Can any one tell me how can I add static data in ADF table?
    Thanks

    You can try this one. I created this static table just for viewing purpose.
    Open Create View Object wizard
    Choose, “Rows populated programmatically, not based on a query” which is 3rd radio button option
    In Attribute tab, create some ‘Updatable’ Attributes
    Choose the AppModule in the final step.
    Drag and drop the view object as ADF table.
    Next, programmatically insert data in your backing bean.
            ApplicationModule applicationModule = this.getApplicationModuleForDataControl("TmpTableAppModuleDataControl");
            ViewObject vo = applicationModule.findViewObject("ProgViewObj1");
            Row newRow = vo.createRow();
            newRow.setAttribute("updAttr1", value1);
            newRow.setAttribute("updAttr2", value2);
            vo.insertRow(newRow);If you add this code in buton action you have to add button's partialTriggers to table id.

  • How to programatically cut data in view

    Hi There,
    I have a requirement to programatically load data and display the 2-DAxis curve in view. Once the curve is displayed, the user can toggle a band cursor and with its help cut/tuncate data. All this needs to be achieved programatically. I am able to achive until setting the band cursor but could not find a means where to cut the data programatically. Can someone please help me out with the same.
    Thanks in advance
    Priya

    Hi Priya,
    I believe this is what you're describing.
    OPTION EXPLICIT
    Dim Sheet, Cursor, Area, Curve, Xch, Ych, Xmin, Xmax, TempCh, Start, Delta
    Set Sheet = View.ActiveSheet
    Set Cursor = Sheet.Cursor
    Set Area = Sheet.Areas(1)
    IF Area.DisplayObjType <> "CurveChart2D" THEN Call AutoQuit("Region clearing only works on 2D graph VIEW Areas")
    IF Cursor.Type <> "Band" THEN Call AutoQuit("Region clearing only works with the VIEW band cursor")
    IF NOT Area.DisplayObj.Curves.Count > 0 THEN Call AutoQuit("Your 2D graph in VIEW has no curves configured")
    Set Curve = Area.DisplayObj.LeadingCurve
    Xch = Curve.XChannelName : L1 = CNo(Xch)
    Ych = Curve.YChannelName : L2 = CNo(Ych)
    Xmin = MinV(Cursor.X1, Cursor.X2) : R1 = Xmin
    Xmax = MaxV(Cursor.X1, Cursor.X2) : R2 = Xmax
    TempCh = CNo("/TempIndexChannel")
    IF TempCh > 0 THEN Call ChnDel(TempCh)
    IF Xch = "" THEN
    IF ChnPropValGet(Ych, "waveform") = "Yes" THEN
    Start = ChnPropValGet(Ych, "wf_start_offset")
    Delta = ChnPropValGet(Ych, "wf_increment")
    ELSE
    Start = 1
    Delta = 1
    END IF
    TempCh = ChnLinGenImp("TempIndexChannel", ChnLength(L2), Start, Delta)
    Xch = CStr(TempCh)
    TempCh = "\Delete/"
    L1 = CNo(Xch)
    END IF
    Call FormulaCalc("Ch(L2):= Ch(L2) + NoValue*((Ch(L1)>=R1) AND (Ch(L1)<=R2))")
    IF TempCh = "\Delete/" THEN Call ChnDel(Xch)
    Call WndShow("VIEW")
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • JTEAM please help:how to show flexible date in a time component

    According to Steven Muench about How to handle Flexible Date Format on Feb 28,2001. I create the FlexiDate Domain and create a FlexiDate.class in the
    howto.common package. Then in Employees entity on the Attribute Setting page I select Hiredate attribute and change its datatype from Date to howto.common.FlexiDate.
    But in JSP when I edit a record the time component(LOV) only show YYYY-MM-DD and I can not select HH and MM. After select a day I want to append HH and MM by hand, but I can not enter HH and MM at all.
    Another problem: I need to calculate interval between two time columns and get hours. For example the interval between 2002-10-10 12:10 and 2002-10-11 14:10 is 26.
    Thanks in advance!

    Geoff,
    I recently answered this same question for you in the other OTN thread that you posted.
    The specified item was not found.
    If you have a follow up question on an existing thread, it's best to post a further response to that same thread instead of creating a new thread.
    Thanks.

  • How to show flexible date in a time component in JSP

    According to Steven Muench about How to handle Flexible Date Format
    on Feb 28,2001. I create the FlexiDate Domain and create a FlexiDate.class in the
    howto.common package. Then in Employees entity on the Attribute Setting page I select Hiredate attribute and change its datatype from Date to howto.common.FlexiDate.
    But in JSP when I edit a record the time component(LOV) only show YYYY-MM-DD and I can not select HH and MM. After select a day I want to append HH and MM by hand, but I can not enter HH and MM at all.
    Another problem: I need to calculate interval between two time columns and get hours. For example the interval between 2002-10-10 12:10 and 2002-10-11 14:10 is 26.
    I am pleading for help!

    To edit the time format, you need to:
    1. select the simple date formatter in the attribute's control hints and use a format string that includes a time format.
    2. Change your entity attribute to be of type 'timestamp' since the Date type doesn't allow editing the time portion of your field.

  • How to insert static data into ADF Table

    Hi
    I have a requirement , As a part of development of my prototype. I have to populate some static data into table.How to achieve this without using any java is there any way to simply hard code the values into adf table rows.?
    Thanks in advance

    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/devguide/table.html
    http://otndnld.oracle.co.jp/document/products/as10g/101300/B25221_03/web.1013/b25386/web_MasterDetail006.htm
    http://andrejusb.blogspot.com/2006/12/displaying-all-columns-in-adf-table.html

  • How to dynamically populate data from a data source

    What I am trying to do:
    I am building a simple blog reader application with two screens, 'Home' and 'FeedR'.
    The data needed for this to work is an excel table 'Blogs'; which has the following columns:
    BlogName, image, Source
    I have created about 6 REST data sources from the RSS feeds of these blogs and added their names into the excel table.
    The home has an "Image Gallery with Text", which has the blog image and BlogName on it. On the select event, I want to navigate to the second screen and populate the text gallery with the feed details.
    The Problem:
    So, when I have only feed, I can do something like:
    'Navigate(FeedR, ScreenTransition!UnCover);Collect([@blogposts], rss_aspx!channel!item)'.
    When I have more than one feed; I would like to be able to do something like:
    'Navigate(FeedR, ScreenTransition!UnCover);Collect([@blogposts],
    (Blogs!Source)!channel!item)'.
    The Question:
    Is dynamically populating the name of the data source work? If yes, how do I do it? If no, is there a way around it?
    I was looking at UpdateContext(), but does not seem like a feasible option.
    Thanking you...
    Hemanth

    you wanted a onchange for a htmlb:inputfield which would also trigger server event. try the following code.
    <htmlb:inputField id            = "test"
                                alignment     = "LEFT"
                                size          = "6"
                                required      = "TRUE"
                                doValidate    = "TRUE"
                                type          = "INTEGER"
                                 />
    <bsp:htmlbEvent id="myid" onClick="myonclick" name="ValueChanged" />
      <script for="test" event=onchange type="text/javascript">
    alert(this.value);
    ValueChanged();
    </SCRIPT>
    if the value in the inputfield is changed it would trigger a alert at the client side and also trigger a server event. now you can caputre the value in oninputprocessing.
    Hope this helps.
    do let us know if you need help in how to capture this value in oninputprocessing.
    Regards
    Raja

  • How do you populate right side of Shuttle control

    Hi,
    I am trying to use shuttle control. I am not sure how to populate the right side of the shuttle control from database. I am using the following code. But, it is not populating the right side. In this code, P35_COUNTRIES is my shuttle. P35_X is a text field just to test the output. I can see an output 5:8:9 in the text field. But, my shuttle right side is empty. Am I doing something wrong here ? I would really appreciate any suggestions.
    DECLARE
    vCountries VARCHAR2(100);
    vSEP VARCHAR2(1);
    BEGIN
    :P35_X := 'Inside test';
    vCountries := '';
    FOR C IN (SELECT country_id FROM countries WHERE territory_id = 1)
    LOOP
    vCountries := vCountries || vSEP || c.country_id;
    :P35_X := vCountries;
    vSEP := ':';
    END LOOP;
    :P35_COUNTRIES := vCountries;
    :P35_X := vCountries;
    END;
    Thanks

    Hi,
    Yes, it is getting populated: [http://apex.oracle.com/pls/otn/f?p=30879:5]
    My Source settings for the shuttle ("P5_SHUTTLE") are:
    Source Used: Only...
    Source Type: Static Assignment...
    Source Value: (Blank)
    Post Calc Computation: (Blank)
    Default Value: (Blank)
    List of Values Definition: SELECT DNAME d, DEPTNO r FROM DEPT ORDER BY 1
    Settings for my Computation for this item:
    Item Name: P5_SHUTTLE
    Type: PL/SQL Function Body
    Computation Point: Before Header
    Computation:
    DECLARE
    vDEPT APEX_APPLICATION_GLOBAL.VC_ARR2;
    i NUMBER := 1;
    BEGIN
    FOR c IN (SELECT DISTINCT DEPTNO FROM EMP WHERE ENAME LIKE 'A%')
    LOOP
      vDEPT(i) := c.DEPTNO;
      i := i + 1;
    END LOOP;
    RETURN APEX_UTIL.TABLE_TO_STRING(vDEPT);
    END;This computation is unconditional, so runs everytime the page is loaded.
    Andy

  • HOW TO ELIMINATE UNWANTED DATA FROM ADF

    When I call the bpel in ADF app's I'm getting output.Input like compositename and output is compositeStatusDtails.
    I'm getting the output like {#item='CLOSED AND COMPLETED',#item='CLOSED AND STALE'},I don't want *'#item='* how to eliminate it.
    Thanks
    Mani

    Hi shray,
    In BPEL I'm executing the Query for getting the composite status details.Query is
    SELECT (CASE WHEN STATE=1 THEN 'OPEN AND RUNNING'
    WHEN STATE=2 THEN 'OPEN AND SUSPENDED'
    WHEN STATE=3 THEN 'OPEN AND FAULTED'
    WHEN STATE=4 THEN 'CLOSED AND PENDING'
    WHEN STATE=5 THEN 'CLOSED AND COMPLETED'
    WHEN STATE=6 THEN 'CLOSED AND FAUTED'
    WHEN STATE=7 THEN 'CLOSED AND CANCELLED'
    WHEN STATE=8 THEN 'CLOSED AND ABORTED'
    WHEN STATE=9 THEN 'CLOSED AND STALE'
    WHEN STATE=10 THEN 'NON-RECOVERABLE' ELSE STATE || '' END) AS STATE, COUNT(*) AS NUM_OF_CUBE_INST FROM soainfra.CUBE_INSTANCE where composite_name = :CompositeName GROUP BY STATE;
    When I test bpel it's working fine in EM.
    Now I'm calling this BPEL in mt ADF app's by using WS Datacontrol.Here also I'm get the output with unwanted data also.I think this should gives the clear picture.
    Thanks
    Mani

  • How to auto populate data from one list in SharePoint 2007 into another list based on a key value?

    Hi,
    As a part of new requirement in my project I am supposd to work on SharePoint 2007. I have one List (BCExtract - Main list) with all data related to an Application (like ID, name, app manager RTO etc).
    I have created another list which has form to be filled by a user (with details about his/her applications). My requirement is that when the user enters AIT ID then the page should refresh (probably after hitting enter) and other details like Application
    name, RTO etc which is present in another list gets auto populated depending on the AIT ID (unique column) entered so reduce the burden on the user.
    Please suggest me how this can be done. I do not have permission for obtaining SharePoint Designer and I do not know JQuery. Infopath is ok but if this can be done through SharePoint 2007 alone then it would be great.
    Thanks....

    Hello,
    You can either use jquery/jaavscript or infopath form to achieve this. There is no default way to do this.
    I would suggest jquery because you can put script in newform/editfor.aspx page using content editor webpart. Refer this link for jquery:
    To get value from list:
    http://social.technet.microsoft.com/Forums/en-US/ac47fe2a-ccb6-4f5b-b274-703aecc6cb0a/get-list-items-in-sharepoint-2010-by-using-jquery
    http://www.robertkuzma.com/2010/08/read-list-items-using-sharepoint-web-services-and-jquery/
    To set value in column:
    http://paulgalvinsoldblog.wordpress.com/2009/06/13/quick-and-easy-use-jquery-to-set-a-text-field%E2%80%99s-value-on-a-sharepoint-form/
    http://spservices.codeplex.com/discussions/468729
    If you use infopath form, then you need to create two data connection to get data from both lists. Later you can set value in fields based on selection using rule. This can be possible without code.
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Jdev 11.1.1.5 R1 How To Get Row Data From ADF Table

    Hi everyone,
    I have an ADF Table Populated with dummy data (for now). Below the Table there is an InputText field.
    What I need to do is have the body of the message show up in the InputText field when the user clicks on a message in the inbox(Table).
    I've been trying to figure this out for quite some time now, unsuccessfully of course. Hopefully you guys can help me change that.
    I do consider myself a beginner still, so please be as clear and specific as possible.
    Thanks in advance!
    Here is the code I have for the Table/InputText and Backing Beans
    <tr>
    <td>
    <af:table value="#{TableBean.messageAll}" var="message"
    rows="5"
    inlineStyle="color:Navy; border-style:outset; border-color:Background; border-width:thick; font-size:small; text-align:center; vertical-align:middle; height:135.0px;"
    width="610" rowBandingInterval="0" id="t1"
    rowSelection="single"
    selectionListener="#{TableBean.messageSelected}"
    immediate="true" summary="Message Inbox"
    disableColumnReordering="true"
    columnSelection="none"
    columnResizing="disabled">
    <af:column sortable="false" align="center"
    id="chechboxCol" width="25"
    minimumWidth="25">
    <f:facet name="header">
    <h:selectBooleanCheckbox id="selectAll"
    onclick="selectAll();"></h:selectBooleanCheckbox>
    </f:facet>
    <h:selectBooleanCheckbox id="selectMessage"
    value="#{message.selected}"
    immediate="true"></h:selectBooleanCheckbox>
    </af:column>
    <af:column id="urgentCol" width="25" align="center"
    minimumWidth="25">
    <f:facet name="header">
    <h:outputText id="urgentHeader">
    <img src="urgent.gif" height="14"
    width="14" alt="Urgent Icon"/>
    </h:outputText>
    </f:facet>
    </af:column>
    <af:column sortable="true" headerText="From"
    align="start" id="fromCol" width="175"
    minimumWidth="175">
    <af:outputText value="#{message.from}"
    id="ot1"/>
    </af:column>
    <af:column sortable="true" headerText="Subject"
    align="start" id="subjectCol" width="175"
    minimumWidth="175">
    <af:outputText value="#{message.subject}"
    id="ot2"/>
    </af:column>
    <af:column sortable="true" headerText="Type"
    align="start" id="c5" width="100"
    minimumWidth="100">
    <af:outputText value="#{message.type}"
    id="ot3"/>
    </af:column>
    <af:column sortable="true"
    headerText="Date Received" align="start"
    id="c6" width="80" minimumWidth="80">
    <af:outputText value="#{message.date}"
    id="ot4"/>
    </af:column>
    <af:column sortable="true" headerText="Body"
    rendered="false" align="start" id="c7"
    width="100" minimumWidth="100">
    <af:outputText value="#{message.body}"
    id="ot5"/>
    </af:column>
    </af:table>
    </td>
    </tr>
    <tr>
    <td>
    <p>
    <af:commandButton text="Print" id="printButton"
    inlineStyle="font-size:x-small;"/>
    </p>
    <af:inputText binding="#{TableBean.textArea}" rows="10"
    readOnly="true" partialTriggers="t1"
    contentStyle="width:620px;"
    inlineStyle="color:Black; outline-color:Background; outline-style:outset;"
    id="it1"></af:inputText>
    </td>
    </tr>
    package Backing;
    import javax.faces.event.ActionEvent;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    import oracle.adf.view.rich.component.rich.output.RichOutputText;
    import java.util.List;
    import java.util.ArrayList;
    import oracle.adf.view.rich.component.rich.data.RichTable;
    import org.apache.myfaces.trinidad.event.SelectionEvent;
    public class TableBean {
    private RichInputText textArea;
    private message[] messageAll =
    new message[] { new message("Sender 1", "Author 1", "Message 1",
    "Alert", "6/21/2011",
    "This is the body 1."),
    new message("Sender 2", "Author 2", "Message 2",
    "Notification", "6/22/2011",
    "This is the body 2."),
    new message("Sender 3", "Author 3",
    "Message 3", "Broadcast", "6/23/2011",
    "This is the body 3."),
    new message("Sender 4", "Author 4",
    "Message 4", "Alert", "6/24/2011",
    "This is the body 4."),
    new message("Sender 5", "Author 5", "Message 5",
    "Notification", "6/25/2011",
    "This is the body 5."), };
    public message[] getmessageAll() {
    return messageAll;
    public void messageSelected(SelectionEvent selectionEvent) {
    textArea.setValue("Message body should go here.");
    public void setTextArea(RichInputText textArea) {
    this.textArea = textArea;
    public RichInputText getTextArea() {
    return textArea;
    public class message {
    boolean selected;
    String from;
    String to;
    String subject;
    String type;
    String date;
    String body;
    public message(String from, String to, String subject, String type,
    String date, String body) {
    this.from = from;
    this.to = to;
    this.subject = subject;
    this.type = type;
    this.date = date;
    this.body = body;
    public String getFrom() {
    return from;
    public String getTo() {
    return to;
    public String getSubject() {
    return subject;
    public String getType() {
    return type;
    public String getDate() {
    return date;
    public String getBody() {
    return body;
    }

    try this code in selection method
    RichTable object = (RichTable)selectionEvent.getSource();
    Row row = null;
    for (Object facesRowKey : object.getSelectedRowKeys()) {
    object.setRowKey(facesRowKey);
    Object o = object.getRowData();
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding)o;
    row = rowData.getRow();
    }

  • Visual composer how can i populate data in backend from front end.

    Hi Guru's
          I have designed a basic screen using zbapi_salesorder_getlist.  I have requirement in which i have to enter some details in the output screen, it then should come back to back end and update a Ztable.
    For this i have created and deployed till intial output screen(i will enter some values in the input and i get some result in the output----> i ma using a RFC to get the data from backend) in the output the user enters some values which needs to updated a ztable in the back end. Give ur inputs how can this be done any link if possible so that i can complete this concept.

    Thanks Marcel,
       I am working on your blog example.
    Nutan,
    3.> Then for updating backend. You just drag and drop the second bapi in your model and then create the forms as per your requirement. This will be helpful.
    can u please elaborate, what ever input i am giving is not coming to the back-end. Any sample example will help me to solve this. what ever you have mentioned in step 1 and step 2 are working properly, but i am not able to get past afer the two steps.

  • How to auto-populate dates in a calendar based on radio buttons?

    Hi,
    I'm trying to create an availability form that is submitted on a monthly basis. What I'd like is to have a radio button the user could click to indicate what day the first of the month falls on (Monday through Sunday), and have fields auto-populate with the remainder of the dates on the calendar. As it stands right now, I've got the radio buttons and the text fields, but I'm running into serious issues getting the text fields to auto-fill based on the selected radio button.
    I've labelled the radio button group "First Day of Month" and the individual values are "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday" "Sunday" and "Start". The "Start" button is hidden but is checked by default.
    My text fields are even simpler: "Monday 1" "Monday 2" "Monday 3" "Monday 4" and "Monday 5" (and then, obviously, repeated for each day of the week.
    I am horrible at scripting, so I think that might be where I'm running into issues. What I'd like to put is something like this (only, you know, functional, and for each days' text value):
    For "Monday 1"
    if "First Day of Month.value" = "Monday", "Monday 1.value" ="1"
    else "Monday 1.value" = ""
    For "Wednesday 3"
    if "First Day of Month.value" = "Sunday", "Wednesday 3.value" = "11"
    if "First Day of Month.value" = "Monday", "Wednesday 3.value" = "17"
    if "First Day of Month.value" = "Tuesday", "Wednesday 3.value" = "16"
    if "First Day of Month.value" = "Wednesday", "Wednesday 3.value" = "15"
    if "First Day of Month.value" = "Thursday", "Wednesday 3" = "14"
    if "First Day of Month.value" = "Friday", "Wednesday 3.value" = "13"
    if "First Day of Month.value" = "Saturday", "Wednesday 3.value" = "12"
    else "Wednesday 3.value" = ""
    For "Sunday 5"
    if "First Day of Month.value" = "Sunday", "Sunday 5.value" = "29"
    if "First Day of Month.value" = "Friday", "Sunday 5.value" = "31"
    if "First Day of Month.value" = "Saturday", "Sunday 5.value" = "30"
    else "Sunday 5.value" = ""
    Is this possible? I have no doubt there's a better way to do it (with proper coding and everything), so any help would definitely be appreciated!

    Hello,
    Which sharepoint edition you are using? I would prefer to customize your list form in infopath form then add new connection which will connect to your SQL. Later you can filter data based on cust ID. Here is the link to add connection in infopath:
    http://office.microsoft.com/en-in/infopath-help/add-a-data-connection-to-a-microsoft-sql-server-database-HP010092823.aspx
    If you want to do it via code then simple ADO.NET connector will help.
    http://www.codeproject.com/Articles/33862/Connecting-to-Database-Using-Custom-Webpart-in-Sha
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • I am unable to enable a device that was disabled through my account.

    I am trying to re-enable a device that I previously disabled through the members center. When I go the the list of devices I have added to my account I can see all of them. The device I am trying to enable again is greyed out indicating it is disable

  • Motion Crashes Upon Open

    Motion keeps crashing on open - also at other times. Have repaired permissions. FCP is doing same for another large 60-70GB project shot in 24p-advanced. Have about 53GB of fee space on main drive - could that be the problem? Have been working on lar

  • Techical object to fetch data from /n/SAPAPO/SPPFCST

    Hi APO Expert Please let me know the technical object name ( FM BAPI or Table ) to fetch data of the transaction code  /n/SAPAPO/SPPFCST(Forecasting). Thanks & Regards Gaurav Gupta

  • Data trabsfer using XML

    i need help in transefering data from one website to other, i had read some where that the data tranfer can be done thru XML can any please help me on that. the idea basically is to tranfer data from A to B and once the work is done B acknowldeges A

  • SelectOneChoice initialization

    Hi, I have a and adf form based on a view. One of my attributes is called "Status" which i bind to the view. I deleted the status input field and dragged again the status attribute from my view object as a selectOneChoice. I specified this as a fixed