Create package with prompt from other application

Hi Experts!
I need to create a package in the planning application. In the screen selection I need some dimensions of my planning cube and one dimension of the Ownership application. I don't have any problem with the current application dimension, but I need to retrieve the members of INTCO dimension from Ownership because the user should make the selection. Is it possible to create a prompt from other application?
Thanks!!

I create the package in Planning application: 
PROMPT
(SELECTINPUT,,,"Selction members","%ENTITY_DIM%,%CATEGORY_DIM%,%TIME_DIM%,%CURRENCY_DIM%,INTCO")
When i try to select one member of INTCO dimension it appear the following message: "Dimension INTCO is not found". BPC is not finding this dimension because it pertain to another application.

Similar Messages

  • Create DLL from labview and calling it from other application

    I have an application built using Labview. I wanted to create DLL out of it. The application has
    two String inputs start and stop buttons and two status indicators.
    1. How to itegrate start and stop buttons from function prototype?
    2. Does Labview created DLLs requires labview runtime engine when it is to be called from other application?
    Can some one help on this.
    Solved!
    Go to Solution.

    Hi Yuvish,
    1) They should be boolean inputs to your VI. But does it makes sense to provide a stop button input at the start of your VI? (THINK DATAFLOW!)
    2) Yes, the LV-RTE is needed...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Firefox v33 knocked out my Adobe 7 pro PDF printer plugin. PDFs print OK from other applications.

    Firefox v33 knocked out my Adobe 7 pro PDF printer plugin. PDFs print OK from other applications. It happened a few times randomly, and it seemed to resolve spontaneously, but now it is persistent.
    I've done scans for malware, which I suspected, but nothing showed up, nor corrected it with cleaning.
    I had this problem before, and I found directions on how to rest the printer within Firefox, but I've forgotten how or where I got it.
    I did try to re-install in control panel, but this appears to be a firefox issue. How do i rest the plugin or Firefox to once again print PDFs from browser pages. I need to use this feature printing receipts etc.

    Are you using a toolbar button (Create PDF extension) or a printer driver (selecting Adobe PDF or Distiller in the Print dialog) to generate the PDF? Older versions of Create PDF have been reported not to work any more (by older I mean from Acrobat X or earlier), but the printing method should still work.

  • Unable to receive special characters in XML using UTL_HTTP request from Other application

    Hi Team,
    We are using SOAP request in Oracle Application to Pull XML data from Other application.I am using below commands before receving response but still i am unable to receive special charcters/Spanish Charcters in XML.
    utl_http.set_body_charset(v_http_req, 'UTF-8');
    utl_http.set_header (v_http_req, 'Content-Type', 'text/xml');
    Thanks and Regards,
    Raghul

    Hello,
    Just when you think that you know everything, it is slammed in your face that you don't. The .Mac member name field in the System Preferences DOES NOT take your whole e-mail address. It only takes your user name or whatever comes BEFORE the "@" symbol. There was absolutely nothing wrong with my MacBook Pro (other than ther brain dead user).
    Sorry for wasting your time...
    If we learn from our mistakes, then I obtained my PhD years ago,
    Dr. Z.

  • Filling dynamic internal table with data from other internal table

    Hi Friends,
    My problem is that i have already built a dynamic internal table
    (class int_table->create) but now i want to fill it with data from other internal table.
    The dynamic table column name and the field value of the data filled internal table are same, but how to access that column name, since i cant hard code it anyway.
    Like if my werks field value is '8001'. I want to place it under the column 8001 of dynamic table, Can anybody help me in this regard?
    Awarding points is not a problem for even giving a slight hint.
    Best Regards

    Hi
    See this
    Dynamic internal table is internal table that we create on the fly with flexible column numbers.
    For sample code, please look at this code tutorial. Hopefully it can help you
    Check this link:
    http://www.****************/Tutorials/ABAP/DynamicInternaltable/DynamicInternalTable.htm
    Sample code:
    DATA: l_cnt(2) TYPE n,
    l_cnt1(3) TYPE n,
    l_nam(12),
    l_con(18) TYPE c,
    l_con1(18) TYPE c,
    lf_mat TYPE matnr.
    SORT it_bom_expl BY bom_comp bom_mat level.
    CLEAR: l_cnt1, <fs_dyn_wa>.
    Looping the component internal table
    LOOP AT it_bom_expl INTO gf_it_bom_expl.
    CLEAR: l_cnt1.
    AT NEW bom_comp.
    CLEAR: l_cnt, <fs_dyn_wa>, lf_mat.
    For every new bom component the material data is moved to
    temp material table which will be used for assigning the levels
    checking the count
    it_mat_temp[] = it_mat[].
    Component data is been assigned to the field symbol which is checked
    against the field of dynamic internal table and the value of the
    component number is been passed to the dynamic internal table field
    value.
    ASSIGN COMPONENT c_comp_list OF STRUCTURE <fs_dyn_wa> TO
    <fs_check>.
    <fs_check> = gf_it_bom_expl-bom_comp.
    ENDAT.
    AT NEW bom_mat.
    CLEAR l_con.
    ENDAT.
    lf_mat = gf_it_bom_expl-bom_mat.
    Looping the temp internal table and looping the dynamic internal table
    *by reading line by line into workarea, the materialxxn is been assigned
    to field symbol which will be checked and used.
    LOOP AT it_mat_temp.
    l_nam = c_mat.
    l_cnt1 = l_cnt1 + 1.
    CONCATENATE l_nam l_cnt1 INTO l_nam.
    LOOP AT <fs_dyn_table2> ASSIGNING <fs_dyn_wa2>.
    ASSIGN COMPONENT l_nam OF STRUCTURE <fs_dyn_wa2> TO <fs_xy>.
    ENDLOOP.
    IF <fs_xy> = lf_mat.
    CLEAR lf_mat.
    l_con1 = l_con.
    ENDIF.
    Checking whether the material exists for a component and if so it is
    been assigned to the field symbol which is checked against the field
    of dynamic internal table and the level of the component number
    against material is been passed to the dynamic internal table field
    value.
    IF <fs_xy> = gf_it_bom_expl-bom_mat.
    ASSIGN COMPONENT l_nam OF STRUCTURE <fs_dyn_wa> TO <fs_check>.
    CLEAR l_con.
    MOVE gf_it_bom_expl-level TO l_con.
    CONCATENATE c_val_l l_con INTO l_con.
    CONDENSE l_con NO-GAPS.
    IF l_con1 NE space.
    CONCATENATE l_con1 l_con INTO l_con SEPARATED BY c_comma.
    CLEAR l_con1.
    l_cnt = l_cnt - 1.
    ENDIF.
    <fs_check> = l_con.
    l_cnt = l_cnt + 1.
    ENDIF.
    ENDLOOP.
    AT END OF bom_comp.
    At end of every new bom component the count is moved to the field
    symbol which is checked against the field of dynamic internal table
    and the count is been passed to the dynamic internal table field
    value.
    ASSIGN COMPONENT c_count OF STRUCTURE <fs_dyn_wa> TO <fs_check>.
    <fs_check> = l_cnt.
    INSERT <fs_dyn_wa> INTO TABLE <fs_dyn_table>.
    ENDAT.
    ENDLOOP.
    Reward if useful
    Anji

  • How to pass values to dashboard prompts from external applications

    Any idea is well appreciated.
    How can I pass values of dashboard prompts from external applications to the dashboard prompts so that the dashboard is prefiltered based on values sent by external applications.
    Thanks in Advance!
    Kris

    Kris,
    i am able to change the session variable and able to call the dashboard from external app, but i identified prompt value not changing. but Finally i am able to found a workaround for you.
    Use the following URL and it explained here
    http://localhost:9704/analytics/saw.dll?Dashboard&nquser=Administrator&nqpassword=Administrator&PortalPath=/shared/abcd/_portal/dash1&Options=rmf&DSN=madan
    PortalPath is your dashboard location. /shared/abcd is folder where i saved dashboards. dash1 is my dashboard name.
    internally this dashboard includes many reports that uses the session variable. after doing above this i am able to update the session variable to the value i have given in URL, DSN=value.
    You may observer here that calls the dashboard and passes the value but its not updating the prompt value. so workaround for this is edit your prompt,
    change the Default to - SQL Results and place the sql
    SELECT CASE WHEN 1=0 THEN Markets.Region ELSE VALUEOF(NQ_SESSION.DSN) END saw_0 FROM Paint
    again here Market.Region is column from presentation layer and Paint is subject area. After doing this step, your prompt always shows value in the session varible as default.
    Now include reports and dashboard prompt in the dashboard and run this url from external applicaitons.
    http://localhost:9704/analytics/saw.dll?Dashboard&nquser=Administrator&nqpassword=Administrator&PortalPath=/shared/abcd/_portal/dash1&Options=rmf&DSN=madan
    it worked for me and blog this soon. if it works for you mark the question as answered and mark my replies as correct.
    thanks
    - Madan

  • Apex 2.2 copying pages from other applications

    Is it possible to copy reports and pages from other applications with APEX 2.2 ?

    Ben,
    Pages, yes. On the Page Definition page, use the Copy button and follow the wizard.
    Scott

  • MIDI from other applications will not drag to GB '09

    I am finding that since upgrading to GB '09 some MIDI files from other applications such as Encore5 will not drag to the GB track area although they play correctly with QuickTime Player. Is GB '09 more fussy about MIDI than earlier versions? What do I do about this?

    Thanks. I don't have QT Pro so I would have to spend £20 to buy it from AppleStore, but your suggestion made me realize I can do audio format conversion with Toast10 which I do have.
    However, something I forgot to mention in my previous post is that the original midi contains 4 separate tracks which I need to keep separate for processing with GB. Toast10 accepts the midi and merges the 4 tracks into one stereo audio file. I suspect QT Pro would do the same.
    I just need GB to accept midi like it used to in previous versions.

  • Access Address Book from other applications

    Hi there,
    How can I access Address Book information from other applications (notably the command line, OpenOffice, etc.)?
    In particular, is there a command line utility to access and edit the Address Book?
    Thanks!
    Brian

    One of the best answers would have been the CPAN module: Mac::Glue. Cheers.

  • Is Jolt usable from other application servers?

    Hi All
    Is Jolt usable from application servers other than Weblogic?
    Thanks,
    Rob

    Rob,
    WTC is usable only from Weblogic. Jolt is usable
    from other application servers.
    Bob Finan
    "Rob" <[email protected]> wrote in message
    news:3f4fed5b$[email protected]..
    >
    Hi All
    Is the Weblogic Tuxedo Connector usable from other application servers?I'm primarily
    interested in using the WTC from JBoss.
    Additionaly, does anyone know if Jolt is usable from application serversother
    than Weblogic?
    Thanks,
    Rob

  • Transfer postings from other application components to accounting

    Hi expert, we have to transfer posting from other application components(SD,MM) (system A) to accounting (system B, FI/CO module only).
    Is there any related documents of this aspect? 
    Best wishes,
    Evan

    Hi!
    It will be not so easy. You have to set up an interface between the 2 systems.
    If you are using IDoc based interface, you can send IDocs from SD, when an invoice is enable to accounting.
    You might check out user exits (programs) RV60AFZA, RV60AFZB for this.
    Sorry, but this task will be not ready in 10 minutes...
    Regards
    Tamá

  • When using panasonic remote2 app, videos shot on iPad appear upside down on the television.  This does not happen with videos from other sources. Any suggestions?

    When using panasonic remote2 app, videos shot on iPad appear upside down on the television.  This does not happen with videos from other sources. Any suggestions?

    Hi Steve
    worldweary wrote:
    Thanks again. I tried channel 13 and it seemed to work better, with less dropouts (albeit not perfect) but sadly my slightly ageing laptop wouldn't recognise the network at all with the Hub set to that channel, so I had to switch it back to 11!
    Will try the factory reset at some point to see if that improves things.
    I have the same issue with my iPad when streaming videos...like the issue posted on ‎25-04-2014 18h36 by Steve.
    Steve - Can you kinldy clarify how you resolved the problem finally.
    I was infact planning to change the iPad or sell it off due to this recurring problem.
    Thanks and regards
    Siva

  • What does "Easily import photos from other applications" really mean?

    What does "Easily import photos from other applications" really mean in the Lightroom 4 features list? I also see it stated as "...from other software" as well. Yes, I understand the LR can import from Elements libraries but can't find any reference to other applications anywhere, not in the online help, not in the user guide, not in any videos on Adobe TV. It would be nice if LR could see into iPhoto or Aperture libraries but that doesn't appear to be the case. Is that assumption correct? What other applications can LR import from?

    Hello bbb34vball,
    Since that article didn't help, I would suggest trying the steps in this article next:
    iOS: Unable to import photos to computer - Apple Support
    If that doesn't resolve your issue, you may find more information by using another one of Apple's support resources - https://getsupport.apple.com/GetproductgroupList.action.
    Regards,
    Jeff D. 

  • I can't print CS5 files from my Mac OSX (Mavericks). Can print from other applications. Help please?

    I can't print CS5 files from my Mac OSX (Mavericks). CS5 crashes when sent to print.  Can print from other applications (Word, etc.).

    I just tried installing them. I got the message that "Some updates failed to install" (including for CS5), to quit and try again. I was curious and tried again to print and lo and behold, I could print!  I'm still nervous that not everything installed and wonder how to get a complete install.

  • Access resource from other application using JAAS

    i use JAAS for autenticate and autorizate in my web application, but i need access a resource from the other application , but this application don�t use JAAS.
    How can i acces this resource from other application?
    i know need send the parameters JSESSIONID, but , always redirecto the login page.
    thank you for your help

    your signon url is consists of the following url http://server.domain.com:port/site/signon.html
    Can you ping server.domain.com from your client?
    If you can ping it, then make sure your port is added as a rule in the firewall of the server.
    Also make sure that the proxy setting of the client have an exception to server.domain.com.
    If you cannot ping it, make sure the server and the client are conneted to the same network and make sure the hosts file on the client reflects the ipaddress and the hostname of the server.
    Hakan

Maybe you are looking for

  • Extremely slow Apple TV sync

    I have begun to sync my iTunes to my Apple TV. Everything has gone as planned except that seems to take about 10 minutes per song- literally - to sync. At 2000 songs this will take a long time. Is this normal?? tks

  • "failed to respond/connect" fix

    I have a Dual G4 Mirror Drive Door running Tiger. After upgrading to Tiger, iChat AV wasn't working, like I've seen in many other posts. After culling this discussion board for a setup like mine: iChat via tower connected to Airport Extreme base stat

  • I am trying to save a document in pages, but the save button is not highlighted and won't let me save it

    I am trying to save a pages document, but the save button is not highlighted and i cannot click on it.

  • Movement Type 122 and Equipment Master status

    Using Movement type 102 (Reversal Goods Receipt) the Equipment master status is reset to AVLB and the stock batch is deleted. However movement type 122 (Return Delivery to Vendor) does not do this. Is there anyway to modify movement type 122 so that

  • Regarding Invoice Return and Deliverynote Return

    Hi Guru's I have one urgent problem,,, I have developed Delivery note and Invoice its working fine... but when they will return Invoice( invoice cancellation) negative values Printing.. can we explain how to resolve this porblem. and also Delivery no