Transaction types(PO types) not visible on SRM 7.0 portal

Hi all,
We added transaction types in the SRM 7.0system.But these are not reflecting in the SRM 7.0 portal.
Under Purchasing role ->create Documents -> Purchase order .
Once I click on the purchase order it is giving a table with columns PO type and PO desc.
and showing a message the table does not contain any data.
But SRM consultant added the transaction types(PO types) in the backe nd.
Is there missing configuration steps?
Thanks and regards,
Rajesh

Hello Rajesh,
Few more pointers, if works:
1. Check the roles, sometimes security restricts role by document types.
2. Extended classic scenario is activated.
3. As a standard, there are 3 purchasing tabs in SRM 7.0 for buyer depending on portal roles, ECC, SRM & harmonized role (ECC & SRM), Check if you are trying to create PO in SRM/Harmonized role purchasing tab & not in ECC. Easiest way to check is you will have shopping cart POWL visible in SRM purchasing tab.
Hope this helps.
Thanks
Ashutosh

Similar Messages

  • Type OracleCallableStatement is not visible

    Hi!
    I've installed weblogic server 10.3.3.0, and deployed my webapp in it.
    When I run it, I get the error
    Compilation of JSP File '/my_file.jsp' failed:
    my_file.jsp:23:7: The type OracleCallableStatement is not visible
    my_file.jsp:30:37: The type OracleTypes is not visible
    My webapp worked fine in OAS 10g 10.1.2.0.2 Java Edition...
    Any clue? anybody?
    Thanks!

    Solved.
    Instead of importing "oracle.jdbc.driver.*", I import"oracle.jdbc.*" and works fine.
    Thanks anyway.

  • Type AbstractStringBuilder is not visible

    Dear All
    I'm making a web dynpro application and getting the error "type AbstractStringBuilder is not visible".
    Can anybody expalin me why it is coming?
    Latest JDK version is installed on my system.
    From where does the NWDS checks the version of JAVA?
    What should i do to remove this error?
    Request your support.
    Regards
    Vineet Vikram

    Hi Armin
    Problem is solved after i changed my work space for NWDS.
    There was some problem with the .meta file.
    Thanks for your response.
    I have awarded points to you.
    Thanks again
    Vineet

  • Getting an error  "type AbstractStringBuilder is not visible"

    Hi frndz..
    Am developing an Web dynpro application in this am using "StringBuffer" and am writing the code like this
                          StringBuffer strBf = new StringBuffer();
                          strBf .append("<?xml version='1.0' encoding='UTF-8' standalone='no'?>\n");
                          strBf .append("<").append(entriesName).append(">\n");
    and in the secound line of code itz show an error like
    "type AbstractStringBuilder is not visible "
    how to reslove this.
    Thanks in Advance
    Regards
    Rajesh

    Hi
    resolve the higher version of Java and reinstall the  java 1.4.2_09 .
    see this thread
    Urgent "Entity Service Build Failed"
    the type AbstractStringBuilder is not visible ----- Please Help
    Thanks

  • Step type section is not visible in workflow builder.

    Hello Friends,
                        Step type section is not visible in workflow builder even though I am in change mode. How to make it visible.
    Cheers,
    Senthil

    Hi,
         I in workflow builder ucan see three dropdown box in the left side of your screen. In that the third listbox you click to get the Step Types..
    thank You.

  • The method clone() from the type Object is not visible

    Hi,
    This is my 1st post here for a few years, i have just returned to java.
    I am working through a java gaming book, and the "The method clone() from the type Object is not visible" appears, preventing the program from running. I understand "clone" as making a new copy of an object, allowing multiple different copies to be made.
    The error occurs here
    public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
        }The whole code for this class is here
    package tilegame.sprites;
    import java.lang.reflect.Constructor;
    import graphics.*;
        A Creature is a Sprite that is affected by gravity and can
        die. It has four Animations: moving left, moving right,
        dying on the left, and dying on the right.
    public abstract class Creature extends Sprite {
            Amount of time to go from STATE_DYING to STATE_DEAD.
        private static final int DIE_TIME = 1000;
        public static final int STATE_NORMAL = 0;
        public static final int STATE_DYING = 1;
        public static final int STATE_DEAD = 2;
        private Animation left;
        private Animation right;
        private Animation deadLeft;
        private Animation deadRight;
        private int state;
        private long stateTime;
            Creates a new Creature with the specified Animations.
        public Creature(Animation left, Animation right,
            Animation deadLeft, Animation deadRight)
            super(right);
            this.left = left;
            this.right = right;
            this.deadLeft = deadLeft;
            this.deadRight = deadRight;
            state = STATE_NORMAL;
        public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
            Gets the maximum speed of this Creature.
        public float getMaxSpeed() {
            return 0;
            Wakes up the creature when the Creature first appears
            on screen. Normally, the creature starts moving left.
        public void wakeUp() {
            if (getState() == STATE_NORMAL && getVelocityX() == 0) {
                setVelocityX(-getMaxSpeed());
            Gets the state of this Creature. The state is either
            STATE_NORMAL, STATE_DYING, or STATE_DEAD.
        public int getState() {
            return state;
            Sets the state of this Creature to STATE_NORMAL,
            STATE_DYING, or STATE_DEAD.
        public void setState(int state) {
            if (this.state != state) {
                this.state = state;
                stateTime = 0;
                if (state == STATE_DYING) {
                    setVelocityX(0);
                    setVelocityY(0);
            Checks if this creature is alive.
        public boolean isAlive() {
            return (state == STATE_NORMAL);
            Checks if this creature is flying.
        public boolean isFlying() {
            return false;
            Called before update() if the creature collided with a
            tile horizontally.
        public void collideHorizontal() {
            setVelocityX(-getVelocityX());
            Called before update() if the creature collided with a
            tile vertically.
        public void collideVertical() {
            setVelocityY(0);
            Updates the animaton for this creature.
        public void update(long elapsedTime) {
            // select the correct Animation
            Animation newAnim = anim;
            if (getVelocityX() < 0) {
                newAnim = left;
            else if (getVelocityX() > 0) {
                newAnim = right;
            if (state == STATE_DYING && newAnim == left) {
                newAnim = deadLeft;
            else if (state == STATE_DYING && newAnim == right) {
                newAnim = deadRight;
            // update the Animation
            if (anim != newAnim) {
                anim = newAnim;
                anim.start();
            else {
                anim.update(elapsedTime);
            // update to "dead" state
            stateTime += elapsedTime;
            if (state == STATE_DYING && stateTime >= DIE_TIME) {
                setState(STATE_DEAD);
    }Any advice? Is it "protected"? Is the code out-of-date?
    thankyou,
    Lance 28

    Lance28 wrote:
    Any advice? Is it "protected"? Is the code out-of-date?Welcome to the wonderful world of Cloneable. In answer to your first question: Object's clone() method is protected.
    A quote from Josh Bloch's "Effective Java" (Item 10):
    "A class that implements Cloneable is expected to provide a properly functioning public clone() method. It is not, in general, possible to do so unless +all+ of the class's superclasses provide a well-behaved clone implementation, whether public or protected."
    One way to check that would be to see if super.clone() works. Their method uses reflection to try and construct a valid Creature, but it relies on Animation's clone() method, which itself may be faulty. Bloch suggests the following pattern:public Object clone() throws CloneNotSupportedException {
       ThisClass copy = (ThisClass) super.clone();
       // do any additional initialization required...
       return copy
    if that doesn't work, you +may+ be out of luck.
    Another thing to note is that Object's clone() method returns a +shallow+ copy of the original object. If it contains any data structures (eg, Collections or arrays) that point to other objects, you may find that your cloned object is now sharing those with the original.
    Good luck.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Replicated vendor not visible in SRM

    Hi all
    I have one problem. I have got the vendor which is to my understanding replicated to SRM. In synchronization cockpit I received the error message that the business partner already exists. Fine...I check it in the PPOMV_BBP and the vednor is displayed there but strangely it is not assigned to any vendor group. Hence this vendor cannot be used at shopping cart creation.
    Any idea how to assign it to vendor group? Usually during the regular replication the vendors are by default assigned to vendor groups. We are using Add-on, release 5.5.
    Thank you all a lot for any hint.
    Miha

    Hi,
    I have had a similar problem. My advise is to try to change the vendor address in the backend system, for example the street or the post code, and after that to replicate again only this vendor in SRM by transaction BBPUPDVD. Do not forget to check the log in SLG1!
    After that go to PPOMV_BBP, and try to find the vendor, first as a vendor and after that as BP. If in both cases you managed to find it - everything is ok.
    After that you can go back in the backend and return the old address of the vendor and replicate again. It worked for me!
    Hope this will help you!
    Desi

  • Project WBS not visible in SRM

    Hi All,
    We have created Shopping cart in SRM and user wants to do shopping with respect to the particular Project (WBS Element). except of that project all other projects are visible in SRM.
    That Project is released and active in ECC System. My question is how to activate that Project in SRM so that USer can do shopping based on that Project?
    Regards,
    Lovkesh

    Hi
    Please check these below configuration in EBP
    SPRO-> ...--> Define account assignmnet category .Here you check whther you have activated foe WBS
    and Define GL account for product category and a/c assignment category.
    Moreover you can check whther you included in the attribute.
    (WBS element (PRO) in the Organisational Structure i.e PPOMA_BBP)
    Muthu
    Edited by: muthuraman on Jul 24, 2008 3:09 PM
    Edited by: muthuraman on Jul 24, 2008 3:20 PM

  • Changed content type (DDOCTYPE) is not visible in GUI

    Hi,
    I have strange problem. I made configuration import from other UCM machine (content types, metadata, security groups and so..). After import I checked it - I have my security groups there, I have my metadata there, but I DO NOT HAVE there my content type (in drop down box there are only couple of preinstalled content types - Acme xxx Department...). I have checked in the admin applets -> configuration manager and my added content type was there (among the 'Acme ....' preinstalled content types). I even deleted those 'Acme....' content types to be sure that only my one is there. But in the search gui there is still drop down box with 'Acme...' types and my own is missing there.
    Strange because I do not know why it shows content types which have been deleted and are not in database anymore. I checked the database and in the table DOCTYPES there is only my own content type.
    Can anybody give me som hint? I tried restarting servers, clearing browser's cache, but still without success.

    Hi. I tried it, but it did not help. :(
    It is strange. Before I had the error in log:
    Unable to rename '/appl/ucm_cluster/server/weblayout/resources/schema.work' to '/appl/ucm_cluster/server/weblayout/resources/schema' while publishing schema.
    When I looked into the 'schema' dir there was old doctypes in js file
    In 'shcema.work' which was supposed to be renamed to 'schema' there was my correct document type in js file.
    Now in /server/weblayout/resources/schema/views/doctypes/all.js file there is only my correct document type but i still have in gui the old wrong doctypes! :(

  • Type Tool Lettering Not Visible

    I have Photoshop Elements 9 on a Mac, just upgraded to Yosemite. I am unable to get the type tool to show my lettering. It creates a layer but the lettering is just not there.

    Check all the setting in the tool option bar make sure there a good size and color the will show. That you not doing white on white. Check the character panel as well and try resetting your Photoshop tools and preferences if all setting look good.. Also check over in the Element s forum
    Re: OSX yosemite

  • Own report type (RRI) is not visible in Ta. RSBBS

    Hallo all,
    when I try to implement the BAdI RS_BBS_BADI in the ERP target system according to help http://help.sap.com/saphelp_nw70/helpdata/en/45/e6caeadaf96976e10000000a1553f6/frameset.htm , the then created "Own report type" isn't shown in the appropriate drop down box in BW Ta. RSBBS . We want to realize with it a RRI to SAP-GUI via method IF_RS_BBS_BADI_HANDLER~CALL_SAPGUI under BW 7.3.
    I wonder if the implemtation of inteface IF_RS_BBS_BADI_HANDLER has to be replicated from ERP to BW?
    Any hints are welcome!
    Best regards, Martin

    Hi. I tried it, but it did not help. :(
    It is strange. Before I had the error in log:
    Unable to rename '/appl/ucm_cluster/server/weblayout/resources/schema.work' to '/appl/ucm_cluster/server/weblayout/resources/schema' while publishing schema.
    When I looked into the 'schema' dir there was old doctypes in js file
    In 'shcema.work' which was supposed to be renamed to 'schema' there was my correct document type in js file.
    Now in /server/weblayout/resources/schema/views/doctypes/all.js file there is only my correct document type but i still have in gui the old wrong doctypes! :(

  • HT1918 On payment type,none is not visible to be selected.

    Please fix this.

    We are fellow users, you are not talking to iTunes Support or Apple here.
    Are you trying to create a new account or remove your card from your existing account ?
    If a new account, then unless you followed the instructions on this page when you created it then you will need to give payment details before you will be able to use it : http://support.apple.com/kb/HT2534

  • Menu is not visible after logging into the portal(SSO)...please help.

    Hello Experts,
    I am facing one EP issue...its like once the user logs in to the portal through SSO...he is not able to see any menu on the left side of the page. Actually there is a Detailed Navigation Tab on Left side which contains links to other servers.
    Since there is no Detailed navigation tab on his page this particular user is not able to navigate to other servers...
    Please letme know where to look for as I am very very new to EP...please give in your valuable inputs...
    Regards,
    Jignesh.

    Hi Joshi,
    Check ur detailed navigation is open or closed
    goto cont adminportal content-- go to ur  default frame work page-- desktop innerpage-- open --- see detailed navigation iview is checked for visible or not
    hope this helps u
    Regards
    Krishna.

  • LDAP user groups not visible for configuring a Group Portal

    Hi,
    We have created a Custom Security Realm(myRealm) on WebLogic 7.0 SP2 in which
    I've added the Novell LDAP Authentication provider as the authentication provider
    and then set "myRealm" as the default realm for the domain. I am able to start
    the WLS server instance and login to portalAppTools with the "administrator" account.
    We would like to configure a Group Portal. In Portal Administration interfaces,
    when I click on Group Administartion, I am unable to see any of my external LDAP
    groups. I know that we cannot create/delete users or groups in the external LDAP
    repository thru the Admin UI but the documentation says that I should be able
    to view the users/groups in the Admin UI. Authentication against the external
    LDAP repository works fine. Can anybody suggest the reason why we are unable to
    view any of the Users or Groups in our external LDAP repository thru the User
    Administration interfactes.
    Appreciate any feedback.
    Thanks
    Vikram

    Hi Jim,
    I've configured a default LDAP V2 Compatibility Realm by modifying the Config.xml
    file. I was able to restart Weblogic and see the LDAP Groups and Users thru the
    WLS console. In our project we've a unique requirement wherein all Application
    Groups and User Accounts would be stored in an LDAP repository and all BEA SERVICE
    level accounts and groups are stored in a Database (groups like AdminEligible,
    Administrators etc.). We need to be able to look at the groups in both the Database
    and LDAP repositories in order to administer and configure a Group Portal. On
    the outset it looks like we will not be able to do what we want to with the current
    portal framework. Please suggest if there are any alternatives in order to implement
    this solution. I am sure there are lot of other Clients who cannot create groups
    like Administrators, AdminEligible etc in their LDAP repositories and will be
    forced to think of alternatives.
    I would appreciate if you can reply back at your earliest convenience.
    Thanks
    Vikram
    Jim Litton <replyto@newsgroup> wrote:
    The Weblogic 7.0 Authentication Providers (new JAAS Framework) is not
    supported with Portal 7.0. You will need to configure the Compatibility
    Security CustomRealm for Novell to try to get Portal working.
    see defaultLDAPRealmForNovellDirectoryServices at
    http://e-docs.bea.com/wls/docs61/adminguide/cnfgsec.html#1083149
    In addition, remember to test functionality through the Weblogic
    Console. If you can see groups and users there okay it is very likely
    that Portal will operate.
    -- Jim
    Vikram wrote:
    Hi,
    We have created a Custom Security Realm(myRealm) on WebLogic 7.0 SP2in which
    I've added the Novell LDAP Authentication provider as the authenticationprovider
    and then set "myRealm" as the default realm for the domain. I am ableto start
    the WLS server instance and login to portalAppTools with the "administrator"account.
    We would like to configure a Group Portal. In Portal Administrationinterfaces,
    when I click on Group Administartion, I am unable to see any of myexternal LDAP
    groups. I know that we cannot create/delete users or groups in theexternal LDAP
    repository thru the Admin UI but the documentation says that I shouldbe able
    to view the users/groups in the Admin UI. Authentication against theexternal
    LDAP repository works fine. Can anybody suggest the reason why we areunable to
    view any of the Users or Groups in our external LDAP repository thruthe User
    Administration interfactes.
    Appreciate any feedback.
    Thanks
    Vikram

  • Masthead not visible in home page of Portal 7.0

    Hi Experts,
    We are having an External Facing Portal. We had Made a change in Masthead and deployed it into the portal Successfully.
    When we are previewing the Masthead Iview we are able to see the iview perfectly. When i click on Frameworkpage Preview it is also fine.
    But when i try to see the portal from anonymous page Masthead is not getting loaded.
    I have checked the Permission or authentication it is set to anonymous.
    Can you suggest if restart is needed or any possible way it gets reflected.
    Please suggest as this is Production Portal.....in Quality and Development the same par file is working fine and we are able to see from anonymous page.
    Thanks,
    Krishna

    Hi Krishna,
    Try to run that framework page with an authenticated user and see if you see the masthead.
    If the answer is yes then the issue is a permission/authentication issue.
    If the answer is no then the issue is a different one.
    BR,
    Saar

Maybe you are looking for