Required some information about ACTID

Hello Experts,
Can someone please explain me the significance of ACTID in the url and what does it exactly represent?
There is no documentation available in devlibrary about this ACTID.
We can see actid when we try to open any webi report.
Regards,
John

Hi,
Yes its true, It's an internal part of InfoView, and stands for "Action ID".
But there should be mapping of "Action ID" somewhere stored in application.
Actually we have to open InfoView's scheduling page of particular report from external link.
In that link we have to pass "ActId" and "ObjID".  (We got the sdk code for finding objid based on CUID)
Now we are having multiple BO environment. Thus "ActID" keeps changing in every environment. So this link fails.
Can anyone please help me in this.
Thanks in advance
Regards,
Amar.

Similar Messages

  • Some information about http time out

    hi 2 all,
    I want some information about http time out,like what all different transactions are used.

    Hi,
    Could you be more specific? Here is a blog about timeouts:
    /people/michal.krawczyk2/blog/2006/06/08/xi-timeouts-timeouts-timeouts
    /wg

  • Nation advanced search on my IMac, which I think is a spyware. When I want wo go to google chrome it redirects me to this ominous nation search engeen. Has anybody got some information about it and how I can get rid of

    I just caught a thing called nation advanced search on my iMac computer, which I think is a spyware. When I want wo go to google chrome it redirects me to this ominous nation search engeen. Has anybody got some information about it and how I can get rid of it? What does can it do to my data and is it really a spyware? I just found information in youtube, that it is a spyware, and that it has to be removed, but the information they give for the removal is just working for PCs not for Macs.
    Please help!

    Thank you all for the friendly assistance provided.
    I have found a solutiton to the problem I was having.  I hope that many more can benefit from the information I will provide.
    I started at Finder, then went to GO selected COMPUTER and then Machintosh HD, then Library, Scripting Additions folder and trashed all that was there. This is what worked for me, if you choose to not delete your content its up to you.  Happy Computing.
    God Bless!!
    This solved my question 

  • How i get some informations about audio file?

    Hi to all,
    i would like to know how i get some informations about audio file, such as its artist, bitrate, file type, duration, ecc...
    Any help me?

    Ok, but which are the docs of audio format?Again, what does that have to do with Java?
    Where i can found these documents?Again, what does that have to do with Java?
    Thank you...For nothing.
    db

  • I need some information about jre 1.5 and jre 1.6.

    Hello guys,
    I need some information about jre 1.5 and jre 1.6.
    Suppose if i have jre 1.5 customized with "additional language support" installed in my my desktop, and later on i install jre 1.6. will this jre over write all the esisting settings which was present in jre 1.5?
    In short will the version upgrades disable the features of the old Version even though the old version is present in the desktop?
    Thanks in advance for your answers.

    In <2j_j3.1889$[email protected]> =?iso-8859-1?B?VG9t4XMgU3XhcmV6?= writes:
    > Hi all, I am developing an acquisition data system for biomedical
    >signals and I need to transmit this data from my hardware to PC using the
    >USB port. For this, I am writing a device driver for Windows 98
    ^^^^^^ ^^^^^^ ^^^^^^^ ^^
    That's not a trivial step. I would write a small C/C++ program that
    exercises your driver (for robustness) just to be sure it's working
    right first without crashing your system.
    >The problem is that I don't know to use this driver in LabView.
    >For now, I think to use a "code interface node" with code writen in C or a
    >"call library function" with a DLL.
    That's correct. _After_ you got your C/C
    ++ test program (and USB
    driver) above working, then you can convert this little test program
    into a DLL or CIN, which can interface with LabView. A DLL might be
    easier (slightly) to write, but the CIN will work faster with LabView
    and can be designed to be reentrant. The Code Interface Reference
    Manual should guide you. Remember, this is a task for an _experienced_
    C programmer. You'll need to use handles to pointers into all your
    dynamic arrays and such passed into LabView.
    After you got your CIN or DLL written, you can use a special CIN
    function node to "link" (or bind) your CIN object into LabView's VI
    diagram.
    SOME THOUGHTS:
    There are many hardware devices already on the market today that come
    with Windows 98 drivers and DLL (or even CIN) libraries that would work
    immediately with LabView. Why don't you save yourself three months of
    work and simply buy one of these?
    /\ Mark M Mehl, alias Superticker (Supertickler to some)
    <><> Internet: [email protected]
    \/ Preferred
    UUCP: uunet!iastate.edu!mehl
    Disclaimer: You got to be kidding; who would want to claim anything I said?

  • I need some information about File Download & File Upload

    Hi  All,
    Can any one help me on this, I need some information about File Download & File Upload.
    I read tutorial abt file upload and download but some of methods in tutorial are deprecated so i need clear information abt File upload and Download, if possible Code examples.
    Thanks
    Ragards
    Ravi Golla

    Hi Ravi
    Check out thses links for examples:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71
    /docs/DOC-8661#22 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/202a850a-58e0-2910-eeb3-bfc3e081257f
    Otherwise you can simply follow this code for file download
    Use the code like this.
    1) Create the button and bind the action for it.
    2)then write this code in the action.
    3) do not write any thing in the init method.
    try {
    final byte[] content = this.getByteArrayFromResourcePath("C:
    xyz.properties");
    final IWDCachedWebResource resource = WDWebResource.getWebResource(content, WDWebResourceType.UNKNOWN);
    try {
    final IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(resource.getAbsoluteURL(), "WD_Filedownload", false);
    window.open();
    catch(Exception e)
    wdComponentAPI.getMessageManager().reportException(new WDNonFatalException(e), false);
    5) writr the method getByteArrayFromResourcePath
    //@@begin others
    private byte[] getByteArrayFromResourcePath(String resourcePath)
    throws FileNotFoundException, IOException {
    FileInputStream in = new FileInputStream(new File(resourcePath));
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    int len;
    byte[] part = new byte[10 * 1024];
    while ((len = in.read(part)) != -1) {
    out.write(part, 0, len);
    in.close();
    return out.toByteArray();
    //end
    Similarly for file upload
    Similarly for upload in to server path also do the same
    IWDAttributeInfo attInfo =
    wdContext.getNodeInfo().getAttribute("upload");
    binaryType =
    (IWDModifiableBinaryType) attInfo.getModifiableSimpleType();
    uploadedName = binaryType.getFileName();
    File filename =new File("
    <server name>
    <folder name>
    "+uploadedName ); );
    try {
    FileOutputStream out = new FileOutputStream(filename);
    out.write(b);
    out.close();
    } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();

  • Hello please i need some information about the blackberr...

    hello please i need some information about the blackberry instant messenger is how does it work , i heard that i send messages for free from a blackberry to a blackberry is it true ? does it need internet ? and does it matter if the other phone is in another country'
    thank you alot

    Hello,
    Here is a page with much information about BBM:
    http://na.blackberry.com/eng/devices/features/im/blackberry_messenger.jsp
    Hope that helps! If not, Please come to:
    http://supportforums.blackberry.com/rim/
    and register an account. Then post to the applicable forum.
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I Need To Know Some Information About Installing Windows On A Macbook Pro 13

    Hello !
    Actually Playing My Favourite Games Is A Problem Because I Can't Find DVD Games (Mac Version) For My Macbook Pro So I Found Out That You Can Install Windows 7 Software On A Mac But I Wanted To Know Some Information Like :
    - I Know That I Can Install It Using Boot Camp But I'll Need A Windows 7 DVD So Is There Some Specialized Version For Mac ? Or I Just Need A Normal Windows 7 DVD For PC ?
    - If I Installed Windows 7, Will I Lose The Mac OS X Lion ? Or I Can Have Both Softwares Together At The Same Time ?
    - If I Installed Windows 7, Will It Have The Same Specifications Of Macbook Pro 13 ? (Ex: 2.4 GHz Processor)
    - If I Installed Windows 7 And I Already Had Mac OS X Lion, Will The Macbook Lag Or It Will Work Properly ?
    - If There's Any More Info That You Know About Installing Windows 7 On A Macbook Pro 13, Please Provide Me With It, Thanks!

    This really is a forum about the MacBook Pro hardware.  The best place to ask your questions would be the Windows/BootCamp forum.  Your MacBook Pro 13 has one weakness that's going to make gaming a bad experience.  It has an integrated Intel HD graphics processor, whereas the higher end MacBook Pro's have discrete ATI graphics processors.  But the forum will help you out. 

  • I need some information about scripts

    hi,
    i need detailed information about scripts.tell me where it will available.
    bye
    sreenu.

    Hi,
    Posting in the ep forum,I believe you require Information on javascripts and client side eventing(EPCF).
    Here is the link that you need with regard to this:
    http://help.sap.com/saphelp_erp2005/helpdata/en/ce/3e98408d953154e10000000a1550b0/frameset.htm
    (Or go to SAP NetWeaver Developer’s Guide->
    IT Scenario-Driven Enhancements to Applications->Running an Enterprise Portal->Core Development Tasks->Creating and Managing Content->Client-side Eventing)
    The below document can also be useful.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/enterprise portal client.pdf
    If you need an illustration of how epcf can be used , you can refer to this blog
    /people/arulraja.ma/blog/2004/12/18/how-to-include-loading-message-in-a-portal-iview-ep6-sp2
    Regards,
    Harish
    (Please award points for helpful answers)

  • Some information about SUN IDM

    Hi,
    I am new in IDM and want to know some thing about it.
    1. Is it free software to impliment in any organigation.
    2. From where i can down load it.
    Thanks......

    its listed in the JAVA enterprise software... under identity management.
    go to downloads... & you can download them....
    for info to work on... theres a long way ahead of you SIR.....
    Docs, forums... etc would be the best source for more info...

  • Where can I find some information about color atttributes

    Dear friends.
    I want use color attributes with <HTMLB:chart>. There are some examples about that. But I don't know what code is matched with color.
    regards.

    Current color selection for the charts is controlled by the attribute <b>colorOrder</b>. Sample example
    <htmlb:chart id                  = "gph2"
                        chartType           = "COLS"
                        titleCategories     = "SALES ORDERS"
                        titleValues         = "Number"
                        legendPosition      = "NORTH"
                        data                = "<%= data %>"
                        height              = "300"
                        colorOrder          = "SNAKE"
                        width               = "300"
                        displayObjectValues = "X"
                        title               = "SALES ORDER ANALYTICS" />
    Regards,
    Ravikiran.

  • Some Information about RFID

    Hi
    If any of you need advice about RFID. Here are some good links.
    http://www.dcita.gov.au/__data/assets/pdf_file/41249/Getting_the_most_out_of_RFID.pdf
    http://www.tigint.com/articles/Asset_Tracking_with_RFID.html

    Hi Dave,
    We have a DevZone tutorial on The State of Radio Frequency Identification (RFID). Take a look through this, it has a lot of information. Also, scroll down to the bottom of this page, it discusses what NI products can be used for RFID reading. We also have a Case Study called "Using National Instruments Software and Hardware to Develop and Test RFID Tags".
    Hope this helps a bit!
    Regards,
    Claire Reid
    National Instruments

  • Some informations about update.

    Hi there,
    I'm new here and i want to ask you about the cyclical release date of the updates (on x32 and x64), i mean, does it come a new version every day (what hour) or once a week (what day?).
    I need this informations because a have some PC's which are not network conected and i must update them manually.
    Thanks alot,
    George from Romania.

    Hi,
    I haven't seen such information in any official document. But updating once a day gives you a good level of protection. You could make a schedule to install updates manually.
    http://www.microsoft.com/security/portal/definitions/adl.aspx
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Required  some information regarding synckey.

    iam trying to modify the standard table MDK_INVENTORY by using syncbo of type S01 :- as it requires sync key
    can some one inform me how to get the sync key and does the sync key is generated for each and every entry.
    kindly give me some inputs.
    Regards
    Manohar.
    Edited by: Gouri  Manohar Gadhamsetty on Oct 24, 2008 12:28 PM

    Hi Julian,
    Thanks for the information.In getSyncBoInstances() method I am tring to create the SyncBo instance by passing SyncBo name and sync key.But it is unable to create the SyncBo object, returning null.
    SyncBo sb = getSyncBoInstanc(syncBoName,syncKey);
    (sb is null)
    what might be the problem.Kindly reply soon.
    Regards,
    Manohar.
    Edited by: Gouri  Manohar Gadhamsetty on Oct 24, 2008 3:13 PM

  • I want some information about vidio file player

    friends i want to know that is there any software for solaris that can run video files like video file player xmms if it is posiable to run a video file on solaris please tel me the name of software that can run video files
    regards

    dear friends
    please tell me about xine viedo player it for solaris 8 OR solaris 9 i waste my two days on compling the xine-lib-0.9.13.tar.gz and xine-ui-0.99.1.tar.gz after untar them
    after the compilation at the end some error occure . when i run the command make
    ld: fatal: file ../../intl/.libs/libintl.a: open failed: No such file or directory
    ld: fatal: File processing errors. No output written to .libs/libxine.so.1.8.1
    *** Error code 1
    make: Fatal error: Command failed for target `libxine.la'
    Current working directory /xine/xine-lib-1-rc5/src/xine-engine
    *** Error code 1
    make: Fatal error: Command failed for target `install-recursive'
    Current working directory /xine/xine-lib-1-rc5/src
    *** Error code 1
    make: Fatal error: Command failed for target `install-recursive'
    Asif

Maybe you are looking for