on ‎2016 Oct 27 2:42 PM
I've looked at a ton of entries in the questions but I probably don't know enough to undersrtand what i'm reading.
So here is the issue.
We have a program that updates batch characteristics based on some business process requirements. This works.
However, we will have some numeric characteristics that have no values, (i.e. null or in SAP parlence, not not-initial) when the program runs. When the program is done, the batch values now shows as 0.00 and not null for these characteristics. The developers solution for this was to go back and delete them. But this resutls in change records showing a value of 0.00 created and a value of 0.00 deleted in the batch change records. Not good and not accurate.
I know in the underlaying tables there is an indicator flag, (initial/not-initial), that tells the system whether the value stored (0.0000000000) is really a true zero, or null.
My developers are telling me that is how BABI_OBJCL_CHANGE works. I disagree. There must be a way to use BABI_OBCJL_CHANGE to only update the characteristics you want to and not have it "default" in 0.00 for numeric characteristics that the program shouldn't even touch or know about.
Any suggestions as to what I can suggest to my developers?
Thanks!
Craig
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
The BAPI has a parameter for not setting default values, that will allow you to add characteristic without setting a value. I'll look up the logic once I get to the office.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Samuli,
are you talking about NO_DEFAULT_VALUES import parameter?
keep_same_defaults = 'X' ? (see OSS Note 1930673 - BAPI_OBJCL_CHANGE: Interface enhancement)
Thanks Pablo: I just downloaded and installed it 🙂
I just checked. I'm using the flags NO_DEFAULT_VALUES and KEEP_SAME_DEFAULTS mentioned by Simone and Pablo in my program to avoid the mentioned issue. You have to explicitly set a non initial value for any characteristic for it to be set/changed.
The behaviour should be the same.
Try to give your Abapers the OSS note from Pablo and link them this thread 🙂
There must be a way to use BABI_OBCJL_CHANGE to only update the characteristics you want to and not have it "default" in 0.00 for numeric characteristics that the program shouldn't even touch or know about.In the BAPI's documentation
The information transferred by this BAPI replaces all old information. An empty field means "delete entry!", not "no change".
If you do not pass a characteristic, it looks like a deletion and avoid the enter 0 and then delete (or not create!) the characteristic you want to keep null.
Sadly, there is no option in the characteristics' tables of this bapi to set that flag.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So are you saying that for those where we want the value to remain as null, we must delete the characteristic from the structure that is passed back? My understanding is that when the characteristics are obtained, the value shows a 0.00 (format based on charac.).
From what I understand, if I have an existing value, and fail to pass that same value back, it will be deleted.
So first I get all the characteristics via the module. When SAP provides them to me, the numeric value will show as 0.00. I'm really only talking about those characteristics in the ALLOCVALUESNUM structure.
I then have to update the ones I want to update. If I want to have a null value, I have to delete the entire characterisitc from the structure being passed back. Do I have that part right?
So the question would be, if SAP passes me 0.00 for all null characteristics when ALLOCVALUESNUM is imported, how am I to determine if that is a valid 0.00 or a null?
The FM Pablo suggested only appears to determine if classification has happened. It's not telling me about any one particular characteristic value.
Am I understanding this right?
Sorry, I could not solve my problem with"KEEP_SAME_DEFAULTS= 'X'".
we have several numeric characteritics in our classification (class 023) which appear as blank
when not filled with value.
When I want to change only some of them viaCALL FUNCTION 'BAPI_OBJCL_CHANGE'
those ones not updated appear as 0,0afterwards.Of course thats not good because 0 could
be a real value…
Hope to get good advice, here's part of my coding:
______________________________________________
* Zurückschreiben der Chargenmerkmale
*
CLEAR: it_put_return.
CALL FUNCTION 'BAPI_OBJCL_CHANGE'
EXPORTING
OBJECTKEY= put_objectkey
OBJECTTABLE= put_objecttable
CLASSNUM= put_classnum
CLASSTYPE= put_classtype
*STATUS= put_status
*STANDARDCLASS= put_standardclass
*CHANGENUMBER= put_changenumber
*KEYDATE= put_keydate
*NO_DEFAULT_VALUES= put_nodefvalues
KEEP_SAME_DEFAULTS= 'X'
*CLASSIF_STATUS= put_class_status
TABLES
ALLOCVALUESNUMnew= it_put_valnum
ALLOCVALUESCHARnew= it_put_valchar
ALLOCVALUESCURRnew= it_put_valcurr
RETURN= it_put_return.
* WICHTIG: Transaction Commit
COMMIT WORK.
CALL FUNCTION 'BUFFER_REFRESH_ALL'.
____________________________________________
THANK YOU !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
maybe you could use fm 'BAPI_OBJCL_EXISTENCECHECK' as it is used in fm CKCVAL_COSTING_CHARVAL_SET.
check first and according to the result change or...whatever you decide
e.g.
CALL FUNCTION 'BAPI_OBJCL_EXISTENCECHECK'
EXPORTING
objectkey = lf_class-objek
objecttable = lf_class-obtab
classnum = lf_class-class
classtype = lf_class-classtype
* KEYDATE = SY-DATUM
tables
return = lt_return.
LOOP AT LT_RETURN WHERE TYPE = 'S'.
EXIT.
ENDLOOP.
if SY-SUBRC = 0.
* Change the characteristic valuation
CALL FUNCTION 'BAPI_OBJCL_CHANGE'
EXPORTING
objectkey = lf_class-objek
objecttable = lf_class-obtab
classnum = lf_class-class
classtype = lf_class-classtype
* STATUS = '1'
* STANDARDCLASS =
* CHANGENUMBER =
* KEYDATE = SY-DATUM
tables
allocvaluesnumnew = LT_VALUESNUM
allocvaluescharnew = LT_VALUESCHAR
allocvaluescurrnew = LT_VALUESCURR
return = LT_RETURN.
else.
* Create the characterisitc valuation
refresh lt_return.
CALL FUNCTION 'BAPI_OBJCL_CREATE'
EXPORTING
objectkeynew = lf_class-objek
objecttablenew = lf_class-obtab
classnumnew = lf_class-class
classtypenew = lf_class-classtype
* STATUS = '1'
* STANDARDCLASS =
* CHANGENUMBER =
* KEYDATE = SY-DATUM
tables
ALLOCVALUESNUM = LT_VALUESNUM
ALLOCVALUESCHAR = LT_VALUESCHAR
ALLOCVALUESCURR = LT_VALUESCURR
return = lt_return.
endif.
<br>Best regards,
Pablo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
check BAPI_OBJCL_GETDETAIL and within that bapi have a look at fm CTMS_DDB_HAS_VALUES_INTERNAL that returns internal table lit_valtab.
Regards,
Pablo
| User | Count |
|---|---|
| 41 | |
| 25 | |
| 15 | |
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.