Copy field in  a  user  field

hi,
i want to copy entry invoice  description field of a single article code ( description change for lines)  in a user field that's i've created in creation serial numbers form when i insert manual serial number. anyone can help me? thanks

You will need to create a formatted search to a column at the Invoice row.  The formatted search will insert the ItemCode, Description, Currentlogged User, Invoice No to a temp table.
In the Serial Number screen you will attach another FMS which will read the Item desciption from this temp table.
If the Item Description does not change in every document and is the same as the Item Master, you can simple read it from the Item Master without any of the above procedures.
SELECT T0.ITEMNAME FROM [DBO\].[OITM\] T0 WHERE T0.ITEMCODE = $\[$5.17.0]
Note: ItemCode column should be visible in the Available Serial Number window

Similar Messages

  • How to make field key for user fields cant be changed after project release

    Dear Expert,
    How can we make field key for user fields cannot be changed once we release the project/wbs?
    Cheers,
    Nies

    Do you mean 'field key' in the project profile in SPRo?
    I think after a project is created a change in the field key wont affect the fields in CJ20N..
    Can you verify?
    Regards
    Ramesh

  • Field key for User fields

    For some reason it seems that the Field key for User fields is shared between WBS and Network Activity.  We use it for WBS-elements, but I want to close the User Fields tab for network activity.
    When I try to remove it for ntw activity I get the tab back with a red triangle, saying that fields are necessary...
    Any help is greatly apreciated.

    Anjali,  If We  Remove the field key from the network profile. This will still display  the user filed tab, but the same will be in display mode and having drop down for the user field selection.  The movement we select this drop down the filed will become input as per settings.
    And I peruse  that PS user wanted to delete the tab. Please verify my observation.
    With Regards
    Nitin P.

  • Not Reflecting all the field defined in User Field Key  - WBS

    Dear SAP Gurus,
    I am not able to view the fields which are user defined in field key.  I need all four character fields and date fields.
    Please guide...
    Regards

    Hi,
    First check in transaction OPS1 for these user fields. Next check whether there's an authorization object specified to these user fields. If yes, then maybe you wont be having access to it. Kindly check and confirm.
    Best Regards,
    Gokul

  • PS creating Operative Network from standard and need to copy user fields

    Hello All,
    has anyone tried to create Opertive Network(cn21) with reference to a Standard network. what we need to do is from the first line line item copy 3 user defined fields from the User Fields tab on the Standard Network to the header of the Opertaive Network and then on the additional fields tab put those 3 values.
    I have look at the User Exits and i am now looking into the BOR.
    thanks scott

    Hi,
    In copy controll Sales order 2 Delivery T-code VTLA
    Select  COPY item number  then item numbers form SO as it is come in delivery.
    If you not selected this number then system renumber item in deliver
    Kapil

  • PS creating Opertive Network from Standard network, need to copy user field

    Hello All,
       has anyone tried to create Opertive Network(cn21) with reference to a  Standard network. what we need to do is from the first line line item copy 3 user defined fields from the User Fields tab on the Standard Network to the header of the Opertaive Network and then on the additional fields tab put those 3 values. 
    I have look at the User Exits and i am now looking into the BOR.
               thanks scott

    Hi Prasad,
    Have a look at OSS Note 95024. Hope this note provides some inputs.
    Thanks
    Lakshman

  • Making enhancment user fields on internal orders

    I have read thread
    Re: Internal Order - Additional User Fields
    about additional user fields. I have made a project and enhanced CI_AUFK with the fields.
    I have implemented the code like mentioned in above thread but now I don't see the field back in KO02 .
    even worse I get an crash with the error 'Dynpro does not exist'
    'The system attempted to use dynpro 0100 in program "SAPLXAUF".
    this dynpro does not exist.                                  
    does anybody know what I still miss in the procedure or has an example on how to implement additional fields on the screen in KO02 like described in enhancement COOPA003
    kind regards
    A.R. de Smidt

    I also found a quitre extensive example here.
    http://sapass.metro.client.jp/UserExit/COOPA003.htm

  • CAML query to return multi-user field from a Sharepoint list

    I have a list in SharePoint that contains a field of type Multi-User which can contain 1 to many user names. I'm having trouble returning a string containing anything when more then 1 user is selected in the field.  Can someone point me in the right
    direction?

    You can't query on a Mutli-user field using a "contains" filter - using the GUI. 
    However, you can change the CAML for the query using SharePoint Designer.
    E.g. In my view, I want to return a list of documents where the Contributor field (a multi-user field) contains the user "Warner".
    In the GUI, I create the view, but I'm not allowed to use the filter "Contains", so I use "Equals" instead. Of this won't work unless the only user is "Warner". So I open SharePoint Designer, and I change the query used on that view from Eq to Contains.
    Original query:
    <View Name="{D0E65C04-0A53-4C26-9004-68B3CFF1F11A}" MobileView="TRUE" Type="HTML" DisplayName="Warners Documents" Url="/Shared Documents/Forms/Warners Documents.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/dlicon.png?rev=23" >
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="Contributors"/>
    <Value Type="Text">Warner</Value>
    </Eq>
    </Where>
    </Query>
    <ViewFields>
    <FieldRef Name="DocIcon"/>
    <FieldRef Name="LinkFilename"/>
    <FieldRef Name="Modified"/>
    <FieldRef Name="Editor"/>
    <FieldRef Name="Contributors"/>
    </ViewFields>
    <RowLimit Paged="TRUE">30</RowLimit>
    <Aggregations Value="Off"/>
    <JSLink>clienttemplates.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <Toolbar Type="Standard"/>
    </View>
    New Query:
    <View Name="{D0E65C04-0A53-4C26-9004-68B3CFF1F11A}" MobileView="TRUE" Type="HTML" DisplayName="Warners Documents" Url="/Shared Documents/Forms/Warners Documents.aspx" Level="1" BaseViewID="1" ContentTypeID="0x" ImageUrl="/_layouts/15/images/dlicon.png?rev=23" >
    <Query>
    <Where>
    <Contains>
    <FieldRef Name="Contributors"/>
    <Value Type="Text">Warner</Value>
    </Contains>
    </Where>
    </Query>
    <ViewFields>
    <FieldRef Name="DocIcon"/>
    <FieldRef Name="LinkFilename"/>
    <FieldRef Name="Modified"/>
    <FieldRef Name="Editor"/>
    <FieldRef Name="Contributors"/>
    </ViewFields>
    <RowLimit Paged="TRUE">30</RowLimit>
    <Aggregations Value="Off"/>
    <JSLink>clienttemplates.js</JSLink>
    <XslLink Default="TRUE">main.xsl</XslLink>
    <Toolbar Type="Standard"/>
    </View>
    This now works.
    However, the SharePoint team probably put this restriction in place for a reason. Possibly a performance related reason, due to the query performed on the SQL server, so use this method with caution.
    Regards, Matthew
    MCPD | MCITP
    My Blog
    View
    Matthew Yarlett's profile
    See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

  • Copy user fields between PRq and PO.

    Hello.
    I have little problem.
    I prepare new user field in Purchase Requisition called for example ZFIELD it is displayed and save into table EBAN by user exit MEREQ001. Now I want to copy this field to Purchase Order when I create PO with reference to PRq. How to do that? I can't find any user exit or badi
    The new field is prepare at item level in Preq and I want to copy it to PO at item level also.
    I have extend table EKPO.
    Thank you for any help.
    A.J.

    Hi,
    Implement the BADI 'ME_REQ_OI_EXT'.
    This may help to your requirement
    regards,
    Siva

  • Copy UDF fields from one user to another user with similar authorizations.

    Hi,
    Is there a way to copy UDF fields viewable to one user to another user wihtout manually checking the boxes in Form Manage User Fields?
    if so how can it be done?
    Jyoti

    For copying Form settings, user field settings, read the following 2 threads for complete details
    Replicate User Defined Field settings
    Form Settings

  • User Field Selections with SAP Asset Report RAGITT_ALV01

    Hi,
    We are running RAGITT_ALV01 (Asset History Sheet) report and wish to utilize some user fields (ANLU) in data selection. How might this be done? I find when using "List Assets" under "Settings" tab the asset number , sub asset numbers and associated user fields remain. However when using "Main Numbers Only" or "Group Totals Only" under this same tab, sub asset number and associated fields are not to be found and accumulations already include all assets with a given asset number with no opportunity to apply user field data selection criterion which would eliminate some assets included .
    Thank you  for your time, harold

    Hi,
    Sorry to have taken so long to reply, and thank you for suggestion.  We already have our "Z" copy of this program and have been processing from this for some period of time. The problem occurs when trying to apply user fields (ANLU) to data selection criterion for reporting options "Main Numbers Only" and "Group Totals Only". Asset numbers (main and sub) disappear during R3 data base processing never to be seen intact again. Have traced this through and may have solution for "Main Numbers Only" option. Testing is occurring on this "work around". However the third option "Group Totals Only" solution still evades capture. If you have any more ideas please pass along to me. Again thank you for your time and effort. harold

  • Copy Planning Plant to Sort field in Maintenance Plan

    Hi All,
    Is there any User Exit User exit is available to Copy Planning Plant to Sort field in Maintenance Plan.
    Regds
    Vinit

    I think it is not possibe as the sort field in maintenance plan is a customizing field. you can not enter any value in the sort field but you in SPRO first you have to maintain the values  for sort field.
    The sort field in order and notification, there you can copy the planning plant or anything else as they are manual input fields

  • Query help needed for Sales order panel user field query.

    I have a user defined form field on sales order row level called = U_DEPFEEAMT
    1, I would like this field to get the value from a field on this sales order row level multiplied by what is in point 2 below. The details of field in point 1 is :
    Form=139, item=38, pane=1, column=10002117, and row=1
    2. The contents in field 1 should be multiplied  by a value coming from another user field linked to OITM master item.
    The details of user field attached to OITM is :
    OITM.U_DepositFeeON
    Appreciate your help.
    Thank you.

    Try this one:
    SELECT T0.U_DepositFeeON*$[$38.10002117.number\]
    FROM dbo.OITM T0
    WHERE T0.ItemCode = $[$38.1.0\]
    Thanks,
    Gordon

  • Custom exit or badi for changing the user fields in operation of process order

    Hi all
        I want to find a exit or badi to set default value to the user fields in operation of process order when COR1.
        I have tried exit 'PPCO0001', but this exit is call after commit work, so I can not change any thing
        I also tried to use badi 'workorder_update', 'before_update', but all parameters in this BADI are importing, can't be changed, I've tried to change it and then program dump.
        Do you have any solution for this question?
    Thanks

    Do a Implicit Enhancement at the PBO of this subscreen.

  • SPEL? make REASON field required if user has changed the value in SALARY

    I have a requirement to make REASON field required if user has changed the value in SALARY field. Is it possible using spel? what are my options?

    Karan,
    You can change the Rendered Property through personalization.
    But in your requirement you need to attach the Spell through personalization & extend the existing CO to set the value of the SPELL based upon the condition.
    Note - Refer this thread http://forums.oracle.com/forums/thread.jspa?threadID=2176729&tstart=0. If you have worked on SSHRParams kindly help the user.
    Regards,
    Gyan

Maybe you are looking for