Unable to SetValue on system or UDF fields

Hi all,
Using the following code on a Sales Order form, I am able to get the value from field "CardCode", but I am not able to set it's value.
Dim oDBDataSource As SAPbouiCOM.DBDataSource
oDBDataSource = oForm.DataSources.DBDataSources.Item("ORDR")
Dim strCardCodeInit As String = oDBDataSource.GetValue("CardCode", 0)
oDBDataSource.SetValue("CardCode", 0, "C.00001")
Same thing happens for UDFs.
I get the error "Item - The item is not a user-defined item  [66000-8]".
What am I missing here?
Thank you in advance,
Aris

Hi Thillai,
Thank you for your response.
I tried that too, but I faced problems like different field types (eg. Amount, Date) or  "Valid Value - Value does not Exist" or "Form - Bad Value".
"Form - Bad Value" usually appears on Date or Amount type fields.
"Valid Value - Value does not Exist", appears on all ComboBox fields, no matter if the selected value exists on UDF.
So I supposed that using Data Sources, I could bypass these...
Aris

Similar Messages

  • Using SDK to wrtie data to Batch UDF fields

    Hello All,
    Since the Batch Number object does not have a "UserFields" member, I am unable to write data to the UDF fields I've created for batch through the SDK DI. Does anyone know how to do it? Thanks a lot!
    Daniel

    Dear,
    As the udf property is not exposed in Batch object. It's not possible implement it in DI API.
    A workaround is to set this settings manually in SAP Business One,
    or to develop a UI AddOn which do this steps automatically for you,
    but this needs a lot of development effort.
    Best Regards,
    xiaodan AN
    SAP Business One Forums Team

  • UDF field in Crystal in Sales Order Layout

    Hi,
    I want to Include UDF field in sales order layout, when i open default layout it shows only standard in RDR1(UDF for rowlevel ) it doesn't shows UDF fields. Now i connected database and re-established OLE DB connection and pulled the RDR1 table, here i can get those UDF created by me. but if i use this UDF field in report details area and this results no values in the layout while preview the report in SAP B1.
    Anyone guide me on this....
    Regards
    sree

    Hi Ivan,
    If you want to populate UDF fields into crystal reports layout then you have to do wat i mentioned earlier.
    1. Go to Menu
    2. choose Database
    3. choose verify database
    4.enter Object Id and Document Number as a input
    5.system will retrieve the values from database and pull all the fields including UDF
    but this doesn't change field length of UDF you have to change it on UDF fields management in SAP by updating the field properties.
    Note: later you can't reduce the length
    Regards
    Sree

  • OIM 11g R2: Delete User UDF fields

    Hi all,
    I installed and configured OIM 11g R2. In this environment I created an UDF for User entity.
    Here the steps that I followed:
    - created a sanbox
    - opened User Form
    - added a custom field named "MyCustomField". The type field is Text.
    Now, due to a mistake during UDF creation, I have to delete it.
    I found this post (OIM 11gR2 - Unable to remove UDF which describe how to delete an UDF field.
    The post gives these instructions:
    - export the sandbox
    - remove UDF occurences in xml files
    - import the sanbox
    I followed the instructions and at the and I checked the result: the UDF field does not exist in the User form, but the associated database field still exits in database.
    My question is: how I can delete the database filed without create database inconsistency?
    Thanks in advance,
    Daniele

    Hi Nayan,
    I tried to export Users.xml using Depolyment Manager Export, but I the export failed whit this error.
    [2012-10-09T10:03:37.366+02:00] [oim_server1] [ERROR] [] [XELLERATE.WEBAPP] [tid: [ACTIVE].ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: fc578f2854422d44:67bee673:13a2720c2c5:-8000-0000000000015853,0] [APP: oim#11.1.2.0.0] Class/Method: LoadDeploymentUtility/handleExportData encounter some problems: invalid character in name[[
    Thor.API.Exceptions.tcAPIException: invalid character in name
    at com.thortech.xl.ejb.beansimpl.tcExportOperationsBean.getExportXML(tcExportOperationsBean.java:245)
    at Thor.API.Operations.tcExportOperationsIntfEJB.getExportXMLx(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: oracle.xml.parser.v2.XMLDOMException: invalid character in name
    at oracle.xml.util.XMLUtil.validateName(XMLUtil.java:464)
    at oracle.xml.parser.v2.XMLDocument.createElement(XMLDocument.java:877)
    at com.thortech.xl.ddm.repositories.api.impl.APIRepository.getElementforHashMapAttribute(APIRepository.java:552)
    at com.thortech.xl.ddm.engine.visitor.ExportVisitor.visitStarted(ExportVisitor.java:126)
    at com.thortech.xl.ddm.engine.data.datatypes.SchemaInstance.traverse(SchemaInstance.java:252)
    at com.thortech.xl.ejb.beansimpl.tcExportOperationsBean.export(tcExportOperationsBean.java:281)
    at com.thortech.xl.ejb.beansimpl.tcExportOperationsBean.getExportXML(tcExportOperationsBean.java:235)
    ... 120 more
    ]]Do you have any other suggestions?
    Thanks,
    Daniele

  • Validating UDF Field

    Dear All,
    How can I validate a UDF field in Business Partner screen? As I don't want to set any default value for that UDF, I could not make it as Mandatory also. Please help me to resolve this problem.
    Thanks in advance.

    Hi,
    The SBO_sp_TransactionNotification proc can be used for this type of validation but you could also use code in your addon. The benefit of using the proc is that this will work with BPs created using the DI API (eg DTW import or another addon).
    As you are only trying to read data on a system form, you can use the DBDataSources already attached to it to check the UDF value. This is a better solution because it does not rely on the UDF tab being open. You cannot use this method to write to the UDF due to the restrictions on a system form.
    You could add something like the following to the item pressed event (when BeforeAction is true) of the Add button on the BP form:
    SAPbouiCOM.DBDataSource sboDS = (SAPbouiCOM.DBDataSource)sboForm.DataSources.DBDataSources.Item("OCRD");
    string sValue = sboDS.GetValue("U_MYUDF", 0).TrimEnd();
    if(sValue == "")
          BubbleEvent = false;
          _sboApp.SetStatusBarMessage("You must enter a value in the UDF", SAPbouiCOM.BoMessageTime.bmt_Long, true);
    You'll also need to check the form mode to make sure you only validate the field when the form is in Add or Update mode.
    Kind Regards,
    Owen

  • System and Query field disable in Data Manager for Netweaver BI

    Dear All.
    i have installed Xcelsius Engage Server 2008, when i try to add connection for SAP Netweaver BI from the Data Manager the dialog appears correctly but in Defination TAB only the Name field is enable both System and Query field is disable.
    without that how can i configure the connection please let me know how to fix this issue.
    Kind regards,

    Hi,
    You give the name of the connection and then click on "Browse".  It will then prompt you to connect to the desired system.  Log in and then select the appropriate query you want to build a dashboard on.
    Hope this helps.
    Regards,
    RashmiG

  • Error while trying to export with Preview:  'unable to convert NSNamedColorSpace System controlColor to Device RGB colorspace'

    When I try to export a PDF with preview, the dialog doesn't show and this error appears in the system log.
    11/2/13 2:01:01.684 PM Preview[828]: -[NSRemoteView viewDidMoveToWindow] caught non-fatal NSInternalInconsistencyException 'unable to convert NSNamedColorSpace System controlColor to Device RGB colorspace' with backtrace (
              0   CoreFoundation                      0x00007fff8e24d41c __exceptionPreprocess + 172
              1   libobjc.A.dylib                     0x00007fff8a400e75 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e24d1f8 +[NSException raise:format:arguments:] + 104
              3   Foundation                          0x00007fff8be42c61 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 189
              4   ViewBridge                          0x00007fff8a08165c -[NSSecureColor initWithColor:] + 724
              5   ViewBridge                          0x00007fff8a08136f +[NSSecureColor secureColorWithColor:] + 48
              6   ViewBridge                          0x00007fff8a0a4cfb -[NSRemoteView sendFontSmoothingBackgroundColorToService:] + 40
              7   ViewBridge                          0x00007fff8a0a5bf5 -[NSRemoteView viewDidMoveToWindow] + 197
              8   AppKit                              0x00007fff881461d0 -[NSView _setWindow:] + 2899
              9   AppKit                              0x00007fff88143804 -[NSView addSubview:] + 364
              10  AppKit                              0x00007fff88157953 -[NSFrameView addSubview:] + 45
              11  AppKit                              0x00007fff88165cb5 -[NSWindow setContentView:] + 511
              12  AppKit                              0x00007fff889cb233 -[NSVBSavePanel init] + 287
              13  AppKit                              0x00007fff8874d5b9 +[NSSavePanel newRemotePanel] + 309
              14  AppKit                              0x00007fff8874d675 +[NSSavePanel _crunchyRawUnbonedPanel] + 120
              15  AppKit                              0x00007fff885a54fc -[NSDocument _preparedSavePanelForOperation:] + 260
              16  AppKit                              0x00007fff885a5f6f __85-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_2 + 320
              17  AppKit                              0x00007fff885d5910 -[NSDocument _commitEditingThenContinue:] + 501
              18  AppKit                              0x00007fff885d5abd -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 138
              19  AppKit                              0x00007fff885a5e20 __85-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke + 375
              20  AppKit                              0x00007fff885989b8 -[NSDocument _processActivity:blockingMainThread:] + 1373
              21  AppKit                              0x00007fff88599921 -[NSDocument performActivityWithSynchronousWaiting:usingBlock:cancellationHandler:] + 220
              22  AppKit                              0x00007fff885a5c9a -[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:] + 137
              23  Preview                             0x000000010392901b Preview + 917531
              24  AppKit                              0x00007fff8834d3d0 -[NSApplication sendAction:to:from:] + 327
              25  AppKit                              0x00007fff88368348 -[NSMenuItem _corePerformAction] + 394
              26  AppKit                              0x00007fff88368084 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 117
              27  AppKit                              0x00007fff883b74dd -[NSMenu _internalPerformActionForItemAtIndex:] + 35
              28  AppKit                              0x00007fff883b7359 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 104
              29  AppKit                              0x00007fff8835e176 NSSLMMenuEventHandler + 716
              30  HIToolbox                           0x00007fff8973c6d4 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 892
              31  HIToolbox                           0x00007fff8973bc87 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 385
              32  HIToolbox                           0x00007fff8974fd90 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff89785a30 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 420
              34  HIToolbox                           0x00007fff897b8618 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff897b85c4 SendMenuItemSelectedEvent + 178
              36  HIToolbox                           0x00007fff897b84a5 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff897c0425 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 718
              38  HIToolbox                           0x00007fff897c0051 _HandleMenuSelection2 + 446
              39  AppKit                              0x00007fff882d079c _NSHandleCarbonMenuEvent + 284
              40  AppKit                              0x00007fff8812f56e _DPSNextEvent + 2170
              41  AppKit                              0x00007fff8812e8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
              42  AppKit                              0x00007fff881229cc -[NSApplication run] + 553
              43  AppKit                              0x00007fff8810d803 NSApplicationMain + 940
              44  libdyld.dylib                       0x00007fff868025fd start + 1
              45  ???                                 0x0000000000000001 0x0 + 1
    timestamp: 14:01:01.684 Saturday 02 November 2013
    process/thread/queue: Preview (828) / 0x7fff741cc310 / com.apple.main-thread
    code: line 607 of /SourceCache/ViewBridge/ViewBridge-46/ViewBridgeUtilities.m in logCaughtException
    domain: exceptions

    When I try to export a PDF with preview, the dialog doesn't show and this error appears in the system log.
    11/2/13 2:01:01.684 PM Preview[828]: -[NSRemoteView viewDidMoveToWindow] caught non-fatal NSInternalInconsistencyException 'unable to convert NSNamedColorSpace System controlColor to Device RGB colorspace' with backtrace (
              0   CoreFoundation                      0x00007fff8e24d41c __exceptionPreprocess + 172
              1   libobjc.A.dylib                     0x00007fff8a400e75 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e24d1f8 +[NSException raise:format:arguments:] + 104
              3   Foundation                          0x00007fff8be42c61 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 189
              4   ViewBridge                          0x00007fff8a08165c -[NSSecureColor initWithColor:] + 724
              5   ViewBridge                          0x00007fff8a08136f +[NSSecureColor secureColorWithColor:] + 48
              6   ViewBridge                          0x00007fff8a0a4cfb -[NSRemoteView sendFontSmoothingBackgroundColorToService:] + 40
              7   ViewBridge                          0x00007fff8a0a5bf5 -[NSRemoteView viewDidMoveToWindow] + 197
              8   AppKit                              0x00007fff881461d0 -[NSView _setWindow:] + 2899
              9   AppKit                              0x00007fff88143804 -[NSView addSubview:] + 364
              10  AppKit                              0x00007fff88157953 -[NSFrameView addSubview:] + 45
              11  AppKit                              0x00007fff88165cb5 -[NSWindow setContentView:] + 511
              12  AppKit                              0x00007fff889cb233 -[NSVBSavePanel init] + 287
              13  AppKit                              0x00007fff8874d5b9 +[NSSavePanel newRemotePanel] + 309
              14  AppKit                              0x00007fff8874d675 +[NSSavePanel _crunchyRawUnbonedPanel] + 120
              15  AppKit                              0x00007fff885a54fc -[NSDocument _preparedSavePanelForOperation:] + 260
              16  AppKit                              0x00007fff885a5f6f __85-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_2 + 320
              17  AppKit                              0x00007fff885d5910 -[NSDocument _commitEditingThenContinue:] + 501
              18  AppKit                              0x00007fff885d5abd -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 138
              19  AppKit                              0x00007fff885a5e20 __85-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke + 375
              20  AppKit                              0x00007fff885989b8 -[NSDocument _processActivity:blockingMainThread:] + 1373
              21  AppKit                              0x00007fff88599921 -[NSDocument performActivityWithSynchronousWaiting:usingBlock:cancellationHandler:] + 220
              22  AppKit                              0x00007fff885a5c9a -[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:] + 137
              23  Preview                             0x000000010392901b Preview + 917531
              24  AppKit                              0x00007fff8834d3d0 -[NSApplication sendAction:to:from:] + 327
              25  AppKit                              0x00007fff88368348 -[NSMenuItem _corePerformAction] + 394
              26  AppKit                              0x00007fff88368084 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 117
              27  AppKit                              0x00007fff883b74dd -[NSMenu _internalPerformActionForItemAtIndex:] + 35
              28  AppKit                              0x00007fff883b7359 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 104
              29  AppKit                              0x00007fff8835e176 NSSLMMenuEventHandler + 716
              30  HIToolbox                           0x00007fff8973c6d4 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 892
              31  HIToolbox                           0x00007fff8973bc87 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 385
              32  HIToolbox                           0x00007fff8974fd90 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff89785a30 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 420
              34  HIToolbox                           0x00007fff897b8618 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff897b85c4 SendMenuItemSelectedEvent + 178
              36  HIToolbox                           0x00007fff897b84a5 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff897c0425 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 718
              38  HIToolbox                           0x00007fff897c0051 _HandleMenuSelection2 + 446
              39  AppKit                              0x00007fff882d079c _NSHandleCarbonMenuEvent + 284
              40  AppKit                              0x00007fff8812f56e _DPSNextEvent + 2170
              41  AppKit                              0x00007fff8812e8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
              42  AppKit                              0x00007fff881229cc -[NSApplication run] + 553
              43  AppKit                              0x00007fff8810d803 NSApplicationMain + 940
              44  libdyld.dylib                       0x00007fff868025fd start + 1
              45  ???                                 0x0000000000000001 0x0 + 1
    timestamp: 14:01:01.684 Saturday 02 November 2013
    process/thread/queue: Preview (828) / 0x7fff741cc310 / com.apple.main-thread
    code: line 607 of /SourceCache/ViewBridge/ViewBridge-46/ViewBridgeUtilities.m in logCaughtException
    domain: exceptions

  • OIM 11g r2  User  UDF fields  Updation based on AD ID

    Hi,
    We have to update the UDF fields created for the users in OIM using the data from a table.
    This table contains the AD ID, and other fields.
    OIM User (already available) will be updated based on AD ID ….i;e AD ID column will be used to find the user in OIM and then his UDF will be updated based on the respective data from other columns in the table .
    Please can you help me on this task?
    Thanks,

    Your requirement doesn't tell much like when you want to update your user. If it would be on daily basis then go for Schedule Task, if you want to at the time of provisioning then you can have one task and attach your code to bring AD ID in OIM..
    You may leverage Event Handlers as well if your use case requires that.

  • I have uploaded an old itunes library by mistake - any way that I can go back to my previous library.  Unable to do a system restore and I don't know where to find an up to date music/playlist file.

    I have uploaded an old itunes library by mistake - any way that I can go back to my previous library.  Unable to do a system restore and I don't know where to find an up to date music/playlist file.  I was originally trying to recover a playlist that vanished after I had updated one of the ipads, did an online search, followed the instructions only to discover that I had loaded an itunes library from 2 years ago.  Stupidly I thought that it had updated itself and didn't realise I had to do it.  Any he

    See Empty/corrupt iTunes library after upgrade/crash. Hopefully you have a more recent library file that you can restore.
    tt2

  • UDF fields missing in Deployment Manager User Metadata export wizzard

    Hi,
    When I try to export UDF-s using Deployment Manager, not all UDF-s appear in the Deployment Manager wizard step1 Search list for User Metadata type.
    It seems that UDF Lookup type-s are not included.
    Also, some text type UDF-s are missing as well, while the rest of the text type UDF-s are in the list.
    I wonder if someone has encountered the issue? Is there any solution for this?
    Thanks in advance.

    Hi,
    I have tried your suggestion, exported sandbox, than published the sandbox. The UDF-s are included in the UserEO.xml.xml file, but are still cannot be retrieved in Deployment Manager wizard step1 Search list.
    Even if I enter the exact name of the attribute (USR_UDF_DEPT_NO) it is not found.
    The problem is even more severe:
    - the UDF missing from the export, which is a lookup type field, cannot be mapped in a GTC connector.
    - this UDF field is NOT CREATED in the DATABASE.
    Error message:
    <Error> <oracle.iam.configservice.impl> <BEA-000000> <The attribute DEPT_NO does not exist!>
    <Error> <oracle.iam.ui.formservice.model.modeler.FormService> <BEA-000000> <Updating User field DEPT_NO with params....failed>
    OIM version: 11.1.2.1.0
    Can someone confirm if this a bug? Is there a workaround?
    Best regards.

  • Unable to Define Business System in SLD.

    Hi All,
    We configured SLD host on EPDEV system (EP System based on Only Web as Java).
    We have diffrent system for PI. At the time of PI installation I mentioned SLD Host as EP system.
    In PI am facing some problem while executing SLDCHECK, output as "No Business System defined for PI Technical system"
    In EP SLD HOST, By using wizard I am trying to add PI as a technical system, In in first step, I selected Web as ABAP, after that next two steps its ok, In Installed product step, I added installed pucts and saved then it giving me error of "CIM_ERROR_ALREADY_EXISTS".
    Then I canceled the wizard and came on main screen, I found two technical systems for PI SID as below.
    1. PI Web as ABAP
    2. PI Web as Java
    I checked the installed products for both PI Technical Systems then I found,
    1. PI Web as ABAP there is no installed product and when I tried to add new Installed product then itu2019s again showing the same CIM_ERROR.
    2. PI Web as Java its showing all installed products for Java, so I am able to create business system for this technical system.
    But I am unable to create busyness system for PI Web as ABAP system because no installed products in the list.
    So can you please tell me how to resolve this problem. I tried to delete all PI technical systems and recreate ones again. It gets delete but at the time of recreation again the same CIM error I am getting.
    Is this problem because of my EP is only based on Java??
    Can I switch SLD HOST to my PI system as this is ABAP+JAVA? If possible its no big problem for me because its new implementation and only PI DEV and EP DEV two systems are there in this SLD group.
    Please reply with your good experience skills.
    Regards,
    Jay

    So can you please tell me how to resolve this problem. I tried to delete all PI technical systems and recreate ones again. It gets delete but at the time of recreation again the same CIM error I am getting.
    Is this problem because of my EP is only based on Java?? 
    You need to import SLD with latest cimsap & cr content to reflect ABAP & JAva systems provided by SAP....
    Can I switch SLD HOST to my PI system as this is ABAP+JAVA? If possible its no big problem for me because its new implementation and only PI DEV and EP DEV two systems are there in this SLD group. 
    You can have SLD on EP or XI.. Technically it donse't matter. But as PI relies heavily on SLD, i would recommend the SLD to be moved to PI & EP sytem pointing to PI-SLD..
    How to repoint SLD... Check SLD Installation guides...
    -Siva Maranani

  • Not able to keep defualt value in UDF Field

    Hello Frnds,
    I have one question to you, I want to keep default value in one of the UDF field which is ContNo which is exist in A/R invoice.
    I want to keep default value =9999999
    So to do this I have followed the following process:-
    First I went to ToolsUser-Defined FieldsManage User FieldsMarketing DocumentsTitleContNo
    then pressing update button there is an option to enter Default value and press OK button.
    After that its taking some 30 mins and giving error of "SEWSY"
    Please help me to let me know the solution.
    Regards,

    Hello Gordon,
    Please note that as per your suggestion now im not updating the udf  by the sql query.
    As i was already trying to update it from as a exclusive user of B1, but its not updating.
    Its always give the error of SEWSY.  At the time of updating there is not user logged on SAP also im updating with the adminstrator role.
    Please suggest me.

  • GRC 10 Upgrade: Unable to find a system while creating a request in AC

    Hi All,
    I am unable to find a system while creating a new request in Access Management. I have created a connector to the backend system  and I tested that by logging into the system remotely. However, the same system is not available for selection for which the request needs to be created.
    Please suggest.
    Regards,
    Faisal

    Hi Faisal,
    Please re-visit the following config:
    SPRO>GRC>AC-->Maintain Connector Settings
    SPRO>GRC>AC-->Maintain Mapping for Actions and Connector Groups
    SPRO>GRC>AC-->Maintain Plugin Settings (Make sure you have not checked the checkbox)
    Still not solved - please follow this document and make sure you have completed all the steps:
    http://www.sdn.sap.com/irj/bpx/go/portal/prtroot/docs/library/uuid/5067e447-5c64-2e10-7d9c-8f7e5953aadb
    Regards,
    Ajesh.

  • How can i update system form udf based on udt add event

    hello experts,
    i require small functionality on customized form add event,one of the system form udf value at row level should be update for particular row on based on the values on the customized form.
    so it should go like this on add event of customized form system form's row level udf should be update
    Regards,
    Bhavank

    Hi
    Are you opening your customised form with reference to any system form or it works alone?
    If it works alone then on the add event of customized form you haveto use update query with reference to the system form
    Regards

  • Update a UDF field at runtime

    I designed the Sales Order and Sales BOL form in Crystal Reports. I am looking to capture and update an UDF field every time I'm printing the one of those reports in SAP B1 2005 A. The reason for doing this is to display on the report "Original" when printed for the first time, "Duplicate" when printed for the second time and so forth. Is this possible? Thank you.

    You could do a Formatted search on the UDF to change to a value when the Field "Printed" is changed.
    You might want to do "Refresh Regularly" option in Formatted Search.
    Krishnan

Maybe you are looking for