Installation help still needed Bundle 13

I have spent the better part of 2 weeks downloading & getting nowhere.  I've spent 10/21, 10/22 & 10/27 trying to get Chat help to no avail. I have at least 1 case number # 0186024139 but no one to give it to. 10/19 I first did the download with Akamai, it took hours, then "Installer failed to initialize.  Download support adviser”.  When I click & go to the page it said the support adviser is no longer available! 10/20/14 I did as I was told & went to the download trial http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en&promoid=DJDV B, left the computer on all night downloading the Elements bundle, using the older installer, only to discover once again the "Installer failed message" and I already know that the support adviser is no longer available!
10/28 - 11/1 - I tried: “Be sure you are removing any bits of the failed installations, then try downloading from here: Adobe Photoshop Elements 13 Direct Download Links, Premiere too | ProDesignTools It's an adobe-sanctioned site, but you must follow the Very Important Instructions, even when they don't seem right.” I removed everything I could find, printed out the instructions, page, turned off the security program, downloaded, I had such hopes, everything seemed fine,.then tried to install only to get then  "Installer failed to initialize.  Download support adviser”, again.  When I click & go to the page it said the support adviser is no longer available! So what do I do NOW????  It’s been 11 days, please send help!    I'm ready to give up!!!
Thank you for your time!

Hi,
Sorry for the inconvenience. Please upgrade the Adobe Application Manager on your machine
http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
Install the above mentioned exe on your machine and then try to install E13.
Thanks,
Shikha

Similar Messages

  • Help still needed

    I still need help to get this script working.
    <?
    PHP Guestbook 1.1
    Written by Tony Awtrey
    Anthony Awtrey Consulting
    See http://www.awtrey.com/support/dbeweb/ for more information
    1.1.ora - Mar. 29, 2000
    - Version for Oracle by Kari Pannila
    kartsa@_NO_SPAM_ougf.fi
    1.1 - Oct. 20, 1999 - changed the SQL statement that reads data
    back out of the database to reverse the order putting the
    newest entries at the top and limiting the total displayed
    by default to 20. Added the ability to get the complete list
    by appending the URL with '?complete=1'. Added the code and
    additional query to count and list the total number of entries
    and included a link to the complete list.
    1.0 - Initial release
    This is the SQL statement to create the database required for
    this application.
    CREATE TABLE GUESTS (
    GUEST_ID NUMBER (4) NOT NULL,
    GUEST_NAME VARCHAR2 (50),
    GUEST_EMAIL VARCHAR2 (50),
    GUEST_TIME DATE,
    GUEST_MESSAGE VARCHAR2 (2000),
    PRIMARY KEY ( GUEST_ID )
    CREATE SEQUENCE GUEST_ID_SEQ
    START WITH 0
    INCREMENT BY 1
    MINVALUE 0
    NOCACHE
    NOCYCLE ;
    // This checks to see if we need to add another guestbook entry.
    if (($REQUEST_METHOD=='POST')) {
    // This loop removed "dangerous" characters from the posted data
    // and puts backslashes in front of characters that might cause
    // problems in the database.
    for(reset($HTTP_POST_VARS);
    $key=key($HTTP_POST_VARS);
    next($HTTP_POST_VARS)) {
    $this = addslashes($HTTP_POST_VARS[$key]);
    $this = strtr($this, ">", " ");
    $this = strtr($this, "<", " ");
    $this = strtr($this, "|", " ");
    $$key = $this;
    // This will catch if someone is trying to submit a blank
    // or incomplete form.
    if ($name && $email && $message ) {
    // This is the meat of the query that updates the guests table
    $query = "INSERT INTO guests ";
    $query .= "(guest_id, guest_name, ";
    $query .= "guest_email, guest_time, guest_message) ";
    $query .=
    "values(guest_id_seq.nextval,'$name','$email',SYSDATE,'$message')";
    // This is where we connect first time to the database
    $c1 = ocilogon("chukws","ikechi","orcl");
    $stmt = ociparse($c1,$query);
    OCIexecute($stmt,OCI_DEFAULT);
    OCIFreeStatement($stmt);
    OCICommit;
    } else {
    // If they didn't include all the required fields set a variable
    // and keep going.
    $notall = 1;
    ?>
    <!-- Start Page -->
    <HTML>
    <HEAD>
    <TITLE>Add a Message</TITLE>
    </HEAD>
    <BODY BGCOLOR="white">
    <H1>Add A Message</H1>
    <!-- Let them know that they have to fill in all the blanks -->
    <? if ($notall == 1) { ?>
    <P><FONT COLOR="red">Please answer all fields</FONT></P>
    <? } ?>
    <!-- The bits of PHP in the form allow the data that was already input
    to be placed back in the form if it is filled out incompletely -->
    <FORM METHOD="post" ACTION="koe.php">
    <PRE>
    Your Name: <INPUT
    TYPE="text"
    NAME="name"
    SIZE="20"
    MAXLENGTH="50"
    VALUE="<? echo $name; ?>">
    Your Email: <INPUT
    TYPE="text"
    NAME="email"
    SIZE="20"
    MAXLENGTH="50"
    VALUE="<? echo $email; ?>">
    Enter Message:
    <TEXTAREA NAME="message" COLS="40" ROWS="8" WRAP="Virtual">
    <? echo $message; ?>
    </TEXTAREA>
    <INPUT TYPE="submit" VALUE="Add">
    </PRE>
    </FORM>
    <HR>
    <?
    // This is where we count the number of entries.
    $c1 = OCIlogon("chukws","ikechi","orcl");
    $query = "SELECT COUNT(*) FROM guests";
    $stmt = OCIparse($c1,$query);
    OCIexecute($stmt);
    OCIFetch($stmt,OCI_DEFAULT);
    $numguest = OCIResult($stmt,1) ;
    ?>
    <!-- This is where we report the total messages. -->
    <P>
    <? echo $numguest[0]; ?> people have
    left me a message.
    </P>
    <?
    // This is where we decide to get all the entries or just the last 20.
    // This variable is set by just adding a '?complete=1' after the URL.
    $c1 = OCIlogon("chukws","ikechi","orcl");
    if ($complete == 1) {
    $query = "SELECT guest_name,guest_email,to_char(guest_time,'DD.MM.YYYY
    HH24:MI:SS'),guest_message FROM guests ORDER BY guest_time DESC";
    } else {
    echo "Here are the first 20:<BR><br>\n";
    $query = "SELECT guest_name,guest_email,to_char(guest_time,'DD.MM.YYYY
    HH24:MI:SS'),guest_message FROM guests WHERE ROWNUM<21 ORDER BY
    guest_time DESC";
    $stmt = OCIparse($c1,$query);
    OCIexecute($stmt,OCI_DEFAULT);
    // This will loop as long as there are records waiting to be processed.
    // Notice the plain HTML inside the while loop structure. PHP is
    flexable
    // enough to allow you to break into and out of the "code" at any point.
    // ------------------------ while start
    while (OCIFetchInto($stmt, &$guest)) {
    ?>
    <TABLE BORDER="1" WIDTH="700">
    <TR><TD>
    Name: <? echo $guest[0]; ?>
    </TD><TD>
    Email: ">
    <? echo $guest[1]; ?></A>
    </TD><TD>
    Time: <? echo $guest[2]; ?>
    </TD></TR>
    <TR><TD COLSPAN="3">
    <? echo $guest[3]; ?>
    </TD></TR>
    </TABLE>
    <BR>
    <?} // end while ?>
    </BODY>
    </HTML>
    Am getting the following error,
    Parse error: parse error, unexpected T_WHILE in d:\application\product\10.1.0\db_2\apache\apache\htdocs\koe.php on line 182
    Can CJJ and others please help. Thanks

    Replace your line <?} // end while ?> with
    <?} // end while
    ?>
    Regards,
    Torsten

  • Self Assigned IP - Fixed, but help still needed, please

    I'll add a bit of a back story first which I hope will help people understand my issue, but also hopefully lead people with a self-assigned IP issue to a fix (link is within the post)
    I’m on on an iMac 20″ Mid 2007. I recently updated to OSX Lion after having wifi connection issues in Leopard. I used to randomly get kicked off my wifi and given a self assigned IP. With Leopard, the issue was fixed by applying a manual IP, router address etc and restarting. The issue would return months later, but I got over it after a few tantrums.
    Then as soon as I updated to Snow Leopard, I instantly had no internet access and I could only upgrade to Lion if I downloaded system updates. So after a few hours of searching, I toggled my internet sharing ‘on & off’ and that was enough for that fix.
    But then I upgraded to Lion and again, no internet. And nothing worked for me at all, every fix on the internet I tried failed. If my airport ever managed to connect to my router I would get a self assigned IP. Or it would say it was connected but there was no internet. So I hunted for hours and eventually found this:
    Now, here is a fix for anyone who is having the same issue. I hope it works for you!
    http://www.davidpierron.com/index.php/archives/2009/04/13/289/
    This did work for me. The fix is to flush your ipfw through terminal, and it worked for me instantly.
    However, I now have another issue that I really hope people can help me with. It's not as annoying as the above, but my god it's still very annoying!
    Here are some bullets to show the tedious routine I have to go through in order to connect to the internet via my airport.
    • I turn on my mac and my it tries to connect to my router automatically. But after a minute of trying, it says it can’t connect.
    • I select my router manually from the list and have to enter my password manually, even though it is already saved in my Keychain.
    • It then connects and says, ‘Connected but no internet’, so I leave it for two minutes and throw things around the room.
    • After those 2 minutes it connects to the internet. But no, I can’t browse the web as the browser says 'DNS look up failure'.
    • So I open terminal, enter 'sudo ipfw flush' to flush my ipfw and BINGO, I’m online 5 minutes after logging on to my machine.
    The router I am using was only issued to me 8 months ago by my new ISP here in the UK, it connects via WEP and has always been stable for every other device I have connected to it. But I am going to ring up my ISP and see if there is a new router I can get.
    If anyone - ESPECIALLY APPLE who seem to be shying away from admitting there has ever been an airport wifi issue - has any information to advise me, then please let me know.
    Also if you are having a Self Assigned IP address issue and that fix above works, give the man some credit on his blog, and if you know him, give him a kiss from me!
    Thanks

    Update:
    I spoke to my ISP to see if they had any newer routers and if they did WPA now.
    I have a new router on its way and they have updated my router to do WPA!
    The result?
    I now connect to my router automatically after a restart. No issue there.
    However,
    It still can't find the internet when it first connects.
    I still have to wait 2 minutes for it to find the net.
    I still have DNS issues once connected
    I still have to flush ipfw before it works correctly.

  • Video help STILL needed ¬_¬

    I have the latest software. I have updated my Ipod and restored and all that kerfuffle and STILL my videos show up on my library but NOT on my ipod. Would some one like to help me please

    Connect your ipod and go to edit-->preferences Hit
    the iPod tab. Then hit the videos tab. What option is
    checked?
    btabz
    when i do that for mine, all the options are shaded out, and it's on don't update video...is there a way that i can change it? i've tried clicking the other 2 options, but it won't let me change it
      Windows 2000  

  • JSlider help still needed-mouse event

    Hi, I recently posted about help with the JSlider:
    http://forum.java.sun.com/thread.jspa?threadID=604119&tstart=45
    I am extending the JSlider and want to be able to move to a certain value by clicking on it. The methods people have posted before all involve calculating based on where the user clicks and slider min,max, and height, and are not very accurate with my slider (once you get to the middle, the clicking is off by one value). I need a way to do this more accurately. Is there anyone who could help me? I have also heard there would be a way to rebuild the JSlider completely myself, and that I could then configure it how I need to. While this would be a hassle, it may be my only option, so any help with that would be appreciated. Thanks!

    I just had another look at this, and if you use the trackwidth instead of the sliderwidth,
    and factor in the difference between their starting points, it works perfectly.

  • Help Still needed, before I BIN FX5200

    Can anyone recommend the best drivers for WIN98/fx5200 128 graphics card. My current drivers downloaded form Nvidia(44.03_win9x) only seem to allow certain features to work.
    Also since I installed the card my system has started to freeze occasionally. This also happend when I was using win xp pro and the correct MSI setup cd.
    System Spec:
    Win98,
    P3 500MHz
    PC100 Systemboard/slot 1/ Socket 370
    256mb sdram
    Unknown PSU.
    Thanks.
    Tom.

    Thank`s for the help Guys, this is a list of IRQs:
    0   System timer
    1   Standard 101/102-Key or Microsoft Natural Keyboard
    2   Programmable interrupt controller
    3   Communications Port (COM2)
    4   Communications Port (COM1)
    5   CMI8738/C3DX PCI Audio Legacy Device
    6   Standard Floppy Disk Controller
    7   EPSON Printer Port (LPT1)
    8   System CMOS/real time clock
    9   ALi PCI to USB Open Host Controller
    9   IRQ Holder for PCI Steering
    9   IRQ Holder for PCI Steering
    10   NVIDIA GeForce FX 5200
    10   IRQ Holder for PCI Steering
    11   CMI8738/C3DX PCI Audio Device
    11   IRQ Holder for PCI Steering
    12   PS/2 Compatible Mouse Port
    13   Numeric data processor
    14   Primary IDE controller (dual fifo)
    14   ALi M5229 PCI Bus Master IDE Controller
    15   Secondary IDE controller (dual fifo)
    15   ALi M5229 PCI Bus Master IDE Controller
    Even a newbie like me can see there are loads of conflicts, but that`s as far as my limited knowledge takes me. The entry "IRQ Holder for PCI Steering" has caused conflicts since I got the system, I don`t even know what it is or how to get rid!
    My Os is win98. My motherboard will only upgrade to 600MHz.
    I could stick some more ram in if it will help,  I have just spent over £140 on the Graphics card and WinXP pro, I would prefer not to shell out anymore.
    PSU= Cortek-LC200,120v/6a,240v/3.5a.
    Thank`s.
    Tom.

  • File IO - help still needed

    Im sorry, I know the forum abhors cross-posts...but i think
    everyone has forgotten me...
    please see...
    http://forum.java.sun.com/thread.jsp?forum=54&thread=347108&start=30&range=30&hilite=false&q=
    i am getting a numberformatExceptioin on 0002 (2nd record)
    I know that the first 2 bytes contain something that shouldnt be there
    PLEASE...
    can you take a look,
    (or have i stumbled upon a question no one knows the answer too?)

    Displaying everything returned by the StringTokenizer? That should tell you what kind of trash it's returning when you are expecting a number. You're not returning the delimiter are you? Guessing without seeing it that you need to trim whitespace from around your number before parsing it to an Integer?

  • Email help still needed please

    In my set up wizard, for email, I have only 2 options:
    1.  i want to use a work email account with a Blackberry Enterprise Server
    2. I want to skip email set up.
    How do i therefore access email setup?
    I have a Pearl 8120.
    Thanks for help

    Welcme to the Frums!
    Do you have BIS or BES? 
    Nurse-Berry
    Follow NurseBerry08 on Twitter

  • I had to remove Mavericks and do a reinstall on 10.8.5 but still need help...

    I have been trying to undo my Mavericks upgrade in October and after considerable effort I am mostly got back to 10.8.5 OS but still need a bit of help. I just want the previous OS back in place then I'll try Mavericks soon....
    1)               I never seem to pay attention so is 10.8.5 the last OSX prior?  As long as it isn't Mavericks, I want to get it installed.
    2)               I had to reformat my iMac so I have a residual elements from 10.9 and one issue that I had before was permissions. Every number of files either on other hard drives or sometimes in my same user folder was asking for permission and authentication to simply move a file.. A popular one you'll see at the bottom the person/whatever/ problem known as fetching.  Could someone just give me the general reason of this fetching and permissions problem that I ran into?  Better yet since I just want to avoid it altogether into the future tell me what's the best way to assure it disappears forever.
    3)          Another, which is kind of a big ticket item for me is the backup/restore/cover your (!!!) system. I was a good little iMac User and had Time Machine backed up for a period prior to the Mavericks install. I'm a little bit upset that TM isn't 100%....but what is...?  I need another backup/restore system in place and that's what I am looking for recommendations on.  An item that saved me a bit was that I had OS 10.8.3 on an external hard drive.  The problem with that one was it was on a partition, on one of the drives requiring to be reformatted.  It worked as a bridge consolidating files and all but was a big headache as a partition on the external. Recovery Disk did it's part but wasn't enough as well.   Is there a simple/easy idea...clone, disk images, boot from an external drive… ?
    4)          iPhoto (9.4.3) currently will not open the libraries which iPhoto (9.5) converted. Is there way to go back?  Seems the App Store and Software update don't like something. I'm getting into a loop with App Store, iPhoto and the OS. Either the software needs operating system ... then the App Store says it's incompatible or some other complaint.  Right now I have 9.4.3 iPhoto installed for OSX 10.8.5 and was only able to create a new library and the converted ones currently do not open.
    Thanks to your help

    10.8.5 is the lates ML edition.  I use TM and also carbon copy cloner as my second backup.  If I were you and you have a TM backup prior to Mavericks I would try another restore at bootup.  You should erase your drive first in that process using disk utitlites and then use TM to put back you apps and files.  The other choice is to do an internet recovery and then use TM to restore your apps and files.  That should fix the permissions issue.  I did the same thing and all was OK including getting my original iPhoto progam (9.4.3), iphoto11 and photos back.

  • My phone 5s did the new update and will not come back on. I already tried hard reboot still won't work. Been over a hour now. Please someone help I need my phone.

    My phone 5s 16gb gold did the new update and will not come back on. I already tried hard reboot still won't work. Been over a hour now. Please someone help I need my phone.   This phone is not even 6 months old been in case no scratches. This is driving me crazy.

    Connect your phone to a computer and restore your software using iTunes.

  • Still need help :( loading outside files in actionscript

    Ive been all over the forums online trying to get this
    problem fixed and no one has really settled it for me (its been
    MONTHS)
    So I'm going to attempt to be as in depth as possible and
    post code as well.
    Heres the deal- its a portfolio site, www,darrenlasso.com
    The problem is when i load multiple swf files into levels.
    When i first call on an outside swf from a button inside the main
    file the code looks something like this:
    on(release){
    _level1._visible=false;
    loadMovieNum("cover.swf", 1);
    cvrbtn._visible = false
    acibtn._visible = false
    When from inside THAT file, I want to return back to the MAIN
    navigation file, the code looks more like this:
    on(release){
    mcl.addListener(mclListener);
    mclListener.onLoadInit = function(mc:MovieClip){
    mc._visible=true;
    mc.gotoAndPlay(76);
    _level1._visible=false;
    mcl.loadClip("darnen.swf", 1);
    Ive messed around with the code so many times now trying
    everyones different suggestions that i dont even know if that is
    the code I have live right now but i know its not working how i
    want it to. The problem seems to be that i can only load into level
    1, and when i do that, going between these various calls on outside
    files there is a 'flicker' of a frame or two of the OLD previously
    loaded file that will play BEFORE the new one initiates. As this is
    a portfolio site it needs to be polished so i can't have stuff like
    this plaguing it. Its been unfinished for months now because i just
    can't figure it out. Please please help me if you can.. hopefully
    you like a challenge because i just havent been able to get the
    help i need from anywhere else :/

    when i load the swf from outside, i want it to then be able
    to return to the main navigation file which i guess would be level
    0. So does that mean that the code for buttons navigating back to
    the main flash file would be more like:
    on(release){
    mcl.addListener(mclListener);
    mclListener.onLoadInit = function(mc:MovieClip){
    mc._visible=true;
    mc.gotoAndPlay(76);
    _level1._visible=false;
    mcl.loadClip("darnen.swf", 0);
    As i load in all these different files from outside I've been
    loading them all into level 1 because that seems to be the only way
    to get them to display at all with the code I'm using. I assume it
    might be better to load them all into individual levels? I'm not
    sure. I'm still just kinda learning AScript as i go along..

  • I have forgotten my password and misplaced my Installation disc and need to reset password, help please! btw are the intsallation disc unique to each computer or could i borrow a friends?

    I have forgotten my password and misplaced my Installation disc and need to reset password, help please! btw are the intsallation disc unique to each computer or could i borrow a friends?

    Call Apple to get replacement DVDs > http://support.apple.com/kb/HE57

  • Still need help with flash player download

    I'm still having a problem with the flash player, please read my last post below:
    "I've tried everything here & still can't download the flash player. Anytime I try to download it asks me to install ADM add-on and then when I click on that, my computer freezes. How do I enable this add-on without my computer freezing? Can anyone help pls?"

    Thanks a lot for your help, it is truly appreciated.
    Date: Thu, 29 Oct 2009 18:52:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Still need help with flash player download
    You can set Flash Player to check for updates on the Global Settings Manager panel:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    >

  • Still need help with case sensitive strings

    Hello guy! Sorry to trouble you with the same problem again,
    but i still need help!
    "I am trying to create a scrypt that will compare a String
    with an editable text that the user should type to match that
    String. I was able to do that, but the problem is that is not case
    sensitive, even with the adobe help telling me that strings are
    case sensitive. Do you guys know how to make that comparison match
    only if all the field has the right upper and lower case letters?
    on exitframe
    if field "t:texto1" = "Residencial Serra Verde"then
    go to next
    end if
    end
    |----> thats the one Im using!"
    There were 2 replys but both of them didnt work, and the
    second one even made the director crash, corrupting even previously
    files that had nothing to do with the initial problem..
    first solution given --
    If you put each item that you are comparing into a list, it
    magically
    makes it case sensitive. Just put list brackets around each
    item.
    on exitframe
    if [field "t:texto1"] = ["Residencial Serra Verde"] then
    go to next
    end if
    end
    Second solution given--
    The = operator is not case-sensitive when used on strings,
    but the < and > operators are case-sensitive.
    So another way to do this is to check if the string is
    neither greater than nor less than the target string:
    vExpected = "Residencial Serra Verde"
    vInput = field "t:texto 1"
    if vExpected < vInput then
    -- ignore
    else if vExpected > vInput then
    -- ignore
    else
    -- vExpected is a case-sensitive match for vInput
    go next
    end if
    So any new solutions??
    Thanks in advance!!
    joao rsm

    The first solution does in fact work and is probably the most
    efficient way
    of doing it. You can verify that it works by starting with a
    new director
    movie and adding a field named "t:texto1" into the cast with
    the text
    "Residencial Serra Verde" in the field. Next type the
    following command in
    the message window and press Enter
    put [field "t:texto1"] = ["Residencial Serra Verde"]
    You will see it return 1 which means True. Next, make the R
    in the field
    lower case and execute the command in the message window, it
    will return 0
    (true).
    Now that you know this works, you need to dig deeper in your
    code to find
    what the problem is. Any more info you can supply?

  • Need help in restriction when Char is used as a variable and still need to

    hi masters,
          As far as i know we cant restrict on the char if it is used as a variable.. But here is the scenario..the version is 3.1C and i need to restrict based on the plant l and they need plant as a variable but still need to restrict by values (2456, 5060). so is there any operation that we can go ahead and restrict the char in the query using the same as a variable..As far as i know its not possible..but please help me if any one have other steps...thanks in advance

    Hi Neel,
             Well, here is the descr... I need to restrict on those two plants ( 2456, 5060) and i dont want to see the data of these two plants completely under 0Plant char. But there is a variable and according to the req the variable should be there and these 2 plants data shouldnt be displayed in the report.. and when i try to restrict and exclude the above two plants i am getting this below error...
    Variable '0S_PLANT' is complex('selection Option' and 'query' type). You can not use any other enties in this selection..
    So my req is there is a variable on 0plant and i need to restrict and exclude the values (2456,5060) and the data shouldnt be visible for these 2 plants.. i tried and i couldnt restrict as of the error when the variable is there...Can any one please help me out this...

Maybe you are looking for

  • Displaying the selected rows in ALV Grid output

    Hi Experts, I am developing one interactive ALV Grid report where user can process the selected records/rows from the ALV Grid output. for displaying the ALV Grid, I have used the class CL_GUI_ALV_GRID class. I am working on ECC 6.0 system. when I se

  • Excel 2010, file save as Question

    I save my file name based on a cell "C35". This Cell is a concatenation and I have recently noticed that some of the data imported from an xml database contains illegal characters and Windows won't save the file. How can I  substitute windows offendi

  • How make "Scanner" not printing the output in a new line?

    Hi! I'm Jordi from Barcelona and I'm new on Java and on this Forum. I have a question to you. I'm developing a testing application that uses the "Scanner". Before using it, the app asks a question to the user: String strInput; Scanner sc = new Scanne

  • Extraction of Stocks for Cutover

    Hi, I have a problem in down loading of stocks.Where can I see the vendor stock with storage location level. In MSLB I have only at plant level. I am downloading the stock from 4.6C from MARD (where I am not getting the valuation type field) table an

  • Calling BAPI from Portal Service

    Hi all, I have created a KM custom property renderer, what includes a Portal Service. Now, I would like to call a BAPI from the renderer component using JCO. Does anybody how or whether that works? Or does anybody have a sample code how to call a BAP