Help needed with this BAPI

hi,
I'm using this IS Oil BAPI RFC_SDCONOIL_CREATEFROMDATA for uploading sales contracts. When we create a contract this BAPI is popping up a dialog asking for some input values. There is no way that these input values can be supplied through the BAPI itself. Is there any way to supress such pop up dialogs after the execution of BAPIs.
Vijay

I don't have experience in IS-OIL, but what are the values that you are asked to enter? Did you check if you can set some SPA/GPA parameters to care of them? Look at the code where this pop-up comes and see if it is executed conditionally. If it is, then check what you are not satisfying in that condition.
Srinivas

Similar Messages

  • Help needed with this form in DW

    Hi, i have created this form in dreamweaver but ive got this problem.
    In the fields above the text field, the client needs to fill in some info such as name, email telephone number etc.
    But the problem is when ill get the messages. Only the text from the large text field is there.
    What did i do wrong??
    http://www.hureninparamaribo.nl/contact.html
    Thank you
    Anybody??

    Thank you for your response. So what do i have to do to fix this?
    Date: Sun, 20 Jan 2013 07:57:56 -0700
    From: [email protected]
    To: [email protected]
    Subject: Help needed with this form in DW
        Re: Help needed with this form in DW
        created by Ken Binney in Dreamweaver General - View the full discussion
    You have several duplicate "name" attributes in these rows which also appears in the first row
    Telefoon:
    Huurperiode:
    Aantal personen:
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5008247#5008247
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5008247#5008247
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5008247#5008247. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver General by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Help needed with this tutorial please

    Hello in this InsertUpdateDelete tutorial at:
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/index.jsp
    or
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/inserts_updates_deletes.html
    and in this paragraph:
    Changing the Column Components
    and this statement
    In the Visual Designer, select the top Drop Down List component in the Table.
    "It's pretty confusing because there isn't a Drop Down List component in the Table as far as i can tell. There is a Drop Down List on the canvas up above this data table, but that has already been bound in a previous process, here is that previous proces:"
    Configuring the Drop Down List
    Select the Drop Down List in the Visual Designer and, in the Properties window, change its General > id property to personDD.
    Right-click the personDD Drop Down List in the Visual Designer and choose Bind to Data from the pop-up menu. The Bind to Data dialog box appears.........
    Can anyone tell me where i can get help with this tutorial or where i can download the finished program so i can sync up with what is actually being referenced in the questional statement that i mentioned above please?
    Thanks very much!
    BobK

    In Step 5 of "Changing the Column Components" you change the Trip Type column to a drop-down list.
    5. Select TRIP.TRIPTYPEID from the Selected list and make the following changes:
    * Change the Header text field from TRIPTYPEID to Trip Type.
    * Using the drop-down list, change the Component Type from Static Text to Drop Down List.
    6. Click OK to enforce your changes and dismiss the window. If the table columns are too wide after performing the above steps, you can resize them by selecting the first component in each column and dragging its selection handles.
    7. In the Visual Designer, select the top Drop Down List component in the Table. Right-click and choose Bind to Data from the pop-up menu. The Bind to Data dialog box opens.

  • Help needed with this scenario

    Hi,
    This is a scenario to be implemented using workflows.
    Can you tell me how to go about with this.
    there is a form on the portal. User enters some details there. Then there is a submit button. when the user presses the submit button, a workflow is triggered on the R/3 side. A work item is sent to the manager which has a form ( the form's layout and data are the same as that of the portal screen ). Basically whatever the user enters in the portal screen is sent as a form to his manager, who can then approve it or reject it.
    Can anyone tell me how this can be done.....the general steps...connectivity between portal and R/3 workflow

    Hi Vijay,
       If you are on R3 Enterprise or above, you can crate a BSP application to get user data and create an iview for this BSP Application. Within BSP application you can use "SWJ_WAPI_START_WORKFLOW" to trigger the workflow.
    Cheers,
    Sanjeev

  • HELP Needed with this error:   Exception in thread "main" java.lang.NoClass

    Folks,
    I am having a problem connecting to my MSDE SQL 2000 DB on a WindowsXP pro. environment. I am learning Java and writing a small test prgm to connect the the database. The code compiles ok, but when I try to execute it i keep getting this error:
    "Exception in thread "main" java.lang.NoClassDefFoundError: Test1"
    I am using the Microsoft jdbc driver and my CLASSPATH is setup correctly, I've also noticed that several people have complained about this error, but have not seen any solutions....can someone help ?
    Here is the one of the test programs that I am using:
    import java.sql.*;
    * Microsoft SQL Server JDBC test program
    public class Test1 {
    public Test1() throws Exception {
    // Get connection
    DriverManager.registerDriver(new
    com.microsoft.jdbc.sqlserver.SQLServerDriver());
    Connection connection = DriverManager.getConnection(
    "jdbc:microsoft:sqlserver://LAPTOP01:1433","sa","sqladmin");
    if (connection != null) {
    System.out.println();
    System.out.println("Successfully connected");
    System.out.println();
    // Meta data
    DatabaseMetaData meta = connection.getMetaData();
    System.out.println("\nDriver Information");
    System.out.println("Driver Name: "
    + meta.getDriverName());
    System.out.println("Driver Version: "
    + meta.getDriverVersion());
    System.out.println("\nDatabase Information ");
    System.out.println("Database Name: "
    + meta.getDatabaseProductName());
    System.out.println("Database Version: "+
    meta.getDatabaseProductVersion());
    } // Test
    public static void main (String args[]) throws Exception {
    Test1 test = new Test1();

    I want to say that there was nothing wrong
    with my classpath config., I am still not sure why
    that didn't work, there is what I did to resolved
    this issue.You can say that all you like but if you are getting NoClassDefFound errors, that's because the class associated with the error is not in your classpath.
    (For future reference: you will find it easier to solve problems if you assume that the problem is your fault, instead of trying to blame something else. It almost always is your fault -- at least that's been my experience.)
    1. I had to set my DB connection protocol to TCP/IP
    (this was not the default), this was done by running
    the
    file "svrnetcn.exe" and then in the SQL Server Network
    Utility window, enable TCP/IP and set the port to
    1433.Irrelevant to the classpath problem.
    2. I then copied all three of the Microsoft JDBC
    driver files to the ..\jre\lib\ext dir of my jdk
    installed dir.The classpath always includes all jar files in this directory. That's why doing that fixed your problem. My bet is that you didn't have the jar file containing the driver in your classpath before, you just had the directory containing that jar file.
    3. Updated my OS path to located these files
    and....BINGO! (that simple)Unnecessary for solving classpath problems.
    4. Took a crash course on JDBC & basic Java and now I
    have created my database, all tables, scripts,
    stored procedures and can read/write and do all kinds
    of neat stuff.All's well that ends well. After a few months you'll wonder what all the fuss was about.

  • Help needed with this program

    Hello,
    I would like to enquire on whether this VI  has any error. I need to configure the digital input as a positive limit switch which is a sensor which when blocked, will produce a change in the voltage pulse.
    Attachments:
    sensor.vi ‏34 KB

    Hello,
    I could not open. Can you save it for LabView 8.2 or 8.5?
    Andy
    Best Regards,
    Andy
    PCI-7356@UMI7764; PCIe-6320@SCB-68; LV2011; Motion Assistant 2.7; NI Motion 8.3; DAQmx 9.4; Win7

  • Help need with this expression

    I am trying to calculate the ratio... so basically doing the adding two textboxes different textboxes and then diving them with the the sum of two different textboxes... but i am getting an #error..
    =(iif(reportItems!Textbox76.Value = nothing,"0.00",reportItems!Textbox76.Value) + iif(reportitems!Textbox94.Value = nothing,"0.00",reportitems!Textbox94.Value)) / iif(((IIF(reportitems!Textbox69.Value = nothing,"0.00",reportitems!Textbox69.Value) + iif(reportitems!Textbox85.Value = nothing,"0.00",reportitems!Textbox85.Value))) = "0.00",1,((IIF(reportitems!Textbox69.Value = nothing,"0.00",reportitems!Textbox69.Value) + iif(reportitems!Textbox85.Value = nothing,"0.00",reportitems!Textbox85.Value))))
    Thanks
    Karen

    Hi Karen,
    I have tested the expression below, it turn out that if one of textboxes's value contain the character except number, then the result of this expression is #Error.
    In your scenario, please ensure that there is no any #Error for the below expression:
    =Cint(ReportItems!TextBox76.Value)
    =Cint(ReportItems!TextBox94.Value)
    =Cint(ReportItems!TextBox69.Value)
    =Cint(ReportItems!TextBox85.Value)
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Help needed with this assignment

    Heres the question i have to complete.
    Build a new class LotsOfBooks which has an attribute which is an array of Book objects and initialises this array using a constructor method parameter. Write a method "setAllReserved" in LotsOfBooks which invokes setReserved( ) on all the books in the array.
    I have to submit my code into a Java compiler that tests my code against the teachers, if it is wrong you get given an error message. My code compiles fine in the compiler Blue J, but in the online tester i get this message.
    mismatch in setAllReserved
    Sometimes if i jig things about i get a null pointer error in the tester. I do not nesserseraly want a written java answer, just to know what i am doing wrong and what i can change.
    NB The array does not have to have any values and the Book class was already given.
    public class LotsOfBooks
    private Book[] books;
    public LotsOfBooks(Object Book[])
    public void setAllReserved()
    for (int i=0; i<books.length; i++){
    Book b =books;
    b.setReserved();
    public class Book
    String author;
    String title;
    boolean reserved;
    boolean onLoan;
    public Book(String author, String title){
    this.author = author;
    this.title = title;
    reserved = false;
    onLoan = false;
    public void setReserved(){
    reserved = true;
    public void setOnLoan(){
    onLoan = true;
    public boolean isOnLoan(){
    return onLoan;
    public String getAuthor(){
    return author;

    well for the preferred on i get
    DataSet 1
    ----------Compilation output--------------------------------------
    javac BookTester1.java
    BookTester1.java:18: cannot resolve symbol
    symbol : constructor LotsOfBooks (Book[])
    location: class LotsOfBooks
    LotsOfBooks lob = new LotsOfBooks(books);
    ^
    1 error
    ----------Sorry expected answer was-------------------------------
    The method setAllReserved worked OK - well done
    ----------Your answer however was---------------------------------
    ++ ERROR ++
    Your program did not compile
    Scroll back in this window to find more details
    [S] Sorry exercise ci101/Wk12BookA was not completed successfully
    and for if not i get
    DataSet 1
    ----------Compilation output--------------------------------------
    javac BookTester1.java
    ----------Sorry expected answer was-------------------------------
    The method setAllReserved worked OK - well done
    ----------Your answer however was---------------------------------
    Exception in thread "main" java.lang.ClassCastException
         at LotsOfBooks.<init>(LotsOfBooks.java:6)
         at BookTester1.main(BookTester1.java:18)
    [S] Sorry exercise ci101/Wk12BookA was not completed successfully

  • Help Needed with this stupid Nano

    I have got a Nice shiny green 16Gb 4th Gen Ipod Nano and I have got all 130+ albums with covers on etc but i cant get my videos to come on via itunes.
    I have even downloaded the sample video from apple which is .mov and clicked add to library and it show under movies but when i goto connect the cable it says its syncing and then ejects but no videos on there.
    Please help

    In Step 5 of "Changing the Column Components" you change the Trip Type column to a drop-down list.
    5. Select TRIP.TRIPTYPEID from the Selected list and make the following changes:
    * Change the Header text field from TRIPTYPEID to Trip Type.
    * Using the drop-down list, change the Component Type from Static Text to Drop Down List.
    6. Click OK to enforce your changes and dismiss the window. If the table columns are too wide after performing the above steps, you can resize them by selecting the first component in each column and dragging its selection handles.
    7. In the Visual Designer, select the top Drop Down List component in the Table. Right-click and choose Bind to Data from the pop-up menu. The Bind to Data dialog box opens.

  • Help needed with this

    why can't I read any Hallmark cards?   and I do have adobe flash down loaded 11.7 on my pc ?

    What exactly means "can't"?  What is your full Flash Player version?

  • I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    I need to reinstall my operating system for 10.5 after seeing a file folder and question mark flashing on my start up screen. Can anyone help me with this?

    Hello,
    That means it can find the Hard Drive, or can't find the things needed for booting.
    See if DU even sees it.
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)

  • HT1277 Mail on my Mac computer does not update when I update my mail on my phone and iPad.  Can anyone help me with this?  Is there a setting I need to check?

    Mail on my Mac computer does not update when I update my mail on my iPhone and iPad. Can anyone help me with this?  Is there a setting that I need to check?

    All that you had to do was to sign into the old account in order to update those apps. What I mean is that you just needed to sign into that account in the store settings like I described and that should have worked. You didnt need to enter the credit card information again - you justed needed to use the old ID and password.
    Anyway, I think the good news is that if everything else is OK with the new account, just download iBooks with the new ID - it's a free app so its not like you have to pay for it again. I'm not sure what the other App is that you are talking about - but if it is the Apple Store App - that is free as well.
    Try this anyway, when you try to update iBooks, just use the old password if the old ID still pops up.
    Did you try signing into the store settings with your new ID and see what happens with the updates then?

  • I just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    i just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    Support articles for things like this would be here:
    http://www.apple.com/support/bootcamp

  • I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    Please note that running out of date versions of Firefox is not recommended, as you will open yourself up to known security issues, alongside bugs and other issues. Is there a specific problem you are having with Firefox that I can help you with?
    You can download Firefox 9 at [http://ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/ ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/]

  • I play Zuma Blitz on FB; Ever since I upgraded to Firefox 4 I can't play the game the darn frog pauses before shooting and it's a mess; you know it's what I enjoy doing and it needs to be fixed can you help me with this??? Thanks

    Question
    I play Zuma Blitz on FB; Ever since I upgraded to Firefox 4 I can't play the game the darn frog pauses before shooting and it's a mess; you know it's what I enjoy doing and it needs to be fixed can you help me with this??? I am super frustrated ith the situationThanks

    Upgrading to firefox 5 and updating my plug-ins helped a bit. Frog is less 'sticky' now, but it's not solved the problem. Java needs to be up to speed or the frog goes into stasis....

Maybe you are looking for

  • Open PDF Attachment with Adobe Reader put GW to background

    Hello all, We have problems with opening pdf attachments from GroupWise client 12.02 with Adobe Reader 11.0.06. The attachment opens fine, but when opening the attachment, the mail and GroupWise client immediately are placed to the background in Wind

  • Remove ?xml version="1.0" encoding="UTF-8"?   from XML doc

    I have generated an XML file using javax XML transformer. In the XML file thats generated I have the version and the encoding line <?xml version="1.0" encoding="UTF-8"?> which is automatically generated in my XML file. Is there any way that I can avo

  • Mechanism for Monitoring Application and Feedback

    Hi All, Is there a way to report the errors happen on user sites? We built the applications, tested them then deployed them, but we have no mechanism to monitor/ watch how these websites being used on the customer/user side. I was wondering if this s

  • SUP Evaluation System

    Hi all, i want to evaluate SUP 2.0 as part of an academic thesis. Can anybody tell me if and how it is possible to get a SUP 2.0 evaluation license ? Cheers, Martin

  • Intel core duo 2.8GHz Extreme - any views?

    Thinking of buying a new iMac with the above and would appreciate any views from those who already have one. Is Apple going to announce an even faster one at the expo on the 14th? Also, are there any disadvantages/hitches with wireless keyboard and m