[CX] Unable to view Smart Lists on Data Forms

Hello All!
I've created and deployed CAPEX Planning Application using BPMA. Deploy and Initialize CAPEX Planning Application was successfull. But I can not view any smart lists on data forms - there are only usual cells, where I can insert data.
I've tried to create Classic Planning Application with CAPEX option. There were not any problems with it. Application works fine. But I need to use BPMA when creating application.
What is the problem in my case? Had anyone encounter this problem?
Thank's in advance!

Hi, John!
Thank's for response!
Yes, there are all necessary SmartList dimensions in my application view and they are associated with particular Account members (for example, for some members under Capital Driver Assumptions member).
Moreover, after deploying application view when I go to 'Administration -> Dimensions' in my CAPEX Application I can see these associations for that Account members.
Best regards,
Alexander

Similar Messages

  • Unable to view table list

    I am able to connect to the database through sql developer but unable to view tables list.
    Select query is displaying the contents though.
    Any Help ???

    I am on Windows XP using SQLDeveloper Build 5440 and I am having a similar problem (I think).
    I am able to connect to the database, I am able to see a list of all the tables (as the owner) in the tree but i can not see anything under columns and am shown 5 all null rows under data. I am able to view statistics, DDL and I can query the table with a select and get results. I have tried reverting to an older versin of SQLDeveloper but that gave me the same result.
    If this is the same problem then I am having it too. Any help would be appreciated. Thanks in advance.
    Greg

  • Unable to view enhanced field in Data Source

    Hi All,
    We recently upgraded our R/3 system from 4.7 to ECC 6.0. Now when we are enhancing the data source, the field is visible in the Extract Structure. But we are unable to view it in the data source. We checked out in RSA2 the enhanced field attribute is specified as 'Field in OLTP and BW Hidden by SAP'. We have written code to modifiy the ROOSFIELD table to make the enahnced field visible. But this is the problem with all the data sources. Whenever, we have to enahnce, we have to go thru this process to make the enhanced field visible.
    Is it like that we missied out any patch in ECC 6.0 while upgrade? If any person faced similar situation, please help us.

    Hi Ravi,
    I think you are missing a step here. As soon as you enhance your datasource with new fields, by default, those 2 check boxes are checked ( Hidden and Field in User exit only). You go to RSA6, edit your datasource and here, you can uncheck these added fields so that you can use them. You do not need to write any code to change the fields settings in ROOSFIELD table. Do the step I mentioned above after enhancing and you should be good. Hope it helps.
    Thanks and Regards
    Subray Hegde

  • Unable to view table list in sql developer

    I am able to connect to the database through sql developer but unable to view tables list.
    Select query is displaying the contents though.
    Any Help ???

    Using SQL Developer, I log in using the owner user id and password. I can see all but one of my materialized views. It was definitely created by the user id I'm logged in as. A query of user_objects in sql+ shows all MVs, including the one that's missing in SQL Developer. If I log in using the same credentials in TOAD, the MV is displayed in the current schema, as I'd expect. The super weird thing is that if I use the previous version of SQL Developer, I see that MV! Any thoughts?
    Edited by: [email protected] on Feb 25, 2009 9:19 AM

  • Unable to view Column listing in iTunes 11.1.5.5

    Have just upgraded (after several ignored promptings) to iTunes 11.1.5.5 from version 10. What a mistake. The graphic interface is pretty enough but I have almost 11,500 tracks in iTunes and I just need to list them in a table as in the previous version as this makes managing them; creating playlists, etc. a whole lot easier.
    V.11 seems to have dispensed with a lot of the detail I need (genre - just shown, not sorted by; no. of plays, etc.). Clicking on a track and selecting 'Get Info' shows that all the data stored in the ID3 tags is still there but I cannot see how to bring it to the surface so I can see it or how I can order the records in a table.
    I have tried selecting the Column Browser option in the View menu but for a reason I can't fathom all the options in that menu are greyed out so I'm stuck with an interface which hasn't been reorganised in a way that suits me and no apparent way of reversing the change. I'm running iTunes on a fairly old desktop PC that is increasingly lacking in processing power and running Vista so I have no idea whether those factors might restrict my options.
    Can anyone suggest how I can return the interface to something close to the v.10 appearance  ... or point me at a source where I can "upgrade back" to v.10.
    Thanks for any suggestions.

    You can enable the column browser from the menu bar when in the Songs or other list views.
    Apple's official advice on duplicates is here... HT2905 - How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls, such as lost ratings or playlist membership.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • Unable to view higher resolution pictures in forms

    Hi All,
    There is an existing custom form, which has a table data block consisting of header_id,BLOB(image) fields.
    there are "upload_image" and "remove_image" buttons.
    when i press upload button a window opens and i select an image and press OK it is uploaded into into table.
    The code is as below
    plist := GET_PARAMETER_LIST (:SYSTEM.custom_item_event_parameters);
    GET_PARAMETER_ATTR (plist, 'OPENDIALOG', ptype, pvalue);
    uploaded_file := pvalue;
    v_chr_path :=
    SUBSTR (uploaded_file, 0, INSTR (uploaded_file, '\', -1)
    - 1);
    v_chr_name := INSTR (uploaded_file, '\', -1) + 1;
    GET_PARAMETER_ATTR (plist, 'LASTDIR', ptype, pvalue);
    set_last_dir (pvalue);
    SET_CUSTOM_ITEM_PROPERTY ('FILE_DIALOG', 'GFMAGENT', fnd_web_config.gfm_agent );
    gfm_access_id := fnd_gfm.authorize (NULL);
    SET_CUSTOM_ITEM_PROPERTY ('FILE_DIALOG', 'ACCESSID', TO_CHAR (gfm_access_id) );
    SET_CUSTOM_ITEM_PROPERTY ('FILE_DIALOG', 'UPLOADFILE', TO_CHAR (NULL));
    SELECT file_id INTO v_num_file_id FROM fnd_lob_access WHERE access_id = gfm_access_id;
    g_num_header_id := :main_block.header_id;
    transfer_file ------>database procedure to upload image
    (o_errbuf => v_chr_err_buf,
    o_retcode => v_num_retcode,
    o_num_imag_size => v_num_image_size,
    i_num_access_id => gfm_access_id,
    i_chr_button => g_chr_button,
    i_chr_area => g_chr_area,
    i_num_header_id => g_num_header_id
    execute query;
    transfer_file has query as
    EXECUTE IMMEDIATE ' UPDATE '
    || i_chr_area
    || ' SET '
    || i_chr_button
    || '= (SELECT FILE_DATA FROM FND_LOBS FL,
    fnd_lob_access FLA
    WHERE FLA.access_id = :1
    and FLA.file_id =FL.FILE_ID ),
    last_update_date = sysdate
    WHERE HEADER_ID = :2'
    USING i_num_access_id, i_num_header_id;
    image are loaded to database table
    I am able to view images of resolution less than 720X600 (approx) in front end.
    But I am  unable to view higher resolution images.
    Can Some one help me how can i View higher resolution images?

    Forms version?
    Have you read the Restrictions in Form Builder help under READ_Image Built-in?
    Cheers,

  • Unable to view field "Tax Report date" (BKPF-VATDATE) in accounting doc

    Hi friends,
    I am unable to get and view the field "Tax Report date" (BKPF-VATDATE) in accounting document when the invoices are atutomatically posted via SD(Transaction VF01) and MM(MIRO transactions). But we can get and view the same field if we post the invoice manually through the transaction FB60.
    Could you please let me know where is the control even to get the same field when the invoices are automatically posted through SD and MM.
    Regards,
    Srinivas

    Hi Paco
    Thank You for your response and sorry for the delay in reply for your message.
    This is solved with the help of SAP Note 1232484. We have run the SAPFACCG and RFBIPPGO and now can be able to see the the field.
    Regards,
    Srinivas

  • Unable to view episode list of my podcast

    When I try to view the episode list of my podcast (Murphy's Saloon) to check if current episodes are actually listed in iTunes, I can do a search with no problem, and iTunes shows me that the show is there.
    But when I click on the show icon, I get an error message "Could not complete the Music Store request. The store may be busy. Check your internet connection, or try again later."
    My connection is fine, thankyouverymuch, and I've tried at a wide variety of different times for almost two weeks.
    Now what?
    Could this somehow be related to the number of episodes I have available (more than 20)?
    ~ ~ ~ ~ ~
    (please ignore this post, I tried to make sure it went into the Apple iTunes discussion area - and - obviously - failed)
    Message was edited by: C.G. Niebank

    see edit in message.

  • Unable to view supplier list in LOV in PO Form

    Hi All,
    I have defined supplier, supplier site in supplier definition form but same values are not coming in LOV in PO form.
    I am working on CRP instance and done all steps correctly.
    If I open ASL screen suppliers are visiable but same LOV suppliers in PO screen.
    Kindly let me know causes for ASAP.
    Thanks
    Satish

    Dear Lee
    Yes it is a standard that you cannot view proformas in VF05.  The reason is that VF05 is to list all billing documents and in SAP proformas are not considered as billing documents.  If you want have a report, you can develop with tables VBRK and VBRP.
    thanks
    G. Lakshmipathi

  • Unable to view the AUSP archive data

    Hi,
    I have archived the data for FI_ACCRECV archive object. I do not see AUSP table in the write statistics.
    I am not sure how to view the archived data of AUSP table.
    Kindly guide me. If this is not the correct forum to ask..please let me know where can i post this question.
    Thanks
    Mallika

    Hi
    In tcode DB15 you can see the archiving object for the table AUSP. In tcode AOBJ for object FI_ACCRECV, I can see that there isn't any report to read this data (if the archiving file is in its path). I'm sorry.
    Regards
    Eduardo

  • Unable to view object list in SE80 in MiniSap 4.6D

    I have installed MiniSap 4.6D which came along the book ABAP Objects written by Horst keller. When the Object Navigator is displayed I am not able to see the object list. It is shows page cannot be displayed, as it is trying to connect to internet. I think internet is not required to access object list and even if the internet connection is on it shows the same message. I am using WinXP SP2 operating system.
    Please help.

    Chandan
    Patch the 4.6D GUI to a current patch. SAPsuperUsers dot com (Forums->Downloads->Software->SAPgui patches) have a patch that will fix this.
    You could download the 6.40 GUI (availabe here (at SDN) under downloads, but is 500MB!).
    On the Kernal disc there is the html file mini.htm at the bottom of this is it tells you how to set up the help files.
    MattG.

  • Unable to view list of added devices in LMS

    Dear All ,
         Iam working on Cisco LMS 3.2.1.Everything was working fine before but since last 2-3 days we are unable to view the list of added devices under device management tab.We are able to see the added groups only.Because of this issue we are unable to get the logs from the added devices.
    Can anybody help in resolving this issue.....???
    Regards ,
    Divya A M

    We tried the suggested steps and could successfully reset the Casuser Password.But couldnot perform unregistering and registering Apache service.We ended up getting the following errors.
    1.)
    C:\Documents and Settings\Administrator>pdreg -u Apache(no output)
    2.)
    E:\lms\MDC\Apache\bin>pdreg -r Apache -epdcmd: option requires an argument -- eERROR: no such command, or option error.Usage:    pdcmd options...Where -b msg    broadcast message to all daemons -k daemon    kill daemon -K    stop system -H    start system -l    list daemon registry -R daemon    start daemon -i daemon    show daemon status briefly -I    show all daemons status briefly -s daemon    show daemon status -S    show all daemons status -G    show daemon statistics -r daemon -e path -d depends -f arguments [-w ] [-n] [-q] [-t code]    register daemon (-w -- timeout for ready file notification)                    (-n -- no autostart)                    (-q -- no INFO messages)                    (-t {0|p|n} -- expected transient exit code                         where                            0 = expected exit code is 0                            p = expected exit code is >=0                            n = expected exit code is < 0 ) -u daemon [-q]    unregister daemon (-q -- no INFO messages) -v    show version number
    3.)
    E:\lms\MDC\Apache\bin>Apache.exe" -f "-d'Apache.exe" -f "-d' is not recognized as an internal or external command,operable program or batch file.
    4.)
    E:\lms\MDC>Apache -D SSL" -d TomcatMonitor(OS 10048)Only one usage of each socket address (protocol/network address/port)is normally permitted.  : make_sock: could not bind to address 0.0.0.0:443no listening sockets available, shutting downUnable to open logs
    Regards  ,
    Divya

  • Filter data based on smart list

    Hi,
    i want to filter out the data based on smartlist.
    For Example: in 1 form i have a smart list yes and no and if i select smart list on that form then in 2nd webform i just want to see only "Yes" Selected smart list data and 3rd form i want to see only "No" selected smartlist data.
    Can we accomplished with the help of Validation Rules? Is there any best approach to accomplished ?
    It will be really appreciate.
    Thanks
    Navid

    Hello JohnGoodwin,
    I need little help about conditional supression,
    in 1 form i have a smart list yes and no and if i select smart list on that form then in 2nd webform i just want to see only "Yes" Selected smart list data and 3rd form i want to see only "No" selected smartlist data But in my case user will change Yes and No according to requirements. When the change yes to no it will shows under No form same with other.
    Is there any best approach?
    Thanks

  • Unable to view latest default trace in log viewer

    Hello all,
    We have NW 7.0 J2EE production server. We have a CI and two application servers.
    Our SP level is SP18.
    The DB is oracle and the operating system in RHEL 4.
    I have a problem in viewing the default trace files in log viewer using the visual administrator.
    I am able to view the old default trace but unable to view the latest trace data generated.
    I am facing this problem when i try to view the logs of a particular application server.
    Able to view the latest default trace properly for CI and the other application server. Problem lies only with a single application server.
    I have also check the permissions in OS level for the trace files. Everything looks fine.
    Could some one give me a clue on how to solve this issue.
    Regards,
    Chandru

    Hello Joey,
    The trace file isnt too big....
    We have set the file size as 10 MB.
    We have some 15 to 16 default trace files for each of the server process and we have 3 server process in that application server.
    The ForceSingleTraceFile parameter is set as YES in visual admin.
    So the logs will be displayed in visual admin as a single default trace file.
    Hope I had provided the inputs you have asked...
    Regards,
    Chandru

  • Import / export of Application view and Data Form

    Hi,
    I'd like to know if it's possible to backup or export Applications View in EPMA and Data Form in a Planning Application between the test and production machine.
    Can anyone help me?
    Thanks in advance.
    Ale

    Hi John and Hi to all,
    I’ve used the EPMA File Generator that you sent me both under a test virtual machine and our test machine, but always I’ve the same problem (deploy aborted on 0%), that I’ve pasted up in this tread, and I’ve note that after the exporting with the EPMA File Generator, the original application view not deploys with the followed message:
    Status : Aborted
    Progress : 100%
    Server : DimServer
    Detail : App Creation failed with Exceptioncom.hyperion.planning.OptimisticConcurrencyException: You are trying to change data that has been changed by a user on another server. Wait a few seconds and try again. If you continue to see this error message, please contact your administrator.     at com.hyperion.planning.sql.actions.HspObjectAction.ensureOptimisticConcurrency(Unknown Source)     at com.hyperion.planning.sql.actions.HspObjectAction.update(Unknown Source)     at com.hyperion.planning.sql.actions.HspUniqueObjectAction.update(Unknown Source)     at com.hyperion.planning.sql.actions.HspMemberAction.update(Unknown Source)     at com.hyperion.planning.sql.actions.HspDimensionAction.update(Unknown Source)     at com.hyperion.planning.sql.actions.HspAction.update(Unknown Source)     at com.hyperion.planning.sql.actions.HspActionSet.doActions(Unknown Source)     at com.hyperion.planning.sql.actions.HspActionSet.doActions(Unknown Source)     at com.hyperion.planning.db.HspDEDBImpl.saveDimension(Unknown Source)     at com.hyperion.planning.HyperionPlanningBean.updateDimension(Unknown Source)     at com.hyperion.planning.appdeploy.HspAWBXMLHelper.updateDim(Unknown Source)     at com.hyperion.planning.appdeploy.HspAWBXMLHelper.parseNLoadDimensions(Unknown Source)     at com.hyperion.planning.appdeploy.HspAppDefinition.deployAppFromXML(Unknown Source)     at com.hyperion.planning.appdeploy.HspAppDefinition.access$000(Unknown Source)     at com.hyperion.planning.appdeploy.HspAppDefinition$1.run(Unknown Source)
    What can is happened?
    Thanks
    Alessia

Maybe you are looking for

  • Sap r/3 rel 4.6c - F-03 Process open Items; standard output; column width

    Hello All: I use SAP R/3 Release 4.6C. I am learning how to use the F-03 Clear G/L Account function. On the front page of F-03 you enter the account number and then click process open items. The output comes on the screen in the "standard" tab. In th

  • Pse9-problem importing photos from pse5

    Just installed pse9.  I can open editor and organizer but having trouble getting all my photos into organizer.  When I open pse5 I see all photos.  Help says I can import catalogs but I do not see this option in editor or organizer.   Help says I can

  • Help on K700i- OK/Send Command Problem...

    Hi guys, I need your help with SE K700i I developed a midlet that can send SMS. It works well with other phones but in SE K700i when i execute the SEND Command it doesn't do anything and sometimes when I used the BACK command and returned to SEND Com

  • Prospective new BT Broadband user - DLM queries

    I'm currently an O2 LLU broadband user and, you my have heard, Sky are in the process of taking over O2/BE broadband and home phone accounts. I have a BT line and want to keep it that way, so I've been looking at what BT broadband can offer. It's not

  • Excluding Items from Demantra collection

    Hi, Is it possible to exclude the items from being collected to Demantra? Basically, the sales history in Demantra remains, but I don't want to collect the history going forward. Thanks Praveena Dasalakunte