How publish bid on portal?

Dear friends
Could you tell me how can I post notification about publish bid on portal? That first steps should I do in configuration?
Thanks

Hi,
May it helps you: [http://help.sap.com/saphelp_srm50/helpdata/en/42/c85469d9cd6bb7e10000000a1553f6/frameset.htm|http://help.sap.com/saphelp_srm50/helpdata/en/42/c85469d9cd6bb7e10000000a1553f6/frameset.htm]
Rgs,
Pedro Marques

Similar Messages

  • How to fetch published data from portal using ABAP

    Hello,
    I have a file published in the portal (with broadcaster). Now I want to use this file in an ABAP program. I can't call the web address directly because my program can't handle the Portal authentication. So I have two questions:
    - is there any way to call Portal-websites which require authentication from ABAP?
    or
    - how can I directly get access to the file without detour over the Portal (where is the place in file system).
    Thank you very much!
    Martin

    Hello Adrian,
    Thank you very much for your reply.
    > You can publish the report in MHTML format using the
    > BEx Broadcaster to a mapped drive  (completely
    > independent of the portal)  then you could pick this
    > up from your ABAP program if you have access to that
    > share.
    What do you mean with "mapped drive" - <a href="http://http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/e915d951f23ee0e10000000a1553f6/frameset.htm">this</a>? I guess I could choose this drive in broadcaster at "export document in any folder" (don't know exactly English label because my system is in German language...)?
    > I dont really see the value of publishing the report
    > to KM if all you are wanting to do is read this back
    > into your ABAP program.  Why are you wanting to
    > publish the report to the portal in the first place?
    I need to get the image of a BW-chart in ABAP because I want to use it in SAP Interactive Forms by Adobe (I have an ABAP program to fetch my data and create the form). I could create my own chart of the data with the Internet Graphics Service but this would be a lot of work. You can create this charts very easily using the Chart Designer which i.e. is included in the Web Application Designer. If you create a Web Site containing a chart you can access this via browser and you have the chart as an image (created from current data). I tried simply to call this website with ABAP but I can not "log in" and so I have no access to this page. Because of this I had the idea to use the broadcaster to automatically publish this Web Application when my data were updated. If I use MHTML my chart-image is saved separately. This just would work for me. And now I want to get this image as a binary with ABAP.
    I hope you understand my problem.
    Martin

  • Publish Bid Invitations.

    Hi Guys, need help in the following:
    1) What does public bid Inviation mean? My understanding is that we will not have to assign any bidders to the bid invitation and it get published on a portal.
    2) How do I publish the bid on a portal - I want to publish the bid invitation on Internet where the suppliers can see the opportunity for businees?
    3) How does it work - Do we have to generate a PDF using smart form and then put it on the net some how?
    4) How will the vendors respond to the Open Bid Invitation as they are not created in the system and do not have login details?
    Kind Regards,
    Abdul Kadir Rajbhoy

    Hi,
    Yes you are right.Public Bid Invitation means that any body can bid to the event.If Bidders are involved then it becomes Restricted Bid Invitation.
    In Public Bid Invitation,you need to give  link to which the intending bidder need to get registered by answering a questionnaire published by your enterprise.Once his registration is approved by the enterprise, he will be issued a userid & Pwd and he will be in a position to submit Bid response.
    This requires the setting up of the Supplier Registration scenario.
    Thanks & Regards,
    Nagarajan

  • Publishing pdf in Portal

    I have defined File System Repository (there are pdf files), how can I publish them in portal??

    Hi Damian,
    1. You can create a Navigation iView (to display all documents under a folder) or a Document iView to display a particular document.
    2. Specify the "Path" in the iView properties
    3. Add it to a Page/Workset/Role.
    You are done..
    Regards,
    venkat.
    [Pls reward points if useful]

  • How to get the Portal Page name from PLSQL?

    Can anyone tell me how to get the portal page name from my dynamic page using plsql?
    Apparently you can get the page id and work it out from there, but my calls to get the page id are not returning any values anyway.
    My code for attempting to get the page id is below.
    <oracle>
    declare
    v_pageid varchar2(30);
    begin
    v_pageid := wwpro_api_parameters.get_value('_pageid', '/pls/portal30');
    htp.print('Page is '|| v_pageid);
    end;
    </oracle>
    Ideally I'd actually just like to get the page name. Is there a straightforward way to do this?
    Thanks in advance!
    Sarah

    Few clarifications -
    1. wwpro_api_parameters cannot be used to get default portal
    page parameters such as '_pageid', '_dad', '_schema' etc.,
    2. Page information can be obtained through any components which
    are available in that particular page. For example, in case of
    dynamic page, we need to publish it as a portlet and add it to the
    page. This process creates necessary packages in the DB, but we
    will not have access to the portlet methods.
    So, I would prefer creating a simple DB provider & portlet and access
    page title from its show method as follows -
    //Declare local variable l_page_id, l_page_title as varchar2
    select page_id into l_page_id from wwpob_portlet_instance$ where
    portlet_id = p_portlet_record.portlet_id and
    provider_id = p_portlet_record.provider_id;
    select name into l_page_title from wwpob_page$ where id=l_page_id;
    More information on DB provider can be found at
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/articles/understanding.database.providers.html
    Secondly, usage of wwpro_api_parameters.get_value method is
    incorrect. This method expects two arguments -
    <ul>
    <li><b>p_name : </b> The name of the parameter to be returned.</li>
    <li><b>p_reference_path : </b> An unique identifier for a portlet instance on the current page.</li>
    </ul>
    p_reference_path would be something like 99_SNOOP_PORTLET_76535103 and not some type of path as its name suggests.
    The following code fragment fetches all parameters available
    for a portlet.
    Note : Copy this code into 'show' method of your portlet.
    //Declare l_names, l_values as owa.vc_arr
    * Retreive all of the names of parameters for this portlet
    l_names := wwpro_api_parameters.get_names(
    p_reference_path=>p_portlet_record.reference_path);
    * Retreive all of the values of parameters for this portlet
    l_values := wwpro_api_parameters.get_values(p_names=>l_names,
    p_reference_path=>p_portlet_record.reference_path);
    //Loop through these arrays to get parameter information
    htp.p('<center><table BORDER COLS=2 WIDTH="90%" >');
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.tableData(wwui_api_portlet.portlet_heading('Name',1));
    htp.tableData(wwui_api_portlet.portlet_heading('Value',1));
    htp.tableRowClose;
    if l_names.count = 0 then
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.p('<td COLSPAN="2">'
    ||wwui_api_portlet.portlet_text(
    'No portlet parameters were passed on the URL.',1)
    ||'</td>');
    htp.tableRowClose;
    else
    for i in 1..l_names.count loop
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.tableData(l_names(i));
    htp.tableData(l_values(i));
    htp.tableRowClose;
    end loop;
    end if;
    htp.p('</table></center>');
    Hope it helps...
    -aMJAD.

  • How to call a portal KM URL link from WAD template Link

    Hi All
    I  am trying to call a Portal KM URL Link from the web template using the link control.
    I cannot figure out whare and how to put the portal KM URL Link into the web application web link.
    Your help is greatly appreciated.
    Thanks
    Karen

    Add content administration role to the user.
    The the content administration tab would be visible to the user in the main menu tab.
    Then in content administration tab, configure the URL for KM URL tab or link.
    This would be done by EP experts. Please contact your EP experts to do.
    Hope this would help you.

  • How to execute the Portal Activity Report

    Hello,
    In the System Administration -> System Configuration-> Service Configuration Editor
    Under Applications->com.sap.portal.activityreport.core-> Services->ActivityReport and I have configured the report.
    I saved I have restarted the service to effect the changes and in Portal Catalog
    Application->com.sap.portal.activityreport.core and I have administrated the changes. The Application Details Editor is displayed.
    I have clicked the Restart the portal also.
    I would like to know how to execute this Portal Activity Report after making this configuration.
    Can anyone help me.
    Thnx in advance
    cheers
    Kris

    Hi Kris,
    here an example with steps:
    1. Navigate to Content Administration -> Portal Content
    2. Step into a test folder and right click on the folder to create a new iView
    2. Select the template "Portal Activity Report iView"
       Name: Daily User Logins
       Technical Name: DailyUserLogins
    3. Open the newly created iView and define the following parameters
       under "Specify report content"
          Start of Reporting: Date 01.01.2005 and Time: 08:00
          End of Reporting: Date 31.12.2005 and Time: 24:00
          Time Unit for Reporting: Daily
       under "Configure report options"
          Information to Report: Number of users logged on
    You have created a new reporting iView, aggregating information about the number of anonymous and authenticated users on a daily basis.
    Hope this helps,
    Robert

  • How to setup the portal with the uniform style for SRM + Esourcing?

    how to setup the portal with the uniform style for SRM + Esourcing? We will setup SRM 7 + esoourcing + portal, but as we know esourcing screen style is not same with SRM, so how to uniform the style between this 2 diffirent software?  any body have idea?

    Hi,
    SAP E-Sourcing 6.0 is the solution. It is same look&feel.
    Regards,
    Masa

  • How to logon in Portal administration which user have a right

    Hi
    I installed  a EP 7.0 with PI. How to logon in Portal Contant Administrator. what is default user  and password in Portal Contant Administration
    abdul Hameed

    Hello!
    There is no default user dedicated to Content Administration in EP as far as I know. After installation you should be able to log on with 'Administrator' (Java-only) or 'J2EE_Admin' (Double-Stack) and the master password you set during the installation.
    Regards,
    Jörg

  • How to add Web Portal in WLC

    Can someone explain or reffer any document how to integrate Web portal with WLC when some user will access network/internet with unsecured SSID he will get the Web Potal with information..not talking about Lobby Admin :)
    Wram Regards

    Here is the URL for the Wireless LAN Controller Web Authentication Configuration Example
    http://www.cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a008067489f.shtml#backinfo

  • How to start default portal  in ECC 6.0

    Hi Experts ,
    I have installed ECC 6.0 (Netweaver 7.0) in my system, i want to use portal in that.
    How to start the portal or login to that ?
    Thanks
    Aisurya

    Hi,
    ECC is different and Netweaver is different. After installation,
    Create your WD ABAP application, and you have to integrate this into portal to open your WD application
    in portal.
    Web Dynpro for ABAP provides portal integration API. It allows to navigate from a Web Dynpro iView to any other iView. Below codesnip can be used to navigate to an SAP transaction iView and pass a parameter to one dynpro field.
    WE have different portal events to navigate to portal, we ahve to use them.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/e4/f86f4132f15c58e10000000a1550b0/content.htm
    For portal Integration.. follow this..
    Web Dynpro for ABAP Portal Integration [original link is broken]
    Cheers,
    Kris.

  • How to add new Portal Theme to Default Portal Desktop

    I created a new Portal Theme and now I want to add it to the default portal desktop.  Here are the steps I am following:
    1. System Administration-> Portal Display -> Desktops and Display Rules
    2. Open the default portal deskop under Portal Content->Portal Users->Standard Portal Users->Default Portal Desktop.  Right-click and select Open->Object
    3. My new Portal Theme does not appear in the list of available portal themes to choose for the default.
    Please tell me what I have to do so that the portal theme I created appears in the list.
    Thanks.
    Ryan

    Hi,
    You can check the actual users desktop by checking the Portal Display Rules:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4b/29cf122f414721964269e1b675d62c/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b2/cf65869fb64552be09e46516dd8062/frameset.htm
    Also check this:
    How to assign a Portal Display Theme to a user
    Regards,
    Praveen Gudapati

  • How to use a portal service in portal component(DynPage)

    Hi,
    I have made a portal service and i want to use this in my portal component .
    Please tell me how can i use it.
    also can anyone tell me step wise creation of portal component and portal service and their connectivity by using a smalll example in which connectivity is done in Dynpage and using stored procedure .

    Hi,
    Check this link:
    [How to Create a Portal Component and a Portal Service Tutorial|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0b57e590-0201-0010-a29f-abd37a436f54?QuickLink=index&overridelayout=true]
    Thanks and Regards,
    Shyam

  • How to create User Portal in OID programmatically in JSP

    Hi.
    I want to create User Portal programmatically in JSP (if posible) or have to use procedure.
    I check with package wwsec_api, it just have 'function
    add_portal_user', but it say we must have "the user must already exist in OID before this function is called."
    So, i checked for 'how to create User in OID'. What i got (in metalink)just methods that 'Create manually Portal Users in to OID' by LDAP or PL/SQL coding (with list of user in flat files).
    What i want to do is, How to create User POrtal in OID by JSP? What are the procedure/table/method involved?
    Do anybody have any samples?..
    Thanks.

    I had to write my own because I could not find one anywhere. Here is an addUser() method that seems to work pretty well.
    import oracle.ldap.util.jndi.ConnectionUtil;
    import javax.naming.directory.*;
    import javax.naming.*;
    public class LdapUser
    public LdapUser(){}
    public void addUser(String pUsername, String pPassword, String pFirstName, String pLastName, String pEmail)
    try
    InitialDirContext ctx = ConnectionUtil.getDefaultDirCtx("host", "port", "orcladmin", "pwd");
    BasicAttributes attrs = new BasicAttributes();
    BasicAttribute oc = new BasicAttribute("objectclass");
    oc.add("top");
    oc.add("person");
    oc.add("inetOrgPerson");
    oc.add("organizationalPerson");
    oc.add("orclUser");
    oc.add("orclUserV2");
    attrs.put(oc);
    BasicAttribute gn = new BasicAttribute("givenName", pFirstName);
    attrs.put(gn);
    BasicAttribute sn = new BasicAttribute("sn", pLastName);
    attrs.put(sn);
    BasicAttribute cn = new BasicAttribute("mail", pEmail);
    attrs.put(cn);
    BasicAttribute pwd = new BasicAttribute("userpassword", pPassword);
    attrs.put(pwd);
    // Etcetera, etcetera...
    ctx.createSubcontext("cn="+pUsername+",cn=users,dc=whatever,dc=com", attrs);
    ctx.close();
    System.out.println("Success!!");
    catch (NameAlreadyBoundException nabe)
    System.out.println("Username is already in use. Please choose another.");
    catch (NamingException ne)
    System.out.println("NamingException: " + ne);
    catch (Exception e)
    System.out.println("User account was not created.");
    }

  • How to call a  portal service from a servlet

    Hello all.
    I have a functioning portal service that I would like to call from a servlet.
    When I try to do so, I get a ClassCastException when I do this (on line two):
    IPortalRuntimeResources runtimeResources = PortalRuntime.getRuntimeResources();
    IDocumentPersistence docPer = (IDocumentPersistence) runtimeResources.getService(IDocumentPersistence.KEY);
    However if I do the following I can get a generic IService and use reflection to invoke the method (in the IDocumentPersistence interface) that I want to invoke:
    IPortalRuntimeResources runtimeResources = PortalRuntime.getRuntimeResources();
    com.sapportals.portal.prt.service.IService aService = (com.sapportals.portal.prt.service.IService) runtimeResources.getService(IDocumentPersistence.KEY);
    There must be a better way to use portal services (hopefully like scenario one above) in servlets. In web dynpro you can use portal services and cast them to the correct type. What am I missing?

    Hi Kim,
    how did you integrate the references to your Portal Service Interface into your web application?
    You should do this using the references in your application-j2ee-engine.xml, did you do this? It might be a problem with the classloader otherwise.
    The way you are calling portal services does work normally, however it is not the recommended way as it is documented in the SAP documentation.
    Please check the SAP documentation on how to access a portal service from a j2ee app:
    http://help.sap.com/saphelp_nw70/helpdata/EN/42/9ddd0cbb211d72e10000000a1553f6/frameset.htm
    Best regards,
    Stefan Brauneis

Maybe you are looking for

  • Computer won't power up if the 2x2 CPU POWER connector is plugged in

    Yesterday I assembled this computer and it was working great. Played games on it and everything. MSI K9a2 CF, ATHLON 5000+, LC POWER 550W, RADEON 3850 256MB, 2x1G SUPER TALENT 800MHZ RAM. 3 hours ago I went to the store and left 2x PRIME95 torture te

  • Can't post JE to control account

    I am trying to import my clients historical month end balances for 2008 (Jan, Feb, March etc...).  However, my imports are erroring out with the message "Cannot perform transaction in controlling type account 1210-310-00."  This is my client's A/R ac

  • Import Question

    After 20 years, I'm moving from Windows platform to a new iMac. Yipiee!!!!! It's like I've discovered the Fountain of Youth. Here's my newbie question: I've been shooting for some time so that my D700 generates both a JPG and NEF of each shot. I've c

  • IPhone 4 charge status is contradictory

    Something's not right with the charging status on my iPhone 4. This morning, when I took the phone out of its charging dock, I saw that it was carrying an incomplete charge. This isn't unusual; sometimes if I'm not paying attention I don't dock it co

  • Debug problem in JDeveloper 3.0

    Has anybody come across a problem when debugging an application that causes JDeveloper to go into an infinite loop (until my machine runs out of memory) when a breakpoint is hit. This only seems to happen on certain files I've removed JDeveloper 2.0.