How to Display Inventory Transfer Current DocEntry in UDF Created in WTR1

Hi Expert,
     I want a Inventory Transfer Current Form DocEntry in UDF U_DocEntry which is in the wtr1 For specific Doc
     I have write SELECT T0.[DocEntry] FROM OWTR T0 WHERE T0.[DocEntry] = $[OWTR.DocEntry] but this FMS is not working
Regards,
Sandy

Hi,
You can get the Next docentry from this but if two user open document same time the both user get same docentry, and the user who add document first have the same docentry in udf and Document but another user document Docentry and UDF doc entry will be differ.
You should try this in SP_TransactionNotification will give Exact DocEntry.
IF @object_type= '67' and @transaction_type in ('A','U')
BEGIN
  UPDATE OWTR
  SET U_DocEntry=T1.DocEntry
  From OWTR T1(NOLOCK)
  WHERE OWTR.DocEntry=T1.DocEntry AND T1.DocEntry=@list_of_cols_val_tab_del
END
Thanks

Similar Messages

  • How to display a music album in a iWeb created website on MobileMe

    Hi There
    I have several songs and some Music videos that make up a Music Album (mine that I have made myself do I have the copyright to them) that I want to publish on my iWeb created website (hosted on MobileMe)
    How can I get the whole Album to import. I have try dragging the things from the media side bar, I have also just tried dragging the whole album direct from the iTune Library, but no matter what I try it displays all the songs and the video as separate files and wont import them as a whole album.
    Can someone tell me how to get them as a whole album
    Thanks
    Jason
    Message was edited by: Jason G Telford -- message was accidentally posted before it was completed

    Do you want to have the visitors play each of the songs and videos? You can use a flash based jukebox for the audio files and a video jukebox for the videos. You would only have to upload the files to your server once and then link to them there. With these methods the files don't load until you select the play button thus allowing the page to load much quicker.
    Roddy's iWeb for Musicians site has a number of such examples on these pages: Music Players and Video LightBox Audio Jukebox.
    Happy New Year

  • How to display russian from a an html file created in textedit?

    I have created an html page in textedit which contains some russian text, how can i get safari to display this text properly?? In my textedit i used plain text but for some reason it comes out all starange in safari....

    Safari is using the wrong encoding.  Normally you would go to View > Text Encoding in your browser and try the different ones for Cyrillic until the display is correct.
    When you make an html page, you are always supposed include code which tells the browser what encoding to use.  Have you done that?  I would recommend that when you save in TextEdit you use UTF-8 and also put that in the html code.
    http://www.w3schools.com/tags/att_meta_charset.asp

  • How to display international version infor for customer when creating SO?

    Hi Gurus:
                Is there any possibility to display the international version information for customer when creating the SO.like customer name / address etc.
    thanks!

    See notes 598197 and 610289

  • Can i skip excise effect from inventory transfer?

    Dear Experts,
                     Can anybody tell me in my case how to skip excise effect? Actully I'm developing Quality Check Addon. My Item is excisable and while receiving I'm taking it in one of the excisable warehouse. For that I'm creating incoming excise invoice as excise rule says. When i receive material QC is hapening and once QC ok the I'm transfering same to Approved non excisable warehouse. Here my From warehouse is excisable warehouse. So while inventory transfer its asking me to create corresponding excise invoice which  dont want. How can I skip this?
    Thanks & Regards,
    Rahul

    Hi......
    Actully As per my company scenario the effects are going fine even though after inventory its asking to create corresponding excise invoice............
    Regards,
    Rahul...

  • How to display S.no adjacent to employees table help plsss

    In a form in tabular format Emp details are displayed
    Adjacent to the table i want to put a Sno display item showing
    1 for 1st employee
    2 for 2nd employee ......
    I thought i could like create a global variable in a package specification in a program unit and assign it to 1
    Package pack1 is
    v_num number :=1;
    end;
    and then write a PRE_ITEM trigger for a Sno item in the object navigator
    In the trigger
    how to display the value inside v_cnt;
    I tried creating a sequence
    create sequence v_seq;
    but the sequence really wont help me as
    it would keep on incrementing
    so how can i display the value inside the v_cnt in a item
    Is it possible not to use a trigger and still achieve this

    BEDE,
    what will the :system.cursor_record show in a tabular block of 10 rows and what the rownum will sho instead (even if you change the where clause or the ordre by) :
    - the :system.cursor_record will show the number of the fetch.
    1-10 rows : 1
    11-20 rows : 2 etc ...
    - the rownum order by field :
    rownum - field
    1- A
    2- B
    3 - C etc..
    - the rownum order by field desc :
    rownum - field
    1 -C
    2 - B
    3 - A etc..
    - the rownum where clause filed != 'B':
    rownum - field
    1 - A
    2 - C
    3 - D etc..
    So Sqlstar_student, just choose the method regarding your needs.
    Regards
    JeanYves

  • HOW TO DISPLAY MY NAME ON IPHONE 4

    HOW TO DISPLAY MY NAME ON IPHONE 4

    You could create a lock screen wallpaper with your name on it if you want. There is no way to get your name on the status bar at the top of the phone.

  • How to display current postion and previous position in the same row?

    I need to produce a promotions/transfer report that gives the employee's current position as well as his/her previous position in the same row.
    for example:
    Employee current position current organization current company previous postion previous organization previous company
    Jane Smith Executive PA ZYX ltd Harmony personal assistant ABC ltd Yahoo
    I am using the per_all_people_f, per_all_assignments_f, per_periods_of_service, hr.all_organization_units, per_all_positions tables
    Somehow i cannot manage to display the previous position. I can only get so far to display the current postions
    Any ideas? here is the full code
    --this query gives current info
    select ppf.employee_number, ppf.full_name
    , (DECODE (ppf.sex, 'M', 'Male', 'F', 'Female') ) gender
    , (DECODE (ppf.per_information4
    ,'01', 'Indian'
    ,'02', 'African'
    ,'03', 'Coloured'
    ,'04', 'White') ) race
    , ppf.ORIGINAL_DATE_OF_HIRE
    , paf.EFFECTIVE_START_DATE current_postion_start_date
    , RTRIM (SUBSTR (hpt.NAME, 1, INSTR (hpt.NAME, ';') ),';')Current_Position
    , ho.name Current_Organization
    , xx_return_structures.xx_return_company_name
    (paf.person_id,
    paf.effective_start_date
    ) current_company
    from per_all_assignments_f paf,
    hr_all_positions_f_tl hpt,
    hr_all_organization_units_tl ho,
    per_all_people_f ppf
    --where paf.person_id = 16170
    and paf.POSITION_ID=hpt.POSITION_ID
    and paf.ASSIGNMENT_NUMBER is not null
    and ho.organization_id = paf.organization_id
    and ppf.person_id=paf.person_id
    and paf.EFFECTIVE_START_DATE between ppf.EFFECTIVE_START_DATE and ppf.EFFECTIVE_END_DATE
    order by paf.EFFECTIVE_START_DATE
    --this query gives previous position, organization and company
    select ass.EFFECTIVE_START_DATE
    , RTRIM (SUBSTR (hpt.NAME, 1, INSTR (hpt.NAME, ';') ),';')Previous_Position
    , ho.NAME previous_organization
    , xx_return_structures.xx_return_company_name
    (paf.person_id,
    paf.effective_start_date
    ) previous_company
    from per_all_assignments_f paf, hr_all_positions_f_tl hpt, hr_all_organization_units_tl ho
    where paf.person_id = 16170
    and paf.EFFECTIVE_START_DATE not in (select max(paf.EFFECTIVE_START_DATE)
    f rom per_all_assignments_f paf
    where ass.person_id = 16170)
    and paf.PRIMARY_FLAG ='Y'
    and paf.POSITION_ID=hpt.POSITION_ID
    and paf.ORGANIZATION_ID=ho.ORGANIZATION_ID

    Ok so here is my problem. The current position display 3 times. The rest is correct. it only display once. Any ideas on how to get rid of the 2 extra rows that is being displayed with the current position?? I only need the current position to display once with the previous position info.
    select distinct pvs.person_id,
    peo.EMPLOYEE_NUMBER empno,
    peo.FULL_NAME,
    (DECODE (peo.sex, 'M', 'Male', 'F', 'Female') ) gender,
    (DECODE (peo.per_information4
    ,'01', 'Indian'
    ,'02', 'African'
    ,'03', 'Coloured'
    ,'04', 'White') ) race,
    peo.ORIGINAL_DATE_OF_HIRE,
    pvs.EFFECTIVE_START_DATE curr_start_date,
    RTRIM (SUBSTR (pvs.job, 1, INSTR (pvs.job, ';') ) ,';') current_position,
    pvs.ORGANIZATION current_organization,
    substr(pvs.PAYROLL,5)current_company,
    a1.previous_position,
    a1.previous_organisation,
    a1.previous_company
    from per_periods_of_work_v pv,
    per_assignments_v2 pvs,
    per_all_people_f peo,(select distinct RTRIM (SUBSTR (pvs.job, 1, INSTR (pvs.job, ';') ) ,';') previous_position,
    pvs.ORGANIZATION previous_organisation,
    substr(pvs.PAYROLL,5)previous_company,
    pvs.job_id job_id,
    pvs.organization_id,
    pvs.position_id,
    pvs.location_id,
    pvs.PERSON_ID,
    pvs.PEOPLE_GROUP_ID,
    pvs.EFFECTIVE_END_DATE,
    pvs.EFFECTIVE_START_DATE
    from per_assignments_v2 pvs
    where sysdate > pvs.EFFECTIVE_END_DATE
    and pvs.person_id=4723
    )a1
    where peo.person_id = pvs.person_id
    and pvs.person_id = pv.person_id
    and a1.person_id = pvs.person_id
    and pvs.EFFECTIVE_START_DATE between peo.EFFECTIVE_START_DATE and peo.EFFECTIVE_END_DATE
    and pvs.PEOPLE_GROUP_ID <> a1.people_group_id
    and pvs.JOB_ID <> a1.job_id
    and pvs.ORGANIZATION_ID <> a1.organization_id
    and pvs.position_id <> a1.position_id                     activating this elimnates 1-Feb-2008 info
    and pvs.effective_start_date -1 = a1.effective_end_date     activating this eliminates 1-feb-2008, 1-jul-2006, 1-april-1996 info
    and pv.person_id = 4723
    order by pvs.effective_start_date desc

  • How to display Current Year and Month in Drop Down list

    Hi Dear friends,
    I am devloping a report. It has got 2 pages--input and output(Report) page.
    IN input page, user will select Month and Year from drop down list as one of the input parameters. (seperate drop down list 4 month and year)
    Now, my problem is:
    HOw to display current month and year by default in the dropdown list...........
    I hope my question is clear.
    Please help.
    Regards,
    ASh

    NO da,
    it is not working.
    First i tired with for-loop. I initialized variable "i" to -2 (i=-2) I would get the year drop down list from 2003 but, by default 2003 would come.
    So, i posted the question.
    I tried your code. It is giving following error.
    A Servlet Exception Has Occurred
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occured between lines: 122 and 127 in the jsp file: /test/inpt.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:182: Invalid type expression.
    first.set(Calendar.YEAR, 2003)
    ^
    An error occured between lines: 127 and 131 in the jsp file: /test/inpt.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:186: Invalid declaration.
    out.write("\r\n \r\nYear : \r\n \r\n"); ^ An error occured between lines: 198 and 203 in the jsp file: /test/inpt.jsp Generated servlet error: C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:282: Invalid type expression. first1.set(Calendar.YEAR, 2003) ^ An error occured between lines: 203 and 207 in the jsp file: /test/inpt.jsp Generated servlet error: C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:286: Invalid declaration. out.write("\r\n \r\nYear :\r\n \r\n");
    ^
    4 errors
    Pls. Help.
    Regards,
    Ashu

  • How do I manually transfer music with the new itunes update for Windows?  I don't want to sync my library and lose all of my music for what I have in my current library.

    How do I manually transfer music with the new itunes update for Windows?  I don't want to sync my library and lose all of my music for what I have in my current library.

    The same way it was done in every previous version.
    Connect the device to the computer.
    Right click on the device in iTunes and select Transfer Purchases.
    Why would you lose any content by syncing with iTunes?
    Is this not the computer that the device is normally synced with?

  • How to display the time length of video (current time/ total time) ?

    Hi,everyone. I would like to ask how to display the time length of the video which show only in system example: it show the current time and total time? using AS 3.0.
    It there any information or solution to solve it? .
    I appreciate it any of you able to answer it. ^^
    Thank you.

    Hi,
    Actually I have this requirement for MAC OS 10.5. With the code you provided, I got the output as "6289375". When I changed the URL to point to my file (file:///Users/VPKVL/Desktop/MyRecord/tempAudio.wav), I am getting the below mentioned Exception:
    Exception in thread "main" javax.sound.sampled.LineUnavailableException: Failed to allocate clip data: Requested buffer too large.
         at com.sun.media.sound.MixerClip.implOpen(MixerClip.java:561)
         at com.sun.media.sound.MixerClip.open(MixerClip.java:165)
         at com.sun.media.sound.MixerClip.open(MixerClip.java:256)
         at TestWavLength.main(TestWavLength.java:13)The "tempAudio.wav" file is created by using java sound API. I am using the SSB USB Headphone Set to record the audio with the following settings for AudioFormat object:
    AudioFormat audioFormat = new AudioFormat(
              AudioFormat.Encoding.PCM_SIGNED, // the audio encoding
                                                            // technique
              48000.0F,// sampleRate the number of samples per second
              16, // sampleSizeInBits the number of bits in each sample
              2, // channels the number of channels (1 for mono, 2 for
                            // stereo, and so on)
              4, // frameSize the number of bytes in each frame
              48000.0F,// frameRate the number of frames per second
              false); // bigEndian indicates whether the data for a single
                            // sample is stored in big-endian byte order
                            // (false means little-endian)Can you please suggest where I am going wrong ?

  • How to display the index of current desktop when enable multiple spaces

    I was using 10.6 before and used to using Spaces and puts applications into different desktops.
    Now I'm using 10.8 and I know that the Spaces has been integrated into Mission Control.
    The problem is, I can see the current desktop on the top bar in 10.6, but in 10.8 I cannot see it so I usually forget where I am.
    Does anyone know how to display the index of current desktop?

    Does anyone know how to display the index of current desktop?
    Brute force - - I have written the number of the Desktop directly onto the wallpaper picture I am using for each Desktop  (easy to do with Preview).
    All Desktops are using different wallpaper photos, so they are easily recognized by the color scheme, and in the upper left corner is the number.
    Regards
    Léonie

  • How to display the current date in the prompt value.

    Hi,
    How to display the current date in the prompt value. When the user runs the query he want the current date to be displayed in the prompt value and he should also be able to change the date if required ...... I am using web Intellegency BO XI3.0.
    Thanks,
    Shakthi.

    Please refer the below link.
    Prompt  with  default  date   (  currentdate-1  and current date-8)
    http://www.dagira.com/2008/07/15/how-can-i-make-today-my-default-prompt-value/
    http://www.dagira.com/2008/07/21/using-a-magic-date-value-in-prompts/
    Regards,
    Bilahari

  • How to display current date in query header?

    Hi,
    How to display current date in query header?
    I use Query Designer for development.
    Thanks,
    Arun KK

    Hi Arun,
    You can define fixed header lines and footer lines so that when you generate the query list, they can receive current values of certain fields. When you define a header line or a footer line, you must specify a character string of the type &field, where field is the short name of a field.
    This function allows you (for example) to place a sort criterion in the header line.
    You can include the following fields as variables in the headers directly:
    %NAME
    Name of the user processing the query
    %DATE
    Current date
    %TIME
    Current time
    %PAGE
    Current page number (6 characters)
    %P
    Current page number (3 characters)
    These fields can be used in the short forms N,D,T and P. If you want to use these letters as short names for query fields, the field values from the query are used.
    You can also see the link
    [http://help.sap.com/saphelp_nw70/helpdata/EN/6e/dd68721faf11d6b1d500508b6b8b11/frameset.htm]
    Regards,
    NR

  • How do I display lyrics for current selection in Itunes for windows?

    How do I display lyrics for current selection in Itunes for windows? I have lyrics for many songs, am losing hearing and enjoy seeing the lyrics to remind me of my memory of the song...

    try this.. http://www.lyricsplugin.com/
    good luck.

Maybe you are looking for

  • Can;t get microphone to work

    Hello folks! I have a Hercules Dualpix Exchange Mic connected to my Lenovo Desktop. I have downloaded Skype and have run the visual test (which worked) and the microphone call test (which did not work). I am not very computer minded so I am not reall

  • Help needed to publish site via 1and1 instead of Mobileme

    Hi - I'm far from a computer whiz, and am struggling to publish my iWeb site via 1and1 using my newly registered personal domain name... When I do the test connection on the iWeb page, it tells me sth is wrong, but I have no idea what!?!? The details

  • Certificate problem

    I just installed Safari 1.0 and can no longer access a financial site I had previously accessed with I.E. - I get the message "Safari could not verify the identity of the website. . . . the website's certificate was signed by an unknown certifing aut

  • How do you get Hyperlinks to work in MAIL signature?

    Hi, I need help.....How does one get Hyperlinks to work in MAIL signature?..when I do this is turns blue and IS underlined (as usual) but the link doe not work ..any thoughts???.. also any one have ideas on how to select and group email from the same

  • How to make data persist in form?

    Hi I've made multiple forms for a Web site. Each form is within its own module. The problem is the data entered into a form disappears as soon as the user shifts to another form (and consequently, another module). How to make the data persist in the