How to code  vendor details for HR program.

Hi All,
i am quite new to HR ABAP programing,
for display name1, name2 detials for a  perticular  vendor....
i wrote select statement by selecting from LFA1 table, but it's not selecting from the table..
pls tell me is there any other way to code for hr program or any other table to  select data.
pls suggest me.
Thanks
Ravi M

HI RAvi,
I want to know based on what u r geeting the vendor details.
In the HR we will have only person number.
Based on the what u rpulling the data from the table lFa1 table.
Thanks,

Similar Messages

  • Vendor details for a GL document

    Hi experts,
    We have downloaded some of the GL details from FBL3N transaction. We want to know the Vendor code for these document numbers.
    How to get the vendor details for these GL documents using the key fields Accounting document and posting date.
    Regards
    ACR.Ruben

    HI,
    I suggest you do this,
    In FBL3N report first 'CHANGE LAYOUT'  by using keys CTRL+F8.  In the resulting window there are 2 panes. Look into the 'HIDDEN FIELDS' pane and select the field 'VENDOR' (you may have to scroll down for this. Move field to the pane to the left that reads 'LINE 1' by using the the single arrow pointing to your left.  This results in the VENDOR field being selected for display in your report.  Click on 'COPY'.  You will now be able to see the VENDOR number displayed in the report.
    Hope this helps.
    Muralitk

  • How can I find details for an API?

    hi all,
    how can I find details for an API (oe_order_pub.process_order)?
    http://etrm.oracle.com/ has no information for API's.
    regards

    Hi,
    Visit following links.
    1.4. Order Management APIs
    http://oracleappsengineering.blogspot.in/2012/03/oeorderpubprocessorder-api-to-create.html
    oe_order_pub.process_order api book order

  • HOW TO PREPARE TECH SPEC FOR OOPS PROGRAM

    Hi..
    This is Sri .I Created a Report program in oops. can any one help how to prepare tech spec for this oops report,,can i need to mention Classes ,Methods, ref-classes,screens in preparation of Spec..
    Thanks in advance..I surly reward with points if my prob is solved,,,,,,
    SRI

    Hi Sri,
    Tech Spec is nothing but a document containing some technical information about
    the object you have developed/coded. Normally this should be prepared before you code and not the other way round.
    You should mention relevant classes created / used. If you have created / added some class components like attributes/methods/events/interfaces mention that too.
    You can also mention functionality to be coded in methods of the class. Please understand it is not a replica of your program but some useful technical info that the coder will use to code and later people will use for maintainance purpose.
    It is better if you have some defined template for the tech spec, else just put the info in a structured and readable manner.
    Regards
    Indrajit.

  • How to give user authorizations for a Program or an ICF service

    Hi,
       1)How to give user authorizations for a report program or an ICF service.
       2)How to create an user authorization object.
    Regards,
    Vinay.

    check this online help for more info on authorization object creation
    http://help.sap.com/saphelp_nw04/helpdata/en/52/67168c439b11d1896f0000e8322d00/frameset.htm
    for question no1.
    ICF - you either maintain the auth obj relevant at the icf service level itself or you can code call authority object and block access
    for abap programs:
    you maintain auth object at the tcode or code the call authority object within the program
    Regards
    Raja

  • Vendor details for a Min Max requisitions

    Hi All
    When Min Max trigger some requisition interface lines, we need to get the vendor details also be populated,
    What set up it need to get these. Because when I run a Min-Max planning report, I am not getting the vendor details.
    What we have is we will be having a single item be with a single vendor and vendor site
    Please help.

    In the General planning tab for Sourcing type is it mentioned as Supplier?
    Is the use ASL flag in the Purchasing tab for the item enabled?
    The supplier and site details are active?
    The ASL for this item is still active ? (Check in the supplier line details in the ASL form)
    My funtional guy says yes to all the above quries.
    And also says All ASL have the sourcing rules assigned to the assignment set that is setup on the MRP: Default Sourcing Assignment Set profile, but this scenario is only for minmax
    So this issues is only for MIN-MAX.Please let me know if any thing to be done in setup to automatically get the
    vendor details into requistions lines of interface table based on items.
    Edited by: 834095 on Mar 14, 2011 2:59 AM

  • How to create Background job for Dialog program

    Hi Experts,
    I have copied Standard tcode to Z-tcode (CS12 tcode).
    Now my requirement is to create background job for this program (but program is not a 'E' type its 'I').
    How we can schedule Dialog program to Background.
    Pls suggest me.
    Regards
    SK

    Hi do as below :
    Reefer below :
    Bakcground Job Creation
    You will have to submit your report using Submit statement ,
    then inside the submitted report write open_job.
    Regards,
    Uma

  • How to set OEM alerts for concurrent programs

    Hi,
    We are using OEM 10g gridcontrol for monitoring.
    i am new to OEM, now i have a task to set up alerts for concurrent programs(which are running more than 30mins).
    can any one provide step by step process to setup alerts.
    Thanks,

    Here is how to enable your alerts.
    1. From the Mobile Email application, select the desired email account then press the center of the 5-way navigation pad to choose Select.
    If prompted enter the username and password,  then press the center of the 5-way navigation pad to choose Sign In.
    2. Press the right soft key to choose Options.
    3. Select Settings then press the center of the 5-way navigation pad to choose Select.
     For AOL / AIM select Preferences.
    4. Select the desired setting then press the right soft key to choose Save.
    To disable the email alerts:
    Select Disable or Never.
    To enable email alerts:
    Select Enable or Always.
    To receive email during a desired time interval:
    Select Only During then enter the desired time interval.
    This setting may not be available on all handsets or accounts. Hope this helps

  • How to code a parallel 'for loop' and 'while loop' where the while loop cannot terminate until the for loop has finished?? (queues also present)

    I've attached a sample VI that I just cannot figure out how to get working the way that I want.  I've labeled the some sections with black-on-yellow text boxes for clarity during the description that follows in the next few sentences.  Here's what I want:
    1) overall -- i'm intend for this to be a subVI that will do data acquisition and write the data to a file.  I want it to use a producer/consumer approach.  The producer construct is the 'parallel for loop' that runs an exact number of times depending on user input (which will come from the mainVI that is not included).  For now I've wired a 1-D array w/ 2 elements as a test case.  During the producer loop, the data is acquired and put into a queue to be delt with in the consumer loop (for now, i just add a random number to the queue).
    2) the consumer construct is the 'parallel while loop'.  It will dequeue elements and write them to a file.  I want this to keep running continuously and parallel until two conditions are met.
          i. the for loop has finished execution
          ii. the queue is empty.
       when the conditions are met, the while loop will exit, close the queue, and the subVI will finish. (and return stuff to mainVI that i can deal with on my own)
    Here's the problems.
    1)  in the "parallel for loop" I have a flat sequence structure.. I haven't had time to incorporate some data dependency into these two sequential sections, but basically, I just care that the "inner while loop" condition is met before the data is collected and queued.  I think I can do this on my own, but if you have suggestions, I'm interested.
    2)  I can easily get the outer for and while loops to run sequentially, but I want them to run in parallel.  My reasoning for this is that that I anticipate the two tasks taking very different amounts of time. .. basically, I want the while loop to just keep polling the queue to get everything out of it (or I suppose I could somehow use notifiers - suggestions welcome)...  the thing is, this loop will probably run faster than the for loop, so just checking to see that the queue is empty will not work... I need to meet the additional condition that nothing else will be placed in the queue - and this condition is met when the for loop is complete. basically, I just can't figure out how to do this.
    3) for now, I've placed a simple stop button in the 'parallel while loop', but I must be missing something fundamental here, because the stop button is totally unresponsive.  i.e. - when I press it, it stays depressed, and nothing happens.
    suggestions are totally welcome!
    thanks,
    -Z
    Attachments:
    daq01v1.vi ‏59 KB

    I'd actually like to add a little more, since I thought about it a bit and I'm still not quite certain I understand the sequence of events...
    altenbach wrote:
    zskillz wrote:
    So i read a bit more about the 'dequeue element' function, and as I understand it, since there is no timeout wired to the dequeue element function, it will wait forever, thus the race condition I suggested above can never happen!
    Yes, you got it!
    As I've thought about it a bit more, there's a few things that surprise me... first, the reason the 'dequeue element while loop' errors is not because there's nothing in the queue, it's becaues the queue has been released and it's trying to access that released queue...   However the problem I have is this --- Even though there's no timeout wired to the dequeue element, I still would think that the while loop that contains it would continue to run at whatever pace it wanted -- and as i said before.. most of the time, it would find that there is nothing to dequeue, but once in a while, something is there.  however, it seems that this loop only runs when something has been enqueued.  the reason I say this is illustrated in the next code sample MODv2 that's attached below.  I've added a stop button to the "queue size while loop" so the program runs until that is pressed.  I've also added a simple conditional in the "dequeue while loop"  that generates a random number if it a button is pressed... but this button is totally non-responsive... which means to me that the "dequeue while loop" isn't actually continuously running, but only when an element is added to the queue.  this still seems almost like the 'dequeue while loop" waits for a notifier from the queue telling it to run.  can you explain this to me? because it is different from what I expect to be happening.
    rasputin wrote:
    I tried to open your VIs but it doesn't work. LV
    is launched, the dialog box (new, open, configure...) opens and then...
    nothing. Not even an error message. I guess it isn't a problem of LV
    version or a dialog box would appear saying this. Could you, please,
    send a image of the code?
    Thanks,
    Hi Rasputin, I'm using LV8.  I assume that was your problem, but who knows.  I've attached a pic of of altenbach's solution since it's what I needed.
    thanks
    -Z
    Message Edited by zskillz on 10-20-2006 11:49 AM
    Attachments:
    daq01v1MODv2.vi ‏63 KB
    daq01v1MODpic.JPG ‏116 KB

  • How to add log details for marketing attributes

    Hi,
    when user is changing marketing attributes in bp transaction we need to show the log details in log file.how to capture the change log details in to log file ? is there any way to show change log files.
    rose

    Hi,
    You can view the change log using the report program:CRM_MKT_TOOLS or T-cd:CRMD_MKT_TOOLS. Choose 'History of attribute Evaluation for Business Partners'.
    You can manipulate this report and get the necessary log.
    This BADI CACL_VAL_CHANGE will be called after any change to the marketing attribute.
    Here you can capture the log to your custom table / you can log the data to a file.
    Hope this helps.
    Regards,
    Senthil.

  • Vendor details for Shopping Cart Numbers.

    Hello All,
    I have shopping cart numbers(Object_ID). I want to know the details of vendors for corresonding SC numbers.
    Please provide me the details.

    Hello Muthu,
    Under Partner I am getting the following details. How can I get the Partner number from GUIDS?
    Partner:
               Partner_Fct    Description                    Partner_No
    0000000001 00000016       Requester                      DEB417AAA31F65F1B30B0050569F1467
    0000000001 00000020       Goods Recipient                DEB417AAA31F65F1B30B0050569F1467
    0000000001 00000075       Location                       DD4F1FB364F8F9F198650050569F1467
    0000000001 00000027       Ship-To Address                DD4F1DE064FBDFF198650050569F1467
    Regards,
    Yugesh A.

  • Runtime.exec() - how to open new window for new program?

    Hi,
    I have searched through the forums but haven't found an answer to this one yet. I am using runtime.exec() to start up a new java program. At first I thought it wasn't running properly but, after checking task manager, I have discovered that the new program I open runs, it is just completely invisible to me. I am wondering how I can get the new program to run in a command window or something where I can monitor it.
    Thank you for your help,
    Drew

    Thank you all. After trying to figure out why the start command wouldn't work in the runtime.exec() call(not an executable - I am a dolt), I tried putting it in a batch file and it worked perfectly. Thanks for your help,
    Drew

  • How to code Java client for a Java Web Service

    Hi,
    I have a modest knowledge on Java and new to Web Services. I have create a web service using JDeveloper as detailed at the URL http://www.oracle.com/webfolder/technetwork/tutorials/obe/jdev/obe1013jdev/10131/devdepandmanagingws/devdepandmanagingws.htm
    In my Web Service, I have one GetSum java class, which has a method addSum(int x, int y) and this method returns the sum of x and y. I am able to successfully test the addSum method in the web service via the end point. However, I would want to use the addSum() method of the web service in a stand alone java class. For this I have used the wsimport utility and the WSDL of the webservice, from which I have got the following java classes.
    AddSum.class
    AddSumResponse.class
    GetSumWS.class
    GetSumWS_Service.class
    ObjectFactory.class
    package-info.class
    I have packed all the above class into a jar file.
    I have tried many options provided in various websites, but am not able to get this resolved. I am pasting the WSDL for any reference
    <?xml version="1.0" encoding="UTF-8" ?>
    - <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://FirstWS.com/" name="GetSumWS" targetNamespace="http://FirstWS.com/">
    - <types>
    - <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://FirstWS.com/" elementFormDefault="qualified">
    <element name="addSum" type="tns:addSum" />
    - <complexType name="addSum">
    - <sequence>
    <element name="x" type="int" />
    <element name="y" type="int" />
    </sequence>
    </complexType>
    <element name="addSumResponse" type="tns:addSumResponse" />
    - <complexType name="addSumResponse">
    - <sequence>
    <element name="return" type="int" />
    </sequence>
    </complexType>
    </schema>
    </types>
    - <message name="GetSumWS_addSum">
    <part name="parameters" element="tns:addSum" />
    </message>
    - <message name="GetSumWS_addSumResponse">
    <part name="parameters" element="tns:addSumResponse" />
    </message>
    - <portType name="GetSumWS">
    - <operation name="addSum">
    <input message="tns:GetSumWS_addSum" />
    <output message="tns:GetSumWS_addSumResponse" />
    </operation>
    </portType>
    - <binding name="GetSumWSSoapHttp" type="tns:GetSumWS">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="addSum">
    <soap:operation soapAction="" />
    - <input>
    <soap:body use="literal" />
    </input>
    - <output>
    <soap:body use="literal" />
    </output>
    </operation>
    </binding>
    - <service name="GetSumWS">
    - <port name="GetSumWSSoapHttpPort" binding="tns:GetSumWSSoapHttp">
    <soap:address location="http://akartha.in.ibm.com:8888/suresh/GetSumWSSoapHttpPort" />
    </port>
    </service>
    </definitions>
    Can someone please provide me the code to invoke the addSum() method in a stand alone java class. I would really appreciate the help
    Thanks,
    Suresh

    Hi,
    The following is my code to invoke the addSum() web service method.
    package com.FirstWS;
    import com.firstws.*;
    import com.firstws.GetSumWS_Service;
    import com.firstws.GetSumWS;
    import java.rmi.RemoteException;
    public class useWS {
    public static void main (String[] args) {
    GetSumWS port = null;
    try {
    int number1 = 10;
    int number2 = 20;
    port = new GetSumWS_Service().getGetSumWSSoapHttpPort();
    System.out.println ("Invoking addNumbers(%d, %d)\n"+ number1 + number2);
    int result;
    result = port.addSum(number1,number2);
    System.out.printf (
    "The result of adding %d and %d is %d.\n\n",
    number1, number2, result);
    } catch (Exception ex) {
    System.out.println ("Caught Exception: %s\n"+ex);
    But when I compile, I get the following error: "Error(14,20): Service not found in class com.firstws.GetSumWS_Service in class com.FirstWS.useWS"
    Please let me know where I have wrong, and would appreciate if you could correct it.
    Thanks,
    Suresh

  • How to create a logo for a program?

    Hi,
    I want to create a logo panel that loads up initially when the program starts.(similiar to IE or netscape or any software). Then goes into the program. How would you go about doing so? I have try to create a frame and turning off the resize feature, center the frame on to the screen. But having problems with removing the title bar, is there any formal way of doing so? thanks

    It's called a 'splash screen'. You might do a search for it.
    A JFrame without any decorations is a JWindow.

  • How to create a tcode for a program in FMEQ transaction

    Hi ABAP Experts,
    I need to assign a program from FMEQ transaction to a custom z-transaction code. Can anybody tell me
    how to do this. I already tried  go to system-status-> "copy program name from here and past it in SE93).
    This would not work because each time when you made changes to a program in FMEQ and generate it
    system will generate new program name.
    Hope to see a reply from you. Thnks in advance.......
    Regards,
    Meera.

    Hi All,
    I got it how to do. Just I would like to share solution here.
    go to SE93,
    Enter transaction code name & description
    and choose option "Transaction with parameters (parameter transaction)" and press on "Continue" button.
    Enter Transaction = START_REPORT and select all check-boxes in GUI support tab and enter below values in
    Default values area.
    D_SREPOVARI-REPORTTYPE  = RE
    D_SREPOVARI-REPORT =
    D_SREPOVARI-EXTDREPORT = FM  01IFMEISA                       <name of program in FMEQ>
    save and execute.

Maybe you are looking for

  • How do I read multiple lines at once with sockets?

    I have been trying to teach myself the Java Network stuff and I have come across an issue I can't seem to resolve. I've been modifying the code from the KnockKnockServer and I am trying to send a line like ("Knock Knock \n Who's there? \n Me") to the

  • Is there a way to create reusable HTML Forms that can be used on multiple pages?

    I'm trying to understand the recommended approach to managing 10 HTML forms that will be reused on many different pages.  I want to be able to modify the form definition once and have the change propogate.

  • Why can't iTunes play music from read-only external hard drive?

    I have a write-protected external hard-drive which I keep all of my iTunes media on. iTunes recognizes all of the files, including the metadata on the id3 tags, and can find the files in Windows Explorer. However, it cannot play the files while the d

  • Time Machine after hard drive crash

    Recently, my MacBook's hard drive crashed. Fortunately, I had most of my data backed up via Time Machine. So, once Apple installed a new hard drive, I "restored all" with Time Machine. Now when I launch Time Machine, my archive only goes back a few d

  • CC 2014 Dateizuordnung fehlerhaft (Windows 7)

    Hallo, ich benutze Windows 7 und seit kurzer Zeit passen meine Dateizuordnungen nicht mehr. Ich bin mir nicht sicher, ob es seit dem Update auf CC 2014 oder seit dem letzten Windows Update der Fall ist, jedenfalls sind viele Typen (.indd, .aep, .psd,