Passing items from one tab to another

Hi there,
I have two reports, each on a seperate tab, I would like to pass values from one tab to another, anybody know how I can achieve this. Thanks...
Edited by: user9129179 on 10-Mar-2010 04:21

Ahh, I see - thanks for clarifying.
I think in that case it would be easier simply to reference the value of the item on the other page instead of pushing the value to the target page.
e.g. on page 100...
:P100_SOME_ITEM := :P200_SOME_ITEM; -- Read value from Page 200Would that work for you?
Additional:
Editing the item on the target page, under the Source section:
- Source Used = Always, replacing any existing value in session state
- Source Type = Item (application or page item name)
- Source Value = <name of item on source tab>
Edited by: FFS on 10-Mar-2010 07:35

Similar Messages

  • Pass Value from one tab to another

    Hi,
    I have a requirement to pass a value from one tab to another.
    For ex: I have a CC&B page with two tabs (Main, Steps).
    In the Main tab, I choose a Field Activity. Once it is chosen, I want to pass the value of the Field Activity ID to the 'Steps' tab. Once I get the value of the field Activity, I can then query up a table and populate some fields in the Steps tab. How can i achieve passing the value if FA Id from one tab to another?
    I tried to create an extension of the page using ext_page.jsp. But this extension just provides us methods like extPreOnWindowLoad(), extPostOnWindowLoad() etc which really is not helpful.
    Any suggestions?
    thanks

    Hi,
    We cannot pass multiple values using Drill Filters beause it is based on hierarchy that can take only one value at a time.
    If you want you can use Report Level Filter instead.
    Neither can we pass dril filters from one tab to other.

  • Need Urgent help in passing items from one page to another

    Hi
    I have a page with item "X" holding a value. The page displays a report in which one of the fields "Devide name" is a link to Interface page. By clicking the link on "Device name" Im passing the value device name to another page and displayes all the interfaces under the device.
    But I need to access the variable "X" also in the second page i:e Interface page.
    Can somebody help me on this?
    ~rose

    The problem is is P29_IV_SERVERS is defined in page 29 and Im using
    UPDATE PROVISION_IV
                   SET PROVISION_STATE_ID = 2,SERVER_ID = :P29_IV_SERVERSin page 50. That was my initial issue. As suugested I used the '&' and its throwinf error..
    Here is my complete code.
    DECLARE
    LATEST_TASK_ID Number;
    TASK_NAME_IV varchar2(50);
    --TASK_NAME_ISM varchar2(50);
    SELECT_FLAG_IV Number:=1;
    --SELECT_FLAG_ISM Number:=1;
    DS_COUNT_IV Number;
    --DS_COUNT_ISM Number;
    DS_ID_IV Number;
    --SELECT_FLAG_IV:=1;
    --SELECT_FLAG_ISM:=1;
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F10.count
    LOOP
        UPDATE PROVISION_IV
                   SET "PROVISION_STATE_ID" = 2,"SERVER_ID" = :P29_IV_SERVERS
                   --SET "PROVISION_STATE_ID" = 2,"SERVER_ID" = 2
                    WHERE
                    TERMINATION_ID=APEX_APPLICATION.G_F10(i);
    SELECT DELIVERED_SERVICE_ID INTO DS_ID_IV FROM DELIVERED_SERVICE
    WHERE DELIVERED_SERVICE_NAME=APEX_APPLICATION.G_F11(i);
    SELECT COUNT(*) INTO DS_COUNT_IV FROM DELIVERED_SERVICE_MAPPING 
        WHERE TERMINATION_ID=APEX_APPLICATION.G_F10(i);
    IF DS_COUNT_IV=0 THEN
        INSERT INTO DELIVERED_SERVICE_MAPPING
        (ID,
        CUSTOMER_ID,
        EQUIPMENT_ID,
        TERMINATION_ID,
        DELIVERED_SERVICE_ID,
        LAST_MODIFIED_BY,
        LAST_MODIFIED_ON)
        VALUES
        (DELIVERED_SERVICE_SEQ.nextval,
        NULL,
        NULL,
        APEX_APPLICATION.G_F10(i),
        DS_ID_IV,
        :APP_USER,
        sysdate);
        SELECT_FLAG_IV:=0;
    ELSE
        UPDATE DELIVERED_SERVICE_MAPPING SET DELIVERED_SERVICE_ID = DS_ID_IV,
        LAST_MODIFIED_BY = :APP_USER,
        LAST_MODIFIED_ON = sysdate
        WHERE TERMINATION_ID = APEX_APPLICATION.G_F11(i);
        SELECT_FLAG_IV:=0;
    END IF;
    END LOOP;
    IF SELECT_FLAG_IV=0 THEN
        IF :P29_CHECK_TASK_NAME_IV=1 THEN
            IF :P29_TASK_NAME_IV is NULL THEN
                TASK_NAME_IV:=:APP_USER||'_INTERFACE PROVISIONING_'||SYSDATE;
                INSERT INTO TASKS
                (TASK_ID,
                TASK_NAME,
                CREATED_BY,
                CREATED_ON,
                TASK_ACTION,
                TASK_STATE_ID,
                SERVER_ID)
                VALUES
                (TASK_ID_SEQ.nextval,
                TASK_NAME_IV,
                :APP_USER,
                sysdate,
                5,
                1,
                2);
            ELSE
                INSERT INTO TASKS
                (TASK_ID,
                TASK_NAME,
                CREATED_BY,
                CREATED_ON,
                TASK_ACTION,
                TASK_STATE_ID,
                SERVER_ID)
                VALUES
                (TASK_ID_SEQ.nextval,
                :P29_P50_TASKNAME,
                :APP_USER,
                sysdate,
                5,
                1,
                2);
            END IF;
        SELECT max(TASK_ID) INTO  LATEST_TASK_ID from TASKS where CREATED_BY=:APP_USER;
        FOR i in 1..APEX_APPLICATION.G_F01.count
        LOOP
            INSERT INTO TASK_DETAILS
            (TASK_DETAILS_ID,
            EQUIPMENT_ID,
            TERMINATION_ID,
            TASK_ID)
            VALUES
            (task_detail_seq.nextval,
            :P29_TO_INTERFACEPAGE,
            APEX_APPLICATION.G_F10(i),
            LATEST_TASK_ID);
        END LOOP;
        END IF;
    END IF;
    END;I have the variables P29_CHECK_TASK_NAME_IV, P29_TASK_NAME_IV and P29_IV_SERVERS defined in page 29.
    But the above query is written in page 50, so I want to access the value of these variables as set in pahe 29.. :-(

  • Passing Variables from one View to another

    First of all Hi this is my first post on the sap forums.
    Aplogies if I have come to the wrong place or if this question is very easy, but I am new to abap and web dynpro and have found myself struggling a little bit.  So I stumbled across this site and thought I would ask for help.
    My problem is this, I have 2 variables on my MAIN view, one called MONTH and the other called YEAR.  What I want to do is on a button click on the MAIN view pass the values of these variables to another view called SUMMARY_RPT and then use these variables in an SQL query I have on this view.
    Anybody out there that can help ?
    Many Thanks,
    George

    Hi George,
    Welcome to webdynpro abap community. To pass data from one view to another, you can should create two attributes (type string) in the attribute tab of of the component controller. Now these will act as global variable for you. Now you can access these attribute in your view in this way:
    wd_comp_controller->gv_val "gv_val is the name of the attribute
    Populate the value in it and use it anywhere you want.
    There is one more way to do the same.
    Create a node under context in component controller and create 2 attributes(type string) after that. Map this node to both the views. Now get the value of month , year and set these attribute with the same values with the help of code wizard in view 1. Now in the view2 simply read those attribute and you'll get the value of month and year which was entered in the first view. Read the attribute with the help of code wizard. Now you can use them accordingly.
    I would suggest you to use 1st method as it is better performance wise.
    I hope it helps.
    Regards
    Arjun

  • How to transfer a calendar items from one month to another

    How can one transfer a calendar item from one month to another month by drag and drop.

    Click it and hold, then drag. If you want to duplicate it, hold down the option/alt key while dragging.

  • HT201250 how can i pass information from one mac to another mac by using the time capsule

    how can i pass information from one mac to another mac by using the time capsule

    If you want to transfer files, settings, etc., you must open Migration Assistant (Applications > Utilities) in the Mac that you want to transfer the files and follow the instructions

  • Is there a way to move multiple Calendar items from one date to another?

    Hello. I have far too many Calendar items every day in my iCal. Until I finally pare them down to a reasonable level, I need to "reschedule" all of my unfinished ToDo items and reminders, to another day, later in the week.
    There doesn't seem to be any "Select All" feature available.
    Is there a way to move multiple Calendar items from one date to another?
    Thanks in advance!

    Still no ideas? Apple, please come up with a fix. Thanks.

  • OBIEE 11g How to pass variable from one prompt to another prompt in dashboard page.

      How to pass variable from one prompt to another prompt in dashboard page.
    I have two prompt in dashboard page as below.
    Reporttype
    prompt: values(Accounting, Operational) Note: values stored as
    presentation variable and they are not coming from table.
    Date prompt values (Account_date, Operation_date)
    Note:values are coming from dim_date table.  
    Now the task is When user select First
    Prompt value  “Accounting” Then in the
    second prompt should display only Accounting_dates , if user select “operational”
    and it should display only operation_dates in second prompt.
    In order to solve this issue I made the
    first prompt “Reporttype” values(Accounting, Operational) as presentation
    values (custom specific values) and default presentation value is accounting.
    In second prompt Date are coming from
    dim_date table and I selected Sql results as shown below.
    SELECT case when '@{Reporttype}'='Accounting'
    then "Dates (Receipts)"."Acct Year"
    else "Dates (Receipts)"."Ops
    Year"  End  FROM "Receipts"
    Issue: Presentation variable value is not
    changing in sql when user select “operation” and second prompt always shows
    acct year in second prompt.
    For testing pupose I kept this presentation
    variable in text object of dashboard and values are changing there, but not in
    second prompt sql.
    Please suggest the solution.

    You will want to use the MoveClipLoader class (using its loadClip() and addListener() methods) rather than loadMovie so that you can wait for the file to load before you try to access anything in it.  You can create an empty movieclip to load the swf into, and in that way the loaded file can be targeted using the empty movieclip instance name.

  • What are Parameters? How are they differenet from Variables? Why can't we use variables for passing data from one sequnece to another? What is the advantage of using Parameters instead of Variables?

    Hi All,
    I am new to TestStand. Still in the process of learning it.
    What are Parameters? How are they differenet from Variables? Why can't we use variables for passing data from one sequnece to another? What is the advantage of using Parameters instead of Variables?
    Thanks in advance,
    LaVIEWan
    Solved!
    Go to Solution.

    Hi,
    Using the Parameters is the correct method to pass data into and out of a sub sequence. You assign your data to be passed into or out of a Sequence when you are in the Edit Sequence Call dialog and in the Sequence Parameter list.
    Regards
    Ray Farmer

  • Transfering items from one customer to another customer

    Hi Gurus,
    I have a requirement where we have to transfer the items from one customer to another customer in the same company code.
    We should also be clearing the items from the old customer as part of the transfer.
    Is there a way/transaction in ECC 6.0 to achieve this.
    This is not a one-time transfer and the business would like the option of doing it every period (on a case to case basis.) so any standard SAP (transaction) way of doing it would be preferred.
    Best Regards
    ew

    Dear,
    SAP provides you F-51 t code to post transaction with clearing.
    Select radio button transfer posting with clearing and press choose open item button. Give customer name whose blance is to transferred and account key as D. Press process open item and in next screen select line items which needs to be posted. Proceed further give other customer number with posting 01 and do the transfer. Hope it will help
    Regards

  • Standard program to transfer open items from one vendor to another

    Hello to you all,
    Does anyone know of a standard program to transfer open items from one vendor to another,
    Thanks
    Yoav

    Hi,
    i dont know whether there is any program but there is one t.code which is meant for one of this purpose.
    We can do the same through F-51 also. First specify the document header information. for the first line item specify the customer debit or credit posting key, vendor number, and special gl if you want (Here you have to give vendor number to whom you want to transfer) press enter
    in this screen specify the amount. and go to Choose open items new screen will come
    Specify the vendor number and in additional selections choose document number and then click enter. the one line item only appear here then go for simulate. if required specify the narration by double clicking on the line item.
    hope this is clear,
    Regards,
    Sankar

  • A/R transfer open items from one payer to another

    Hello,
    has someone transferred open customer invoice items from one payer to another after the new payer was associated with the customer as a partner? which transaction to best use?
    thanks a lot
    Patrick

    Hi Andreas,
    unfortunately I didn't succeed in posting the transfer. somehow I seem not to be able to pick up the items for clearing in order to transfer them to a new invoice, although I can see them in the open item list. Would you have any hints on how to pull the old invoice into the posting and then create the new one in the same posting?
    thanks a lot
    Patrick

  • Transfer items from one calendar to another (on iMac)

    I have a question: how can you transfer all the items from one calendar into another calendar? I thought I had come up with an ingenious solution, but it didn't work (see below).
    Years ago, I set up a calendar for my wife and I to use as a "family" calendar. After uploading iOS8, I decided to try transfer all the calendar items from our "family" calendar to the newly created Family calendar. I used the Export command  to export all the items in the "family" calendar, and then the Import command to bring them into the Family calendar. BAD IDEA. I got a dialog box telling me the items could not be imported because they were already on the iCloud calendar. This dialog box had to be dismissed by choosing either "Ignore", "Try Again", or "Revert to Server". This dialog box popped up FOR EVERY CALENDAR ITEM. At first I thought I was in an endless loop. I finally put a stapler on my keyboard to hold down the Return key to dismiss the dialog boxes. Even then, it took several minutes to clear the dialog boxes. Apparently, I learned how NOT to transfer items from one calendar to another.

    Okay. I have answered my question. The key is to actually read and follow Apple's instructions (i.e. delete the original calendar AFTER exporting it, but BEFORE importing it into the new calendar.) 

  • Transfer Items from one warehouse to another

    hi,
        i have to transfer Items from one warehouse to another warehouse.
    i have a item which has 3 quantity in warehouse1 now i find that this item belongs to warehouse2  ,i want to shift all it's quantity in 2nd warehouse as well as sets  warehouse2 as default warehouse for that item.
    Regards

    Hi,
    Check this, it will help your query :
    http://help.sap.com/saphelp_sbo2005asp1/helpdata/en/0c/87353e7a069028e10000000a114084/content.htm
    Regards,
    Jitin

  • Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Good day!
    A simple Paste does not work for you?
    It should place the clipboard content as a new Layer which you can then move around.
    If there is any chance that the elements need to be scaled, rotated etc. I would prefer to place them as Smart Objects (File > Place …) and do the masking that is specific to the images themselves in those.
    Regards,
    Pfaffenbichler

Maybe you are looking for

  • How to stop a download in process

    Ive just started to download a data analysis program on my Mac, but have since changed my mind and no longer want the program on my Mac . I have paused it, but it was about 3 minutes into a 10 minute download. Does this mean that I have stopped the d

  • HT4112 how do i pair bluetooth apple keyboard and iphone5?

    I am trying to pair my wireless bluetooth apple keyboard with my iPhone 5. It recognizes the keyboard but will not pair with it. What am I doing wrong? Thanks in advance!

  • Image Quality issue with script

    So I recently wrote a simple script to output an image at a bunch of different resolutions. However, I am running into an image quality issue that I don't run into when I do the same thing manually. Here is an example image showcasing the image: http

  • Report for Variants

    Hi All, I would like to know is there a standard report which gives display / screen / transaction variants created by users? What i need is a list which gives me details such as: User logon name, display variant name (for query & report), transactio

  • Two operating systems?

    This may be a completely ridiculous question, but can I run Panther AND Tiger on my G5? I have a second hard drive that I formatted as Mac OSX Extended (Journaled)...can I install onto this drive? Would I have to erase the drive's contest before inst