BP transaction, even in create mode i am getting only display screen

Hi,
When i create a Business partner- Foreign Trade Organisation i am getting the screen in display mode only. I am not able to enter any details
in the screen. I did all settings related to activation in table TB056, I don't know what is missing in customizing
Can anybody help me
Thanks & Regards,
Ramji

Hi Dave / Amandeep,
Thanks for reply . When i create by giving business partner externally i am able to save but not able to change fields. I suspect the issue with Authorisation profile . If i check for it whether the role /SAPSLL/SR_AES_MD_BPA i need to check or any other role is there.
Appreciate your response
Thanks & Regards,
Ramji

Similar Messages

  • No programs will run even finder after an update even in safe mode

    I tried installing the newest update in my macbook pro and after my comp ran out of battery no programs including finder will run even in safe mode. I get and error message that says finder quit unexpectedly over and over again.
    any help would be awesome
    thanks
    kurt

    [[Firefox 18 crashes on startup due to malware - how to fix]]

  • Returns PO appearing in VL10B  transaction even after delivery is created with full PO qty

    Hi All,
    Returns PO is  appearing in VL10B  transaction even after delivery is created with full PO  qty /
    Regards
    ab

    Hi Ayub,
    Please go to the Return PO item details, and check the Delivery tab and make sure the delivery completed check box is selected. If not please select the check box and save the line items.
    If there are multiple line items, then do the same for all the line items.
    Then check in VL10B and confirm me.

  • Receiving Transaction Processor runs even if processing mode is ON-LINE

    Hi All,
    We have a problem with receiving. The profile option RCV: Processing Mode is set to ON-LINE at site level. We observed that the Receiving Transaction Processor is running for a bunch of transactions with IMMEDIATE processing mode.
    We checked the responsibility level and user level profile options too and nothing is set. only at site level we have that profile option set to ON-LINE.
    What could be the reason for this Transaction Processor to run???
    Please let us know.
    Thanks,
    Prathima

    How are you trying to receive the items. Is it through iProcurement or Core Purchasing Forms?

  • Table control in create mode

    Hi,
    I created a table control in a standard transaction code.
    when iam clicking create button, The table control
    is displaying in display mode.Now I should provide to the user
    to add the entries in the table control in create mode.
    Can any body resolve this issue with coding.
    urgent requirement.

    Hi,
    In a PBO module of the screen, ypu have to write a code to find out the number of lines of the internal table used for the table control.
    The code for this would be.
      DESCRIBE TABLE tb_line LINES lin.   * 'tb_line' is the internal table and 'lin' holds the number of lines*
      tcl_item-lines = lin.                             tcl_item is the name of the table control*
    Now in the PBO, you have to make the table control editable or non editable by checking with the transaction.
    Here i in the below code, there are 3 transactions for create,display and change.
    If the transaction code is either 'ZCREATE09' or 'ZCHANGE09' , then the lines in the table control are checked.If the table control is not empty,then it is  editable.
    During the display transaction,it is kept in non editable mode.
    CASE sy-tcode.
        WHEN 'ZCREATE09' OR 'ZCHANGE09'.
    ***Checking if the table control is empty or not***
          IF lin NE 0.
            LOOP AT SCREEN.
    ***To make the screen editable****
              screen-input = 1.
            ENDLOOP.
          ELSE.
            LOOP AT SCREEN.
              IF screen-name CS 'TB_LINE'.
    ****To make the screen non-editable if no values are present in the
    ***table control****
                screen-input = 0.
                MODIFY SCREEN.
              ENDIF.
            ENDLOOP.
          ENDIF.
    ****To make screen non editable during the display transaction****
        WHEN 'ZDISPLAY09'.
          LOOP AT SCREEN.
            screen-input = 0.
            MODIFY SCREEN.
          ENDLOOP.
      ENDCASE.
    Reward if helpfull.
    Thanks,
    Kashyap

  • Firefox auto-updated to 3.6.9 last night and now it crashes every time I open the browser, even in safe mode.

    Firefox auto-updated to 3.6.9 last night and now it crashes every time I open the browser, even in safe mode.

    Hi there,
    You could try performing a clean installation: [[Knowledge Base Article]] :
    Some Firefox issues can be resolved by downloading a new Firefox installer from Mozilla.com, then closing Firefox, deleting the Firefox application folder (program files) and reinstalling Firefox. If this does not help, or if you would rather completely remove Firefox and start over instead of completing all the troubleshooting steps, follow these steps:
    1. Download the latest official version of Firefox from Mozilla.com.
    * You should avoid unofficial download sites that bundle Firefox with other software such as the Google Toolbar.
    2. If you wish to retain your current profile, you should make a backup copy of it. See Backing up your information for instructions.
    3. Uninstall Firefox and make sure you remove the Firefox application (program) folder and your Firefox personal data (user data and settings) - see Uninstalling Firefox for instructions.
    4. Reinstall Firefox - see Installing Firefox for instructions.
    5. When Firefox is started for the first time, the Import Wizard will appear and a new profile will be created.
    6. Verify that the issue no longer appears.
    7. If you made a backup of your old profile and wish to restore your old information, see Recovering important data from an old profile. For troubleshooting purposes, only copy the files corresponding to your bookmarks and saved passwords.
    8. Reinstall your extensions and themes one by one to determine if any specific one is causing the issue.
    source: https://support.mozilla.com/en-US/kb/Basic+Troubleshooting?s=clean+installation&as=s#Clean_reinstall

  • How to get transacted session in direct mode with jmsra adapter

    Hi,
    I use MQ 4.4u1 release with GF in EMBEDDED mode. I configured several connection factories with NoTransaction/LocalTransaction/XATransaction support. In my app I get a connection factory from JNDI tree, create connection/session/producer and send several messages to queue. Everything works fine when I don't use transactions. But, when I want to send messages in one transaction, the connection always provided to me non-transacted session. The session created via
    Session session = connection.createSession(true, Session.SESSION_TRANSACTED);
    request. I check the session transacted state and acknowledge mode right after i get it:
    log.fine("Session: " + session + "; transacted: " + session.getTransacted() + "; ackMode: " + session.getAcknowledgeMode());
    The log shows me that the session is not transacted and ackMode is 0 (DUPS_OK_ACKNOWLEDGE). If I try to commit the session after messages were sent I get the correct exception:
    javax.jms.IllegalStateException: MQJMSRA_DS4001: commit():Illegal for a non-transacted Session:sessionId=3361979872663370240
    Does anyone know how to get transactional session in direct mode?
    Thanks, Denis.

    I mentioned LOCAL because I misread your post and thought you were suggesting that LOCAL mode behaved differently.
    If you want to send messages in a transaction from within a Servlet then I think you're expected to use a UserTransaction: Here's an example that worked for me:
            Connection connection = outboundConnectionFactory.createConnection();
            Session session = connection.createSession(true, Session.SESSION_TRANSACTED);
            userTransaction.begin();
            MessageProducer producer = session.createProducer(outboundQueue);
            int numberOfMessages = 10;
            for (int i = 0; i<numberOfMessages; i++) {
                Message message = session.createTextMessage("Hello world");
                producer.send(message);
            userTransaction.commit();
            connection.close();I obtained the UserTransaction with this resource declaration:
        @Resource(name = "java:comp/UserTransaction")
        private UserTransaction userTransaction;The EJB spec explicitly states that local transactions aren't supported in EJBs; I haven't found such an explicit statement for Servlets but suspect that JMSRA is taking the same approach.
    As for imq.jmsra.direct.disableCM property - this appears to disable connection pooling and from your post changes other behaviour as well. How did you find out about it (other than by examining the code)? As far as I can see this is not a documented feature and is not necessarily tested or supported.

  • Responsive design mode is showing part of pages and is not showing any optomized pages even in safe mode.

    I need to check multiple websites everyday for responsive design. When I open Responsive design mode I am getting full pages on every site, even ones I know are mobile opt. No matter how I scale it everything remains exactly as it is. I have to scale it to the far right to get the whole page. Basically the pages are always in full screen and I'm getting a window that only allows me to see part of a page. It is very frustrating.
    Win xp
    firefox V28.0
    I am not a coder so please keep solutions simple.

    From your screenshot, it seems to be working, as that grey bar has appeared at the top (with a link to the mobile version of the site). This only appears when the viewport width is 800px or less. This support website doesn't shrink dynamically (as the viewport gets smaller), but remembers whether your machine has a small screen or not (probably by storing a cookie which is changed when you click the link in the grey bar).
    If you are having trouble with other sites, have you tried refreshing the page after resizing? When I have created responsive websites I often have to use JavaScript for a few features, and it simply isn't worth the processing power to make the code run every time the window size changes. Other than that I can't see what would be causing the problem (unless there is other important information you may have missed out)

  • Transaction opening in edit mode

    Hi,
    I have a strange issue. I have to set some values for the Notes section for a service request. For that I am creating a new relation in the DO_INIT_CONTEXT method of the view and setting the values there. Now the issue is when I open the transaction, it opens up in edit mode. While debugging, I relaised that this is coming up because of the execution of the statement to create a new relation (create_related_entity). Please provode pointers on how to resolve this or what could be the reason for this.
    Regards,
    Radhika

    Hi,
          You have given the answer yourself. Trying to create a relationship locks the transaction and this causes the view group to be set in edit mode. Trying to default values in the DO_INIT_CONTEXT method is OK as long as the transaction is already locked(most often, a new transaction). We can use the is_locked( ) method of the entity to find if it's locked and then set the default values. You are trying to set the values irrespective of whether the transaction is in edit mode or display mode. Of course a commit after setting the values would release the lock, but, it is not good to put such code in the DO_INIT_CONEXT. You should either set values only for new docs(already locked) or find a better place/event to default the values.
    Regards,
    Arun Prakash

  • Reset firefox button does not appear in Troubleshooting information. Not even in safe mode. Every time I shut down computer firefox loses my profile.

    As stated above, firefox loses my profile every time I restart the computor. I have created new profiles and changed the location and changed it back again to no avail. I now want to just restart firefox in default mode but the default button does not appear, not even in safe mode.

    Yes. Sorry, I should have mentioned that there have been several reboots involved during the troubleshooting.
    I am running Firefox in an admin level account in this case - so, there shouldn't be any permission issues there.
    I have tried shutting down both the desktop firewall software, and the anti-virus, and the problem still persists exactly as described. (Obviously, I disconnected the system when I did that [smile].)
    All other software on the system that I have tried, interacts with the file dialog just fine ... so, I don't think it is anything central like some corruption associated with the file dialog itself.
    As I said, it is most perplexing.

  • Transaction iView (WinGUI): "Create Session" opens blank GUI

    Hi All,
    we are using a SAP Transaction iView which displays the WinGUI in the portal and directly opens a SAP transaction.
    The users are used to getting a new session with an already opened navigation tree (SMEN) by clicking "System --> Create Session". However, if the WinGUI is opened in the portal via a Transaction iView, "System --> Create Session" opens a blank GUI session where the users have to manually execute "SMEN" to get to the tree.
    Is there any way to get the usual "Create Session" behavior as if the WinGUI were launched outside the portal and the transaction were entered manually?
    Thanks,
    Jens

    Hi,
    first of all: Apologies... I had found another thread before which described the procedure you were hinting at (manipulating the PAR file) and I even had already downloaded the file from the PCD. But the user in the thread I found described another problem (the menu entry "Create Session" was missing altogether) so I thought this wouldn't solve my problem since we weren't missing this menu entry.
    But you are right: I changed the parameters, deployed the PAR and restarted the portal - the problem is solved! New sessions now automatically show SMEN.
    Thanks a lot!
    Jens

  • Master/Detail in create mode with single row insert

    Hi,
    My jheadstart version is 10.1.3.2.52
    I want to insert master and detail together on same page in create mode.
    I have these settings:
    - Master Layout: Form
    - Detail Layout: Table
    -"Single-Row Insert Allow" (Checked)
    -"Single-Row Update Allow" (Checked)
    -"Single-Row Delete Allow" (Checked)
    -"Multi-Row Insert Allow" (unchecked)
    -"Multi-Row Update Allow" (unchecked)
    -"Multi-Row Delete Allow" (unchecked)
    -"Show Add Row Button" (Checked)
    When I Generate and run Application and click New Button, my detail table don't have any New Button.
    Then I set "New Rows" to 1 for detail table and generate and run again, but problem still there!
    Can you help me?
    Thanks

    Hi,
    Thanks for your reply.
    But I don't want multi-insert row be enabled(because of some logical reasons that forced by my scenario).
    If I enable multi-insert row, even without "new row button" and just set "new row = 1", when user insert first row and click save button, one more empty row automatically add to detail table. I don't want this behavior. I want only one empty row for my detail table in create mode.
    thanks again.

  • IPhoto project will not upload even in safe mode when trying to buy book, any suggestions on how to complete the "BUY BOOK" process. Christmas gift, really need to get this done, have worked MANY hours on putting it together. Please help!

    Iphoto book will not upload even in safe mode when trying to buy book, any suggestions on how to complete the "BUY BOOK" process?

    Make a temporary, backup copy of your library if you don't already have one (Control-click on the library and select Duplicate from the contextual menu) and  apply the fix below:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #1, followed by #3 and then #4 as needed.
    After each run thru the repair process see if you can create a PDF file of the book as described in this Apple Document: iPhoto '11: Preview a book, card, or calendar before you order or print it. If you can try ordering the book.  If you can't finish trying all of the otpions and then boot into Safe mode and try there.
    OT

  • Which transaction we are creating all these display ranges

    Hi Friends,
      In Sales document controls Display Range we have UALL, UHAU & UMAR in which transaction we are creating all these display ranges. friends Please provide me the solution for this issue.
    Regards
    Srikanth

    Do you have a Mac? 
    Running iOS sync, you don't initiate manual syncs - it just happens as you add/mod/delete contacts.  Did you by chance add a Facebook or Twitter account to a device via iOS settings?  Facebook can alternatively sync all your friends' contacts into your Contacts app.  If that's not it, suggest downloading the contacts into a vCard, importing into a client that can read them, fix them all, then if you have a Mac, re-import into Contacts on Mountain Lion (Address Book on Lion).  That should fix it.

  • Looking for an app that allows a contact to ring even in silent mode

    Has anyone come across an app yet that will allow the phone to still ring even in silent mode?
    I want to be able to NOT hear any of the emails or texts at night when I go to sleep but at the same time, I want to be able to have the phone ring through from certain contacts - in case of emergencies from my parents or my son.
    This seems like a pretty simple request.

    there isnt an app, but if you want to spend $99 like i did, you can get the beta version of IOS 6.  It has that exact feature built in!  It only rings emergency contacts and also if someone calls multiple times in 3 mintues or less. Its a cool feature.  With the $99, you get IOS 6 with all the new featues like maps etc... This isnt realeased to public untill fall.https://developer.apple.com/devcenter/ios/index.action

Maybe you are looking for

  • Mac book will not boot up

    macbook pro will not boot up the screen comes on and the apple symbol appears with the little wheel rotating but then just stays there for hours Any suggestions?

  • Attach document in Purchase Order

    Hello Experts It is possible to attach a scanned document to the purchase order in SAP? Thank you in advace,

  • After ZEN 7 HP3 agent upgrade, inventory not running?

    I didn't notice this until now, but after upgrading the agents on the workstations from 6.5 SP1b, to 7.0 HP3, I'm not getting inventory scans anymore. Inventory IS running and working on the server end (I believe the back- end is 7.0 SP1). I just don

  • Structural authorization check in HR-ABAP

    Hello Friends, I am not able to get how to do the structural authorization check, my exact problem was : There is a report where it diplays all the qualifications of the employees and now I should restrict to only the employees who belongs to the org

  • New Trunking port Error Disabled on Nexus 5000

    I configured my Nexus 5000 ports as so Int Eth1000/1/48 switchport mode trunk switchport trunk  allowed vlan 8 speed 1000 channel-group 7 mode active int Po7 switchport mode trunk switchport trunk  allowed vlan 8 vpc7 speed 1000 I configured my 3650